
    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_a1a35ded5ba669e9d4f84069.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cf8d47c7d078499162728f91.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6a9c2443538ac74302dab8aa.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b5c50bc19e118d4bd43845c7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d7084847a5888e177153f990.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_9f937da125c6964006a912b6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7fc737b46e025d933cb3d284.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_3b982cd5b4849dc6c7cbfa6a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_c4120edc9a32971df215c110.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.v3{vertical-align:-82.080000px;}
.v1{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls8{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.252000px;}
.ls7{letter-spacing:-0.223800px;}
.ls6{letter-spacing:-0.181200px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.269400px;}
.ls2{letter-spacing:0.360000px;}
.ls4{letter-spacing:63.136080px;}
.lsd{letter-spacing:535.980000px;}
.ls1{letter-spacing:1591.680000px;}
.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;}
}
.ws7{word-spacing:-23.940000px;}
.wsb{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.wsc{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.410720px;}
.wsd{word-spacing:-13.248000px;}
.ws0{word-spacing:-13.229520px;}
.ws2{word-spacing:-13.186920px;}
.ws5{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.836200px;}
.ws3{word-spacing:-0.048240px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2.109600px;}
._0{margin-left:-1.109520px;}
._2{width:1.022160px;}
._e{width:2.226720px;}
._c{width:3.271680px;}
._d{width:4.545840px;}
._1b{width:5.556000px;}
._13{width:6.702720px;}
._a{width:8.076000px;}
._25{width:9.125040px;}
._1c{width:10.168800px;}
._17{width:11.746800px;}
._16{width:12.848400px;}
._12{width:13.882320px;}
._11{width:16.069200px;}
._1d{width:17.288640px;}
._15{width:18.543120px;}
._18{width:19.675440px;}
._14{width:20.916000px;}
._2b{width:21.931920px;}
._26{width:23.049120px;}
._27{width:24.107040px;}
._22{width:25.402080px;}
._1f{width:26.533440px;}
._1e{width:27.762480px;}
._21{width:29.521440px;}
._20{width:31.374000px;}
._29{width:33.525360px;}
._2d{width:35.053200px;}
._10{width:36.095040px;}
._f{width:37.487520px;}
._2c{width:39.083040px;}
._1a{width:40.696560px;}
._19{width:41.790240px;}
._2a{width:45.136080px;}
._28{width:48.584880px;}
._34{width:54.218160px;}
._33{width:55.475280px;}
._31{width:63.421200px;}
._2f{width:64.857600px;}
._37{width:66.797520px;}
._36{width:68.126400px;}
._24{width:75.801600px;}
._23{width:76.825440px;}
._6{width:93.060000px;}
._4{width:106.740000px;}
._2e{width:113.077680px;}
._9{width:114.660000px;}
._5{width:124.740000px;}
._b{width:180.180000px;}
._30{width:193.835520px;}
._32{width:196.150320px;}
._8{width:264.564000px;}
._3{width:453.180000px;}
._7{width:1425.360000px;}
._35{width:1604.640000px;}
.fc2{color:transparent;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.fs5{font-size:131.760000px;}
.y166{bottom:-2.880000px;}
.y0{bottom:0.000000px;}
.y15b{bottom:0.180000px;}
.y153{bottom:1.245000px;}
.y7f{bottom:2.145000px;}
.yc0{bottom:2.160000px;}
.y11e{bottom:2.325000px;}
.y120{bottom:2.340000px;}
.y16a{bottom:2.880000px;}
.y144{bottom:3.090000px;}
.y49{bottom:3.240000px;}
.y198{bottom:3.420000px;}
.y6b{bottom:3.585000px;}
.y6{bottom:3.600000px;}
.y4{bottom:6.120000px;}
.y5{bottom:6.480000px;}
.y46{bottom:10.440000px;}
.y53{bottom:11.160000px;}
.y165{bottom:14.760000px;}
.y1a8{bottom:17.640000px;}
.y15a{bottom:17.820000px;}
.y169{bottom:18.720000px;}
.y152{bottom:18.885000px;}
.y176{bottom:19.080000px;}
.y193{bottom:19.110000px;}
.y1a5{bottom:21.105000px;}
.y64{bottom:21.240000px;}
.y6a{bottom:21.270000px;}
.y1a6{bottom:21.285000px;}
.y45{bottom:28.080000px;}
.y164{bottom:32.400000px;}
.y17f{bottom:34.560000px;}
.y168{bottom:34.590000px;}
.y175{bottom:34.920000px;}
.y192{bottom:34.950000px;}
.y159{bottom:35.460000px;}
.y151{bottom:36.525000px;}
.y1a0{bottom:38.700000px;}
.y63{bottom:38.880000px;}
.y69{bottom:38.910000px;}
.y52{bottom:43.245000px;}
.y7{bottom:44.100000px;}
.y48{bottom:44.280000px;}
.y17a{bottom:44.325000px;}
.y44{bottom:45.720000px;}
.y2{bottom:49.680000px;}
.y163{bottom:50.040000px;}
.y17e{bottom:50.400000px;}
.y174{bottom:50.760000px;}
.y191{bottom:50.790000px;}
.y158{bottom:53.100000px;}
.y150{bottom:54.165000px;}
.y62{bottom:56.520000px;}
.y51{bottom:58.545000px;}
.y178{bottom:59.805000px;}
.y179{bottom:60.165000px;}
.y43{bottom:63.360000px;}
.y68{bottom:65.550000px;}
.y196{bottom:65.700000px;}
.y17c{bottom:66.240000px;}
.y18f{bottom:66.270000px;}
.y173{bottom:66.600000px;}
.y190{bottom:66.630000px;}
.y197{bottom:66.780000px;}
.y162{bottom:67.680000px;}
.y157{bottom:70.740000px;}
.y14f{bottom:71.805000px;}
.ybe{bottom:73.980000px;}
.y61{bottom:74.160000px;}
.y121{bottom:78.300000px;}
.y15c{bottom:80.100000px;}
.y42{bottom:81.000000px;}
.y1d0{bottom:81.900000px;}
.y184{bottom:82.080000px;}
.y18b{bottom:82.125000px;}
.y172{bottom:82.440000px;}
.y18c{bottom:82.485000px;}
.y195{bottom:83.520000px;}
.y161{bottom:85.320000px;}
.y194{bottom:86.040000px;}
.y50{bottom:88.065000px;}
.y156{bottom:88.200000px;}
.y14e{bottom:89.445000px;}
.y142{bottom:90.540000px;}
.y60{bottom:91.800000px;}
.ybd{bottom:91.980000px;}
.y11c{bottom:95.940000px;}
.y189{bottom:97.920000px;}
.y183{bottom:97.950000px;}
.y171{bottom:98.280000px;}
.y187{bottom:98.310000px;}
.y41{bottom:98.640000px;}
.y1cf{bottom:99.540000px;}
.y155{bottom:102.420000px;}
.y160{bottom:102.960000px;}
.ye0{bottom:103.500000px;}
.y7d{bottom:104.220000px;}
.y14d{bottom:107.085000px;}
.y141{bottom:108.180000px;}
.y5f{bottom:109.470000px;}
.ybc{bottom:109.980000px;}
.y67{bottom:110.550000px;}
.y11b{bottom:113.580000px;}
.y182{bottom:113.790000px;}
.y170{bottom:114.120000px;}
.y186{bottom:114.150000px;}
.y40{bottom:116.280000px;}
.y1ce{bottom:117.180000px;}
.y4f{bottom:117.405000px;}
.y15f{bottom:120.630000px;}
.ydf{bottom:121.140000px;}
.y7c{bottom:122.220000px;}
.y14c{bottom:124.725000px;}
.y140{bottom:125.820000px;}
.y5e{bottom:127.110000px;}
.ybb{bottom:127.980000px;}
.y66{bottom:128.190000px;}
.y16d{bottom:129.600000px;}
.y181{bottom:129.630000px;}
.y16f{bottom:129.960000px;}
.y185{bottom:129.990000px;}
.y11a{bottom:131.220000px;}
.y3f{bottom:133.920000px;}
.y1cd{bottom:134.820000px;}
.y15e{bottom:138.450000px;}
.yde{bottom:138.780000px;}
.y7b{bottom:140.220000px;}
.y14b{bottom:142.365000px;}
.y13f{bottom:143.460000px;}
.y5d{bottom:144.750000px;}
.y16c{bottom:145.440000px;}
.y16e{bottom:145.800000px;}
.yba{bottom:145.980000px;}
.y4e{bottom:146.745000px;}
.y119{bottom:148.860000px;}
.y3e{bottom:151.560000px;}
.y1cc{bottom:152.460000px;}
.y15d{bottom:152.490000px;}
.ydd{bottom:156.420000px;}
.y7a{bottom:158.220000px;}
.y14a{bottom:160.005000px;}
.y13e{bottom:161.100000px;}
.y5c{bottom:162.390000px;}
.yb9{bottom:163.980000px;}
.y118{bottom:166.500000px;}
.y3d{bottom:169.230000px;}
.y1cb{bottom:170.100000px;}
.ydc{bottom:174.060000px;}
.y79{bottom:176.220000px;}
.y149{bottom:177.645000px;}
.y13d{bottom:178.740000px;}
.y5b{bottom:180.030000px;}
.yb8{bottom:181.980000px;}
.y117{bottom:184.140000px;}
.y18e{bottom:185.400000px;}
.y3c{bottom:186.870000px;}
.y1ca{bottom:187.740000px;}
.ydb{bottom:191.700000px;}
.y78{bottom:194.220000px;}
.y148{bottom:195.285000px;}
.y13c{bottom:196.380000px;}
.y5a{bottom:197.670000px;}
.yb7{bottom:200.010000px;}
.y116{bottom:201.810000px;}
.y3b{bottom:204.510000px;}
.y1c9{bottom:205.410000px;}
.yda{bottom:209.370000px;}
.y77{bottom:212.250000px;}
.y147{bottom:213.150000px;}
.y13b{bottom:214.050000px;}
.y59{bottom:215.310000px;}
.yb6{bottom:218.010000px;}
.y115{bottom:219.450000px;}
.y3a{bottom:222.150000px;}
.y1c8{bottom:223.050000px;}
.yd9{bottom:227.010000px;}
.y146{bottom:227.190000px;}
.y145{bottom:227.925000px;}
.y76{bottom:230.250000px;}
.y13a{bottom:231.690000px;}
.y58{bottom:232.950000px;}
.yb5{bottom:236.010000px;}
.y114{bottom:237.090000px;}
.y39{bottom:239.790000px;}
.y1c7{bottom:240.690000px;}
.yd8{bottom:244.650000px;}
.y75{bottom:248.250000px;}
.y139{bottom:249.330000px;}
.yb4{bottom:254.010000px;}
.y113{bottom:254.730000px;}
.y38{bottom:257.430000px;}
.y1c6{bottom:258.330000px;}
.y57{bottom:259.590000px;}
.yd7{bottom:262.290000px;}
.y74{bottom:266.250000px;}
.y138{bottom:266.970000px;}
.y18d{bottom:267.510000px;}
.yb3{bottom:272.010000px;}
.y112{bottom:272.370000px;}
.y37{bottom:275.070000px;}
.y1c5{bottom:275.970000px;}
.yd6{bottom:279.930000px;}
.y73{bottom:284.250000px;}
.y137{bottom:284.610000px;}
.yb2{bottom:290.010000px;}
.y36{bottom:292.710000px;}
.y1c4{bottom:293.610000px;}
.yd5{bottom:297.570000px;}
.y72{bottom:302.250000px;}
.y111{bottom:307.650000px;}
.yb1{bottom:308.010000px;}
.y35{bottom:310.350000px;}
.y1c3{bottom:311.250000px;}
.yd4{bottom:315.210000px;}
.y136{bottom:319.890000px;}
.y71{bottom:320.250000px;}
.y110{bottom:325.290000px;}
.yb0{bottom:326.010000px;}
.y34{bottom:327.990000px;}
.y1c2{bottom:328.890000px;}
.yd3{bottom:332.850000px;}
.y135{bottom:337.530000px;}
.y70{bottom:338.250000px;}
.y10f{bottom:342.930000px;}
.yaf{bottom:344.010000px;}
.y33{bottom:345.630000px;}
.y1c1{bottom:346.530000px;}
.yd2{bottom:350.490000px;}
.y134{bottom:355.170000px;}
.y6f{bottom:356.250000px;}
.y10e{bottom:360.570000px;}
.yae{bottom:362.010000px;}
.y32{bottom:363.270000px;}
.y1c0{bottom:364.170000px;}
.y18a{bottom:365.430000px;}
.yd1{bottom:368.130000px;}
.y133{bottom:372.810000px;}
.y6e{bottom:374.250000px;}
.y10d{bottom:378.210000px;}
.yad{bottom:380.010000px;}
.y31{bottom:380.910000px;}
.y1bf{bottom:381.810000px;}
.yd0{bottom:385.770000px;}
.y132{bottom:390.450000px;}
.y6d{bottom:392.250000px;}
.y11d{bottom:393.705000px;}
.y10c{bottom:395.850000px;}
.yac{bottom:398.010000px;}
.y30{bottom:398.595000px;}
.y1be{bottom:399.450000px;}
.y7e{bottom:399.465000px;}
.ycf{bottom:403.410000px;}
.y131{bottom:408.090000px;}
.y8{bottom:408.855000px;}
.y6c{bottom:410.250000px;}
.y10b{bottom:413.490000px;}
.yab{bottom:416.010000px;}
.y2f{bottom:416.235000px;}
.y1bd{bottom:417.090000px;}
.yce{bottom:421.050000px;}
.y65{bottom:424.665000px;}
.y130{bottom:425.730000px;}
.y1df{bottom:427.350000px;}
.y10a{bottom:431.130000px;}
.y2e{bottom:433.875000px;}
.yaa{bottom:434.010000px;}
.y1bc{bottom:434.730000px;}
.ycd{bottom:438.735000px;}
.y1de{bottom:441.435000px;}
.y12f{bottom:443.415000px;}
.y109{bottom:448.815000px;}
.y2d{bottom:451.515000px;}
.y1bb{bottom:451.695000px;}
.ya9{bottom:452.055000px;}
.ycc{bottom:456.375000px;}
.y1e1{bottom:459.075000px;}
.y12e{bottom:461.055000px;}
.y188{bottom:463.395000px;}
.y108{bottom:466.455000px;}
.y1ba{bottom:466.635000px;}
.y2c{bottom:469.155000px;}
.ya8{bottom:470.055000px;}
.ycb{bottom:474.015000px;}
.y12d{bottom:478.695000px;}
.y107{bottom:484.095000px;}
.y1b9{bottom:484.275000px;}
.y2b{bottom:486.795000px;}
.ya7{bottom:488.055000px;}
.yca{bottom:491.655000px;}
.y12c{bottom:496.335000px;}
.y1dd{bottom:499.215000px;}
.y106{bottom:501.735000px;}
.y1b8{bottom:501.915000px;}
.y2a{bottom:504.435000px;}
.ya6{bottom:506.055000px;}
.yc9{bottom:509.295000px;}
.y12b{bottom:513.975000px;}
.y1dc{bottom:516.135000px;}
.y105{bottom:519.375000px;}
.y1b7{bottom:519.555000px;}
.y29{bottom:522.075000px;}
.ya5{bottom:524.055000px;}
.yc8{bottom:526.935000px;}
.y1db{bottom:530.355000px;}
.y12a{bottom:531.615000px;}
.y104{bottom:537.015000px;}
.y1b6{bottom:537.195000px;}
.y28{bottom:539.715000px;}
.ya4{bottom:542.055000px;}
.yc7{bottom:544.575000px;}
.y1da{bottom:545.295000px;}
.y129{bottom:549.255000px;}
.y154{bottom:549.975000px;}
.y103{bottom:554.655000px;}
.y1b5{bottom:554.835000px;}
.y27{bottom:557.355000px;}
.ya3{bottom:560.055000px;}
.yc6{bottom:562.215000px;}
.y1d9{bottom:562.935000px;}
.y56{bottom:566.895000px;}
.y102{bottom:572.295000px;}
.y1b4{bottom:572.475000px;}
.y26{bottom:574.995000px;}
.y180{bottom:577.155000px;}
.ya2{bottom:578.055000px;}
.yc5{bottom:579.855000px;}
.y1d8{bottom:580.935000px;}
.y128{bottom:584.535000px;}
.y101{bottom:589.935000px;}
.y1b3{bottom:590.115000px;}
.y25{bottom:592.635000px;}
.ya1{bottom:596.055000px;}
.yc4{bottom:597.495000px;}
.y1d7{bottom:601.815000px;}
.y127{bottom:602.175000px;}
.y100{bottom:607.575000px;}
.y1b2{bottom:607.755000px;}
.y24{bottom:610.275000px;}
.ya0{bottom:614.055000px;}
.yc3{bottom:615.135000px;}
.y126{bottom:619.815000px;}
.y1d6{bottom:621.615000px;}
.yff{bottom:625.215000px;}
.y1b1{bottom:625.395000px;}
.y23{bottom:627.945000px;}
.y9f{bottom:632.055000px;}
.yc2{bottom:632.775000px;}
.y1d5{bottom:636.555000px;}
.y125{bottom:637.455000px;}
.yfe{bottom:642.855000px;}
.y1b0{bottom:643.035000px;}
.y22{bottom:645.585000px;}
.y9e{bottom:650.055000px;}
.yc1{bottom:650.415000px;}
.y1d4{bottom:654.555000px;}
.y124{bottom:655.095000px;}
.yfd{bottom:660.495000px;}
.y1af{bottom:660.675000px;}
.y21{bottom:663.225000px;}
.y9d{bottom:668.055000px;}
.y123{bottom:672.945000px;}
.y11f{bottom:674.205000px;}
.y47{bottom:674.925000px;}
.y1d3{bottom:675.465000px;}
.yfc{bottom:678.165000px;}
.y1ae{bottom:678.345000px;}
.y20{bottom:680.865000px;}
.y9c{bottom:686.085000px;}
.y122{bottom:686.985000px;}
.y1d2{bottom:695.265000px;}
.yfb{bottom:695.805000px;}
.y1ad{bottom:695.985000px;}
.y1f{bottom:698.505000px;}
.y9b{bottom:704.085000px;}
.y1d1{bottom:710.205000px;}
.yfa{bottom:713.445000px;}
.y1ac{bottom:713.625000px;}
.y1e{bottom:716.145000px;}
.y9a{bottom:722.085000px;}
.y17d{bottom:722.625000px;}
.yf9{bottom:731.085000px;}
.y1ab{bottom:731.265000px;}
.y1d{bottom:733.785000px;}
.y99{bottom:740.085000px;}
.y1e0{bottom:740.985000px;}
.yf8{bottom:748.725000px;}
.y1aa{bottom:748.905000px;}
.y1c{bottom:751.425000px;}
.y98{bottom:758.085000px;}
.y1a9{bottom:766.185000px;}
.yf7{bottom:766.365000px;}
.y1b{bottom:769.065000px;}
.y97{bottom:776.085000px;}
.yf6{bottom:784.005000px;}
.y1a{bottom:786.705000px;}
.y96{bottom:794.085000px;}
.yf5{bottom:801.645000px;}
.y19{bottom:804.345000px;}
.y17b{bottom:804.705000px;}
.y95{bottom:812.085000px;}
.yf4{bottom:819.285000px;}
.y18{bottom:821.985000px;}
.y94{bottom:830.085000px;}
.yf3{bottom:836.925000px;}
.y17{bottom:839.625000px;}
.y93{bottom:848.085000px;}
.y1a7{bottom:850.605000px;}
.yf2{bottom:854.565000px;}
.y16{bottom:857.265000px;}
.y92{bottom:866.085000px;}
.y55{bottom:870.765000px;}
.yf1{bottom:872.205000px;}
.y15{bottom:874.950000px;}
.y91{bottom:884.085000px;}
.y54{bottom:884.985000px;}
.y177{bottom:886.785000px;}
.yf0{bottom:889.845000px;}
.y14{bottom:892.590000px;}
.y4d{bottom:896.325000px;}
.y1a4{bottom:900.825000px;}
.y90{bottom:902.085000px;}
.yef{bottom:907.485000px;}
.y13{bottom:910.230000px;}
.y8f{bottom:920.130000px;}
.yee{bottom:925.170000px;}
.ybf{bottom:925.710000px;}
.y12{bottom:927.870000px;}
.y1a3{bottom:936.870000px;}
.y8e{bottom:938.130000px;}
.yed{bottom:942.810000px;}
.y1a2{bottom:955.230000px;}
.y8d{bottom:956.130000px;}
.yec{bottom:960.450000px;}
.y16b{bottom:962.430000px;}
.y11{bottom:963.150000px;}
.y1a1{bottom:973.590000px;}
.y8c{bottom:974.130000px;}
.yeb{bottom:978.090000px;}
.y10{bottom:980.790000px;}
.y19f{bottom:991.950000px;}
.y8b{bottom:992.130000px;}
.yea{bottom:995.730000px;}
.yf{bottom:998.430000px;}
.y8a{bottom:1010.130000px;}
.ye9{bottom:1013.370000px;}
.ye{bottom:1016.070000px;}
.y89{bottom:1028.130000px;}
.ye8{bottom:1031.010000px;}
.yd{bottom:1033.710000px;}
.y19e{bottom:1045.590000px;}
.y88{bottom:1046.130000px;}
.ye7{bottom:1048.650000px;}
.yc{bottom:1051.350000px;}
.y19d{bottom:1063.950000px;}
.y87{bottom:1064.130000px;}
.ye6{bottom:1066.290000px;}
.yb{bottom:1068.990000px;}
.y4c{bottom:1075.290000px;}
.y86{bottom:1082.130000px;}
.y19c{bottom:1082.310000px;}
.ye5{bottom:1083.930000px;}
.ya{bottom:1086.630000px;}
.y85{bottom:1100.130000px;}
.y19b{bottom:1100.670000px;}
.ye4{bottom:1101.570000px;}
.y9{bottom:1116.540000px;}
.y4b{bottom:1117.590000px;}
.y84{bottom:1118.130000px;}
.y19a{bottom:1119.030000px;}
.ye3{bottom:1119.210000px;}
.y167{bottom:1123.710000px;}
.y83{bottom:1136.130000px;}
.ye2{bottom:1136.850000px;}
.y199{bottom:1137.390000px;}
.y143{bottom:1143.870000px;}
.y82{bottom:1154.160000px;}
.ye1{bottom:1154.520000px;}
.y4a{bottom:1155.780000px;}
.y3{bottom:1197.900000px;}
.y81{bottom:1198.080000px;}
.y1{bottom:1201.500000px;}
.y80{bottom:1201.680000px;}
.h13{height:16.185000px;}
.h2f{height:16.200000px;}
.h15{height:16.365000px;}
.h16{height:16.380000px;}
.h9{height:17.098500px;}
.h17{height:17.130000px;}
.h4{height:17.638500px;}
.h29{height:17.640000px;}
.h2a{height:17.676000px;}
.h2c{height:35.316000px;}
.h1a{height:40.501406px;}
.h11{height:41.522695px;}
.he{height:47.321367px;}
.hf{height:47.344922px;}
.h1c{height:47.556000px;}
.h8{height:50.027344px;}
.h3{height:50.312812px;}
.h2b{height:52.920000px;}
.h1f{height:52.998047px;}
.h1d{height:54.421875px;}
.h14{height:58.621992px;}
.h2{height:58.651172px;}
.h28{height:60.226875px;}
.ha{height:62.327813px;}
.h6{height:66.536367px;}
.h2e{height:70.628906px;}
.h20{height:72.756000px;}
.h21{height:79.200000px;}
.h26{height:79.236000px;}
.hc{height:80.464922px;}
.h7{height:83.545664px;}
.hb{height:91.550039px;}
.h25{height:95.040000px;}
.h24{height:95.076000px;}
.h23{height:110.880000px;}
.h12{height:142.221000px;}
.h22{height:142.596000px;}
.h1e{height:158.400000px;}
.hd{height:165.630000px;}
.h10{height:300.990000px;}
.h2d{height:323.535000px;}
.h1b{height:428.460000px;}
.h19{height:618.045000px;}
.h18{height:944.235000px;}
.h27{height:1087.018500px;}
.h5{height:1153.800000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:33.840000px;}
.w5{width:47.340000px;}
.w8{width:53.085000px;}
.w12{width:74.556000px;}
.w13{width:113.940000px;}
.w4{width:128.340000px;}
.w17{width:140.940000px;}
.w14{width:140.976000px;}
.w2{width:141.876000px;}
.w15{width:147.816000px;}
.w16{width:154.470000px;}
.w19{width:155.910000px;}
.w1c{width:378.253500px;}
.w1d{width:378.433500px;}
.wc{width:379.873500px;}
.wf{width:380.235000px;}
.wb{width:381.493500px;}
.we{width:384.193500px;}
.wd{width:384.373500px;}
.wa{width:479.400000px;}
.w3{width:533.445000px;}
.w1a{width:627.045000px;}
.w9{width:688.605000px;}
.w11{width:783.675000px;}
.w10{width:783.855000px;}
.w18{width:792.135000px;}
.w6{width:803.490000px;}
.w1b{width:805.995000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x29{left:10.795500px;}
.x33{left:12.238500px;}
.x35{left:19.258500px;}
.x6{left:31.860000px;}
.xb{left:40.680000px;}
.x13{left:41.760000px;}
.x2{left:47.340000px;}
.x32{left:50.221500px;}
.x23{left:51.661500px;}
.x1e{left:52.741500px;}
.x1b{left:54.000000px;}
.x2a{left:57.244500px;}
.x2c{left:61.740000px;}
.x21{left:67.500000px;}
.x4{left:76.320000px;}
.x1{left:81.000000px;}
.x11{left:91.254000px;}
.xf{left:101.376000px;}
.xe{left:104.436000px;}
.x10{left:118.974000px;}
.x24{left:129.628500px;}
.x2d{left:137.196000px;}
.x1f{left:140.968500px;}
.x20{left:145.828500px;}
.x27{left:158.790000px;}
.x1a{left:160.770000px;}
.xd{left:174.270000px;}
.x3{left:189.030000px;}
.x19{left:200.550000px;}
.x18{left:209.385000px;}
.x34{left:210.630000px;}
.x12{left:228.459000px;}
.xc{left:245.910000px;}
.x2e{left:251.850000px;}
.x14{left:258.699000px;}
.x16{left:269.850000px;}
.x15{left:344.199000px;}
.x2f{left:393.735000px;}
.x7{left:401.655000px;}
.x17{left:445.575000px;}
.x26{left:457.275000px;}
.x1c{left:458.895000px;}
.x3a{left:465.555000px;}
.x22{left:472.395000px;}
.x3d{left:477.255000px;}
.x37{left:479.235000px;}
.x1d{left:485.895000px;}
.x3e{left:501.585000px;}
.x36{left:533.445000px;}
.x3f{left:535.605000px;}
.x30{left:542.265000px;}
.x3b{left:558.105000px;}
.x40{left:583.125000px;}
.x39{left:590.145000px;}
.x42{left:594.285000px;}
.x3c{left:602.925000px;}
.x38{left:647.925000px;}
.x41{left:679.965000px;}
.x31{left:697.470000px;}
.x5{left:722.490000px;}
.x2b{left:732.205500px;}
.x28{left:750.385500px;}
.xa{left:784.770000px;}
.x25{left:836.610000px;}
.x8{left:850.650000px;}
@media print{
.v3{vertical-align:-72.960000pt;}
.v1{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.224000pt;}
.ls7{letter-spacing:-0.198933pt;}
.ls6{letter-spacing:-0.161067pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.239467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls4{letter-spacing:56.120960pt;}
.lsd{letter-spacing:476.426667pt;}
.ls1{letter-spacing:1414.826667pt;}
.ws7{word-spacing:-21.280000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.920640pt;}
.wsd{word-spacing:-11.776000pt;}
.ws0{word-spacing:-11.759573pt;}
.ws2{word-spacing:-11.721707pt;}
.ws5{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.521067pt;}
.ws3{word-spacing:-0.042880pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-1.875200pt;}
._0{margin-left:-0.986240pt;}
._2{width:0.908587pt;}
._e{width:1.979307pt;}
._c{width:2.908160pt;}
._d{width:4.040747pt;}
._1b{width:4.938667pt;}
._13{width:5.957973pt;}
._a{width:7.178667pt;}
._25{width:8.111147pt;}
._1c{width:9.038933pt;}
._17{width:10.441600pt;}
._16{width:11.420800pt;}
._12{width:12.339840pt;}
._11{width:14.283733pt;}
._1d{width:15.367680pt;}
._15{width:16.482773pt;}
._18{width:17.489280pt;}
._14{width:18.592000pt;}
._2b{width:19.495040pt;}
._26{width:20.488107pt;}
._27{width:21.428480pt;}
._22{width:22.579627pt;}
._1f{width:23.585280pt;}
._1e{width:24.677760pt;}
._21{width:26.241280pt;}
._20{width:27.888000pt;}
._29{width:29.800320pt;}
._2d{width:31.158400pt;}
._10{width:32.084480pt;}
._f{width:33.322240pt;}
._2c{width:34.740480pt;}
._1a{width:36.174720pt;}
._19{width:37.146880pt;}
._2a{width:40.120960pt;}
._28{width:43.186560pt;}
._34{width:48.193920pt;}
._33{width:49.311360pt;}
._31{width:56.374400pt;}
._2f{width:57.651200pt;}
._37{width:59.375573pt;}
._36{width:60.556800pt;}
._24{width:67.379200pt;}
._23{width:68.289280pt;}
._6{width:82.720000pt;}
._4{width:94.880000pt;}
._2e{width:100.513493pt;}
._9{width:101.920000pt;}
._5{width:110.880000pt;}
._b{width:160.160000pt;}
._30{width:172.298240pt;}
._32{width:174.355840pt;}
._8{width:235.168000pt;}
._3{width:402.826667pt;}
._7{width:1266.986667pt;}
._35{width:1426.346667pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.fs5{font-size:117.120000pt;}
.y166{bottom:-2.560000pt;}
.y0{bottom:0.000000pt;}
.y15b{bottom:0.160000pt;}
.y153{bottom:1.106667pt;}
.y7f{bottom:1.906667pt;}
.yc0{bottom:1.920000pt;}
.y11e{bottom:2.066667pt;}
.y120{bottom:2.080000pt;}
.y16a{bottom:2.560000pt;}
.y144{bottom:2.746667pt;}
.y49{bottom:2.880000pt;}
.y198{bottom:3.040000pt;}
.y6b{bottom:3.186667pt;}
.y6{bottom:3.200000pt;}
.y4{bottom:5.440000pt;}
.y5{bottom:5.760000pt;}
.y46{bottom:9.280000pt;}
.y53{bottom:9.920000pt;}
.y165{bottom:13.120000pt;}
.y1a8{bottom:15.680000pt;}
.y15a{bottom:15.840000pt;}
.y169{bottom:16.640000pt;}
.y152{bottom:16.786667pt;}
.y176{bottom:16.960000pt;}
.y193{bottom:16.986667pt;}
.y1a5{bottom:18.760000pt;}
.y64{bottom:18.880000pt;}
.y6a{bottom:18.906667pt;}
.y1a6{bottom:18.920000pt;}
.y45{bottom:24.960000pt;}
.y164{bottom:28.800000pt;}
.y17f{bottom:30.720000pt;}
.y168{bottom:30.746667pt;}
.y175{bottom:31.040000pt;}
.y192{bottom:31.066667pt;}
.y159{bottom:31.520000pt;}
.y151{bottom:32.466667pt;}
.y1a0{bottom:34.400000pt;}
.y63{bottom:34.560000pt;}
.y69{bottom:34.586667pt;}
.y52{bottom:38.440000pt;}
.y7{bottom:39.200000pt;}
.y48{bottom:39.360000pt;}
.y17a{bottom:39.400000pt;}
.y44{bottom:40.640000pt;}
.y2{bottom:44.160000pt;}
.y163{bottom:44.480000pt;}
.y17e{bottom:44.800000pt;}
.y174{bottom:45.120000pt;}
.y191{bottom:45.146667pt;}
.y158{bottom:47.200000pt;}
.y150{bottom:48.146667pt;}
.y62{bottom:50.240000pt;}
.y51{bottom:52.040000pt;}
.y178{bottom:53.160000pt;}
.y179{bottom:53.480000pt;}
.y43{bottom:56.320000pt;}
.y68{bottom:58.266667pt;}
.y196{bottom:58.400000pt;}
.y17c{bottom:58.880000pt;}
.y18f{bottom:58.906667pt;}
.y173{bottom:59.200000pt;}
.y190{bottom:59.226667pt;}
.y197{bottom:59.360000pt;}
.y162{bottom:60.160000pt;}
.y157{bottom:62.880000pt;}
.y14f{bottom:63.826667pt;}
.ybe{bottom:65.760000pt;}
.y61{bottom:65.920000pt;}
.y121{bottom:69.600000pt;}
.y15c{bottom:71.200000pt;}
.y42{bottom:72.000000pt;}
.y1d0{bottom:72.800000pt;}
.y184{bottom:72.960000pt;}
.y18b{bottom:73.000000pt;}
.y172{bottom:73.280000pt;}
.y18c{bottom:73.320000pt;}
.y195{bottom:74.240000pt;}
.y161{bottom:75.840000pt;}
.y194{bottom:76.480000pt;}
.y50{bottom:78.280000pt;}
.y156{bottom:78.400000pt;}
.y14e{bottom:79.506667pt;}
.y142{bottom:80.480000pt;}
.y60{bottom:81.600000pt;}
.ybd{bottom:81.760000pt;}
.y11c{bottom:85.280000pt;}
.y189{bottom:87.040000pt;}
.y183{bottom:87.066667pt;}
.y171{bottom:87.360000pt;}
.y187{bottom:87.386667pt;}
.y41{bottom:87.680000pt;}
.y1cf{bottom:88.480000pt;}
.y155{bottom:91.040000pt;}
.y160{bottom:91.520000pt;}
.ye0{bottom:92.000000pt;}
.y7d{bottom:92.640000pt;}
.y14d{bottom:95.186667pt;}
.y141{bottom:96.160000pt;}
.y5f{bottom:97.306667pt;}
.ybc{bottom:97.760000pt;}
.y67{bottom:98.266667pt;}
.y11b{bottom:100.960000pt;}
.y182{bottom:101.146667pt;}
.y170{bottom:101.440000pt;}
.y186{bottom:101.466667pt;}
.y40{bottom:103.360000pt;}
.y1ce{bottom:104.160000pt;}
.y4f{bottom:104.360000pt;}
.y15f{bottom:107.226667pt;}
.ydf{bottom:107.680000pt;}
.y7c{bottom:108.640000pt;}
.y14c{bottom:110.866667pt;}
.y140{bottom:111.840000pt;}
.y5e{bottom:112.986667pt;}
.ybb{bottom:113.760000pt;}
.y66{bottom:113.946667pt;}
.y16d{bottom:115.200000pt;}
.y181{bottom:115.226667pt;}
.y16f{bottom:115.520000pt;}
.y185{bottom:115.546667pt;}
.y11a{bottom:116.640000pt;}
.y3f{bottom:119.040000pt;}
.y1cd{bottom:119.840000pt;}
.y15e{bottom:123.066667pt;}
.yde{bottom:123.360000pt;}
.y7b{bottom:124.640000pt;}
.y14b{bottom:126.546667pt;}
.y13f{bottom:127.520000pt;}
.y5d{bottom:128.666667pt;}
.y16c{bottom:129.280000pt;}
.y16e{bottom:129.600000pt;}
.yba{bottom:129.760000pt;}
.y4e{bottom:130.440000pt;}
.y119{bottom:132.320000pt;}
.y3e{bottom:134.720000pt;}
.y1cc{bottom:135.520000pt;}
.y15d{bottom:135.546667pt;}
.ydd{bottom:139.040000pt;}
.y7a{bottom:140.640000pt;}
.y14a{bottom:142.226667pt;}
.y13e{bottom:143.200000pt;}
.y5c{bottom:144.346667pt;}
.yb9{bottom:145.760000pt;}
.y118{bottom:148.000000pt;}
.y3d{bottom:150.426667pt;}
.y1cb{bottom:151.200000pt;}
.ydc{bottom:154.720000pt;}
.y79{bottom:156.640000pt;}
.y149{bottom:157.906667pt;}
.y13d{bottom:158.880000pt;}
.y5b{bottom:160.026667pt;}
.yb8{bottom:161.760000pt;}
.y117{bottom:163.680000pt;}
.y18e{bottom:164.800000pt;}
.y3c{bottom:166.106667pt;}
.y1ca{bottom:166.880000pt;}
.ydb{bottom:170.400000pt;}
.y78{bottom:172.640000pt;}
.y148{bottom:173.586667pt;}
.y13c{bottom:174.560000pt;}
.y5a{bottom:175.706667pt;}
.yb7{bottom:177.786667pt;}
.y116{bottom:179.386667pt;}
.y3b{bottom:181.786667pt;}
.y1c9{bottom:182.586667pt;}
.yda{bottom:186.106667pt;}
.y77{bottom:188.666667pt;}
.y147{bottom:189.466667pt;}
.y13b{bottom:190.266667pt;}
.y59{bottom:191.386667pt;}
.yb6{bottom:193.786667pt;}
.y115{bottom:195.066667pt;}
.y3a{bottom:197.466667pt;}
.y1c8{bottom:198.266667pt;}
.yd9{bottom:201.786667pt;}
.y146{bottom:201.946667pt;}
.y145{bottom:202.600000pt;}
.y76{bottom:204.666667pt;}
.y13a{bottom:205.946667pt;}
.y58{bottom:207.066667pt;}
.yb5{bottom:209.786667pt;}
.y114{bottom:210.746667pt;}
.y39{bottom:213.146667pt;}
.y1c7{bottom:213.946667pt;}
.yd8{bottom:217.466667pt;}
.y75{bottom:220.666667pt;}
.y139{bottom:221.626667pt;}
.yb4{bottom:225.786667pt;}
.y113{bottom:226.426667pt;}
.y38{bottom:228.826667pt;}
.y1c6{bottom:229.626667pt;}
.y57{bottom:230.746667pt;}
.yd7{bottom:233.146667pt;}
.y74{bottom:236.666667pt;}
.y138{bottom:237.306667pt;}
.y18d{bottom:237.786667pt;}
.yb3{bottom:241.786667pt;}
.y112{bottom:242.106667pt;}
.y37{bottom:244.506667pt;}
.y1c5{bottom:245.306667pt;}
.yd6{bottom:248.826667pt;}
.y73{bottom:252.666667pt;}
.y137{bottom:252.986667pt;}
.yb2{bottom:257.786667pt;}
.y36{bottom:260.186667pt;}
.y1c4{bottom:260.986667pt;}
.yd5{bottom:264.506667pt;}
.y72{bottom:268.666667pt;}
.y111{bottom:273.466667pt;}
.yb1{bottom:273.786667pt;}
.y35{bottom:275.866667pt;}
.y1c3{bottom:276.666667pt;}
.yd4{bottom:280.186667pt;}
.y136{bottom:284.346667pt;}
.y71{bottom:284.666667pt;}
.y110{bottom:289.146667pt;}
.yb0{bottom:289.786667pt;}
.y34{bottom:291.546667pt;}
.y1c2{bottom:292.346667pt;}
.yd3{bottom:295.866667pt;}
.y135{bottom:300.026667pt;}
.y70{bottom:300.666667pt;}
.y10f{bottom:304.826667pt;}
.yaf{bottom:305.786667pt;}
.y33{bottom:307.226667pt;}
.y1c1{bottom:308.026667pt;}
.yd2{bottom:311.546667pt;}
.y134{bottom:315.706667pt;}
.y6f{bottom:316.666667pt;}
.y10e{bottom:320.506667pt;}
.yae{bottom:321.786667pt;}
.y32{bottom:322.906667pt;}
.y1c0{bottom:323.706667pt;}
.y18a{bottom:324.826667pt;}
.yd1{bottom:327.226667pt;}
.y133{bottom:331.386667pt;}
.y6e{bottom:332.666667pt;}
.y10d{bottom:336.186667pt;}
.yad{bottom:337.786667pt;}
.y31{bottom:338.586667pt;}
.y1bf{bottom:339.386667pt;}
.yd0{bottom:342.906667pt;}
.y132{bottom:347.066667pt;}
.y6d{bottom:348.666667pt;}
.y11d{bottom:349.960000pt;}
.y10c{bottom:351.866667pt;}
.yac{bottom:353.786667pt;}
.y30{bottom:354.306667pt;}
.y1be{bottom:355.066667pt;}
.y7e{bottom:355.080000pt;}
.ycf{bottom:358.586667pt;}
.y131{bottom:362.746667pt;}
.y8{bottom:363.426667pt;}
.y6c{bottom:364.666667pt;}
.y10b{bottom:367.546667pt;}
.yab{bottom:369.786667pt;}
.y2f{bottom:369.986667pt;}
.y1bd{bottom:370.746667pt;}
.yce{bottom:374.266667pt;}
.y65{bottom:377.480000pt;}
.y130{bottom:378.426667pt;}
.y1df{bottom:379.866667pt;}
.y10a{bottom:383.226667pt;}
.y2e{bottom:385.666667pt;}
.yaa{bottom:385.786667pt;}
.y1bc{bottom:386.426667pt;}
.ycd{bottom:389.986667pt;}
.y1de{bottom:392.386667pt;}
.y12f{bottom:394.146667pt;}
.y109{bottom:398.946667pt;}
.y2d{bottom:401.346667pt;}
.y1bb{bottom:401.506667pt;}
.ya9{bottom:401.826667pt;}
.ycc{bottom:405.666667pt;}
.y1e1{bottom:408.066667pt;}
.y12e{bottom:409.826667pt;}
.y188{bottom:411.906667pt;}
.y108{bottom:414.626667pt;}
.y1ba{bottom:414.786667pt;}
.y2c{bottom:417.026667pt;}
.ya8{bottom:417.826667pt;}
.ycb{bottom:421.346667pt;}
.y12d{bottom:425.506667pt;}
.y107{bottom:430.306667pt;}
.y1b9{bottom:430.466667pt;}
.y2b{bottom:432.706667pt;}
.ya7{bottom:433.826667pt;}
.yca{bottom:437.026667pt;}
.y12c{bottom:441.186667pt;}
.y1dd{bottom:443.746667pt;}
.y106{bottom:445.986667pt;}
.y1b8{bottom:446.146667pt;}
.y2a{bottom:448.386667pt;}
.ya6{bottom:449.826667pt;}
.yc9{bottom:452.706667pt;}
.y12b{bottom:456.866667pt;}
.y1dc{bottom:458.786667pt;}
.y105{bottom:461.666667pt;}
.y1b7{bottom:461.826667pt;}
.y29{bottom:464.066667pt;}
.ya5{bottom:465.826667pt;}
.yc8{bottom:468.386667pt;}
.y1db{bottom:471.426667pt;}
.y12a{bottom:472.546667pt;}
.y104{bottom:477.346667pt;}
.y1b6{bottom:477.506667pt;}
.y28{bottom:479.746667pt;}
.ya4{bottom:481.826667pt;}
.yc7{bottom:484.066667pt;}
.y1da{bottom:484.706667pt;}
.y129{bottom:488.226667pt;}
.y154{bottom:488.866667pt;}
.y103{bottom:493.026667pt;}
.y1b5{bottom:493.186667pt;}
.y27{bottom:495.426667pt;}
.ya3{bottom:497.826667pt;}
.yc6{bottom:499.746667pt;}
.y1d9{bottom:500.386667pt;}
.y56{bottom:503.906667pt;}
.y102{bottom:508.706667pt;}
.y1b4{bottom:508.866667pt;}
.y26{bottom:511.106667pt;}
.y180{bottom:513.026667pt;}
.ya2{bottom:513.826667pt;}
.yc5{bottom:515.426667pt;}
.y1d8{bottom:516.386667pt;}
.y128{bottom:519.586667pt;}
.y101{bottom:524.386667pt;}
.y1b3{bottom:524.546667pt;}
.y25{bottom:526.786667pt;}
.ya1{bottom:529.826667pt;}
.yc4{bottom:531.106667pt;}
.y1d7{bottom:534.946667pt;}
.y127{bottom:535.266667pt;}
.y100{bottom:540.066667pt;}
.y1b2{bottom:540.226667pt;}
.y24{bottom:542.466667pt;}
.ya0{bottom:545.826667pt;}
.yc3{bottom:546.786667pt;}
.y126{bottom:550.946667pt;}
.y1d6{bottom:552.546667pt;}
.yff{bottom:555.746667pt;}
.y1b1{bottom:555.906667pt;}
.y23{bottom:558.173333pt;}
.y9f{bottom:561.826667pt;}
.yc2{bottom:562.466667pt;}
.y1d5{bottom:565.826667pt;}
.y125{bottom:566.626667pt;}
.yfe{bottom:571.426667pt;}
.y1b0{bottom:571.586667pt;}
.y22{bottom:573.853333pt;}
.y9e{bottom:577.826667pt;}
.yc1{bottom:578.146667pt;}
.y1d4{bottom:581.826667pt;}
.y124{bottom:582.306667pt;}
.yfd{bottom:587.106667pt;}
.y1af{bottom:587.266667pt;}
.y21{bottom:589.533333pt;}
.y9d{bottom:593.826667pt;}
.y123{bottom:598.173333pt;}
.y11f{bottom:599.293333pt;}
.y47{bottom:599.933333pt;}
.y1d3{bottom:600.413333pt;}
.yfc{bottom:602.813333pt;}
.y1ae{bottom:602.973333pt;}
.y20{bottom:605.213333pt;}
.y9c{bottom:609.853333pt;}
.y122{bottom:610.653333pt;}
.y1d2{bottom:618.013333pt;}
.yfb{bottom:618.493333pt;}
.y1ad{bottom:618.653333pt;}
.y1f{bottom:620.893333pt;}
.y9b{bottom:625.853333pt;}
.y1d1{bottom:631.293333pt;}
.yfa{bottom:634.173333pt;}
.y1ac{bottom:634.333333pt;}
.y1e{bottom:636.573333pt;}
.y9a{bottom:641.853333pt;}
.y17d{bottom:642.333333pt;}
.yf9{bottom:649.853333pt;}
.y1ab{bottom:650.013333pt;}
.y1d{bottom:652.253333pt;}
.y99{bottom:657.853333pt;}
.y1e0{bottom:658.653333pt;}
.yf8{bottom:665.533333pt;}
.y1aa{bottom:665.693333pt;}
.y1c{bottom:667.933333pt;}
.y98{bottom:673.853333pt;}
.y1a9{bottom:681.053333pt;}
.yf7{bottom:681.213333pt;}
.y1b{bottom:683.613333pt;}
.y97{bottom:689.853333pt;}
.yf6{bottom:696.893333pt;}
.y1a{bottom:699.293333pt;}
.y96{bottom:705.853333pt;}
.yf5{bottom:712.573333pt;}
.y19{bottom:714.973333pt;}
.y17b{bottom:715.293333pt;}
.y95{bottom:721.853333pt;}
.yf4{bottom:728.253333pt;}
.y18{bottom:730.653333pt;}
.y94{bottom:737.853333pt;}
.yf3{bottom:743.933333pt;}
.y17{bottom:746.333333pt;}
.y93{bottom:753.853333pt;}
.y1a7{bottom:756.093333pt;}
.yf2{bottom:759.613333pt;}
.y16{bottom:762.013333pt;}
.y92{bottom:769.853333pt;}
.y55{bottom:774.013333pt;}
.yf1{bottom:775.293333pt;}
.y15{bottom:777.733333pt;}
.y91{bottom:785.853333pt;}
.y54{bottom:786.653333pt;}
.y177{bottom:788.253333pt;}
.yf0{bottom:790.973333pt;}
.y14{bottom:793.413333pt;}
.y4d{bottom:796.733333pt;}
.y1a4{bottom:800.733333pt;}
.y90{bottom:801.853333pt;}
.yef{bottom:806.653333pt;}
.y13{bottom:809.093333pt;}
.y8f{bottom:817.893333pt;}
.yee{bottom:822.373333pt;}
.ybf{bottom:822.853333pt;}
.y12{bottom:824.773333pt;}
.y1a3{bottom:832.773333pt;}
.y8e{bottom:833.893333pt;}
.yed{bottom:838.053333pt;}
.y1a2{bottom:849.093333pt;}
.y8d{bottom:849.893333pt;}
.yec{bottom:853.733333pt;}
.y16b{bottom:855.493333pt;}
.y11{bottom:856.133333pt;}
.y1a1{bottom:865.413333pt;}
.y8c{bottom:865.893333pt;}
.yeb{bottom:869.413333pt;}
.y10{bottom:871.813333pt;}
.y19f{bottom:881.733333pt;}
.y8b{bottom:881.893333pt;}
.yea{bottom:885.093333pt;}
.yf{bottom:887.493333pt;}
.y8a{bottom:897.893333pt;}
.ye9{bottom:900.773333pt;}
.ye{bottom:903.173333pt;}
.y89{bottom:913.893333pt;}
.ye8{bottom:916.453333pt;}
.yd{bottom:918.853333pt;}
.y19e{bottom:929.413333pt;}
.y88{bottom:929.893333pt;}
.ye7{bottom:932.133333pt;}
.yc{bottom:934.533333pt;}
.y19d{bottom:945.733333pt;}
.y87{bottom:945.893333pt;}
.ye6{bottom:947.813333pt;}
.yb{bottom:950.213333pt;}
.y4c{bottom:955.813333pt;}
.y86{bottom:961.893333pt;}
.y19c{bottom:962.053333pt;}
.ye5{bottom:963.493333pt;}
.ya{bottom:965.893333pt;}
.y85{bottom:977.893333pt;}
.y19b{bottom:978.373333pt;}
.ye4{bottom:979.173333pt;}
.y9{bottom:992.480000pt;}
.y4b{bottom:993.413333pt;}
.y84{bottom:993.893333pt;}
.y19a{bottom:994.693333pt;}
.ye3{bottom:994.853333pt;}
.y167{bottom:998.853333pt;}
.y83{bottom:1009.893333pt;}
.ye2{bottom:1010.533333pt;}
.y199{bottom:1011.013333pt;}
.y143{bottom:1016.773333pt;}
.y82{bottom:1025.920000pt;}
.ye1{bottom:1026.240000pt;}
.y4a{bottom:1027.360000pt;}
.y3{bottom:1064.800000pt;}
.y81{bottom:1064.960000pt;}
.y1{bottom:1068.000000pt;}
.y80{bottom:1068.160000pt;}
.h13{height:14.386667pt;}
.h2f{height:14.400000pt;}
.h15{height:14.546667pt;}
.h16{height:14.560000pt;}
.h9{height:15.198667pt;}
.h17{height:15.226667pt;}
.h4{height:15.678667pt;}
.h29{height:15.680000pt;}
.h2a{height:15.712000pt;}
.h2c{height:31.392000pt;}
.h1a{height:36.001250pt;}
.h11{height:36.909063pt;}
.he{height:42.063437pt;}
.hf{height:42.084375pt;}
.h1c{height:42.272000pt;}
.h8{height:44.468750pt;}
.h3{height:44.722500pt;}
.h2b{height:47.040000pt;}
.h1f{height:47.109375pt;}
.h1d{height:48.375000pt;}
.h14{height:52.108438pt;}
.h2{height:52.134375pt;}
.h28{height:53.535000pt;}
.ha{height:55.402500pt;}
.h6{height:59.143438pt;}
.h2e{height:62.781250pt;}
.h20{height:64.672000pt;}
.h21{height:70.400000pt;}
.h26{height:70.432000pt;}
.hc{height:71.524375pt;}
.h7{height:74.262812pt;}
.hb{height:81.377812pt;}
.h25{height:84.480000pt;}
.h24{height:84.512000pt;}
.h23{height:98.560000pt;}
.h12{height:126.418667pt;}
.h22{height:126.752000pt;}
.h1e{height:140.800000pt;}
.hd{height:147.226667pt;}
.h10{height:267.546667pt;}
.h2d{height:287.586667pt;}
.h1b{height:380.853333pt;}
.h19{height:549.373333pt;}
.h18{height:839.320000pt;}
.h27{height:966.238667pt;}
.h5{height:1025.600000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:30.080000pt;}
.w5{width:42.080000pt;}
.w8{width:47.186667pt;}
.w12{width:66.272000pt;}
.w13{width:101.280000pt;}
.w4{width:114.080000pt;}
.w17{width:125.280000pt;}
.w14{width:125.312000pt;}
.w2{width:126.112000pt;}
.w15{width:131.392000pt;}
.w16{width:137.306667pt;}
.w19{width:138.586667pt;}
.w1c{width:336.225333pt;}
.w1d{width:336.385333pt;}
.wc{width:337.665333pt;}
.wf{width:337.986667pt;}
.wb{width:339.105333pt;}
.we{width:341.505333pt;}
.wd{width:341.665333pt;}
.wa{width:426.133333pt;}
.w3{width:474.173333pt;}
.w1a{width:557.373333pt;}
.w9{width:612.093333pt;}
.w11{width:696.600000pt;}
.w10{width:696.760000pt;}
.w18{width:704.120000pt;}
.w6{width:714.213333pt;}
.w1b{width:716.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x29{left:9.596000pt;}
.x33{left:10.878667pt;}
.x35{left:17.118667pt;}
.x6{left:28.320000pt;}
.xb{left:36.160000pt;}
.x13{left:37.120000pt;}
.x2{left:42.080000pt;}
.x32{left:44.641333pt;}
.x23{left:45.921333pt;}
.x1e{left:46.881333pt;}
.x1b{left:48.000000pt;}
.x2a{left:50.884000pt;}
.x2c{left:54.880000pt;}
.x21{left:60.000000pt;}
.x4{left:67.840000pt;}
.x1{left:72.000000pt;}
.x11{left:81.114667pt;}
.xf{left:90.112000pt;}
.xe{left:92.832000pt;}
.x10{left:105.754667pt;}
.x24{left:115.225333pt;}
.x2d{left:121.952000pt;}
.x1f{left:125.305333pt;}
.x20{left:129.625333pt;}
.x27{left:141.146667pt;}
.x1a{left:142.906667pt;}
.xd{left:154.906667pt;}
.x3{left:168.026667pt;}
.x19{left:178.266667pt;}
.x18{left:186.120000pt;}
.x34{left:187.226667pt;}
.x12{left:203.074667pt;}
.xc{left:218.586667pt;}
.x2e{left:223.866667pt;}
.x14{left:229.954667pt;}
.x16{left:239.866667pt;}
.x15{left:305.954667pt;}
.x2f{left:349.986667pt;}
.x7{left:357.026667pt;}
.x17{left:396.066667pt;}
.x26{left:406.466667pt;}
.x1c{left:407.906667pt;}
.x3a{left:413.826667pt;}
.x22{left:419.906667pt;}
.x3d{left:424.226667pt;}
.x37{left:425.986667pt;}
.x1d{left:431.906667pt;}
.x3e{left:445.853333pt;}
.x36{left:474.173333pt;}
.x3f{left:476.093333pt;}
.x30{left:482.013333pt;}
.x3b{left:496.093333pt;}
.x40{left:518.333333pt;}
.x39{left:524.573333pt;}
.x42{left:528.253333pt;}
.x3c{left:535.933333pt;}
.x38{left:575.933333pt;}
.x41{left:604.413333pt;}
.x31{left:619.973333pt;}
.x5{left:642.213333pt;}
.x2b{left:650.849333pt;}
.x28{left:667.009333pt;}
.xa{left:697.573333pt;}
.x25{left:743.653333pt;}
.x8{left:756.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; }
  