
    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_4348438bf42dc356fe76095c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_90b72cf6cfaf2daa752295b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_826302bc7d3f286e54638a3a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877441;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_b3beba8c776a8f692214a91e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.776855;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_c42ea4204e291fc2a46abafd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_846c788e5e7da26d73a59163.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_c531a1acb6472bccf4dcaa64.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_206619d2f5e988a04520b7aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_30be4a4205162aad328869b2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.688965;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_62a5a14644824ea93e9cf0b7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3cafa583e1378e6e4c1f2940.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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(0.254944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls4{letter-spacing:-0.754143px;}
.ls5{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.078000px;}
.ls6{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.357829px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.wsc{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws2{word-spacing:-15.984000px;}
.ws7{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:0.704878px;}
.ws0{word-spacing:420.975840px;}
._4{margin-left:-6.590880px;}
._3{margin-left:-5.272560px;}
._2{margin-left:-2.232000px;}
._1{margin-left:-1.135440px;}
._0{width:1.434240px;}
._10{width:2.572560px;}
._14{width:3.655440px;}
._f{width:4.879440px;}
._e{width:6.048000px;}
._c{width:7.992000px;}
._d{width:9.095040px;}
._6{width:10.368000px;}
._7{width:11.448000px;}
._13{width:13.032000px;}
._15{width:14.040000px;}
._16{width:15.984000px;}
._1c{width:16.992240px;}
._b{width:19.351440px;}
._11{width:20.376000px;}
._12{width:21.456000px;}
._8{width:23.040000px;}
._a{width:24.149280px;}
._9{width:25.200000px;}
._19{width:26.285760px;}
._1a{width:28.063440px;}
._1b{width:29.232000px;}
._22{width:30.383040px;}
._21{width:31.793520px;}
._20{width:33.181920px;}
._1f{width:34.282080px;}
._1e{width:35.634960px;}
._26{width:37.152000px;}
._23{width:39.024000px;}
._40{width:40.049280px;}
._17{width:41.328000px;}
._18{width:42.761280px;}
._3e{width:49.248000px;}
._41{width:50.357760px;}
._30{width:51.744000px;}
._28{width:53.280000px;}
._42{width:54.864000px;}
._24{width:56.592000px;}
._25{width:57.672000px;}
._31{width:61.200000px;}
._27{width:67.248000px;}
._35{width:68.400000px;}
._36{width:70.212000px;}
._2b{width:73.440000px;}
._39{width:80.424000px;}
._1d{width:84.151440px;}
._3c{width:90.072000px;}
._3d{width:92.880000px;}
._2a{width:100.872000px;}
._2d{width:117.576000px;}
._37{width:120.528000px;}
._34{width:121.584000px;}
._3a{width:123.840000px;}
._2c{width:128.575440px;}
._3f{width:133.560000px;}
._2f{width:136.495440px;}
._33{width:140.095440px;}
._3b{width:164.520000px;}
._38{width:189.360000px;}
._2e{width:225.720000px;}
._32{width:227.880000px;}
._5{width:431.756880px;}
._29{width:846.002400px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:49.264682px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.y10{bottom:-1.980000px;}
.y0{bottom:0.000000px;}
.y16{bottom:2.700000px;}
.y12{bottom:3.330266px;}
.yd5{bottom:10.260000px;}
.y134{bottom:10.440000px;}
.y108{bottom:10.620000px;}
.yc8{bottom:10.965000px;}
.yca{bottom:15.825000px;}
.y14{bottom:15.840000px;}
.y156{bottom:15.870000px;}
.ycd{bottom:16.185000px;}
.yd3{bottom:16.200000px;}
.y157{bottom:16.230000px;}
.yf{bottom:17.100000px;}
.y44{bottom:18.360000px;}
.y15a{bottom:27.900000px;}
.y9e{bottom:28.605000px;}
.y98{bottom:28.620000px;}
.y9b{bottom:28.650000px;}
.ya3{bottom:28.785000px;}
.y95{bottom:28.800000px;}
.y9f{bottom:28.965000px;}
.y99{bottom:28.980000px;}
.y9c{bottom:29.010000px;}
.ya4{bottom:29.145000px;}
.y96{bottom:29.160000px;}
.y107{bottom:31.320000px;}
.yc7{bottom:31.665000px;}
.yf3{bottom:32.565000px;}
.ye5{bottom:32.580000px;}
.yf0{bottom:32.745000px;}
.yea{bottom:32.760000px;}
.yed{bottom:32.790000px;}
.yf4{bottom:32.925000px;}
.ye6{bottom:32.940000px;}
.yf1{bottom:33.105000px;}
.yeb{bottom:33.120000px;}
.yee{bottom:33.150000px;}
.y11a{bottom:42.300000px;}
.y152{bottom:43.545000px;}
.y10e{bottom:45.345000px;}
.y121{bottom:45.360000px;}
.yd1{bottom:45.390000px;}
.y139{bottom:45.405000px;}
.ye{bottom:46.800000px;}
.y132{bottom:47.910000px;}
.y169{bottom:48.240000px;}
.ycc{bottom:48.405000px;}
.y11d{bottom:48.420000px;}
.y154{bottom:48.450000px;}
.y106{bottom:52.020000px;}
.yc6{bottom:52.410000px;}
.y15{bottom:53.460000px;}
.y166{bottom:54.000000px;}
.yc{bottom:56.700000px;}
.y119{bottom:63.000000px;}
.y151{bottom:64.245000px;}
.y131{bottom:68.610000px;}
.y105{bottom:72.720000px;}
.y165{bottom:74.700000px;}
.ye3{bottom:76.680000px;}
.y118{bottom:83.700000px;}
.y150{bottom:84.765000px;}
.y93{bottom:88.740000px;}
.y130{bottom:89.310000px;}
.y164{bottom:95.400000px;}
.ye2{bottom:97.380000px;}
.y117{bottom:104.400000px;}
.y14f{bottom:105.465000px;}
.y92{bottom:109.440000px;}
.y12f{bottom:110.010000px;}
.y17d{bottom:114.120000px;}
.y72{bottom:114.480000px;}
.y163{bottom:116.100000px;}
.yb6{bottom:121.500000px;}
.y114{bottom:122.220000px;}
.y116{bottom:125.145000px;}
.y14e{bottom:126.210000px;}
.ya6{bottom:127.260000px;}
.y91{bottom:130.170000px;}
.yb9{bottom:130.680000px;}
.y12e{bottom:130.710000px;}
.y42{bottom:131.220000px;}
.y17b{bottom:132.840000px;}
.y159{bottom:134.280000px;}
.y17c{bottom:134.820000px;}
.y133{bottom:135.000000px;}
.y71{bottom:135.180000px;}
.y162{bottom:136.800000px;}
.yb5{bottom:142.200000px;}
.y113{bottom:142.920000px;}
.yd4{bottom:143.640000px;}
.yb8{bottom:151.380000px;}
.y41{bottom:151.920000px;}
.y17a{bottom:153.540000px;}
.y84{bottom:155.520000px;}
.y70{bottom:155.880000px;}
.yb4{bottom:162.900000px;}
.y112{bottom:163.620000px;}
.y158{bottom:169.200000px;}
.yf9{bottom:169.380000px;}
.yb7{bottom:172.080000px;}
.y40{bottom:172.980000px;}
.y12d{bottom:173.160000px;}
.y179{bottom:174.240000px;}
.ya5{bottom:175.140000px;}
.y83{bottom:176.220000px;}
.y6f{bottom:176.580000px;}
.yd0{bottom:178.560000px;}
.yb3{bottom:183.600000px;}
.y111{bottom:183.960000px;}
.yf8{bottom:190.080000px;}
.y3f{bottom:193.680000px;}
.y178{bottom:194.940000px;}
.y7f{bottom:196.920000px;}
.y6e{bottom:197.280000px;}
.yb2{bottom:204.300000px;}
.y110{bottom:204.660000px;}
.yf7{bottom:210.810000px;}
.yd2{bottom:213.705000px;}
.y3e{bottom:214.410000px;}
.y177{bottom:215.670000px;}
.y7e{bottom:217.650000px;}
.y6d{bottom:218.010000px;}
.y10d{bottom:222.705000px;}
.ya2{bottom:222.885000px;}
.yb1{bottom:225.030000px;}
.yf6{bottom:231.510000px;}
.y3d{bottom:235.110000px;}
.y176{bottom:236.370000px;}
.y89{bottom:238.350000px;}
.y6c{bottom:238.710000px;}
.y155{bottom:242.325000px;}
.yb0{bottom:245.730000px;}
.ycf{bottom:248.625000px;}
.yf5{bottom:252.210000px;}
.y3c{bottom:255.810000px;}
.y175{bottom:257.070000px;}
.y10f{bottom:257.805000px;}
.y88{bottom:259.050000px;}
.y6b{bottom:259.410000px;}
.yf2{bottom:270.045000px;}
.ya1{bottom:270.765000px;}
.y3b{bottom:276.510000px;}
.y174{bottom:277.770000px;}
.y17e{bottom:279.750000px;}
.y6a{bottom:280.110000px;}
.y153{bottom:280.305000px;}
.ycb{bottom:283.725000px;}
.y10c{bottom:292.725000px;}
.y3a{bottom:297.210000px;}
.y173{bottom:298.110000px;}
.y69{bottom:300.810000px;}
.y39{bottom:317.910000px;}
.y14d{bottom:318.465000px;}
.ya0{bottom:318.645000px;}
.y172{bottom:318.810000px;}
.y68{bottom:321.510000px;}
.yce{bottom:321.705000px;}
.y12c{bottom:327.450000px;}
.y10a{bottom:327.825000px;}
.y38{bottom:338.610000px;}
.y171{bottom:339.510000px;}
.y67{bottom:342.210000px;}
.y12b{bottom:348.150000px;}
.y16f{bottom:357.525000px;}
.y37{bottom:359.310000px;}
.yc9{bottom:359.685000px;}
.y8c{bottom:362.550000px;}
.y66{bottom:362.910000px;}
.y10b{bottom:365.805000px;}
.y9d{bottom:366.525000px;}
.y12a{bottom:368.850000px;}
.yef{bottom:373.545000px;}
.y36{bottom:380.010000px;}
.y8b{bottom:383.250000px;}
.y65{bottom:383.610000px;}
.y129{bottom:389.190000px;}
.y170{bottom:392.625000px;}
.yc5{bottom:397.845000px;}
.y35{bottom:400.710000px;}
.y109{bottom:403.785000px;}
.y64{bottom:404.310000px;}
.y128{bottom:410.250000px;}
.y9a{bottom:414.405000px;}
.y34{bottom:421.410000px;}
.y82{bottom:424.650000px;}
.y63{bottom:425.010000px;}
.yec{bottom:425.385000px;}
.y16e{bottom:427.545000px;}
.y127{bottom:430.590000px;}
.y104{bottom:441.975000px;}
.y33{bottom:442.155000px;}
.y78{bottom:445.395000px;}
.y62{bottom:445.755000px;}
.y126{bottom:451.695000px;}
.y97{bottom:462.315000px;}
.y16c{bottom:462.675000px;}
.y32{bottom:462.855000px;}
.y77{bottom:466.095000px;}
.y61{bottom:466.455000px;}
.y14c{bottom:468.435000px;}
.y124{bottom:469.335000px;}
.yc4{bottom:474.015000px;}
.ye9{bottom:477.255000px;}
.y31{bottom:483.555000px;}
.y8f{bottom:486.795000px;}
.y60{bottom:487.155000px;}
.y14b{bottom:489.135000px;}
.yc3{bottom:494.715000px;}
.y16d{bottom:497.595000px;}
.y30{bottom:504.255000px;}
.y125{bottom:504.435000px;}
.y17f{bottom:507.495000px;}
.y5f{bottom:507.855000px;}
.y14a{bottom:509.835000px;}
.y94{bottom:510.015000px;}
.yc2{bottom:515.415000px;}
.y2f{bottom:524.955000px;}
.y7a{bottom:528.015000px;}
.y5e{bottom:528.375000px;}
.ye8{bottom:529.095000px;}
.y149{bottom:530.175000px;}
.y16b{bottom:532.695000px;}
.yc1{bottom:535.755000px;}
.y103{bottom:538.275000px;}
.y123{bottom:539.535000px;}
.y2e{bottom:545.655000px;}
.y79{bottom:548.715000px;}
.y5d{bottom:549.075000px;}
.y148{bottom:551.235000px;}
.yc0{bottom:556.815000px;}
.y102{bottom:558.975000px;}
.y90{bottom:560.955000px;}
.y2d{bottom:566.355000px;}
.y168{bottom:567.795000px;}
.y7d{bottom:569.415000px;}
.y5c{bottom:569.775000px;}
.y147{bottom:571.935000px;}
.y120{bottom:574.455000px;}
.ybf{bottom:577.155000px;}
.y101{bottom:579.675000px;}
.ye7{bottom:580.935000px;}
.y2c{bottom:587.055000px;}
.y87{bottom:590.115000px;}
.y5b{bottom:590.475000px;}
.y146{bottom:592.635000px;}
.ybe{bottom:598.215000px;}
.y100{bottom:600.015000px;}
.y16a{bottom:605.775000px;}
.y2b{bottom:607.755000px;}
.y122{bottom:609.555000px;}
.yaf{bottom:610.815000px;}
.y5a{bottom:611.175000px;}
.y145{bottom:613.335000px;}
.ybd{bottom:618.555000px;}
.yff{bottom:621.075000px;}
.y2a{bottom:628.455000px;}
.yae{bottom:631.515000px;}
.y59{bottom:631.875000px;}
.ye4{bottom:632.775000px;}
.y144{bottom:634.035000px;}
.ybc{bottom:639.615000px;}
.yfe{bottom:641.775000px;}
.y167{bottom:643.755000px;}
.y11f{bottom:644.475000px;}
.y29{bottom:649.155000px;}
.yad{bottom:652.215000px;}
.y58{bottom:652.575000px;}
.y143{bottom:654.735000px;}
.ybb{bottom:660.315000px;}
.yfd{bottom:662.115000px;}
.y28{bottom:669.855000px;}
.yac{bottom:672.915000px;}
.y57{bottom:673.275000px;}
.y142{bottom:675.435000px;}
.y11c{bottom:679.605000px;}
.yba{bottom:681.045000px;}
.y161{bottom:681.765000px;}
.yfc{bottom:682.845000px;}
.ye1{bottom:687.705000px;}
.y27{bottom:690.585000px;}
.yab{bottom:693.645000px;}
.y56{bottom:694.005000px;}
.y141{bottom:696.165000px;}
.yfb{bottom:703.905000px;}
.y26{bottom:711.285000px;}
.y8e{bottom:714.345000px;}
.y43{bottom:714.525000px;}
.y55{bottom:714.705000px;}
.y140{bottom:716.505000px;}
.y11e{bottom:717.585000px;}
.yfa{bottom:720.105000px;}
.y25{bottom:731.985000px;}
.y81{bottom:735.045000px;}
.y54{bottom:735.405000px;}
.y13f{bottom:737.205000px;}
.y24{bottom:752.685000px;}
.y11b{bottom:755.565000px;}
.y80{bottom:755.745000px;}
.y53{bottom:756.105000px;}
.y13e{bottom:757.905000px;}
.y23{bottom:773.385000px;}
.y13c{bottom:775.905000px;}
.yaa{bottom:776.445000px;}
.y52{bottom:776.805000px;}
.y115{bottom:793.725000px;}
.y22{bottom:794.085000px;}
.ya9{bottom:797.145000px;}
.y51{bottom:797.505000px;}
.ye0{bottom:808.845000px;}
.y13d{bottom:811.005000px;}
.y21{bottom:814.785000px;}
.ya8{bottom:817.845000px;}
.y50{bottom:818.205000px;}
.ydf{bottom:829.545000px;}
.y20{bottom:835.125000px;}
.y86{bottom:838.545000px;}
.y4f{bottom:838.905000px;}
.y160{bottom:842.325000px;}
.y13b{bottom:845.925000px;}
.yde{bottom:849.885000px;}
.y1f{bottom:856.185000px;}
.y85{bottom:859.245000px;}
.y4e{bottom:859.605000px;}
.y15f{bottom:863.025000px;}
.ydd{bottom:870.945000px;}
.y1e{bottom:876.885000px;}
.ya7{bottom:879.945000px;}
.y4d{bottom:880.305000px;}
.y138{bottom:881.025000px;}
.y15e{bottom:883.725000px;}
.ydc{bottom:891.645000px;}
.y1d{bottom:897.225000px;}
.y8a{bottom:900.645000px;}
.y4c{bottom:901.005000px;}
.y15d{bottom:904.425000px;}
.ydb{bottom:912.390000px;}
.y13a{bottom:916.170000px;}
.y1c{bottom:918.330000px;}
.y76{bottom:921.390000px;}
.y4b{bottom:921.750000px;}
.y15b{bottom:922.110000px;}
.yda{bottom:933.090000px;}
.y1b{bottom:939.030000px;}
.y75{bottom:942.090000px;}
.y4a{bottom:942.450000px;}
.y137{bottom:951.090000px;}
.yd9{bottom:953.430000px;}
.y15c{bottom:957.210000px;}
.y1a{bottom:959.730000px;}
.y74{bottom:962.790000px;}
.y49{bottom:963.150000px;}
.yd8{bottom:974.130000px;}
.y19{bottom:979.890000px;}
.y8d{bottom:983.490000px;}
.y48{bottom:983.850000px;}
.y136{bottom:986.190000px;}
.yd7{bottom:992.130000px;}
.y7c{bottom:1004.190000px;}
.y47{bottom:1004.550000px;}
.y18{bottom:1018.770000px;}
.y135{bottom:1024.170000px;}
.y7b{bottom:1024.890000px;}
.y46{bottom:1025.250000px;}
.yd6{bottom:1027.230000px;}
.y17{bottom:1042.710000px;}
.y45{bottom:1045.590000px;}
.y73{bottom:1045.950000px;}
.yd{bottom:1056.750000px;}
.yb{bottom:1065.030000px;}
.y11{bottom:1080.635319px;}
.ya{bottom:1081.230000px;}
.y13{bottom:1088.790000px;}
.y9{bottom:1097.610000px;}
.y8{bottom:1113.810000px;}
.y7{bottom:1130.190000px;}
.y6{bottom:1146.420000px;}
.y5{bottom:1162.800000px;}
.y2{bottom:1176.300000px;}
.y4{bottom:1179.000000px;}
.y3{bottom:1195.380000px;}
.y1{bottom:1197.000000px;}
.h9{height:15.648467px;}
.hc{height:16.198500px;}
.hb{height:29.685000px;}
.h7{height:31.952109px;}
.h1b{height:32.385000px;}
.h1f{height:32.398500px;}
.h28{height:32.400000px;}
.h36{height:32.421000px;}
.h2f{height:32.422500px;}
.h2a{height:32.430000px;}
.h1e{height:32.436000px;}
.h6{height:39.247031px;}
.he{height:40.472227px;}
.h4{height:41.027344px;}
.h2{height:42.602344px;}
.h16{height:45.165000px;}
.h19{height:45.178500px;}
.h17{height:45.201000px;}
.h18{height:45.216000px;}
.h15{height:45.345000px;}
.h22{height:49.125000px;}
.h21{height:49.170000px;}
.h23{height:49.305000px;}
.h24{height:49.341000px;}
.h11{height:49.500000px;}
.h38{height:50.273438px;}
.h8{height:50.326875px;}
.h3{height:51.328125px;}
.ha{height:51.381523px;}
.h5{height:58.845000px;}
.h12{height:66.757500px;}
.h33{height:67.318500px;}
.h1a{height:68.961000px;}
.h10{height:70.664062px;}
.hf{height:72.562500px;}
.h13{height:80.464922px;}
.hd{height:84.898125px;}
.h25{height:89.265000px;}
.h26{height:102.405000px;}
.h30{height:102.420000px;}
.h37{height:102.441000px;}
.h2e{height:102.442500px;}
.h2b{height:102.450000px;}
.h1d{height:102.456000px;}
.h2c{height:102.585000px;}
.h1c{height:108.345000px;}
.h29{height:108.360000px;}
.h35{height:108.390000px;}
.h32{height:108.396000px;}
.h20{height:113.940000px;}
.h27{height:141.682500px;}
.h31{height:142.761000px;}
.h14{height:146.730000px;}
.h2d{height:147.276000px;}
.h34{height:153.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2c{width:39.049500px;}
.w1b{width:42.289500px;}
.w21{width:42.649500px;}
.wc{width:43.369500px;}
.w26{width:43.909500px;}
.w16{width:48.949500px;}
.w7{width:49.309500px;}
.w5{width:63.036000px;}
.w31{width:80.625000px;}
.w11{width:80.670000px;}
.w25{width:82.065000px;}
.w20{width:82.785000px;}
.wa{width:84.045000px;}
.w2b{width:84.630000px;}
.wb{width:88.590000px;}
.w12{width:91.249500px;}
.w3{width:103.946873px;}
.we{width:104.760000px;}
.w2e{width:116.820000px;}
.w1d{width:118.260000px;}
.w23{width:118.980000px;}
.w19{width:120.621000px;}
.w1a{width:120.765000px;}
.w28{width:122.220000px;}
.w1c{width:122.601000px;}
.w22{width:123.141000px;}
.w18{width:124.236000px;}
.w2f{width:124.776000px;}
.wd{width:125.481000px;}
.w2d{width:125.841000px;}
.w1e{width:127.656000px;}
.w29{width:130.536000px;}
.w9{width:131.076000px;}
.w27{width:132.681000px;}
.w14{width:145.461000px;}
.w15{width:145.605000px;}
.w30{width:150.675000px;}
.wf{width:152.130000px;}
.w1f{width:153.735000px;}
.w24{width:155.355000px;}
.w10{width:156.615000px;}
.w2a{width:158.415000px;}
.w8{width:158.955000px;}
.w17{width:184.515000px;}
.w6{width:199.830000px;}
.w13{width:262.680000px;}
.w2{width:330.733500px;}
.w4{width:403.980000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.369500px;}
.x5{left:10.798500px;}
.x9{left:15.105000px;}
.xe{left:47.880000px;}
.x4{left:59.221500px;}
.xf{left:61.560000px;}
.x6{left:74.514189px;}
.x10{left:84.960000px;}
.x11{left:97.770000px;}
.x12{left:111.450000px;}
.x13{left:125.310000px;}
.x16{left:126.946500px;}
.x3{left:135.036000px;}
.x14{left:139.170000px;}
.x26{left:143.866500px;}
.xb{left:145.116000px;}
.x15{left:152.130000px;}
.x36{left:167.445000px;}
.x2b{left:170.865000px;}
.x1e{left:171.945000px;}
.x18{left:177.885000px;}
.x27{left:194.445000px;}
.x7{left:199.168689px;}
.x1{left:204.150000px;}
.x22{left:219.645000px;}
.x2c{left:294.915000px;}
.xc{left:297.075000px;}
.x1f{left:298.875000px;}
.x32{left:306.435000px;}
.x19{left:338.475000px;}
.xd{left:345.315000px;}
.x28{left:380.415000px;}
.x20{left:405.075000px;}
.x37{left:412.995000px;}
.xa{left:414.975000px;}
.x2f{left:416.235000px;}
.x33{left:430.095000px;}
.x1a{left:471.000000px;}
.x2{left:475.305000px;}
.x23{left:483.780000px;}
.x8{left:487.380000px;}
.x29{left:506.280000px;}
.x38{left:539.220000px;}
.x2d{left:543.720000px;}
.x30{left:545.520000px;}
.x1b{left:556.680000px;}
.x21{left:558.660000px;}
.x34{left:562.080000px;}
.x2a{left:628.530000px;}
.x24{left:630.870000px;}
.x39{left:691.350000px;}
.x2e{left:698.910000px;}
.x31{left:702.330000px;}
.x1c{left:717.270000px;}
.x35{left:721.950000px;}
.x1d{left:729.150000px;}
.x25{left:787.650000px;}
@media print{
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls4{letter-spacing:-0.670349pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.206959pt;}
.ws9{word-spacing:-64.000000pt;}
.wsc{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:0.626559pt;}
.ws0{word-spacing:374.200747pt;}
._4{margin-left:-5.858560pt;}
._3{margin-left:-4.686720pt;}
._2{margin-left:-1.984000pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.274880pt;}
._10{width:2.286720pt;}
._14{width:3.249280pt;}
._f{width:4.337280pt;}
._e{width:5.376000pt;}
._c{width:7.104000pt;}
._d{width:8.084480pt;}
._6{width:9.216000pt;}
._7{width:10.176000pt;}
._13{width:11.584000pt;}
._15{width:12.480000pt;}
._16{width:14.208000pt;}
._1c{width:15.104213pt;}
._b{width:17.201280pt;}
._11{width:18.112000pt;}
._12{width:19.072000pt;}
._8{width:20.480000pt;}
._a{width:21.466027pt;}
._9{width:22.400000pt;}
._19{width:23.365120pt;}
._1a{width:24.945280pt;}
._1b{width:25.984000pt;}
._22{width:27.007147pt;}
._21{width:28.260907pt;}
._20{width:29.495040pt;}
._1f{width:30.472960pt;}
._1e{width:31.675520pt;}
._26{width:33.024000pt;}
._23{width:34.688000pt;}
._40{width:35.599360pt;}
._17{width:36.736000pt;}
._18{width:38.010027pt;}
._3e{width:43.776000pt;}
._41{width:44.762453pt;}
._30{width:45.994667pt;}
._28{width:47.360000pt;}
._42{width:48.768000pt;}
._24{width:50.304000pt;}
._25{width:51.264000pt;}
._31{width:54.400000pt;}
._27{width:59.776000pt;}
._35{width:60.800000pt;}
._36{width:62.410667pt;}
._2b{width:65.280000pt;}
._39{width:71.488000pt;}
._1d{width:74.801280pt;}
._3c{width:80.064000pt;}
._3d{width:82.560000pt;}
._2a{width:89.664000pt;}
._2d{width:104.512000pt;}
._37{width:107.136000pt;}
._34{width:108.074667pt;}
._3a{width:110.080000pt;}
._2c{width:114.289280pt;}
._3f{width:118.720000pt;}
._2f{width:121.329280pt;}
._33{width:124.529280pt;}
._3b{width:146.240000pt;}
._38{width:168.320000pt;}
._2e{width:200.640000pt;}
._32{width:202.560000pt;}
._5{width:383.783893pt;}
._29{width:752.002133pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:43.790828pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.y10{bottom:-1.760000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.400000pt;}
.y12{bottom:2.960237pt;}
.yd5{bottom:9.120000pt;}
.y134{bottom:9.280000pt;}
.y108{bottom:9.440000pt;}
.yc8{bottom:9.746667pt;}
.yca{bottom:14.066667pt;}
.y14{bottom:14.080000pt;}
.y156{bottom:14.106667pt;}
.ycd{bottom:14.386667pt;}
.yd3{bottom:14.400000pt;}
.y157{bottom:14.426667pt;}
.yf{bottom:15.200000pt;}
.y44{bottom:16.320000pt;}
.y15a{bottom:24.800000pt;}
.y9e{bottom:25.426667pt;}
.y98{bottom:25.440000pt;}
.y9b{bottom:25.466667pt;}
.ya3{bottom:25.586667pt;}
.y95{bottom:25.600000pt;}
.y9f{bottom:25.746667pt;}
.y99{bottom:25.760000pt;}
.y9c{bottom:25.786667pt;}
.ya4{bottom:25.906667pt;}
.y96{bottom:25.920000pt;}
.y107{bottom:27.840000pt;}
.yc7{bottom:28.146667pt;}
.yf3{bottom:28.946667pt;}
.ye5{bottom:28.960000pt;}
.yf0{bottom:29.106667pt;}
.yea{bottom:29.120000pt;}
.yed{bottom:29.146667pt;}
.yf4{bottom:29.266667pt;}
.ye6{bottom:29.280000pt;}
.yf1{bottom:29.426667pt;}
.yeb{bottom:29.440000pt;}
.yee{bottom:29.466667pt;}
.y11a{bottom:37.600000pt;}
.y152{bottom:38.706667pt;}
.y10e{bottom:40.306667pt;}
.y121{bottom:40.320000pt;}
.yd1{bottom:40.346667pt;}
.y139{bottom:40.360000pt;}
.ye{bottom:41.600000pt;}
.y132{bottom:42.586667pt;}
.y169{bottom:42.880000pt;}
.ycc{bottom:43.026667pt;}
.y11d{bottom:43.040000pt;}
.y154{bottom:43.066667pt;}
.y106{bottom:46.240000pt;}
.yc6{bottom:46.586667pt;}
.y15{bottom:47.520000pt;}
.y166{bottom:48.000000pt;}
.yc{bottom:50.400000pt;}
.y119{bottom:56.000000pt;}
.y151{bottom:57.106667pt;}
.y131{bottom:60.986667pt;}
.y105{bottom:64.640000pt;}
.y165{bottom:66.400000pt;}
.ye3{bottom:68.160000pt;}
.y118{bottom:74.400000pt;}
.y150{bottom:75.346667pt;}
.y93{bottom:78.880000pt;}
.y130{bottom:79.386667pt;}
.y164{bottom:84.800000pt;}
.ye2{bottom:86.560000pt;}
.y117{bottom:92.800000pt;}
.y14f{bottom:93.746667pt;}
.y92{bottom:97.280000pt;}
.y12f{bottom:97.786667pt;}
.y17d{bottom:101.440000pt;}
.y72{bottom:101.760000pt;}
.y163{bottom:103.200000pt;}
.yb6{bottom:108.000000pt;}
.y114{bottom:108.640000pt;}
.y116{bottom:111.240000pt;}
.y14e{bottom:112.186667pt;}
.ya6{bottom:113.120000pt;}
.y91{bottom:115.706667pt;}
.yb9{bottom:116.160000pt;}
.y12e{bottom:116.186667pt;}
.y42{bottom:116.640000pt;}
.y17b{bottom:118.080000pt;}
.y159{bottom:119.360000pt;}
.y17c{bottom:119.840000pt;}
.y133{bottom:120.000000pt;}
.y71{bottom:120.160000pt;}
.y162{bottom:121.600000pt;}
.yb5{bottom:126.400000pt;}
.y113{bottom:127.040000pt;}
.yd4{bottom:127.680000pt;}
.yb8{bottom:134.560000pt;}
.y41{bottom:135.040000pt;}
.y17a{bottom:136.480000pt;}
.y84{bottom:138.240000pt;}
.y70{bottom:138.560000pt;}
.yb4{bottom:144.800000pt;}
.y112{bottom:145.440000pt;}
.y158{bottom:150.400000pt;}
.yf9{bottom:150.560000pt;}
.yb7{bottom:152.960000pt;}
.y40{bottom:153.760000pt;}
.y12d{bottom:153.920000pt;}
.y179{bottom:154.880000pt;}
.ya5{bottom:155.680000pt;}
.y83{bottom:156.640000pt;}
.y6f{bottom:156.960000pt;}
.yd0{bottom:158.720000pt;}
.yb3{bottom:163.200000pt;}
.y111{bottom:163.520000pt;}
.yf8{bottom:168.960000pt;}
.y3f{bottom:172.160000pt;}
.y178{bottom:173.280000pt;}
.y7f{bottom:175.040000pt;}
.y6e{bottom:175.360000pt;}
.yb2{bottom:181.600000pt;}
.y110{bottom:181.920000pt;}
.yf7{bottom:187.386667pt;}
.yd2{bottom:189.960000pt;}
.y3e{bottom:190.586667pt;}
.y177{bottom:191.706667pt;}
.y7e{bottom:193.466667pt;}
.y6d{bottom:193.786667pt;}
.y10d{bottom:197.960000pt;}
.ya2{bottom:198.120000pt;}
.yb1{bottom:200.026667pt;}
.yf6{bottom:205.786667pt;}
.y3d{bottom:208.986667pt;}
.y176{bottom:210.106667pt;}
.y89{bottom:211.866667pt;}
.y6c{bottom:212.186667pt;}
.y155{bottom:215.400000pt;}
.yb0{bottom:218.426667pt;}
.ycf{bottom:221.000000pt;}
.yf5{bottom:224.186667pt;}
.y3c{bottom:227.386667pt;}
.y175{bottom:228.506667pt;}
.y10f{bottom:229.160000pt;}
.y88{bottom:230.266667pt;}
.y6b{bottom:230.586667pt;}
.yf2{bottom:240.040000pt;}
.ya1{bottom:240.680000pt;}
.y3b{bottom:245.786667pt;}
.y174{bottom:246.906667pt;}
.y17e{bottom:248.666667pt;}
.y6a{bottom:248.986667pt;}
.y153{bottom:249.160000pt;}
.ycb{bottom:252.200000pt;}
.y10c{bottom:260.200000pt;}
.y3a{bottom:264.186667pt;}
.y173{bottom:264.986667pt;}
.y69{bottom:267.386667pt;}
.y39{bottom:282.586667pt;}
.y14d{bottom:283.080000pt;}
.ya0{bottom:283.240000pt;}
.y172{bottom:283.386667pt;}
.y68{bottom:285.786667pt;}
.yce{bottom:285.960000pt;}
.y12c{bottom:291.066667pt;}
.y10a{bottom:291.400000pt;}
.y38{bottom:300.986667pt;}
.y171{bottom:301.786667pt;}
.y67{bottom:304.186667pt;}
.y12b{bottom:309.466667pt;}
.y16f{bottom:317.800000pt;}
.y37{bottom:319.386667pt;}
.yc9{bottom:319.720000pt;}
.y8c{bottom:322.266667pt;}
.y66{bottom:322.586667pt;}
.y10b{bottom:325.160000pt;}
.y9d{bottom:325.800000pt;}
.y12a{bottom:327.866667pt;}
.yef{bottom:332.040000pt;}
.y36{bottom:337.786667pt;}
.y8b{bottom:340.666667pt;}
.y65{bottom:340.986667pt;}
.y129{bottom:345.946667pt;}
.y170{bottom:349.000000pt;}
.yc5{bottom:353.640000pt;}
.y35{bottom:356.186667pt;}
.y109{bottom:358.920000pt;}
.y64{bottom:359.386667pt;}
.y128{bottom:364.666667pt;}
.y9a{bottom:368.360000pt;}
.y34{bottom:374.586667pt;}
.y82{bottom:377.466667pt;}
.y63{bottom:377.786667pt;}
.yec{bottom:378.120000pt;}
.y16e{bottom:380.040000pt;}
.y127{bottom:382.746667pt;}
.y104{bottom:392.866667pt;}
.y33{bottom:393.026667pt;}
.y78{bottom:395.906667pt;}
.y62{bottom:396.226667pt;}
.y126{bottom:401.506667pt;}
.y97{bottom:410.946667pt;}
.y16c{bottom:411.266667pt;}
.y32{bottom:411.426667pt;}
.y77{bottom:414.306667pt;}
.y61{bottom:414.626667pt;}
.y14c{bottom:416.386667pt;}
.y124{bottom:417.186667pt;}
.yc4{bottom:421.346667pt;}
.ye9{bottom:424.226667pt;}
.y31{bottom:429.826667pt;}
.y8f{bottom:432.706667pt;}
.y60{bottom:433.026667pt;}
.y14b{bottom:434.786667pt;}
.yc3{bottom:439.746667pt;}
.y16d{bottom:442.306667pt;}
.y30{bottom:448.226667pt;}
.y125{bottom:448.386667pt;}
.y17f{bottom:451.106667pt;}
.y5f{bottom:451.426667pt;}
.y14a{bottom:453.186667pt;}
.y94{bottom:453.346667pt;}
.yc2{bottom:458.146667pt;}
.y2f{bottom:466.626667pt;}
.y7a{bottom:469.346667pt;}
.y5e{bottom:469.666667pt;}
.ye8{bottom:470.306667pt;}
.y149{bottom:471.266667pt;}
.y16b{bottom:473.506667pt;}
.yc1{bottom:476.226667pt;}
.y103{bottom:478.466667pt;}
.y123{bottom:479.586667pt;}
.y2e{bottom:485.026667pt;}
.y79{bottom:487.746667pt;}
.y5d{bottom:488.066667pt;}
.y148{bottom:489.986667pt;}
.yc0{bottom:494.946667pt;}
.y102{bottom:496.866667pt;}
.y90{bottom:498.626667pt;}
.y2d{bottom:503.426667pt;}
.y168{bottom:504.706667pt;}
.y7d{bottom:506.146667pt;}
.y5c{bottom:506.466667pt;}
.y147{bottom:508.386667pt;}
.y120{bottom:510.626667pt;}
.ybf{bottom:513.026667pt;}
.y101{bottom:515.266667pt;}
.ye7{bottom:516.386667pt;}
.y2c{bottom:521.826667pt;}
.y87{bottom:524.546667pt;}
.y5b{bottom:524.866667pt;}
.y146{bottom:526.786667pt;}
.ybe{bottom:531.746667pt;}
.y100{bottom:533.346667pt;}
.y16a{bottom:538.466667pt;}
.y2b{bottom:540.226667pt;}
.y122{bottom:541.826667pt;}
.yaf{bottom:542.946667pt;}
.y5a{bottom:543.266667pt;}
.y145{bottom:545.186667pt;}
.ybd{bottom:549.826667pt;}
.yff{bottom:552.066667pt;}
.y2a{bottom:558.626667pt;}
.yae{bottom:561.346667pt;}
.y59{bottom:561.666667pt;}
.ye4{bottom:562.466667pt;}
.y144{bottom:563.586667pt;}
.ybc{bottom:568.546667pt;}
.yfe{bottom:570.466667pt;}
.y167{bottom:572.226667pt;}
.y11f{bottom:572.866667pt;}
.y29{bottom:577.026667pt;}
.yad{bottom:579.746667pt;}
.y58{bottom:580.066667pt;}
.y143{bottom:581.986667pt;}
.ybb{bottom:586.946667pt;}
.yfd{bottom:588.546667pt;}
.y28{bottom:595.426667pt;}
.yac{bottom:598.146667pt;}
.y57{bottom:598.466667pt;}
.y142{bottom:600.386667pt;}
.y11c{bottom:604.093333pt;}
.yba{bottom:605.373333pt;}
.y161{bottom:606.013333pt;}
.yfc{bottom:606.973333pt;}
.ye1{bottom:611.293333pt;}
.y27{bottom:613.853333pt;}
.yab{bottom:616.573333pt;}
.y56{bottom:616.893333pt;}
.y141{bottom:618.813333pt;}
.yfb{bottom:625.693333pt;}
.y26{bottom:632.253333pt;}
.y8e{bottom:634.973333pt;}
.y43{bottom:635.133333pt;}
.y55{bottom:635.293333pt;}
.y140{bottom:636.893333pt;}
.y11e{bottom:637.853333pt;}
.yfa{bottom:640.093333pt;}
.y25{bottom:650.653333pt;}
.y81{bottom:653.373333pt;}
.y54{bottom:653.693333pt;}
.y13f{bottom:655.293333pt;}
.y24{bottom:669.053333pt;}
.y11b{bottom:671.613333pt;}
.y80{bottom:671.773333pt;}
.y53{bottom:672.093333pt;}
.y13e{bottom:673.693333pt;}
.y23{bottom:687.453333pt;}
.y13c{bottom:689.693333pt;}
.yaa{bottom:690.173333pt;}
.y52{bottom:690.493333pt;}
.y115{bottom:705.533333pt;}
.y22{bottom:705.853333pt;}
.ya9{bottom:708.573333pt;}
.y51{bottom:708.893333pt;}
.ye0{bottom:718.973333pt;}
.y13d{bottom:720.893333pt;}
.y21{bottom:724.253333pt;}
.ya8{bottom:726.973333pt;}
.y50{bottom:727.293333pt;}
.ydf{bottom:737.373333pt;}
.y20{bottom:742.333333pt;}
.y86{bottom:745.373333pt;}
.y4f{bottom:745.693333pt;}
.y160{bottom:748.733333pt;}
.y13b{bottom:751.933333pt;}
.yde{bottom:755.453333pt;}
.y1f{bottom:761.053333pt;}
.y85{bottom:763.773333pt;}
.y4e{bottom:764.093333pt;}
.y15f{bottom:767.133333pt;}
.ydd{bottom:774.173333pt;}
.y1e{bottom:779.453333pt;}
.ya7{bottom:782.173333pt;}
.y4d{bottom:782.493333pt;}
.y138{bottom:783.133333pt;}
.y15e{bottom:785.533333pt;}
.ydc{bottom:792.573333pt;}
.y1d{bottom:797.533333pt;}
.y8a{bottom:800.573333pt;}
.y4c{bottom:800.893333pt;}
.y15d{bottom:803.933333pt;}
.ydb{bottom:811.013333pt;}
.y13a{bottom:814.373333pt;}
.y1c{bottom:816.293333pt;}
.y76{bottom:819.013333pt;}
.y4b{bottom:819.333333pt;}
.y15b{bottom:819.653333pt;}
.yda{bottom:829.413333pt;}
.y1b{bottom:834.693333pt;}
.y75{bottom:837.413333pt;}
.y4a{bottom:837.733333pt;}
.y137{bottom:845.413333pt;}
.yd9{bottom:847.493333pt;}
.y15c{bottom:850.853333pt;}
.y1a{bottom:853.093333pt;}
.y74{bottom:855.813333pt;}
.y49{bottom:856.133333pt;}
.yd8{bottom:865.893333pt;}
.y19{bottom:871.013333pt;}
.y8d{bottom:874.213333pt;}
.y48{bottom:874.533333pt;}
.y136{bottom:876.613333pt;}
.yd7{bottom:881.893333pt;}
.y7c{bottom:892.613333pt;}
.y47{bottom:892.933333pt;}
.y18{bottom:905.573333pt;}
.y135{bottom:910.373333pt;}
.y7b{bottom:911.013333pt;}
.y46{bottom:911.333333pt;}
.yd6{bottom:913.093333pt;}
.y17{bottom:926.853333pt;}
.y45{bottom:929.413333pt;}
.y73{bottom:929.733333pt;}
.yd{bottom:939.333333pt;}
.yb{bottom:946.693333pt;}
.y11{bottom:960.564728pt;}
.ya{bottom:961.093333pt;}
.y13{bottom:967.813333pt;}
.y9{bottom:975.653333pt;}
.y8{bottom:990.053333pt;}
.y7{bottom:1004.613333pt;}
.y6{bottom:1019.040000pt;}
.y5{bottom:1033.600000pt;}
.y2{bottom:1045.600000pt;}
.y4{bottom:1048.000000pt;}
.y3{bottom:1062.560000pt;}
.y1{bottom:1064.000000pt;}
.h9{height:13.909749pt;}
.hc{height:14.398667pt;}
.hb{height:26.386667pt;}
.h7{height:28.401875pt;}
.h1b{height:28.786667pt;}
.h1f{height:28.798667pt;}
.h28{height:28.800000pt;}
.h36{height:28.818667pt;}
.h2f{height:28.820000pt;}
.h2a{height:28.826667pt;}
.h1e{height:28.832000pt;}
.h6{height:34.886250pt;}
.he{height:35.975313pt;}
.h4{height:36.468750pt;}
.h2{height:37.868750pt;}
.h16{height:40.146667pt;}
.h19{height:40.158667pt;}
.h17{height:40.178667pt;}
.h18{height:40.192000pt;}
.h15{height:40.306667pt;}
.h22{height:43.666667pt;}
.h21{height:43.706667pt;}
.h23{height:43.826667pt;}
.h24{height:43.858667pt;}
.h11{height:44.000000pt;}
.h38{height:44.687500pt;}
.h8{height:44.735000pt;}
.h3{height:45.625000pt;}
.ha{height:45.672465pt;}
.h5{height:52.306667pt;}
.h12{height:59.340000pt;}
.h33{height:59.838667pt;}
.h1a{height:61.298667pt;}
.h10{height:62.812500pt;}
.hf{height:64.500000pt;}
.h13{height:71.524375pt;}
.hd{height:75.465000pt;}
.h25{height:79.346667pt;}
.h26{height:91.026667pt;}
.h30{height:91.040000pt;}
.h37{height:91.058667pt;}
.h2e{height:91.060000pt;}
.h2b{height:91.066667pt;}
.h1d{height:91.072000pt;}
.h2c{height:91.186667pt;}
.h1c{height:96.306667pt;}
.h29{height:96.320000pt;}
.h35{height:96.346667pt;}
.h32{height:96.352000pt;}
.h20{height:101.280000pt;}
.h27{height:125.940000pt;}
.h31{height:126.898667pt;}
.h14{height:130.426667pt;}
.h2d{height:130.912000pt;}
.h34{height:136.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2c{width:34.710667pt;}
.w1b{width:37.590667pt;}
.w21{width:37.910667pt;}
.wc{width:38.550667pt;}
.w26{width:39.030667pt;}
.w16{width:43.510667pt;}
.w7{width:43.830667pt;}
.w5{width:56.032000pt;}
.w31{width:71.666667pt;}
.w11{width:71.706667pt;}
.w25{width:72.946667pt;}
.w20{width:73.586667pt;}
.wa{width:74.706667pt;}
.w2b{width:75.226667pt;}
.wb{width:78.746667pt;}
.w12{width:81.110667pt;}
.w3{width:92.397221pt;}
.we{width:93.120000pt;}
.w2e{width:103.840000pt;}
.w1d{width:105.120000pt;}
.w23{width:105.760000pt;}
.w19{width:107.218667pt;}
.w1a{width:107.346667pt;}
.w28{width:108.640000pt;}
.w1c{width:108.978667pt;}
.w22{width:109.458667pt;}
.w18{width:110.432000pt;}
.w2f{width:110.912000pt;}
.wd{width:111.538667pt;}
.w2d{width:111.858667pt;}
.w1e{width:113.472000pt;}
.w29{width:116.032000pt;}
.w9{width:116.512000pt;}
.w27{width:117.938667pt;}
.w14{width:129.298667pt;}
.w15{width:129.426667pt;}
.w30{width:133.933333pt;}
.wf{width:135.226667pt;}
.w1f{width:136.653333pt;}
.w24{width:138.093333pt;}
.w10{width:139.213333pt;}
.w2a{width:140.813333pt;}
.w8{width:141.293333pt;}
.w17{width:164.013333pt;}
.w6{width:177.626667pt;}
.w13{width:233.493333pt;}
.w2{width:293.985333pt;}
.w4{width:359.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.550667pt;}
.x5{left:9.598667pt;}
.x9{left:13.426667pt;}
.xe{left:42.560000pt;}
.x4{left:52.641333pt;}
.xf{left:54.720000pt;}
.x6{left:66.234834pt;}
.x10{left:75.520000pt;}
.x11{left:86.906667pt;}
.x12{left:99.066667pt;}
.x13{left:111.386667pt;}
.x16{left:112.841333pt;}
.x3{left:120.032000pt;}
.x14{left:123.706667pt;}
.x26{left:127.881333pt;}
.xb{left:128.992000pt;}
.x15{left:135.226667pt;}
.x36{left:148.840000pt;}
.x2b{left:151.880000pt;}
.x1e{left:152.840000pt;}
.x18{left:158.120000pt;}
.x27{left:172.840000pt;}
.x7{left:177.038834pt;}
.x1{left:181.466667pt;}
.x22{left:195.240000pt;}
.x2c{left:262.146667pt;}
.xc{left:264.066667pt;}
.x1f{left:265.666667pt;}
.x32{left:272.386667pt;}
.x19{left:300.866667pt;}
.xd{left:306.946667pt;}
.x28{left:338.146667pt;}
.x20{left:360.066667pt;}
.x37{left:367.106667pt;}
.xa{left:368.866667pt;}
.x2f{left:369.986667pt;}
.x33{left:382.306667pt;}
.x1a{left:418.666667pt;}
.x2{left:422.493333pt;}
.x23{left:430.026667pt;}
.x8{left:433.226667pt;}
.x29{left:450.026667pt;}
.x38{left:479.306667pt;}
.x2d{left:483.306667pt;}
.x30{left:484.906667pt;}
.x1b{left:494.826667pt;}
.x21{left:496.586667pt;}
.x34{left:499.626667pt;}
.x2a{left:558.693333pt;}
.x24{left:560.773333pt;}
.x39{left:614.533333pt;}
.x2e{left:621.253333pt;}
.x31{left:624.293333pt;}
.x1c{left:637.573333pt;}
.x35{left:641.733333pt;}
.x1d{left:648.133333pt;}
.x25{left:700.133333pt;}
}




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