
    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_df0f34501e55bfd13e3d12d7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d6d8c245c43034007d4df342.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b1bc7626ebf9627bbbf5a171.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_03da9d2b38b5f54bec503af8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_2a1854aea0ea13319da53037.woff')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_d32c1d0ec466edd2fb2e95b7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_af340f1105bb54af2f477933.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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);}
.v1{vertical-align:-69.300000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.106800px;}
.lse{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.513600px;}
.ls5{letter-spacing:13.134240px;}
.lsd{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.002720px;}
.ls3{letter-spacing:64.002720px;}
.ls2{letter-spacing:201.036000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws8{word-spacing:-15.453600px;}
.ws1{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.199800px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.680200px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.584000px;}
._0{width:1.195200px;}
._5{width:2.647200px;}
._e{width:3.705120px;}
._2{width:5.438160px;}
._3{width:6.514320px;}
._4{width:7.527360px;}
._7{width:9.322560px;}
._8{width:10.697040px;}
._b{width:12.071520px;}
._f{width:13.621200px;}
._14{width:16.673040px;}
._11{width:17.778960px;}
._10{width:18.824400px;}
._12{width:20.497680px;}
._a{width:21.951120px;}
._9{width:23.067360px;}
._15{width:24.239280px;}
._c{width:25.517520px;}
._d{width:26.712720px;}
._19{width:28.595520px;}
._13{width:29.939760px;}
._17{width:31.309680px;}
._18{width:32.578320px;}
._1a{width:34.013280px;}
._20{width:35.138880px;}
._16{width:37.117440px;}
._1e{width:154.740720px;}
._6{width:201.036000px;}
._1d{width:368.379840px;}
._1c{width:399.980640px;}
._1f{width:494.533920px;}
._1b{width:577.327440px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y14a{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.ya6{bottom:3.420000px;}
.yaa{bottom:3.600000px;}
.ya8{bottom:3.774000px;}
.yae{bottom:3.780000px;}
.yeb{bottom:3.825000px;}
.y17a{bottom:12.060000px;}
.y181{bottom:12.240000px;}
.y17e{bottom:12.420000px;}
.y184{bottom:12.465000px;}
.y17b{bottom:20.700000px;}
.y180{bottom:20.880000px;}
.y17d{bottom:21.060000px;}
.y183{bottom:21.105000px;}
.y5{bottom:35.640000px;}
.y4{bottom:55.260000px;}
.y18e{bottom:113.616000px;}
.y136{bottom:119.016000px;}
.y7c{bottom:119.196000px;}
.y113{bottom:120.276000px;}
.y16b{bottom:121.356000px;}
.y1c3{bottom:122.076000px;}
.ydd{bottom:123.156000px;}
.y97{bottom:123.516000px;}
.ya9{bottom:124.776000px;}
.y40{bottom:125.496000px;}
.y18d{bottom:135.396000px;}
.y9f{bottom:135.576000px;}
.y135{bottom:136.296000px;}
.y7b{bottom:136.476000px;}
.y16a{bottom:138.636000px;}
.y1c2{bottom:139.356000px;}
.y1c8{bottom:140.436000px;}
.y96{bottom:140.796000px;}
.y112{bottom:141.876000px;}
.y3f{bottom:142.776000px;}
.ydc{bottom:144.936000px;}
.ya7{bottom:146.376000px;}
.y134{bottom:153.570000px;}
.y7a{bottom:153.750000px;}
.y169{bottom:155.730000px;}
.y1c1{bottom:156.630000px;}
.y18c{bottom:156.990000px;}
.y95{bottom:158.070000px;}
.y3e{bottom:160.050000px;}
.ydb{bottom:166.710000px;}
.ya5{bottom:168.150000px;}
.y133{bottom:170.850000px;}
.y79{bottom:171.030000px;}
.y168{bottom:173.010000px;}
.y1c0{bottom:173.370000px;}
.y94{bottom:174.990000px;}
.y9b{bottom:175.350000px;}
.y3d{bottom:177.330000px;}
.y18b{bottom:178.770000px;}
.y111{bottom:183.630000px;}
.y132{bottom:187.770000px;}
.y78{bottom:188.310000px;}
.yda{bottom:188.490000px;}
.y167{bottom:189.930000px;}
.y1bf{bottom:191.010000px;}
.y93{bottom:192.630000px;}
.y3c{bottom:194.430000px;}
.y110{bottom:200.730000px;}
.y77{bottom:205.230000px;}
.y166{bottom:207.570000px;}
.y1be{bottom:208.290000px;}
.y92{bottom:209.730000px;}
.yd9{bottom:210.090000px;}
.y3b{bottom:211.710000px;}
.y10f{bottom:217.650000px;}
.y18a{bottom:220.530000px;}
.y131{bottom:222.510000px;}
.y76{bottom:222.690000px;}
.y165{bottom:224.850000px;}
.y1bd{bottom:225.570000px;}
.y91{bottom:227.010000px;}
.y3a{bottom:228.990000px;}
.yd8{bottom:234.570000px;}
.y10e{bottom:235.290000px;}
.y189{bottom:237.630000px;}
.y130{bottom:239.790000px;}
.y75{bottom:239.970000px;}
.y164{bottom:242.130000px;}
.y1bc{bottom:242.850000px;}
.ya4{bottom:243.930000px;}
.y90{bottom:244.290000px;}
.y39{bottom:246.270000px;}
.yd7{bottom:251.850000px;}
.y10d{bottom:252.570000px;}
.y188{bottom:254.910000px;}
.y12f{bottom:257.070000px;}
.y74{bottom:257.250000px;}
.y163{bottom:259.230000px;}
.y1bb{bottom:260.130000px;}
.y1c7{bottom:261.210000px;}
.y8f{bottom:261.570000px;}
.y38{bottom:263.550000px;}
.yd6{bottom:269.130000px;}
.y10c{bottom:269.850000px;}
.y187{bottom:272.190000px;}
.y12e{bottom:274.350000px;}
.y73{bottom:274.530000px;}
.y162{bottom:276.510000px;}
.y1ba{bottom:277.230000px;}
.y8e{bottom:278.850000px;}
.y37{bottom:280.830000px;}
.yd5{bottom:285.870000px;}
.y10b{bottom:287.130000px;}
.y186{bottom:289.470000px;}
.y12d{bottom:291.630000px;}
.y72{bottom:291.810000px;}
.y161{bottom:293.790000px;}
.y1b9{bottom:294.510000px;}
.y8d{bottom:295.770000px;}
.y9a{bottom:296.130000px;}
.y36{bottom:297.930000px;}
.yd4{bottom:303.510000px;}
.y10a{bottom:304.230000px;}
.y185{bottom:306.390000px;}
.y12c{bottom:308.730000px;}
.y71{bottom:308.910000px;}
.y160{bottom:311.070000px;}
.y1b8{bottom:311.790000px;}
.ya3{bottom:312.870000px;}
.y8c{bottom:313.230000px;}
.y35{bottom:315.210000px;}
.yd3{bottom:320.790000px;}
.y109{bottom:321.510000px;}
.y12b{bottom:326.010000px;}
.y70{bottom:326.190000px;}
.y15f{bottom:328.350000px;}
.y1b7{bottom:329.070000px;}
.y8b{bottom:330.510000px;}
.y34{bottom:332.130000px;}
.yd2{bottom:338.070000px;}
.y108{bottom:338.790000px;}
.y12a{bottom:343.290000px;}
.y6f{bottom:343.470000px;}
.y182{bottom:345.270000px;}
.y15e{bottom:345.630000px;}
.y1b6{bottom:346.350000px;}
.y8a{bottom:347.790000px;}
.y33{bottom:349.770000px;}
.yd1{bottom:355.350000px;}
.y107{bottom:356.070000px;}
.y129{bottom:360.615000px;}
.y6e{bottom:360.795000px;}
.y15d{bottom:362.775000px;}
.y1b5{bottom:363.675000px;}
.y89{bottom:365.115000px;}
.y32{bottom:367.095000px;}
.yd0{bottom:372.495000px;}
.y106{bottom:373.035000px;}
.y128{bottom:377.895000px;}
.y6d{bottom:378.075000px;}
.y15c{bottom:380.055000px;}
.y1b4{bottom:380.775000px;}
.ya2{bottom:382.035000px;}
.y88{bottom:382.395000px;}
.y31{bottom:384.375000px;}
.ycf{bottom:389.775000px;}
.y105{bottom:394.635000px;}
.y127{bottom:394.995000px;}
.y6c{bottom:395.355000px;}
.y15b{bottom:397.335000px;}
.y1b3{bottom:398.055000px;}
.y1c6{bottom:399.315000px;}
.y87{bottom:399.675000px;}
.y30{bottom:401.475000px;}
.yce{bottom:406.695000px;}
.y6b{bottom:412.095000px;}
.y126{bottom:412.275000px;}
.y15a{bottom:414.615000px;}
.y1b2{bottom:415.335000px;}
.y104{bottom:416.415000px;}
.y86{bottom:416.775000px;}
.y2f{bottom:418.755000px;}
.y17f{bottom:423.435000px;}
.ycd{bottom:428.475000px;}
.y125{bottom:429.555000px;}
.y6a{bottom:429.735000px;}
.y159{bottom:431.895000px;}
.y1b1{bottom:432.255000px;}
.y99{bottom:433.695000px;}
.y85{bottom:434.055000px;}
.y2e{bottom:436.035000px;}
.y103{bottom:438.195000px;}
.y124{bottom:446.835000px;}
.y69{bottom:447.015000px;}
.y158{bottom:448.995000px;}
.y1b0{bottom:449.895000px;}
.ycc{bottom:450.255000px;}
.y84{bottom:451.335000px;}
.y2d{bottom:453.315000px;}
.y17c{bottom:462.315000px;}
.y102{bottom:462.495000px;}
.y123{bottom:464.115000px;}
.y68{bottom:465.375000px;}
.y157{bottom:466.275000px;}
.y1af{bottom:466.995000px;}
.ya1{bottom:468.255000px;}
.y83{bottom:468.615000px;}
.y2c{bottom:470.595000px;}
.ycb{bottom:472.035000px;}
.y101{bottom:479.775000px;}
.y122{bottom:481.395000px;}
.y156{bottom:483.555000px;}
.y67{bottom:483.735000px;}
.y1ae{bottom:484.275000px;}
.y9e{bottom:485.535000px;}
.y82{bottom:485.895000px;}
.y2b{bottom:487.695000px;}
.yca{bottom:493.635000px;}
.y100{bottom:497.055000px;}
.y121{bottom:498.135000px;}
.y155{bottom:500.835000px;}
.y179{bottom:501.375000px;}
.y1ad{bottom:501.555000px;}
.y66{bottom:501.915000px;}
.y81{bottom:502.995000px;}
.y2a{bottom:504.975000px;}
.yff{bottom:513.975000px;}
.yc9{bottom:515.415000px;}
.y154{bottom:518.115000px;}
.y1ac{bottom:518.835000px;}
.y65{bottom:519.915000px;}
.y80{bottom:520.275000px;}
.y29{bottom:522.255000px;}
.yfe{bottom:531.615000px;}
.y153{bottom:535.395000px;}
.y1ab{bottom:536.115000px;}
.y1c5{bottom:537.195000px;}
.y64{bottom:537.555000px;}
.y28{bottom:539.175000px;}
.y178{bottom:542.955000px;}
.y120{bottom:544.395000px;}
.yfd{bottom:548.895000px;}
.y152{bottom:552.135000px;}
.y1aa{bottom:553.395000px;}
.y63{bottom:554.835000px;}
.y27{bottom:556.815000px;}
.yc8{bottom:556.995000px;}
.y177{bottom:560.235000px;}
.y11f{bottom:561.495000px;}
.yfc{bottom:565.995000px;}
.y151{bottom:569.775000px;}
.y1a9{bottom:570.495000px;}
.y62{bottom:572.115000px;}
.y26{bottom:574.095000px;}
.yc7{bottom:574.275000px;}
.y176{bottom:577.515000px;}
.y11e{bottom:578.775000px;}
.yfb{bottom:583.275000px;}
.y150{bottom:586.695000px;}
.y1a8{bottom:587.775000px;}
.y61{bottom:589.395000px;}
.y25{bottom:591.195000px;}
.y175{bottom:594.795000px;}
.y11d{bottom:595.695000px;}
.yfa{bottom:600.555000px;}
.y14f{bottom:604.335000px;}
.y1a7{bottom:605.055000px;}
.y60{bottom:606.495000px;}
.y24{bottom:608.475000px;}
.yc6{bottom:608.835000px;}
.y174{bottom:611.895000px;}
.y11c{bottom:613.335000px;}
.yf9{bottom:617.865000px;}
.y14e{bottom:621.285000px;}
.y1a6{bottom:622.365000px;}
.y5f{bottom:623.805000px;}
.y23{bottom:625.425000px;}
.yc5{bottom:626.145000px;}
.y173{bottom:629.205000px;}
.y11b{bottom:630.645000px;}
.yf8{bottom:634.785000px;}
.y1a5{bottom:639.645000px;}
.y5e{bottom:641.085000px;}
.y14d{bottom:642.885000px;}
.y22{bottom:643.065000px;}
.yc4{bottom:643.425000px;}
.y172{bottom:646.125000px;}
.y11a{bottom:647.925000px;}
.yf7{bottom:652.425000px;}
.y1a4{bottom:656.925000px;}
.y5d{bottom:658.365000px;}
.y21{bottom:660.345000px;}
.yc3{bottom:660.525000px;}
.y171{bottom:663.765000px;}
.y14c{bottom:664.665000px;}
.y119{bottom:665.025000px;}
.yf6{bottom:669.525000px;}
.y1a3{bottom:674.025000px;}
.y5c{bottom:675.645000px;}
.y20{bottom:677.625000px;}
.yc2{bottom:677.805000px;}
.y170{bottom:681.045000px;}
.y118{bottom:682.305000px;}
.y14b{bottom:686.445000px;}
.yf5{bottom:686.805000px;}
.y1a2{bottom:690.945000px;}
.y9d{bottom:692.565000px;}
.y5b{bottom:692.925000px;}
.y1f{bottom:694.725000px;}
.yc1{bottom:695.085000px;}
.y16f{bottom:698.325000px;}
.y117{bottom:699.585000px;}
.yf4{bottom:704.085000px;}
.y149{bottom:708.225000px;}
.y5a{bottom:710.025000px;}
.y1e{bottom:712.005000px;}
.yc0{bottom:712.365000px;}
.y16e{bottom:715.425000px;}
.y116{bottom:716.865000px;}
.yf3{bottom:721.365000px;}
.y1a1{bottom:725.865000px;}
.y59{bottom:726.945000px;}
.y7f{bottom:727.305000px;}
.y1d{bottom:729.285000px;}
.y148{bottom:730.005000px;}
.y16d{bottom:732.705000px;}
.y115{bottom:734.145000px;}
.yf2{bottom:738.645000px;}
.y1a0{bottom:743.145000px;}
.y58{bottom:744.585000px;}
.y16c{bottom:746.385000px;}
.y1c{bottom:746.565000px;}
.ybf{bottom:750.885000px;}
.y147{bottom:754.305000px;}
.yf1{bottom:755.745000px;}
.y19f{bottom:760.245000px;}
.y57{bottom:761.865000px;}
.y1b{bottom:763.845000px;}
.y146{bottom:771.585000px;}
.ybe{bottom:772.665000px;}
.yf0{bottom:773.025000px;}
.y19e{bottom:777.165000px;}
.y56{bottom:779.145000px;}
.y1a{bottom:781.125000px;}
.y145{bottom:788.865000px;}
.yef{bottom:790.305000px;}
.ybd{bottom:794.445000px;}
.y55{bottom:796.245000px;}
.y19{bottom:798.225000px;}
.y19d{bottom:798.945000px;}
.y144{bottom:806.145000px;}
.yee{bottom:807.225000px;}
.y98{bottom:813.165000px;}
.y54{bottom:813.525000px;}
.y18{bottom:815.505000px;}
.ybc{bottom:816.225000px;}
.y19c{bottom:820.725000px;}
.y143{bottom:823.245000px;}
.yed{bottom:829.005000px;}
.y53{bottom:830.805000px;}
.y17{bottom:832.785000px;}
.ybb{bottom:838.005000px;}
.y142{bottom:840.525000px;}
.y19b{bottom:842.505000px;}
.y52{bottom:848.085000px;}
.y16{bottom:850.065000px;}
.yec{bottom:850.785000px;}
.y141{bottom:857.805000px;}
.y114{bottom:862.305000px;}
.y51{bottom:865.005000px;}
.y7e{bottom:865.365000px;}
.y15{bottom:867.345000px;}
.yea{bottom:872.385000px;}
.y140{bottom:875.130000px;}
.yba{bottom:879.630000px;}
.y50{bottom:882.690000px;}
.y19a{bottom:884.130000px;}
.y14{bottom:884.490000px;}
.y13f{bottom:892.410000px;}
.ye9{bottom:894.210000px;}
.yb9{bottom:896.910000px;}
.y4f{bottom:899.790000px;}
.y199{bottom:901.410000px;}
.y13{bottom:901.770000px;}
.y13e{bottom:909.690000px;}
.yb8{bottom:913.830000px;}
.ye8{bottom:915.990000px;}
.y4e{bottom:917.070000px;}
.y198{bottom:918.330000px;}
.y12{bottom:918.690000px;}
.y13d{bottom:926.790000px;}
.yb7{bottom:931.290000px;}
.y4d{bottom:934.350000px;}
.y197{bottom:935.790000px;}
.y11{bottom:937.050000px;}
.ye7{bottom:940.290000px;}
.y13c{bottom:944.070000px;}
.yb6{bottom:948.570000px;}
.y1c4{bottom:951.270000px;}
.y4c{bottom:951.630000px;}
.y196{bottom:953.070000px;}
.y10{bottom:954.330000px;}
.ye6{bottom:957.570000px;}
.y13b{bottom:960.990000px;}
.yb5{bottom:965.850000px;}
.y4b{bottom:968.910000px;}
.y195{bottom:970.350000px;}
.yf{bottom:971.610000px;}
.ye5{bottom:974.490000px;}
.y13a{bottom:982.770000px;}
.yb4{bottom:983.130000px;}
.y4a{bottom:986.190000px;}
.y194{bottom:987.630000px;}
.ye{bottom:988.890000px;}
.ye4{bottom:992.130000px;}
.yb3{bottom:1000.410000px;}
.y49{bottom:1003.290000px;}
.y139{bottom:1004.550000px;}
.y193{bottom:1004.910000px;}
.yd{bottom:1005.990000px;}
.ye3{bottom:1009.410000px;}
.yb2{bottom:1017.690000px;}
.y1ca{bottom:1020.210000px;}
.y48{bottom:1020.570000px;}
.y192{bottom:1021.830000px;}
.yc{bottom:1023.270000px;}
.y138{bottom:1026.150000px;}
.ye2{bottom:1026.690000px;}
.yb1{bottom:1034.790000px;}
.ya0{bottom:1037.490000px;}
.y47{bottom:1037.850000px;}
.y191{bottom:1039.290000px;}
.yb{bottom:1041.270000px;}
.ye1{bottom:1043.790000px;}
.y137{bottom:1047.930000px;}
.yb0{bottom:1052.070000px;}
.y46{bottom:1055.130000px;}
.y190{bottom:1056.570000px;}
.ya{bottom:1058.550000px;}
.ye0{bottom:1061.070000px;}
.yaf{bottom:1068.990000px;}
.y45{bottom:1072.410000px;}
.y18f{bottom:1073.850000px;}
.y9{bottom:1076.190000px;}
.ydf{bottom:1078.350000px;}
.y7d{bottom:1089.330000px;}
.y44{bottom:1089.690000px;}
.yad{bottom:1090.770000px;}
.yde{bottom:1095.630000px;}
.y8{bottom:1096.890000px;}
.y9c{bottom:1106.430000px;}
.y43{bottom:1106.790000px;}
.yac{bottom:1112.550000px;}
.y7{bottom:1117.590000px;}
.y42{bottom:1124.070000px;}
.yab{bottom:1134.180000px;}
.y6{bottom:1138.320000px;}
.y1c9{bottom:1141.020000px;}
.y41{bottom:1141.380000px;}
.y3{bottom:1161.360000px;}
.y2{bottom:1178.640000px;}
.y1{bottom:1195.920000px;}
.hb{height:17.100000px;}
.ha{height:17.280000px;}
.hc{height:17.316000px;}
.he{height:34.380000px;}
.hd{height:34.560000px;}
.hf{height:34.596000px;}
.h7{height:42.894141px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h9{height:59.439023px;}
.h6{height:60.226875px;}
.h8{height:61.423863px;}
.h4{height:65.884219px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2b{width:34.020000px;}
.w25{width:35.640000px;}
.w26{width:45.216000px;}
.w2f{width:45.360000px;}
.w8{width:46.800000px;}
.wb{width:47.520000px;}
.w33{width:51.696000px;}
.w30{width:60.840000px;}
.w31{width:64.440000px;}
.w12{width:68.256000px;}
.w1f{width:68.760000px;}
.w20{width:68.796000px;}
.w21{width:68.940000px;}
.w19{width:77.580000px;}
.w2a{width:78.480000px;}
.w24{width:86.400000px;}
.w13{width:87.660000px;}
.w2d{width:88.380000px;}
.w32{width:89.820000px;}
.w14{width:103.680000px;}
.w2c{width:106.596000px;}
.w10{width:116.640000px;}
.w36{width:118.080000px;}
.w28{width:118.980000px;}
.w1c{width:120.096000px;}
.w34{width:120.960000px;}
.w2{width:121.500000px;}
.w37{width:123.156000px;}
.w27{width:125.100000px;}
.w6{width:129.060000px;}
.w23{width:148.536000px;}
.w4{width:163.080000px;}
.w11{width:176.790000px;}
.w15{width:177.150000px;}
.w16{width:179.310000px;}
.we{width:180.930000px;}
.w1a{width:181.290000px;}
.wc{width:182.010000px;}
.w38{width:210.090000px;}
.w17{width:212.430000px;}
.w35{width:220.890000px;}
.wf{width:221.070000px;}
.w22{width:227.370000px;}
.w2e{width:232.770000px;}
.w29{width:241.635000px;}
.w1d{width:242.850000px;}
.wd{width:262.110000px;}
.w9{width:283.530000px;}
.w1b{width:311.970000px;}
.wa{width:344.595000px;}
.w1e{width:395.355000px;}
.w18{width:416.055000px;}
.w5{width:513.975000px;}
.w7{width:548.205000px;}
.w3{width:555.585000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x66{left:1.260000px;}
.x6a{left:3.240000px;}
.x5f{left:4.680000px;}
.x1d{left:7.560000px;}
.x29{left:8.640000px;}
.x34{left:10.305000px;}
.x68{left:12.060000px;}
.x38{left:13.140000px;}
.x42{left:15.480000px;}
.x30{left:16.740000px;}
.x5c{left:18.360000px;}
.x4c{left:19.440000px;}
.x56{left:21.060000px;}
.x3e{left:22.140000px;}
.x3b{left:23.760000px;}
.x32{left:25.050000px;}
.x41{left:26.280000px;}
.x25{left:27.360000px;}
.x43{left:29.160000px;}
.x36{left:30.960000px;}
.x69{left:32.940000px;}
.x39{left:36.360000px;}
.x27{left:38.700000px;}
.x6c{left:40.140000px;}
.x1f{left:41.760000px;}
.x11{left:44.814000px;}
.x4e{left:46.830000px;}
.x18{left:48.594000px;}
.x21{left:50.070000px;}
.x75{left:53.634000px;}
.x76{left:55.614000px;}
.x5e{left:57.240000px;}
.x46{left:58.725000px;}
.x77{left:60.300000px;}
.x7a{left:61.590000px;}
.x60{left:62.640000px;}
.x15{left:65.514000px;}
.x37{left:69.150000px;}
.x3f{left:71.685000px;}
.x2b{left:73.485000px;}
.x2c{left:75.420000px;}
.x2a{left:77.940000px;}
.x6d{left:81.585000px;}
.x2e{left:82.614000px;}
.x6e{left:84.234000px;}
.x63{left:87.885000px;}
.x40{left:89.325000px;}
.x7b{left:90.354000px;}
.x6b{left:91.665000px;}
.x78{left:92.874000px;}
.x10{left:106.956000px;}
.x5{left:108.036000px;}
.x58{left:122.214000px;}
.x55{left:123.294000px;}
.x22{left:126.045000px;}
.x48{left:132.654000px;}
.xc{left:135.036000px;}
.x57{left:137.694000px;}
.x49{left:145.254000px;}
.x47{left:148.134000px;}
.x1e{left:156.090000px;}
.x23{left:158.970000px;}
.xd{left:162.030000px;}
.x50{left:165.459000px;}
.x44{left:180.039000px;}
.x13{left:201.465000px;}
.x1a{left:203.265000px;}
.x16{left:204.690000px;}
.x3a{left:212.790000px;}
.x62{left:228.270000px;}
.x12{left:230.790000px;}
.x19{left:238.170000px;}
.x4f{left:239.250000px;}
.x24{left:241.410000px;}
.x17{left:245.730000px;}
.x1b{left:249.735000px;}
.x6{left:259.050000px;}
.x14{left:260.715000px;}
.x7{left:272.955000px;}
.x61{left:275.835000px;}
.xa{left:286.095000px;}
.x2d{left:297.795000px;}
.x1{left:300.855000px;}
.xf{left:302.295000px;}
.x1c{left:308.235000px;}
.x2f{left:330.375000px;}
.x4a{left:334.515000px;}
.x59{left:336.675000px;}
.x26{left:340.995000px;}
.x6f{left:342.075000px;}
.x8{left:382.035000px;}
.x70{left:389.595000px;}
.x3c{left:392.295000px;}
.x9{left:417.315000px;}
.x4b{left:421.095000px;}
.xb{left:435.315000px;}
.x20{left:441.795000px;}
.x3{left:445.395000px;}
.x31{left:449.175000px;}
.x79{left:450.615000px;}
.x71{left:452.625000px;}
.x64{left:472.065000px;}
.x2{left:475.485000px;}
.x5a{left:487.365000px;}
.x51{left:504.465000px;}
.x72{left:519.405000px;}
.x45{left:525.345000px;}
.x4d{left:543.525000px;}
.x65{left:552.705000px;}
.x3d{left:573.945000px;}
.x52{left:575.385000px;}
.x67{left:589.065000px;}
.x28{left:605.445000px;}
.x73{left:611.385000px;}
.x5b{left:613.905000px;}
.x33{left:628.125000px;}
.x53{left:646.530000px;}
.x5d{left:661.290000px;}
.x74{left:665.430000px;}
.xe{left:673.890000px;}
.x35{left:698.550000px;}
.x54{left:717.450000px;}
.x4{left:758.130000px;}
@media print{
.v1{vertical-align:-61.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.456533pt;}
.ls5{letter-spacing:11.674880pt;}
.lsd{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.891307pt;}
.ls3{letter-spacing:56.891307pt;}
.ls2{letter-spacing:178.698667pt;}
.ws3{word-spacing:-53.120000pt;}
.ws8{word-spacing:-13.736533pt;}
.ws1{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.049067pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.408000pt;}
._0{width:1.062400pt;}
._5{width:2.353067pt;}
._e{width:3.293440pt;}
._2{width:4.833920pt;}
._3{width:5.790507pt;}
._4{width:6.690987pt;}
._7{width:8.286720pt;}
._8{width:9.508480pt;}
._b{width:10.730240pt;}
._f{width:12.107733pt;}
._14{width:14.820480pt;}
._11{width:15.803520pt;}
._10{width:16.732800pt;}
._12{width:18.220160pt;}
._a{width:19.512107pt;}
._9{width:20.504320pt;}
._15{width:21.546027pt;}
._c{width:22.682240pt;}
._d{width:23.744640pt;}
._19{width:25.418240pt;}
._13{width:26.613120pt;}
._17{width:27.830827pt;}
._18{width:28.958507pt;}
._1a{width:30.234027pt;}
._20{width:31.234560pt;}
._16{width:32.993280pt;}
._1e{width:137.547307pt;}
._6{width:178.698667pt;}
._1d{width:327.448747pt;}
._1c{width:355.538347pt;}
._1f{width:439.585707pt;}
._1b{width:513.179947pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y14a{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.ya6{bottom:3.040000pt;}
.yaa{bottom:3.200000pt;}
.ya8{bottom:3.354667pt;}
.yae{bottom:3.360000pt;}
.yeb{bottom:3.400000pt;}
.y17a{bottom:10.720000pt;}
.y181{bottom:10.880000pt;}
.y17e{bottom:11.040000pt;}
.y184{bottom:11.080000pt;}
.y17b{bottom:18.400000pt;}
.y180{bottom:18.560000pt;}
.y17d{bottom:18.720000pt;}
.y183{bottom:18.760000pt;}
.y5{bottom:31.680000pt;}
.y4{bottom:49.120000pt;}
.y18e{bottom:100.992000pt;}
.y136{bottom:105.792000pt;}
.y7c{bottom:105.952000pt;}
.y113{bottom:106.912000pt;}
.y16b{bottom:107.872000pt;}
.y1c3{bottom:108.512000pt;}
.ydd{bottom:109.472000pt;}
.y97{bottom:109.792000pt;}
.ya9{bottom:110.912000pt;}
.y40{bottom:111.552000pt;}
.y18d{bottom:120.352000pt;}
.y9f{bottom:120.512000pt;}
.y135{bottom:121.152000pt;}
.y7b{bottom:121.312000pt;}
.y16a{bottom:123.232000pt;}
.y1c2{bottom:123.872000pt;}
.y1c8{bottom:124.832000pt;}
.y96{bottom:125.152000pt;}
.y112{bottom:126.112000pt;}
.y3f{bottom:126.912000pt;}
.ydc{bottom:128.832000pt;}
.ya7{bottom:130.112000pt;}
.y134{bottom:136.506667pt;}
.y7a{bottom:136.666667pt;}
.y169{bottom:138.426667pt;}
.y1c1{bottom:139.226667pt;}
.y18c{bottom:139.546667pt;}
.y95{bottom:140.506667pt;}
.y3e{bottom:142.266667pt;}
.ydb{bottom:148.186667pt;}
.ya5{bottom:149.466667pt;}
.y133{bottom:151.866667pt;}
.y79{bottom:152.026667pt;}
.y168{bottom:153.786667pt;}
.y1c0{bottom:154.106667pt;}
.y94{bottom:155.546667pt;}
.y9b{bottom:155.866667pt;}
.y3d{bottom:157.626667pt;}
.y18b{bottom:158.906667pt;}
.y111{bottom:163.226667pt;}
.y132{bottom:166.906667pt;}
.y78{bottom:167.386667pt;}
.yda{bottom:167.546667pt;}
.y167{bottom:168.826667pt;}
.y1bf{bottom:169.786667pt;}
.y93{bottom:171.226667pt;}
.y3c{bottom:172.826667pt;}
.y110{bottom:178.426667pt;}
.y77{bottom:182.426667pt;}
.y166{bottom:184.506667pt;}
.y1be{bottom:185.146667pt;}
.y92{bottom:186.426667pt;}
.yd9{bottom:186.746667pt;}
.y3b{bottom:188.186667pt;}
.y10f{bottom:193.466667pt;}
.y18a{bottom:196.026667pt;}
.y131{bottom:197.786667pt;}
.y76{bottom:197.946667pt;}
.y165{bottom:199.866667pt;}
.y1bd{bottom:200.506667pt;}
.y91{bottom:201.786667pt;}
.y3a{bottom:203.546667pt;}
.yd8{bottom:208.506667pt;}
.y10e{bottom:209.146667pt;}
.y189{bottom:211.226667pt;}
.y130{bottom:213.146667pt;}
.y75{bottom:213.306667pt;}
.y164{bottom:215.226667pt;}
.y1bc{bottom:215.866667pt;}
.ya4{bottom:216.826667pt;}
.y90{bottom:217.146667pt;}
.y39{bottom:218.906667pt;}
.yd7{bottom:223.866667pt;}
.y10d{bottom:224.506667pt;}
.y188{bottom:226.586667pt;}
.y12f{bottom:228.506667pt;}
.y74{bottom:228.666667pt;}
.y163{bottom:230.426667pt;}
.y1bb{bottom:231.226667pt;}
.y1c7{bottom:232.186667pt;}
.y8f{bottom:232.506667pt;}
.y38{bottom:234.266667pt;}
.yd6{bottom:239.226667pt;}
.y10c{bottom:239.866667pt;}
.y187{bottom:241.946667pt;}
.y12e{bottom:243.866667pt;}
.y73{bottom:244.026667pt;}
.y162{bottom:245.786667pt;}
.y1ba{bottom:246.426667pt;}
.y8e{bottom:247.866667pt;}
.y37{bottom:249.626667pt;}
.yd5{bottom:254.106667pt;}
.y10b{bottom:255.226667pt;}
.y186{bottom:257.306667pt;}
.y12d{bottom:259.226667pt;}
.y72{bottom:259.386667pt;}
.y161{bottom:261.146667pt;}
.y1b9{bottom:261.786667pt;}
.y8d{bottom:262.906667pt;}
.y9a{bottom:263.226667pt;}
.y36{bottom:264.826667pt;}
.yd4{bottom:269.786667pt;}
.y10a{bottom:270.426667pt;}
.y185{bottom:272.346667pt;}
.y12c{bottom:274.426667pt;}
.y71{bottom:274.586667pt;}
.y160{bottom:276.506667pt;}
.y1b8{bottom:277.146667pt;}
.ya3{bottom:278.106667pt;}
.y8c{bottom:278.426667pt;}
.y35{bottom:280.186667pt;}
.yd3{bottom:285.146667pt;}
.y109{bottom:285.786667pt;}
.y12b{bottom:289.786667pt;}
.y70{bottom:289.946667pt;}
.y15f{bottom:291.866667pt;}
.y1b7{bottom:292.506667pt;}
.y8b{bottom:293.786667pt;}
.y34{bottom:295.226667pt;}
.yd2{bottom:300.506667pt;}
.y108{bottom:301.146667pt;}
.y12a{bottom:305.146667pt;}
.y6f{bottom:305.306667pt;}
.y182{bottom:306.906667pt;}
.y15e{bottom:307.226667pt;}
.y1b6{bottom:307.866667pt;}
.y8a{bottom:309.146667pt;}
.y33{bottom:310.906667pt;}
.yd1{bottom:315.866667pt;}
.y107{bottom:316.506667pt;}
.y129{bottom:320.546667pt;}
.y6e{bottom:320.706667pt;}
.y15d{bottom:322.466667pt;}
.y1b5{bottom:323.266667pt;}
.y89{bottom:324.546667pt;}
.y32{bottom:326.306667pt;}
.yd0{bottom:331.106667pt;}
.y106{bottom:331.586667pt;}
.y128{bottom:335.906667pt;}
.y6d{bottom:336.066667pt;}
.y15c{bottom:337.826667pt;}
.y1b4{bottom:338.466667pt;}
.ya2{bottom:339.586667pt;}
.y88{bottom:339.906667pt;}
.y31{bottom:341.666667pt;}
.ycf{bottom:346.466667pt;}
.y105{bottom:350.786667pt;}
.y127{bottom:351.106667pt;}
.y6c{bottom:351.426667pt;}
.y15b{bottom:353.186667pt;}
.y1b3{bottom:353.826667pt;}
.y1c6{bottom:354.946667pt;}
.y87{bottom:355.266667pt;}
.y30{bottom:356.866667pt;}
.yce{bottom:361.506667pt;}
.y6b{bottom:366.306667pt;}
.y126{bottom:366.466667pt;}
.y15a{bottom:368.546667pt;}
.y1b2{bottom:369.186667pt;}
.y104{bottom:370.146667pt;}
.y86{bottom:370.466667pt;}
.y2f{bottom:372.226667pt;}
.y17f{bottom:376.386667pt;}
.ycd{bottom:380.866667pt;}
.y125{bottom:381.826667pt;}
.y6a{bottom:381.986667pt;}
.y159{bottom:383.906667pt;}
.y1b1{bottom:384.226667pt;}
.y99{bottom:385.506667pt;}
.y85{bottom:385.826667pt;}
.y2e{bottom:387.586667pt;}
.y103{bottom:389.506667pt;}
.y124{bottom:397.186667pt;}
.y69{bottom:397.346667pt;}
.y158{bottom:399.106667pt;}
.y1b0{bottom:399.906667pt;}
.ycc{bottom:400.226667pt;}
.y84{bottom:401.186667pt;}
.y2d{bottom:402.946667pt;}
.y17c{bottom:410.946667pt;}
.y102{bottom:411.106667pt;}
.y123{bottom:412.546667pt;}
.y68{bottom:413.666667pt;}
.y157{bottom:414.466667pt;}
.y1af{bottom:415.106667pt;}
.ya1{bottom:416.226667pt;}
.y83{bottom:416.546667pt;}
.y2c{bottom:418.306667pt;}
.ycb{bottom:419.586667pt;}
.y101{bottom:426.466667pt;}
.y122{bottom:427.906667pt;}
.y156{bottom:429.826667pt;}
.y67{bottom:429.986667pt;}
.y1ae{bottom:430.466667pt;}
.y9e{bottom:431.586667pt;}
.y82{bottom:431.906667pt;}
.y2b{bottom:433.506667pt;}
.yca{bottom:438.786667pt;}
.y100{bottom:441.826667pt;}
.y121{bottom:442.786667pt;}
.y155{bottom:445.186667pt;}
.y179{bottom:445.666667pt;}
.y1ad{bottom:445.826667pt;}
.y66{bottom:446.146667pt;}
.y81{bottom:447.106667pt;}
.y2a{bottom:448.866667pt;}
.yff{bottom:456.866667pt;}
.yc9{bottom:458.146667pt;}
.y154{bottom:460.546667pt;}
.y1ac{bottom:461.186667pt;}
.y65{bottom:462.146667pt;}
.y80{bottom:462.466667pt;}
.y29{bottom:464.226667pt;}
.yfe{bottom:472.546667pt;}
.y153{bottom:475.906667pt;}
.y1ab{bottom:476.546667pt;}
.y1c5{bottom:477.506667pt;}
.y64{bottom:477.826667pt;}
.y28{bottom:479.266667pt;}
.y178{bottom:482.626667pt;}
.y120{bottom:483.906667pt;}
.yfd{bottom:487.906667pt;}
.y152{bottom:490.786667pt;}
.y1aa{bottom:491.906667pt;}
.y63{bottom:493.186667pt;}
.y27{bottom:494.946667pt;}
.yc8{bottom:495.106667pt;}
.y177{bottom:497.986667pt;}
.y11f{bottom:499.106667pt;}
.yfc{bottom:503.106667pt;}
.y151{bottom:506.466667pt;}
.y1a9{bottom:507.106667pt;}
.y62{bottom:508.546667pt;}
.y26{bottom:510.306667pt;}
.yc7{bottom:510.466667pt;}
.y176{bottom:513.346667pt;}
.y11e{bottom:514.466667pt;}
.yfb{bottom:518.466667pt;}
.y150{bottom:521.506667pt;}
.y1a8{bottom:522.466667pt;}
.y61{bottom:523.906667pt;}
.y25{bottom:525.506667pt;}
.y175{bottom:528.706667pt;}
.y11d{bottom:529.506667pt;}
.yfa{bottom:533.826667pt;}
.y14f{bottom:537.186667pt;}
.y1a7{bottom:537.826667pt;}
.y60{bottom:539.106667pt;}
.y24{bottom:540.866667pt;}
.yc6{bottom:541.186667pt;}
.y174{bottom:543.906667pt;}
.y11c{bottom:545.186667pt;}
.yf9{bottom:549.213333pt;}
.y14e{bottom:552.253333pt;}
.y1a6{bottom:553.213333pt;}
.y5f{bottom:554.493333pt;}
.y23{bottom:555.933333pt;}
.yc5{bottom:556.573333pt;}
.y173{bottom:559.293333pt;}
.y11b{bottom:560.573333pt;}
.yf8{bottom:564.253333pt;}
.y1a5{bottom:568.573333pt;}
.y5e{bottom:569.853333pt;}
.y14d{bottom:571.453333pt;}
.y22{bottom:571.613333pt;}
.yc4{bottom:571.933333pt;}
.y172{bottom:574.333333pt;}
.y11a{bottom:575.933333pt;}
.yf7{bottom:579.933333pt;}
.y1a4{bottom:583.933333pt;}
.y5d{bottom:585.213333pt;}
.y21{bottom:586.973333pt;}
.yc3{bottom:587.133333pt;}
.y171{bottom:590.013333pt;}
.y14c{bottom:590.813333pt;}
.y119{bottom:591.133333pt;}
.yf6{bottom:595.133333pt;}
.y1a3{bottom:599.133333pt;}
.y5c{bottom:600.573333pt;}
.y20{bottom:602.333333pt;}
.yc2{bottom:602.493333pt;}
.y170{bottom:605.373333pt;}
.y118{bottom:606.493333pt;}
.y14b{bottom:610.173333pt;}
.yf5{bottom:610.493333pt;}
.y1a2{bottom:614.173333pt;}
.y9d{bottom:615.613333pt;}
.y5b{bottom:615.933333pt;}
.y1f{bottom:617.533333pt;}
.yc1{bottom:617.853333pt;}
.y16f{bottom:620.733333pt;}
.y117{bottom:621.853333pt;}
.yf4{bottom:625.853333pt;}
.y149{bottom:629.533333pt;}
.y5a{bottom:631.133333pt;}
.y1e{bottom:632.893333pt;}
.yc0{bottom:633.213333pt;}
.y16e{bottom:635.933333pt;}
.y116{bottom:637.213333pt;}
.yf3{bottom:641.213333pt;}
.y1a1{bottom:645.213333pt;}
.y59{bottom:646.173333pt;}
.y7f{bottom:646.493333pt;}
.y1d{bottom:648.253333pt;}
.y148{bottom:648.893333pt;}
.y16d{bottom:651.293333pt;}
.y115{bottom:652.573333pt;}
.yf2{bottom:656.573333pt;}
.y1a0{bottom:660.573333pt;}
.y58{bottom:661.853333pt;}
.y16c{bottom:663.453333pt;}
.y1c{bottom:663.613333pt;}
.ybf{bottom:667.453333pt;}
.y147{bottom:670.493333pt;}
.yf1{bottom:671.773333pt;}
.y19f{bottom:675.773333pt;}
.y57{bottom:677.213333pt;}
.y1b{bottom:678.973333pt;}
.y146{bottom:685.853333pt;}
.ybe{bottom:686.813333pt;}
.yf0{bottom:687.133333pt;}
.y19e{bottom:690.813333pt;}
.y56{bottom:692.573333pt;}
.y1a{bottom:694.333333pt;}
.y145{bottom:701.213333pt;}
.yef{bottom:702.493333pt;}
.ybd{bottom:706.173333pt;}
.y55{bottom:707.773333pt;}
.y19{bottom:709.533333pt;}
.y19d{bottom:710.173333pt;}
.y144{bottom:716.573333pt;}
.yee{bottom:717.533333pt;}
.y98{bottom:722.813333pt;}
.y54{bottom:723.133333pt;}
.y18{bottom:724.893333pt;}
.ybc{bottom:725.533333pt;}
.y19c{bottom:729.533333pt;}
.y143{bottom:731.773333pt;}
.yed{bottom:736.893333pt;}
.y53{bottom:738.493333pt;}
.y17{bottom:740.253333pt;}
.ybb{bottom:744.893333pt;}
.y142{bottom:747.133333pt;}
.y19b{bottom:748.893333pt;}
.y52{bottom:753.853333pt;}
.y16{bottom:755.613333pt;}
.yec{bottom:756.253333pt;}
.y141{bottom:762.493333pt;}
.y114{bottom:766.493333pt;}
.y51{bottom:768.893333pt;}
.y7e{bottom:769.213333pt;}
.y15{bottom:770.973333pt;}
.yea{bottom:775.453333pt;}
.y140{bottom:777.893333pt;}
.yba{bottom:781.893333pt;}
.y50{bottom:784.613333pt;}
.y19a{bottom:785.893333pt;}
.y14{bottom:786.213333pt;}
.y13f{bottom:793.253333pt;}
.ye9{bottom:794.853333pt;}
.yb9{bottom:797.253333pt;}
.y4f{bottom:799.813333pt;}
.y199{bottom:801.253333pt;}
.y13{bottom:801.573333pt;}
.y13e{bottom:808.613333pt;}
.yb8{bottom:812.293333pt;}
.ye8{bottom:814.213333pt;}
.y4e{bottom:815.173333pt;}
.y198{bottom:816.293333pt;}
.y12{bottom:816.613333pt;}
.y13d{bottom:823.813333pt;}
.yb7{bottom:827.813333pt;}
.y4d{bottom:830.533333pt;}
.y197{bottom:831.813333pt;}
.y11{bottom:832.933333pt;}
.ye7{bottom:835.813333pt;}
.y13c{bottom:839.173333pt;}
.yb6{bottom:843.173333pt;}
.y1c4{bottom:845.573333pt;}
.y4c{bottom:845.893333pt;}
.y196{bottom:847.173333pt;}
.y10{bottom:848.293333pt;}
.ye6{bottom:851.173333pt;}
.y13b{bottom:854.213333pt;}
.yb5{bottom:858.533333pt;}
.y4b{bottom:861.253333pt;}
.y195{bottom:862.533333pt;}
.yf{bottom:863.653333pt;}
.ye5{bottom:866.213333pt;}
.y13a{bottom:873.573333pt;}
.yb4{bottom:873.893333pt;}
.y4a{bottom:876.613333pt;}
.y194{bottom:877.893333pt;}
.ye{bottom:879.013333pt;}
.ye4{bottom:881.893333pt;}
.yb3{bottom:889.253333pt;}
.y49{bottom:891.813333pt;}
.y139{bottom:892.933333pt;}
.y193{bottom:893.253333pt;}
.yd{bottom:894.213333pt;}
.ye3{bottom:897.253333pt;}
.yb2{bottom:904.613333pt;}
.y1ca{bottom:906.853333pt;}
.y48{bottom:907.173333pt;}
.y192{bottom:908.293333pt;}
.yc{bottom:909.573333pt;}
.y138{bottom:912.133333pt;}
.ye2{bottom:912.613333pt;}
.yb1{bottom:919.813333pt;}
.ya0{bottom:922.213333pt;}
.y47{bottom:922.533333pt;}
.y191{bottom:923.813333pt;}
.yb{bottom:925.573333pt;}
.ye1{bottom:927.813333pt;}
.y137{bottom:931.493333pt;}
.yb0{bottom:935.173333pt;}
.y46{bottom:937.893333pt;}
.y190{bottom:939.173333pt;}
.ya{bottom:940.933333pt;}
.ye0{bottom:943.173333pt;}
.yaf{bottom:950.213333pt;}
.y45{bottom:953.253333pt;}
.y18f{bottom:954.533333pt;}
.y9{bottom:956.613333pt;}
.ydf{bottom:958.533333pt;}
.y7d{bottom:968.293333pt;}
.y44{bottom:968.613333pt;}
.yad{bottom:969.573333pt;}
.yde{bottom:973.893333pt;}
.y8{bottom:975.013333pt;}
.y9c{bottom:983.493333pt;}
.y43{bottom:983.813333pt;}
.yac{bottom:988.933333pt;}
.y7{bottom:993.413333pt;}
.y42{bottom:999.173333pt;}
.yab{bottom:1008.160000pt;}
.y6{bottom:1011.840000pt;}
.y1c9{bottom:1014.240000pt;}
.y41{bottom:1014.560000pt;}
.y3{bottom:1032.320000pt;}
.y2{bottom:1047.680000pt;}
.y1{bottom:1063.040000pt;}
.hb{height:15.200000pt;}
.ha{height:15.360000pt;}
.hc{height:15.392000pt;}
.he{height:30.560000pt;}
.hd{height:30.720000pt;}
.hf{height:30.752000pt;}
.h7{height:38.128125pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h9{height:52.834688pt;}
.h6{height:53.535000pt;}
.h8{height:54.598989pt;}
.h4{height:58.563750pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2b{width:30.240000pt;}
.w25{width:31.680000pt;}
.w26{width:40.192000pt;}
.w2f{width:40.320000pt;}
.w8{width:41.600000pt;}
.wb{width:42.240000pt;}
.w33{width:45.952000pt;}
.w30{width:54.080000pt;}
.w31{width:57.280000pt;}
.w12{width:60.672000pt;}
.w1f{width:61.120000pt;}
.w20{width:61.152000pt;}
.w21{width:61.280000pt;}
.w19{width:68.960000pt;}
.w2a{width:69.760000pt;}
.w24{width:76.800000pt;}
.w13{width:77.920000pt;}
.w2d{width:78.560000pt;}
.w32{width:79.840000pt;}
.w14{width:92.160000pt;}
.w2c{width:94.752000pt;}
.w10{width:103.680000pt;}
.w36{width:104.960000pt;}
.w28{width:105.760000pt;}
.w1c{width:106.752000pt;}
.w34{width:107.520000pt;}
.w2{width:108.000000pt;}
.w37{width:109.472000pt;}
.w27{width:111.200000pt;}
.w6{width:114.720000pt;}
.w23{width:132.032000pt;}
.w4{width:144.960000pt;}
.w11{width:157.146667pt;}
.w15{width:157.466667pt;}
.w16{width:159.386667pt;}
.we{width:160.826667pt;}
.w1a{width:161.146667pt;}
.wc{width:161.786667pt;}
.w38{width:186.746667pt;}
.w17{width:188.826667pt;}
.w35{width:196.346667pt;}
.wf{width:196.506667pt;}
.w22{width:202.106667pt;}
.w2e{width:206.906667pt;}
.w29{width:214.786667pt;}
.w1d{width:215.866667pt;}
.wd{width:232.986667pt;}
.w9{width:252.026667pt;}
.w1b{width:277.306667pt;}
.wa{width:306.306667pt;}
.w1e{width:351.426667pt;}
.w18{width:369.826667pt;}
.w5{width:456.866667pt;}
.w7{width:487.293333pt;}
.w3{width:493.853333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x66{left:1.120000pt;}
.x6a{left:2.880000pt;}
.x5f{left:4.160000pt;}
.x1d{left:6.720000pt;}
.x29{left:7.680000pt;}
.x34{left:9.160000pt;}
.x68{left:10.720000pt;}
.x38{left:11.680000pt;}
.x42{left:13.760000pt;}
.x30{left:14.880000pt;}
.x5c{left:16.320000pt;}
.x4c{left:17.280000pt;}
.x56{left:18.720000pt;}
.x3e{left:19.680000pt;}
.x3b{left:21.120000pt;}
.x32{left:22.266667pt;}
.x41{left:23.360000pt;}
.x25{left:24.320000pt;}
.x43{left:25.920000pt;}
.x36{left:27.520000pt;}
.x69{left:29.280000pt;}
.x39{left:32.320000pt;}
.x27{left:34.400000pt;}
.x6c{left:35.680000pt;}
.x1f{left:37.120000pt;}
.x11{left:39.834667pt;}
.x4e{left:41.626667pt;}
.x18{left:43.194667pt;}
.x21{left:44.506667pt;}
.x75{left:47.674667pt;}
.x76{left:49.434667pt;}
.x5e{left:50.880000pt;}
.x46{left:52.200000pt;}
.x77{left:53.600000pt;}
.x7a{left:54.746667pt;}
.x60{left:55.680000pt;}
.x15{left:58.234667pt;}
.x37{left:61.466667pt;}
.x3f{left:63.720000pt;}
.x2b{left:65.320000pt;}
.x2c{left:67.040000pt;}
.x2a{left:69.280000pt;}
.x6d{left:72.520000pt;}
.x2e{left:73.434667pt;}
.x6e{left:74.874667pt;}
.x63{left:78.120000pt;}
.x40{left:79.400000pt;}
.x7b{left:80.314667pt;}
.x6b{left:81.480000pt;}
.x78{left:82.554667pt;}
.x10{left:95.072000pt;}
.x5{left:96.032000pt;}
.x58{left:108.634667pt;}
.x55{left:109.594667pt;}
.x22{left:112.040000pt;}
.x48{left:117.914667pt;}
.xc{left:120.032000pt;}
.x57{left:122.394667pt;}
.x49{left:129.114667pt;}
.x47{left:131.674667pt;}
.x1e{left:138.746667pt;}
.x23{left:141.306667pt;}
.xd{left:144.026667pt;}
.x50{left:147.074667pt;}
.x44{left:160.034667pt;}
.x13{left:179.080000pt;}
.x1a{left:180.680000pt;}
.x16{left:181.946667pt;}
.x3a{left:189.146667pt;}
.x62{left:202.906667pt;}
.x12{left:205.146667pt;}
.x19{left:211.706667pt;}
.x4f{left:212.666667pt;}
.x24{left:214.586667pt;}
.x17{left:218.426667pt;}
.x1b{left:221.986667pt;}
.x6{left:230.266667pt;}
.x14{left:231.746667pt;}
.x7{left:242.626667pt;}
.x61{left:245.186667pt;}
.xa{left:254.306667pt;}
.x2d{left:264.706667pt;}
.x1{left:267.426667pt;}
.xf{left:268.706667pt;}
.x1c{left:273.986667pt;}
.x2f{left:293.666667pt;}
.x4a{left:297.346667pt;}
.x59{left:299.266667pt;}
.x26{left:303.106667pt;}
.x6f{left:304.066667pt;}
.x8{left:339.586667pt;}
.x70{left:346.306667pt;}
.x3c{left:348.706667pt;}
.x9{left:370.946667pt;}
.x4b{left:374.306667pt;}
.xb{left:386.946667pt;}
.x20{left:392.706667pt;}
.x3{left:395.906667pt;}
.x31{left:399.266667pt;}
.x79{left:400.546667pt;}
.x71{left:402.333333pt;}
.x64{left:419.613333pt;}
.x2{left:422.653333pt;}
.x5a{left:433.213333pt;}
.x51{left:448.413333pt;}
.x72{left:461.693333pt;}
.x45{left:466.973333pt;}
.x4d{left:483.133333pt;}
.x65{left:491.293333pt;}
.x3d{left:510.173333pt;}
.x52{left:511.453333pt;}
.x67{left:523.613333pt;}
.x28{left:538.173333pt;}
.x73{left:543.453333pt;}
.x5b{left:545.693333pt;}
.x33{left:558.333333pt;}
.x53{left:574.693333pt;}
.x5d{left:587.813333pt;}
.x74{left:591.493333pt;}
.xe{left:599.013333pt;}
.x35{left:620.933333pt;}
.x54{left:637.733333pt;}
.x4{left:673.893333pt;}
}




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