
    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_37cc84c34440ddea7b0af120.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6b1703c72a82ea5348448bc7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f31d6a4c7cab31ada9795a5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8a1dee581bbe398dc52f6fec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_97a53291f3330b31fd3e1987.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dcd0f5bfdbcca3e5db3376ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_383942096bd199c7d230ae68.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.023040px;}
.ls5{letter-spacing:0.034560px;}
.ls8{letter-spacing:0.126000px;}
.lsa{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.504000px;}
.lse{letter-spacing:0.540000px;}
.ls1{letter-spacing:5.940000px;}
.lsd{letter-spacing:25.308000px;}
.ls9{letter-spacing:52.668000px;}
.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:-19.474560px;}
.ws5{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.431360px;}
.ws2{word-spacing:-16.560000px;}
.ws7{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.626000px;}
.ws0{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.140000px;}
.ws6{word-spacing:-12.888000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-2.243040px;}
._1{margin-left:-1.109520px;}
._0{width:1.465680px;}
._b{width:3.240000px;}
._c{width:4.271040px;}
._8{width:5.400000px;}
._d{width:6.420960px;}
._7{width:7.859520px;}
._6{width:9.018000px;}
._e{width:10.206000px;}
._14{width:11.660160px;}
._10{width:15.120000px;}
._f{width:16.524000px;}
._13{width:17.725200px;}
._11{width:19.278000px;}
._18{width:20.620320px;}
._4{width:22.464000px;}
._3{width:23.706000px;}
._5{width:25.031520px;}
._9{width:26.568000px;}
._1e{width:27.569520px;}
._19{width:28.782000px;}
._15{width:30.510000px;}
._1a{width:31.914000px;}
._1b{width:33.048000px;}
._a{width:34.506000px;}
._1d{width:35.607840px;}
._31{width:36.986880px;}
._30{width:38.016000px;}
._1c{width:43.308000px;}
._17{width:44.820000px;}
._28{width:47.163360px;}
._20{width:48.816000px;}
._1f{width:51.246000px;}
._33{width:53.676000px;}
._2c{width:60.696000px;}
._2b{width:65.664000px;}
._2a{width:67.050000px;}
._25{width:69.390000px;}
._16{width:71.172000px;}
._27{width:104.975520px;}
._23{width:106.140000px;}
._2e{width:204.780000px;}
._32{width:217.296000px;}
._21{width:226.260000px;}
._22{width:227.567040px;}
._26{width:238.680000px;}
._2d{width:347.004000px;}
._2f{width:420.390000px;}
._24{width:948.672000px;}
._29{width:1037.124000px;}
._2{width:2903.467200px;}
.fc5{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc4{color:rgb(0,29,53);}
.fc2{color:rgb(0,176,240);}
.fc3{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs4{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.y39{bottom:-16.275000px;}
.y3c{bottom:-7.845000px;}
.y46{bottom:-4.290000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.960000px;}
.y2{bottom:5.040000px;}
.y4{bottom:6.120000px;}
.y4c{bottom:6.990000px;}
.yfd{bottom:9.720000px;}
.y100{bottom:9.900000px;}
.y111{bottom:10.065000px;}
.y11c{bottom:10.080000px;}
.y108{bottom:10.260000px;}
.y156{bottom:11.160000px;}
.y11f{bottom:11.880000px;}
.y37{bottom:12.345000px;}
.y147{bottom:14.385000px;}
.y122{bottom:14.760000px;}
.y14c{bottom:19.065000px;}
.y159{bottom:20.160000px;}
.y8{bottom:22.500000px;}
.yff{bottom:27.720000px;}
.y110{bottom:27.885000px;}
.y12a{bottom:27.900000px;}
.y148{bottom:27.930000px;}
.y14d{bottom:28.065000px;}
.y107{bottom:28.080000px;}
.y11b{bottom:28.110000px;}
.y155{bottom:28.980000px;}
.y36{bottom:31.245000px;}
.y151{bottom:32.040000px;}
.y121{bottom:32.580000px;}
.y146{bottom:36.930000px;}
.y158{bottom:38.010000px;}
.y7{bottom:41.040000px;}
.y14b{bottom:41.385000px;}
.y129{bottom:45.720000px;}
.y10f{bottom:45.885000px;}
.y104{bottom:45.900000px;}
.y11a{bottom:45.930000px;}
.y15f{bottom:50.040000px;}
.y106{bottom:50.400000px;}
.y154{bottom:51.330000px;}
.y15c{bottom:54.720000px;}
.y157{bottom:55.830000px;}
.y6{bottom:56.880000px;}
.y10c{bottom:59.205000px;}
.y145{bottom:59.250000px;}
.y34{bottom:60.585000px;}
.y162{bottom:63.585000px;}
.y14a{bottom:63.705000px;}
.y128{bottom:63.720000px;}
.y119{bottom:63.750000px;}
.y10e{bottom:68.205000px;}
.y103{bottom:68.220000px;}
.y15e{bottom:72.405000px;}
.y105{bottom:72.720000px;}
.y43{bottom:73.155000px;}
.y153{bottom:73.650000px;}
.y15b{bottom:77.040000px;}
.y161{bottom:81.405000px;}
.y127{bottom:81.540000px;}
.y10b{bottom:81.570000px;}
.y88{bottom:83.520000px;}
.y120{bottom:86.040000px;}
.y10d{bottom:86.070000px;}
.ye2{bottom:86.940000px;}
.y1f{bottom:88.920000px;}
.y102{bottom:90.540000px;}
.y42{bottom:92.955000px;}
.y15d{bottom:94.905000px;}
.y1ef{bottom:96.480000px;}
.y2d{bottom:96.840000px;}
.y1af{bottom:97.200000px;}
.y18a{bottom:98.100000px;}
.y138{bottom:99.360000px;}
.y118{bottom:99.390000px;}
.y160{bottom:99.405000px;}
.y14f{bottom:99.570000px;}
.yb6{bottom:100.260000px;}
.y1dc{bottom:100.800000px;}
.y87{bottom:101.340000px;}
.y10a{bottom:103.890000px;}
.ye1{bottom:104.940000px;}
.y1e{bottom:106.740000px;}
.y115{bottom:108.390000px;}
.y125{bottom:112.710000px;}
.y41{bottom:112.935000px;}
.y2c{bottom:114.660000px;}
.y1ae{bottom:115.020000px;}
.y189{bottom:115.920000px;}
.y1ee{bottom:117.000000px;}
.y13e{bottom:117.030000px;}
.y126{bottom:117.210000px;}
.y137{bottom:117.225000px;}
.y117{bottom:117.390000px;}
.yb5{bottom:118.080000px;}
.y1db{bottom:118.620000px;}
.y86{bottom:119.160000px;}
.y1d{bottom:124.560000px;}
.ye0{bottom:128.520000px;}
.y114{bottom:130.710000px;}
.y2b{bottom:132.480000px;}
.y40{bottom:132.735000px;}
.y1ad{bottom:132.840000px;}
.y188{bottom:133.920000px;}
.y124{bottom:135.030000px;}
.y116{bottom:135.210000px;}
.y136{bottom:135.225000px;}
.yb4{bottom:135.900000px;}
.y11e{bottom:136.080000px;}
.y1da{bottom:136.440000px;}
.y150{bottom:136.800000px;}
.y85{bottom:136.980000px;}
.y13d{bottom:139.350000px;}
.y1c{bottom:142.560000px;}
.y1ed{bottom:144.000000px;}
.y2f{bottom:144.870000px;}
.y2a{bottom:150.480000px;}
.y1ac{bottom:150.840000px;}
.y187{bottom:151.740000px;}
.y3f{bottom:152.535000px;}
.y141{bottom:152.850000px;}
.y130{bottom:152.865000px;}
.y113{bottom:153.030000px;}
.y135{bottom:153.045000px;}
.yb3{bottom:153.900000px;}
.y1d9{bottom:154.260000px;}
.y84{bottom:154.980000px;}
.y1b{bottom:160.380000px;}
.y13c{bottom:161.850000px;}
.y14e{bottom:164.340000px;}
.y11d{bottom:165.780000px;}
.y29{bottom:168.300000px;}
.y1ab{bottom:168.660000px;}
.y186{bottom:169.560000px;}
.y1ec{bottom:170.820000px;}
.y140{bottom:170.850000px;}
.y134{bottom:170.865000px;}
.yb2{bottom:171.720000px;}
.y1d8{bottom:172.080000px;}
.y3e{bottom:172.335000px;}
.y83{bottom:172.800000px;}
.y12f{bottom:175.185000px;}
.y1a{bottom:178.200000px;}
.y13b{bottom:184.170000px;}
.y1aa{bottom:186.480000px;}
.y185{bottom:187.380000px;}
.y13f{bottom:188.670000px;}
.y133{bottom:188.685000px;}
.yb1{bottom:189.540000px;}
.y1d7{bottom:189.900000px;}
.y82{bottom:190.620000px;}
.y112{bottom:193.320000px;}
.y28{bottom:195.120000px;}
.y19{bottom:196.020000px;}
.y12e{bottom:197.505000px;}
.y1eb{bottom:197.640000px;}
.y1a9{bottom:204.300000px;}
.y184{bottom:205.200000px;}
.y13a{bottom:206.490000px;}
.y132{bottom:206.505000px;}
.yb0{bottom:207.390000px;}
.y1d6{bottom:207.930000px;}
.y27{bottom:212.970000px;}
.y81{bottom:217.470000px;}
.y12d{bottom:220.005000px;}
.y1a8{bottom:222.150000px;}
.y18{bottom:222.870000px;}
.y1ea{bottom:224.490000px;}
.y131{bottom:224.505000px;}
.y183{bottom:225.210000px;}
.y1d5{bottom:225.750000px;}
.y26{bottom:230.790000px;}
.yaf{bottom:234.210000px;}
.y80{bottom:235.290000px;}
.y1a7{bottom:240.150000px;}
.y17{bottom:240.690000px;}
.y12c{bottom:242.325000px;}
.y1d4{bottom:243.570000px;}
.y25{bottom:248.610000px;}
.y1e9{bottom:251.310000px;}
.yae{bottom:252.030000px;}
.y7f{bottom:253.110000px;}
.y182{bottom:257.970000px;}
.y16{bottom:258.690000px;}
.y1d3{bottom:261.390000px;}
.y24{bottom:266.610000px;}
.yad{bottom:270.030000px;}
.y7e{bottom:271.110000px;}
.y181{bottom:275.790000px;}
.y15{bottom:276.510000px;}
.y1e8{bottom:278.310000px;}
.y1d2{bottom:279.210000px;}
.y23{bottom:284.430000px;}
.yac{bottom:287.850000px;}
.y7d{bottom:288.930000px;}
.y180{bottom:293.610000px;}
.y14{bottom:294.330000px;}
.y1d1{bottom:297.030000px;}
.y22{bottom:302.250000px;}
.y1e7{bottom:305.130000px;}
.yab{bottom:305.670000px;}
.y7c{bottom:306.750000px;}
.y17f{bottom:311.430000px;}
.y13{bottom:312.150000px;}
.y1a6{bottom:313.410000px;}
.y1d0{bottom:315.030000px;}
.y21{bottom:320.070000px;}
.yaa{bottom:323.490000px;}
.y7b{bottom:324.570000px;}
.y17e{bottom:329.250000px;}
.y12{bottom:331.950000px;}
.y1cf{bottom:332.850000px;}
.y149{bottom:334.845000px;}
.y20{bottom:337.890000px;}
.ya9{bottom:341.310000px;}
.y7a{bottom:342.390000px;}
.y1a5{bottom:346.350000px;}
.y17d{bottom:347.250000px;}
.y1ce{bottom:350.670000px;}
.y1e6{bottom:358.770000px;}
.ya8{bottom:359.310000px;}
.y79{bottom:360.210000px;}
.y109{bottom:363.825000px;}
.y1a4{bottom:364.170000px;}
.y17c{bottom:365.070000px;}
.y11{bottom:367.590000px;}
.y1cd{bottom:368.490000px;}
.ydf{bottom:372.630000px;}
.ya7{bottom:377.130000px;}
.y78{bottom:378.210000px;}
.y1a3{bottom:381.990000px;}
.y17b{bottom:382.890000px;}
.y3d{bottom:384.840000px;}
.y1e5{bottom:385.590000px;}
.y1cc{bottom:386.310000px;}
.ya6{bottom:394.950000px;}
.y77{bottom:396.030000px;}
.yde{bottom:399.090000px;}
.y1a2{bottom:399.810000px;}
.y17a{bottom:400.710000px;}
.y1cb{bottom:404.310000px;}
.y45{bottom:409.350000px;}
.y1e4{bottom:412.410000px;}
.y76{bottom:413.850000px;}
.y144{bottom:416.025000px;}
.y1a1{bottom:417.630000px;}
.y179{bottom:418.530000px;}
.ya5{bottom:421.770000px;}
.y1ca{bottom:422.130000px;}
.yd5{bottom:426.270000px;}
.y75{bottom:431.670000px;}
.y1a0{bottom:435.450000px;}
.y178{bottom:436.530000px;}
.y44{bottom:438.150000px;}
.y1e3{bottom:439.410000px;}
.ya4{bottom:439.590000px;}
.y1c9{bottom:439.950000px;}
.yd4{bottom:444.135000px;}
.ydd{bottom:453.135000px;}
.y19f{bottom:453.495000px;}
.y177{bottom:454.395000px;}
.ya3{bottom:457.455000px;}
.y1c8{bottom:457.815000px;}
.y74{bottom:458.535000px;}
.yd3{bottom:461.955000px;}
.y1e2{bottom:466.275000px;}
.ydc{bottom:470.955000px;}
.y19e{bottom:471.315000px;}
.y176{bottom:472.215000px;}
.ya2{bottom:475.455000px;}
.y1c7{bottom:475.635000px;}
.y73{bottom:476.535000px;}
.yd2{bottom:479.955000px;}
.y101{bottom:485.175000px;}
.ydb{bottom:488.955000px;}
.y19d{bottom:489.135000px;}
.y175{bottom:490.035000px;}
.y1e1{bottom:493.095000px;}
.ya1{bottom:493.275000px;}
.y1c6{bottom:493.455000px;}
.y72{bottom:494.355000px;}
.yd1{bottom:497.775000px;}
.yda{bottom:506.775000px;}
.y19c{bottom:506.955000px;}
.y174{bottom:507.855000px;}
.ya0{bottom:511.095000px;}
.y1c5{bottom:511.455000px;}
.y71{bottom:512.175000px;}
.y143{bottom:515.055000px;}
.yd0{bottom:515.595000px;}
.y1e0{bottom:519.915000px;}
.y19b{bottom:524.775000px;}
.y173{bottom:525.675000px;}
.y9f{bottom:528.915000px;}
.y1c4{bottom:529.275000px;}
.y70{bottom:529.995000px;}
.ycf{bottom:533.415000px;}
.yd9{bottom:533.595000px;}
.y142{bottom:542.775000px;}
.y172{bottom:543.675000px;}
.y9e{bottom:546.735000px;}
.y1c3{bottom:547.095000px;}
.y6f{bottom:547.815000px;}
.yd8{bottom:551.415000px;}
.yce{bottom:560.235000px;}
.y19a{bottom:560.595000px;}
.y9d{bottom:564.735000px;}
.y1c2{bottom:564.915000px;}
.y6e{bottom:565.635000px;}
.yd7{bottom:569.235000px;}
.y139{bottom:570.315000px;}
.y171{bottom:570.495000px;}
.y1df{bottom:573.735000px;}
.ycd{bottom:578.055000px;}
.y199{bottom:578.415000px;}
.y1c1{bottom:582.735000px;}
.y6d{bottom:583.635000px;}
.yd6{bottom:587.055000px;}
.y170{bottom:588.315000px;}
.y9c{bottom:591.555000px;}
.y10{bottom:592.995000px;}
.yfe{bottom:593.175000px;}
.y1de{bottom:600.555000px;}
.y1c0{bottom:600.735000px;}
.y6c{bottom:601.455000px;}
.ycc{bottom:601.815000px;}
.y198{bottom:605.235000px;}
.y16f{bottom:606.135000px;}
.y9b{bottom:609.375000px;}
.y1bf{bottom:618.555000px;}
.y6b{bottom:619.275000px;}
.y197{bottom:623.055000px;}
.y16e{bottom:623.955000px;}
.y9a{bottom:627.195000px;}
.y1dd{bottom:627.375000px;}
.yf{bottom:634.215000px;}
.y1be{bottom:636.375000px;}
.y6a{bottom:637.095000px;}
.yfc{bottom:638.715000px;}
.y196{bottom:640.875000px;}
.y16d{bottom:641.955000px;}
.y99{bottom:645.015000px;}
.ye{bottom:649.875000px;}
.y1bd{bottom:654.195000px;}
.y3b{bottom:656.280000px;}
.y69{bottom:656.895000px;}
.y195{bottom:658.875000px;}
.y16c{bottom:659.775000px;}
.y98{bottom:662.835000px;}
.yfb{bottom:671.835000px;}
.y1bc{bottom:672.015000px;}
.y3a{bottom:676.335000px;}
.y194{bottom:676.725000px;}
.y16b{bottom:677.625000px;}
.y97{bottom:680.865000px;}
.yfa{bottom:689.505000px;}
.y68{bottom:689.865000px;}
.y193{bottom:694.545000px;}
.y16a{bottom:695.445000px;}
.y96{bottom:698.685000px;}
.yd{bottom:706.065000px;}
.y67{bottom:707.685000px;}
.y1bb{bottom:707.865000px;}
.y33{bottom:711.720000px;}
.y192{bottom:712.365000px;}
.y38{bottom:712.980000px;}
.y169{bottom:713.265000px;}
.y95{bottom:716.505000px;}
.yf0{bottom:716.685000px;}
.y66{bottom:725.505000px;}
.y1ba{bottom:725.685000px;}
.y191{bottom:730.185000px;}
.y168{bottom:731.085000px;}
.yf9{bottom:734.325000px;}
.yef{bottom:734.505000px;}
.y65{bottom:743.325000px;}
.y1b9{bottom:743.505000px;}
.y190{bottom:748.185000px;}
.y167{bottom:749.085000px;}
.yf8{bottom:752.145000px;}
.yee{bottom:752.325000px;}
.y64{bottom:761.145000px;}
.y1b8{bottom:761.325000px;}
.y35{bottom:761.865000px;}
.y18f{bottom:766.005000px;}
.y166{bottom:766.905000px;}
.yed{bottom:770.145000px;}
.y63{bottom:779.145000px;}
.y18e{bottom:783.825000px;}
.y165{bottom:786.705000px;}
.yf7{bottom:787.965000px;}
.yec{bottom:788.145000px;}
.yc{bottom:791.745000px;}
.y12b{bottom:794.265000px;}
.y62{bottom:796.965000px;}
.y1b7{bottom:797.145000px;}
.yeb{bottom:805.965000px;}
.y18d{bottom:810.645000px;}
.y32{bottom:813.885000px;}
.y61{bottom:814.785000px;}
.y1b6{bottom:814.965000px;}
.y164{bottom:819.465000px;}
.yea{bottom:823.785000px;}
.y18c{bottom:828.465000px;}
.y60{bottom:832.605000px;}
.y1b5{bottom:832.785000px;}
.y163{bottom:837.285000px;}
.ye9{bottom:841.605000px;}
.y18b{bottom:846.285000px;}
.y94{bottom:850.425000px;}
.y1b4{bottom:850.605000px;}
.y5f{bottom:859.425000px;}
.y93{bottom:868.245000px;}
.y1b3{bottom:868.425000px;}
.y31{bottom:872.385000px;}
.y5e{bottom:877.245000px;}
.ycb{bottom:877.965000px;}
.y92{bottom:886.245000px;}
.y5d{bottom:895.245000px;}
.y30{bottom:897.225000px;}
.y91{bottom:904.065000px;}
.y1b2{bottom:904.245000px;}
.yc6{bottom:905.145000px;}
.y5c{bottom:913.110000px;}
.y90{bottom:921.930000px;}
.y1b1{bottom:922.110000px;}
.yc5{bottom:923.010000px;}
.y5b{bottom:930.930000px;}
.yb{bottom:934.350000px;}
.y8f{bottom:939.750000px;}
.y1b0{bottom:939.930000px;}
.yc4{bottom:940.830000px;}
.y2e{bottom:941.400000px;}
.y5a{bottom:948.750000px;}
.y4b{bottom:955.800000px;}
.y8e{bottom:957.570000px;}
.ye8{bottom:957.750000px;}
.yc3{bottom:958.650000px;}
.y59{bottom:966.570000px;}
.y8d{bottom:975.570000px;}
.yc2{bottom:976.470000px;}
.y58{bottom:984.570000px;}
.y4a{bottom:989.430000px;}
.yf6{bottom:993.390000px;}
.ye7{bottom:993.570000px;}
.y15a{bottom:994.110000px;}
.yca{bottom:994.470000px;}
.y57{bottom:1002.390000px;}
.yc1{bottom:1003.470000px;}
.yf5{bottom:1011.210000px;}
.ye6{bottom:1011.390000px;}
.yc9{bottom:1012.290000px;}
.y49{bottom:1015.710000px;}
.y56{bottom:1020.210000px;}
.yc0{bottom:1021.290000px;}
.yf4{bottom:1029.030000px;}
.ye5{bottom:1029.210000px;}
.yc8{bottom:1030.110000px;}
.y55{bottom:1038.030000px;}
.ybf{bottom:1039.110000px;}
.y48{bottom:1041.990000px;}
.yf3{bottom:1046.850000px;}
.ye4{bottom:1047.030000px;}
.yc7{bottom:1049.910000px;}
.y123{bottom:1054.050000px;}
.y54{bottom:1055.850000px;}
.ybe{bottom:1056.930000px;}
.ye3{bottom:1064.850000px;}
.y47{bottom:1068.450000px;}
.y8c{bottom:1073.670000px;}
.ybd{bottom:1074.750000px;}
.y53{bottom:1082.670000px;}
.y8b{bottom:1091.670000px;}
.ybc{bottom:1092.750000px;}
.y52{bottom:1100.670000px;}
.ya{bottom:1107.690000px;}
.y8a{bottom:1109.490000px;}
.ybb{bottom:1110.570000px;}
.y152{bottom:1110.930000px;}
.y51{bottom:1118.490000px;}
.y89{bottom:1127.310000px;}
.yba{bottom:1128.390000px;}
.y50{bottom:1136.310000px;}
.yf2{bottom:1145.130000px;}
.yb9{bottom:1146.240000px;}
.y4f{bottom:1154.160000px;}
.yf1{bottom:1162.980000px;}
.yb8{bottom:1164.060000px;}
.y4e{bottom:1171.980000px;}
.yb7{bottom:1183.860000px;}
.y4d{bottom:1189.800000px;}
.y1{bottom:1195.560000px;}
.y5{bottom:1215.360000px;}
.y3{bottom:1224.180000px;}
.h2{height:17.460000px;}
.h4{height:21.780000px;}
.h1b{height:26.805000px;}
.h28{height:26.815500px;}
.h20{height:26.820000px;}
.h21{height:28.975500px;}
.h14{height:44.100000px;}
.h1c{height:44.805000px;}
.h1a{height:48.410156px;}
.h3{height:48.616875px;}
.h29{height:49.135500px;}
.h22{height:49.315500px;}
.h5{height:51.519375px;}
.h7{height:52.971680px;}
.ha{height:52.998047px;}
.h9{height:53.709961px;}
.hc{height:54.421875px;}
.h2d{height:55.503491px;}
.h8{height:55.825312px;}
.h16{height:58.621992px;}
.h11{height:58.651172px;}
.h17{height:58.763250px;}
.h18{height:60.226875px;}
.h6{height:65.010937px;}
.h13{height:65.152266px;}
.hf{height:66.757500px;}
.h12{height:72.900000px;}
.h10{height:74.160000px;}
.hb{height:78.367500px;}
.h27{height:80.445000px;}
.he{height:84.898125px;}
.h2a{height:90.382500px;}
.h26{height:98.301000px;}
.h1d{height:107.265000px;}
.h2b{height:116.100000px;}
.h1e{height:120.621000px;}
.h19{height:132.480000px;}
.h2c{height:133.956000px;}
.h23{height:147.262500px;}
.hd{height:160.380000px;}
.h1f{height:169.770000px;}
.h15{height:195.120000px;}
.h25{height:223.230000px;}
.h24{height:259.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:20.340000px;}
.w2{width:85.320000px;}
.wc{width:295.090500px;}
.w3{width:470.160000px;}
.wd{width:482.325000px;}
.wa{width:500.940000px;}
.w6{width:767.160000px;}
.w9{width:774.540000px;}
.wb{width:778.315500px;}
.w4{width:783.360000px;}
.w8{width:784.440000px;}
.w7{width:802.800000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.476000px;}
.x2c{left:7.560000px;}
.xd{left:10.800000px;}
.x38{left:18.355500px;}
.x15{left:19.980000px;}
.x13{left:28.116000px;}
.x26{left:31.171500px;}
.x3b{left:35.491500px;}
.x3a{left:41.611500px;}
.x14{left:45.180000px;}
.x11{left:51.660000px;}
.x5{left:54.000000px;}
.x3c{left:55.471500px;}
.x24{left:57.424500px;}
.x17{left:61.200000px;}
.x16{left:65.160000px;}
.x2b{left:66.631500px;}
.x33{left:69.511500px;}
.x12{left:72.000000px;}
.x31{left:75.271500px;}
.x3e{left:76.711500px;}
.x37{left:80.131500px;}
.x3d{left:83.911500px;}
.x39{left:85.171500px;}
.x34{left:92.905500px;}
.x2d{left:94.885500px;}
.x36{left:97.225500px;}
.x1{left:100.080000px;}
.x32{left:104.425500px;}
.xe{left:105.696000px;}
.x41{left:108.036000px;}
.x2f{left:109.285500px;}
.x27{left:117.925500px;}
.x2a{left:121.165500px;}
.x2e{left:147.445500px;}
.x29{left:159.690000px;}
.x6{left:161.670000px;}
.xa{left:174.090000px;}
.x1d{left:177.915000px;}
.x1c{left:198.360000px;}
.xf{left:231.150000px;}
.x23{left:241.230000px;}
.x25{left:252.970500px;}
.x1a{left:256.890000px;}
.x18{left:265.575000px;}
.x35{left:271.690500px;}
.x30{left:276.910500px;}
.x21{left:301.935000px;}
.x10{left:312.915000px;}
.x1b{left:324.435000px;}
.x28{left:353.415000px;}
.x7{left:356.655000px;}
.x19{left:358.635000px;}
.x3{left:367.920000px;}
.x1e{left:420.735000px;}
.x20{left:422.355000px;}
.xc{left:465.945000px;}
.x4{left:468.900000px;}
.x3f{left:492.945000px;}
.x40{left:519.945000px;}
.x22{left:764.970000px;}
.x1f{left:808.920000px;}
.x8{left:837.180000px;}
.x9{left:839.340000px;}
.xb{left:846.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls5{letter-spacing:0.030720pt;}
.ls8{letter-spacing:0.112000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.480000pt;}
.ls1{letter-spacing:5.280000pt;}
.lsd{letter-spacing:22.496000pt;}
.ls9{letter-spacing:46.816000pt;}
.ws4{word-spacing:-17.310720pt;}
.ws5{word-spacing:-17.295360pt;}
.ws1{word-spacing:-17.272320pt;}
.ws2{word-spacing:-14.720000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.112000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.680000pt;}
.ws6{word-spacing:-11.456000pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-1.993813pt;}
._1{margin-left:-0.986240pt;}
._0{width:1.302827pt;}
._b{width:2.880000pt;}
._c{width:3.796480pt;}
._8{width:4.800000pt;}
._d{width:5.707520pt;}
._7{width:6.986240pt;}
._6{width:8.016000pt;}
._e{width:9.072000pt;}
._14{width:10.364587pt;}
._10{width:13.440000pt;}
._f{width:14.688000pt;}
._13{width:15.755733pt;}
._11{width:17.136000pt;}
._18{width:18.329173pt;}
._4{width:19.968000pt;}
._3{width:21.072000pt;}
._5{width:22.250240pt;}
._9{width:23.616000pt;}
._1e{width:24.506240pt;}
._19{width:25.584000pt;}
._15{width:27.120000pt;}
._1a{width:28.368000pt;}
._1b{width:29.376000pt;}
._a{width:30.672000pt;}
._1d{width:31.651413pt;}
._31{width:32.877227pt;}
._30{width:33.792000pt;}
._1c{width:38.496000pt;}
._17{width:39.840000pt;}
._28{width:41.922987pt;}
._20{width:43.392000pt;}
._1f{width:45.552000pt;}
._33{width:47.712000pt;}
._2c{width:53.952000pt;}
._2b{width:58.368000pt;}
._2a{width:59.600000pt;}
._25{width:61.680000pt;}
._16{width:63.264000pt;}
._27{width:93.311573pt;}
._23{width:94.346667pt;}
._2e{width:182.026667pt;}
._32{width:193.152000pt;}
._21{width:201.120000pt;}
._22{width:202.281813pt;}
._26{width:212.160000pt;}
._2d{width:308.448000pt;}
._2f{width:373.680000pt;}
._24{width:843.264000pt;}
._29{width:921.888000pt;}
._2{width:2580.859733pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs4{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.y39{bottom:-14.466667pt;}
.y3c{bottom:-6.973333pt;}
.y46{bottom:-3.813333pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.520000pt;}
.y2{bottom:4.480000pt;}
.y4{bottom:5.440000pt;}
.y4c{bottom:6.213333pt;}
.yfd{bottom:8.640000pt;}
.y100{bottom:8.800000pt;}
.y111{bottom:8.946667pt;}
.y11c{bottom:8.960000pt;}
.y108{bottom:9.120000pt;}
.y156{bottom:9.920000pt;}
.y11f{bottom:10.560000pt;}
.y37{bottom:10.973333pt;}
.y147{bottom:12.786667pt;}
.y122{bottom:13.120000pt;}
.y14c{bottom:16.946667pt;}
.y159{bottom:17.920000pt;}
.y8{bottom:20.000000pt;}
.yff{bottom:24.640000pt;}
.y110{bottom:24.786667pt;}
.y12a{bottom:24.800000pt;}
.y148{bottom:24.826667pt;}
.y14d{bottom:24.946667pt;}
.y107{bottom:24.960000pt;}
.y11b{bottom:24.986667pt;}
.y155{bottom:25.760000pt;}
.y36{bottom:27.773333pt;}
.y151{bottom:28.480000pt;}
.y121{bottom:28.960000pt;}
.y146{bottom:32.826667pt;}
.y158{bottom:33.786667pt;}
.y7{bottom:36.480000pt;}
.y14b{bottom:36.786667pt;}
.y129{bottom:40.640000pt;}
.y10f{bottom:40.786667pt;}
.y104{bottom:40.800000pt;}
.y11a{bottom:40.826667pt;}
.y15f{bottom:44.480000pt;}
.y106{bottom:44.800000pt;}
.y154{bottom:45.626667pt;}
.y15c{bottom:48.640000pt;}
.y157{bottom:49.626667pt;}
.y6{bottom:50.560000pt;}
.y10c{bottom:52.626667pt;}
.y145{bottom:52.666667pt;}
.y34{bottom:53.853333pt;}
.y162{bottom:56.520000pt;}
.y14a{bottom:56.626667pt;}
.y128{bottom:56.640000pt;}
.y119{bottom:56.666667pt;}
.y10e{bottom:60.626667pt;}
.y103{bottom:60.640000pt;}
.y15e{bottom:64.360000pt;}
.y105{bottom:64.640000pt;}
.y43{bottom:65.026667pt;}
.y153{bottom:65.466667pt;}
.y15b{bottom:68.480000pt;}
.y161{bottom:72.360000pt;}
.y127{bottom:72.480000pt;}
.y10b{bottom:72.506667pt;}
.y88{bottom:74.240000pt;}
.y120{bottom:76.480000pt;}
.y10d{bottom:76.506667pt;}
.ye2{bottom:77.280000pt;}
.y1f{bottom:79.040000pt;}
.y102{bottom:80.480000pt;}
.y42{bottom:82.626667pt;}
.y15d{bottom:84.360000pt;}
.y1ef{bottom:85.760000pt;}
.y2d{bottom:86.080000pt;}
.y1af{bottom:86.400000pt;}
.y18a{bottom:87.200000pt;}
.y138{bottom:88.320000pt;}
.y118{bottom:88.346667pt;}
.y160{bottom:88.360000pt;}
.y14f{bottom:88.506667pt;}
.yb6{bottom:89.120000pt;}
.y1dc{bottom:89.600000pt;}
.y87{bottom:90.080000pt;}
.y10a{bottom:92.346667pt;}
.ye1{bottom:93.280000pt;}
.y1e{bottom:94.880000pt;}
.y115{bottom:96.346667pt;}
.y125{bottom:100.186667pt;}
.y41{bottom:100.386667pt;}
.y2c{bottom:101.920000pt;}
.y1ae{bottom:102.240000pt;}
.y189{bottom:103.040000pt;}
.y1ee{bottom:104.000000pt;}
.y13e{bottom:104.026667pt;}
.y126{bottom:104.186667pt;}
.y137{bottom:104.200000pt;}
.y117{bottom:104.346667pt;}
.yb5{bottom:104.960000pt;}
.y1db{bottom:105.440000pt;}
.y86{bottom:105.920000pt;}
.y1d{bottom:110.720000pt;}
.ye0{bottom:114.240000pt;}
.y114{bottom:116.186667pt;}
.y2b{bottom:117.760000pt;}
.y40{bottom:117.986667pt;}
.y1ad{bottom:118.080000pt;}
.y188{bottom:119.040000pt;}
.y124{bottom:120.026667pt;}
.y116{bottom:120.186667pt;}
.y136{bottom:120.200000pt;}
.yb4{bottom:120.800000pt;}
.y11e{bottom:120.960000pt;}
.y1da{bottom:121.280000pt;}
.y150{bottom:121.600000pt;}
.y85{bottom:121.760000pt;}
.y13d{bottom:123.866667pt;}
.y1c{bottom:126.720000pt;}
.y1ed{bottom:128.000000pt;}
.y2f{bottom:128.773333pt;}
.y2a{bottom:133.760000pt;}
.y1ac{bottom:134.080000pt;}
.y187{bottom:134.880000pt;}
.y3f{bottom:135.586667pt;}
.y141{bottom:135.866667pt;}
.y130{bottom:135.880000pt;}
.y113{bottom:136.026667pt;}
.y135{bottom:136.040000pt;}
.yb3{bottom:136.800000pt;}
.y1d9{bottom:137.120000pt;}
.y84{bottom:137.760000pt;}
.y1b{bottom:142.560000pt;}
.y13c{bottom:143.866667pt;}
.y14e{bottom:146.080000pt;}
.y11d{bottom:147.360000pt;}
.y29{bottom:149.600000pt;}
.y1ab{bottom:149.920000pt;}
.y186{bottom:150.720000pt;}
.y1ec{bottom:151.840000pt;}
.y140{bottom:151.866667pt;}
.y134{bottom:151.880000pt;}
.yb2{bottom:152.640000pt;}
.y1d8{bottom:152.960000pt;}
.y3e{bottom:153.186667pt;}
.y83{bottom:153.600000pt;}
.y12f{bottom:155.720000pt;}
.y1a{bottom:158.400000pt;}
.y13b{bottom:163.706667pt;}
.y1aa{bottom:165.760000pt;}
.y185{bottom:166.560000pt;}
.y13f{bottom:167.706667pt;}
.y133{bottom:167.720000pt;}
.yb1{bottom:168.480000pt;}
.y1d7{bottom:168.800000pt;}
.y82{bottom:169.440000pt;}
.y112{bottom:171.840000pt;}
.y28{bottom:173.440000pt;}
.y19{bottom:174.240000pt;}
.y12e{bottom:175.560000pt;}
.y1eb{bottom:175.680000pt;}
.y1a9{bottom:181.600000pt;}
.y184{bottom:182.400000pt;}
.y13a{bottom:183.546667pt;}
.y132{bottom:183.560000pt;}
.yb0{bottom:184.346667pt;}
.y1d6{bottom:184.826667pt;}
.y27{bottom:189.306667pt;}
.y81{bottom:193.306667pt;}
.y12d{bottom:195.560000pt;}
.y1a8{bottom:197.466667pt;}
.y18{bottom:198.106667pt;}
.y1ea{bottom:199.546667pt;}
.y131{bottom:199.560000pt;}
.y183{bottom:200.186667pt;}
.y1d5{bottom:200.666667pt;}
.y26{bottom:205.146667pt;}
.yaf{bottom:208.186667pt;}
.y80{bottom:209.146667pt;}
.y1a7{bottom:213.466667pt;}
.y17{bottom:213.946667pt;}
.y12c{bottom:215.400000pt;}
.y1d4{bottom:216.506667pt;}
.y25{bottom:220.986667pt;}
.y1e9{bottom:223.386667pt;}
.yae{bottom:224.026667pt;}
.y7f{bottom:224.986667pt;}
.y182{bottom:229.306667pt;}
.y16{bottom:229.946667pt;}
.y1d3{bottom:232.346667pt;}
.y24{bottom:236.986667pt;}
.yad{bottom:240.026667pt;}
.y7e{bottom:240.986667pt;}
.y181{bottom:245.146667pt;}
.y15{bottom:245.786667pt;}
.y1e8{bottom:247.386667pt;}
.y1d2{bottom:248.186667pt;}
.y23{bottom:252.826667pt;}
.yac{bottom:255.866667pt;}
.y7d{bottom:256.826667pt;}
.y180{bottom:260.986667pt;}
.y14{bottom:261.626667pt;}
.y1d1{bottom:264.026667pt;}
.y22{bottom:268.666667pt;}
.y1e7{bottom:271.226667pt;}
.yab{bottom:271.706667pt;}
.y7c{bottom:272.666667pt;}
.y17f{bottom:276.826667pt;}
.y13{bottom:277.466667pt;}
.y1a6{bottom:278.586667pt;}
.y1d0{bottom:280.026667pt;}
.y21{bottom:284.506667pt;}
.yaa{bottom:287.546667pt;}
.y7b{bottom:288.506667pt;}
.y17e{bottom:292.666667pt;}
.y12{bottom:295.066667pt;}
.y1cf{bottom:295.866667pt;}
.y149{bottom:297.640000pt;}
.y20{bottom:300.346667pt;}
.ya9{bottom:303.386667pt;}
.y7a{bottom:304.346667pt;}
.y1a5{bottom:307.866667pt;}
.y17d{bottom:308.666667pt;}
.y1ce{bottom:311.706667pt;}
.y1e6{bottom:318.906667pt;}
.ya8{bottom:319.386667pt;}
.y79{bottom:320.186667pt;}
.y109{bottom:323.400000pt;}
.y1a4{bottom:323.706667pt;}
.y17c{bottom:324.506667pt;}
.y11{bottom:326.746667pt;}
.y1cd{bottom:327.546667pt;}
.ydf{bottom:331.226667pt;}
.ya7{bottom:335.226667pt;}
.y78{bottom:336.186667pt;}
.y1a3{bottom:339.546667pt;}
.y17b{bottom:340.346667pt;}
.y3d{bottom:342.080000pt;}
.y1e5{bottom:342.746667pt;}
.y1cc{bottom:343.386667pt;}
.ya6{bottom:351.066667pt;}
.y77{bottom:352.026667pt;}
.yde{bottom:354.746667pt;}
.y1a2{bottom:355.386667pt;}
.y17a{bottom:356.186667pt;}
.y1cb{bottom:359.386667pt;}
.y45{bottom:363.866667pt;}
.y1e4{bottom:366.586667pt;}
.y76{bottom:367.866667pt;}
.y144{bottom:369.800000pt;}
.y1a1{bottom:371.226667pt;}
.y179{bottom:372.026667pt;}
.ya5{bottom:374.906667pt;}
.y1ca{bottom:375.226667pt;}
.yd5{bottom:378.906667pt;}
.y75{bottom:383.706667pt;}
.y1a0{bottom:387.066667pt;}
.y178{bottom:388.026667pt;}
.y44{bottom:389.466667pt;}
.y1e3{bottom:390.586667pt;}
.ya4{bottom:390.746667pt;}
.y1c9{bottom:391.066667pt;}
.yd4{bottom:394.786667pt;}
.ydd{bottom:402.786667pt;}
.y19f{bottom:403.106667pt;}
.y177{bottom:403.906667pt;}
.ya3{bottom:406.626667pt;}
.y1c8{bottom:406.946667pt;}
.y74{bottom:407.586667pt;}
.yd3{bottom:410.626667pt;}
.y1e2{bottom:414.466667pt;}
.ydc{bottom:418.626667pt;}
.y19e{bottom:418.946667pt;}
.y176{bottom:419.746667pt;}
.ya2{bottom:422.626667pt;}
.y1c7{bottom:422.786667pt;}
.y73{bottom:423.586667pt;}
.yd2{bottom:426.626667pt;}
.y101{bottom:431.266667pt;}
.ydb{bottom:434.626667pt;}
.y19d{bottom:434.786667pt;}
.y175{bottom:435.586667pt;}
.y1e1{bottom:438.306667pt;}
.ya1{bottom:438.466667pt;}
.y1c6{bottom:438.626667pt;}
.y72{bottom:439.426667pt;}
.yd1{bottom:442.466667pt;}
.yda{bottom:450.466667pt;}
.y19c{bottom:450.626667pt;}
.y174{bottom:451.426667pt;}
.ya0{bottom:454.306667pt;}
.y1c5{bottom:454.626667pt;}
.y71{bottom:455.266667pt;}
.y143{bottom:457.826667pt;}
.yd0{bottom:458.306667pt;}
.y1e0{bottom:462.146667pt;}
.y19b{bottom:466.466667pt;}
.y173{bottom:467.266667pt;}
.y9f{bottom:470.146667pt;}
.y1c4{bottom:470.466667pt;}
.y70{bottom:471.106667pt;}
.ycf{bottom:474.146667pt;}
.yd9{bottom:474.306667pt;}
.y142{bottom:482.466667pt;}
.y172{bottom:483.266667pt;}
.y9e{bottom:485.986667pt;}
.y1c3{bottom:486.306667pt;}
.y6f{bottom:486.946667pt;}
.yd8{bottom:490.146667pt;}
.yce{bottom:497.986667pt;}
.y19a{bottom:498.306667pt;}
.y9d{bottom:501.986667pt;}
.y1c2{bottom:502.146667pt;}
.y6e{bottom:502.786667pt;}
.yd7{bottom:505.986667pt;}
.y139{bottom:506.946667pt;}
.y171{bottom:507.106667pt;}
.y1df{bottom:509.986667pt;}
.ycd{bottom:513.826667pt;}
.y199{bottom:514.146667pt;}
.y1c1{bottom:517.986667pt;}
.y6d{bottom:518.786667pt;}
.yd6{bottom:521.826667pt;}
.y170{bottom:522.946667pt;}
.y9c{bottom:525.826667pt;}
.y10{bottom:527.106667pt;}
.yfe{bottom:527.266667pt;}
.y1de{bottom:533.826667pt;}
.y1c0{bottom:533.986667pt;}
.y6c{bottom:534.626667pt;}
.ycc{bottom:534.946667pt;}
.y198{bottom:537.986667pt;}
.y16f{bottom:538.786667pt;}
.y9b{bottom:541.666667pt;}
.y1bf{bottom:549.826667pt;}
.y6b{bottom:550.466667pt;}
.y197{bottom:553.826667pt;}
.y16e{bottom:554.626667pt;}
.y9a{bottom:557.506667pt;}
.y1dd{bottom:557.666667pt;}
.yf{bottom:563.746667pt;}
.y1be{bottom:565.666667pt;}
.y6a{bottom:566.306667pt;}
.yfc{bottom:567.746667pt;}
.y196{bottom:569.666667pt;}
.y16d{bottom:570.626667pt;}
.y99{bottom:573.346667pt;}
.ye{bottom:577.666667pt;}
.y1bd{bottom:581.506667pt;}
.y3b{bottom:583.360000pt;}
.y69{bottom:583.906667pt;}
.y195{bottom:585.666667pt;}
.y16c{bottom:586.466667pt;}
.y98{bottom:589.186667pt;}
.yfb{bottom:597.186667pt;}
.y1bc{bottom:597.346667pt;}
.y3a{bottom:601.186667pt;}
.y194{bottom:601.533333pt;}
.y16b{bottom:602.333333pt;}
.y97{bottom:605.213333pt;}
.yfa{bottom:612.893333pt;}
.y68{bottom:613.213333pt;}
.y193{bottom:617.373333pt;}
.y16a{bottom:618.173333pt;}
.y96{bottom:621.053333pt;}
.yd{bottom:627.613333pt;}
.y67{bottom:629.053333pt;}
.y1bb{bottom:629.213333pt;}
.y33{bottom:632.640000pt;}
.y192{bottom:633.213333pt;}
.y38{bottom:633.760000pt;}
.y169{bottom:634.013333pt;}
.y95{bottom:636.893333pt;}
.yf0{bottom:637.053333pt;}
.y66{bottom:644.893333pt;}
.y1ba{bottom:645.053333pt;}
.y191{bottom:649.053333pt;}
.y168{bottom:649.853333pt;}
.yf9{bottom:652.733333pt;}
.yef{bottom:652.893333pt;}
.y65{bottom:660.733333pt;}
.y1b9{bottom:660.893333pt;}
.y190{bottom:665.053333pt;}
.y167{bottom:665.853333pt;}
.yf8{bottom:668.573333pt;}
.yee{bottom:668.733333pt;}
.y64{bottom:676.573333pt;}
.y1b8{bottom:676.733333pt;}
.y35{bottom:677.213333pt;}
.y18f{bottom:680.893333pt;}
.y166{bottom:681.693333pt;}
.yed{bottom:684.573333pt;}
.y63{bottom:692.573333pt;}
.y18e{bottom:696.733333pt;}
.y165{bottom:699.293333pt;}
.yf7{bottom:700.413333pt;}
.yec{bottom:700.573333pt;}
.yc{bottom:703.773333pt;}
.y12b{bottom:706.013333pt;}
.y62{bottom:708.413333pt;}
.y1b7{bottom:708.573333pt;}
.yeb{bottom:716.413333pt;}
.y18d{bottom:720.573333pt;}
.y32{bottom:723.453333pt;}
.y61{bottom:724.253333pt;}
.y1b6{bottom:724.413333pt;}
.y164{bottom:728.413333pt;}
.yea{bottom:732.253333pt;}
.y18c{bottom:736.413333pt;}
.y60{bottom:740.093333pt;}
.y1b5{bottom:740.253333pt;}
.y163{bottom:744.253333pt;}
.ye9{bottom:748.093333pt;}
.y18b{bottom:752.253333pt;}
.y94{bottom:755.933333pt;}
.y1b4{bottom:756.093333pt;}
.y5f{bottom:763.933333pt;}
.y93{bottom:771.773333pt;}
.y1b3{bottom:771.933333pt;}
.y31{bottom:775.453333pt;}
.y5e{bottom:779.773333pt;}
.ycb{bottom:780.413333pt;}
.y92{bottom:787.773333pt;}
.y5d{bottom:795.773333pt;}
.y30{bottom:797.533333pt;}
.y91{bottom:803.613333pt;}
.y1b2{bottom:803.773333pt;}
.yc6{bottom:804.573333pt;}
.y5c{bottom:811.653333pt;}
.y90{bottom:819.493333pt;}
.y1b1{bottom:819.653333pt;}
.yc5{bottom:820.453333pt;}
.y5b{bottom:827.493333pt;}
.yb{bottom:830.533333pt;}
.y8f{bottom:835.333333pt;}
.y1b0{bottom:835.493333pt;}
.yc4{bottom:836.293333pt;}
.y2e{bottom:836.800000pt;}
.y5a{bottom:843.333333pt;}
.y4b{bottom:849.600000pt;}
.y8e{bottom:851.173333pt;}
.ye8{bottom:851.333333pt;}
.yc3{bottom:852.133333pt;}
.y59{bottom:859.173333pt;}
.y8d{bottom:867.173333pt;}
.yc2{bottom:867.973333pt;}
.y58{bottom:875.173333pt;}
.y4a{bottom:879.493333pt;}
.yf6{bottom:883.013333pt;}
.ye7{bottom:883.173333pt;}
.y15a{bottom:883.653333pt;}
.yca{bottom:883.973333pt;}
.y57{bottom:891.013333pt;}
.yc1{bottom:891.973333pt;}
.yf5{bottom:898.853333pt;}
.ye6{bottom:899.013333pt;}
.yc9{bottom:899.813333pt;}
.y49{bottom:902.853333pt;}
.y56{bottom:906.853333pt;}
.yc0{bottom:907.813333pt;}
.yf4{bottom:914.693333pt;}
.ye5{bottom:914.853333pt;}
.yc8{bottom:915.653333pt;}
.y55{bottom:922.693333pt;}
.ybf{bottom:923.653333pt;}
.y48{bottom:926.213333pt;}
.yf3{bottom:930.533333pt;}
.ye4{bottom:930.693333pt;}
.yc7{bottom:933.253333pt;}
.y123{bottom:936.933333pt;}
.y54{bottom:938.533333pt;}
.ybe{bottom:939.493333pt;}
.ye3{bottom:946.533333pt;}
.y47{bottom:949.733333pt;}
.y8c{bottom:954.373333pt;}
.ybd{bottom:955.333333pt;}
.y53{bottom:962.373333pt;}
.y8b{bottom:970.373333pt;}
.ybc{bottom:971.333333pt;}
.y52{bottom:978.373333pt;}
.ya{bottom:984.613333pt;}
.y8a{bottom:986.213333pt;}
.ybb{bottom:987.173333pt;}
.y152{bottom:987.493333pt;}
.y51{bottom:994.213333pt;}
.y89{bottom:1002.053333pt;}
.yba{bottom:1003.013333pt;}
.y50{bottom:1010.053333pt;}
.yf2{bottom:1017.893333pt;}
.yb9{bottom:1018.880000pt;}
.y4f{bottom:1025.920000pt;}
.yf1{bottom:1033.760000pt;}
.yb8{bottom:1034.720000pt;}
.y4e{bottom:1041.760000pt;}
.yb7{bottom:1052.320000pt;}
.y4d{bottom:1057.600000pt;}
.y1{bottom:1062.720000pt;}
.y5{bottom:1080.320000pt;}
.y3{bottom:1088.160000pt;}
.h2{height:15.520000pt;}
.h4{height:19.360000pt;}
.h1b{height:23.826667pt;}
.h28{height:23.836000pt;}
.h20{height:23.840000pt;}
.h21{height:25.756000pt;}
.h14{height:39.200000pt;}
.h1c{height:39.826667pt;}
.h1a{height:43.031250pt;}
.h3{height:43.215000pt;}
.h29{height:43.676000pt;}
.h22{height:43.836000pt;}
.h5{height:45.795000pt;}
.h7{height:47.085938pt;}
.ha{height:47.109375pt;}
.h9{height:47.742188pt;}
.hc{height:48.375000pt;}
.h2d{height:49.336436pt;}
.h8{height:49.622500pt;}
.h16{height:52.108438pt;}
.h11{height:52.134375pt;}
.h17{height:52.234000pt;}
.h18{height:53.535000pt;}
.h6{height:57.787500pt;}
.h13{height:57.913125pt;}
.hf{height:59.340000pt;}
.h12{height:64.800000pt;}
.h10{height:65.920000pt;}
.hb{height:69.660000pt;}
.h27{height:71.506667pt;}
.he{height:75.465000pt;}
.h2a{height:80.340000pt;}
.h26{height:87.378667pt;}
.h1d{height:95.346667pt;}
.h2b{height:103.200000pt;}
.h1e{height:107.218667pt;}
.h19{height:117.760000pt;}
.h2c{height:119.072000pt;}
.h23{height:130.900000pt;}
.hd{height:142.560000pt;}
.h1f{height:150.906667pt;}
.h15{height:173.440000pt;}
.h25{height:198.426667pt;}
.h24{height:230.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:18.080000pt;}
.w2{width:75.840000pt;}
.wc{width:262.302667pt;}
.w3{width:417.920000pt;}
.wd{width:428.733333pt;}
.wa{width:445.280000pt;}
.w6{width:681.920000pt;}
.w9{width:688.480000pt;}
.wb{width:691.836000pt;}
.w4{width:696.320000pt;}
.w8{width:697.280000pt;}
.w7{width:713.600000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.312000pt;}
.x2c{left:6.720000pt;}
.xd{left:9.600000pt;}
.x38{left:16.316000pt;}
.x15{left:17.760000pt;}
.x13{left:24.992000pt;}
.x26{left:27.708000pt;}
.x3b{left:31.548000pt;}
.x3a{left:36.988000pt;}
.x14{left:40.160000pt;}
.x11{left:45.920000pt;}
.x5{left:48.000000pt;}
.x3c{left:49.308000pt;}
.x24{left:51.044000pt;}
.x17{left:54.400000pt;}
.x16{left:57.920000pt;}
.x2b{left:59.228000pt;}
.x33{left:61.788000pt;}
.x12{left:64.000000pt;}
.x31{left:66.908000pt;}
.x3e{left:68.188000pt;}
.x37{left:71.228000pt;}
.x3d{left:74.588000pt;}
.x39{left:75.708000pt;}
.x34{left:82.582667pt;}
.x2d{left:84.342667pt;}
.x36{left:86.422667pt;}
.x1{left:88.960000pt;}
.x32{left:92.822667pt;}
.xe{left:93.952000pt;}
.x41{left:96.032000pt;}
.x2f{left:97.142667pt;}
.x27{left:104.822667pt;}
.x2a{left:107.702667pt;}
.x2e{left:131.062667pt;}
.x29{left:141.946667pt;}
.x6{left:143.706667pt;}
.xa{left:154.746667pt;}
.x1d{left:158.146667pt;}
.x1c{left:176.320000pt;}
.xf{left:205.466667pt;}
.x23{left:214.426667pt;}
.x25{left:224.862667pt;}
.x1a{left:228.346667pt;}
.x18{left:236.066667pt;}
.x35{left:241.502667pt;}
.x30{left:246.142667pt;}
.x21{left:268.386667pt;}
.x10{left:278.146667pt;}
.x1b{left:288.386667pt;}
.x28{left:314.146667pt;}
.x7{left:317.026667pt;}
.x19{left:318.786667pt;}
.x3{left:327.040000pt;}
.x1e{left:373.986667pt;}
.x20{left:375.426667pt;}
.xc{left:414.173333pt;}
.x4{left:416.800000pt;}
.x3f{left:438.173333pt;}
.x40{left:462.173333pt;}
.x22{left:679.973333pt;}
.x1f{left:719.040000pt;}
.x8{left:744.160000pt;}
.x9{left:746.080000pt;}
.xb{left:752.160000pt;}
}




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