
    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_e2e2e8564f7a92e2f5613b2d.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_9afcb6dbf9fab4225a9e1112.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_4170fd3b4d50b9533122c506.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.775879;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_7015a8315107f3c4149b82e3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a1599ce020a321daefd60f61.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_49f5daa93c0c622342100543.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128418;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_49e7418792e7aeee2c14c865.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_c83bf92f700e25c7467640cf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-70.680000px;}
.v2{vertical-align:-67.680000px;}
.v3{vertical-align:-61.200000px;}
.v5{vertical-align:-57.900000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:44.100000px;}
.v4{vertical-align:57.900000px;}
.ls11{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.368640px;}
.ls14{letter-spacing:0.612000px;}
.ls13{letter-spacing:1.080000px;}
.ls10{letter-spacing:2.106720px;}
.lse{letter-spacing:31.602720px;}
.lsf{letter-spacing:31.626720px;}
.lsd{letter-spacing:375.276000px;}
.lsc{letter-spacing:407.202000px;}
.ls8{letter-spacing:1094.880000px;}
.ls9{letter-spacing:1102.260000px;}
.ls5{letter-spacing:1124.400000px;}
.ls0{letter-spacing:2312.556000px;}
.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;}
}
.wsa{word-spacing:-419.406000px;}
.wsd{word-spacing:-19.038240px;}
.wsf{word-spacing:-15.552000px;}
.ws0{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.238800px;}
.ws5{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.833200px;}
.wse{word-spacing:-14.733600px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:72.030000px;}
.ws6{word-spacing:72.150000px;}
.ws8{word-spacing:151.458000px;}
.ws9{word-spacing:315.570000px;}
.wsc{word-spacing:666.216000px;}
.wsb{word-spacing:827.862000px;}
._1a{margin-left:-407.142000px;}
._15{margin-left:-10.520160px;}
._4{margin-left:-3.749040px;}
._3{margin-left:-1.980000px;}
._1{width:1.075680px;}
._2{width:2.607600px;}
._5{width:3.625200px;}
._6{width:4.960080px;}
._7{width:5.976000px;}
._d{width:7.127280px;}
._8{width:8.246880px;}
._c{width:9.920160px;}
._f{width:11.302560px;}
._e{width:12.489840px;}
._11{width:13.565520px;}
._a{width:16.135200px;}
._9{width:17.509680px;}
._b{width:18.884160px;}
._10{width:19.936560px;}
._12{width:20.939280px;}
._24{width:23.127120px;}
._13{width:24.621120px;}
._14{width:25.842720px;}
._29{width:27.131040px;}
._28{width:28.359600px;}
._2e{width:29.578560px;}
._1c{width:30.716640px;}
._1b{width:31.731840px;}
._1d{width:40.853280px;}
._2c{width:43.206480px;}
._2d{width:44.208480px;}
._16{width:45.955440px;}
._17{width:47.158560px;}
._25{width:48.833760px;}
._30{width:49.896000px;}
._31{width:51.460560px;}
._32{width:53.544960px;}
._1f{width:65.818320px;}
._1e{width:67.506240px;}
._27{width:76.492560px;}
._33{width:86.173920px;}
._34{width:91.766640px;}
._2a{width:105.237360px;}
._21{width:107.926560px;}
._22{width:108.966720px;}
._2b{width:131.950080px;}
._19{width:151.182000px;}
._2f{width:169.778160px;}
._23{width:209.339280px;}
._26{width:245.733120px;}
._20{width:314.218080px;}
._0{width:767.850240px;}
._18{width:849.216000px;}
._35{width:862.716000px;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:3.240000px;}
.y7e{bottom:3.600000px;}
.y9e{bottom:3.960000px;}
.y8b{bottom:4.320000px;}
.y8f{bottom:4.500000px;}
.y95{bottom:12.600000px;}
.yef{bottom:13.176000px;}
.y12b{bottom:13.245000px;}
.y120{bottom:13.350000px;}
.yb4{bottom:14.400000px;}
.yc4{bottom:14.445000px;}
.ydf{bottom:14.940000px;}
.ydc{bottom:14.985000px;}
.y9d{bottom:21.240000px;}
.y88{bottom:21.600000px;}
.yb2{bottom:25.740000px;}
.ye8{bottom:30.708000px;}
.y124{bottom:30.780000px;}
.y118{bottom:30.885000px;}
.ye9{bottom:52.020000px;}
.y125{bottom:55.290000px;}
.y117{bottom:55.830000px;}
.y2{bottom:56.160000px;}
.ye6{bottom:59.040000px;}
.y119{bottom:63.330000px;}
.yea{bottom:73.335000px;}
.y116{bottom:77.550000px;}
.y126{bottom:79.770000px;}
.y3f{bottom:91.800000px;}
.ye3{bottom:93.600000px;}
.yeb{bottom:94.650000px;}
.y11a{bottom:95.730000px;}
.y171{bottom:95.940000px;}
.y170{bottom:100.620000px;}
.y112{bottom:101.340000px;}
.y127{bottom:104.250000px;}
.ye2{bottom:107.100000px;}
.ye4{bottom:107.460000px;}
.y130{bottom:107.820000px;}
.y3e{bottom:109.080000px;}
.y115{bottom:109.980000px;}
.yec{bottom:115.950000px;}
.ye7{bottom:116.130000px;}
.y16f{bottom:117.180000px;}
.y110{bottom:118.620000px;}
.y12f{bottom:124.380000px;}
.y3d{bottom:126.360000px;}
.y11b{bottom:128.130000px;}
.y128{bottom:128.775000px;}
.y16e{bottom:133.740000px;}
.y10f{bottom:135.900000px;}
.yed{bottom:137.265000px;}
.y12e{bottom:140.940000px;}
.y3c{bottom:143.460000px;}
.y16d{bottom:150.300000px;}
.y10e{bottom:153.180000px;}
.y129{bottom:153.255000px;}
.yb7{bottom:156.240000px;}
.yee{bottom:158.550000px;}
.ye5{bottom:158.760000px;}
.y11c{bottom:160.530000px;}
.y3b{bottom:160.770000px;}
.y16c{bottom:166.890000px;}
.y123{bottom:167.505000px;}
.y10d{bottom:170.310000px;}
.yb6{bottom:173.010000px;}
.y12d{bottom:174.270000px;}
.y12a{bottom:177.765000px;}
.y3a{bottom:178.050000px;}
.y16b{bottom:183.270000px;}
.yf0{bottom:186.765000px;}
.y10c{bottom:187.590000px;}
.yb5{bottom:190.110000px;}
.y7b{bottom:191.370000px;}
.y11d{bottom:192.930000px;}
.y39{bottom:195.330000px;}
.y16a{bottom:199.830000px;}
.y10b{bottom:204.870000px;}
.y12c{bottom:205.950000px;}
.y79{bottom:208.650000px;}
.y38{bottom:212.610000px;}
.y169{bottom:216.390000px;}
.y10a{bottom:222.150000px;}
.y11e{bottom:225.360000px;}
.y78{bottom:225.930000px;}
.y37{bottom:229.890000px;}
.y168{bottom:232.950000px;}
.yb1{bottom:235.110000px;}
.y109{bottom:239.430000px;}
.y114{bottom:239.580000px;}
.y77{bottom:243.210000px;}
.y36{bottom:246.990000px;}
.y167{bottom:249.510000px;}
.y108{bottom:256.710000px;}
.yb3{bottom:257.610000px;}
.y11f{bottom:257.760000px;}
.y76{bottom:260.490000px;}
.y35{bottom:264.270000px;}
.y166{bottom:266.070000px;}
.y107{bottom:273.810000px;}
.y75{bottom:277.770000px;}
.yb0{bottom:281.010000px;}
.y34{bottom:281.550000px;}
.y165{bottom:282.450000px;}
.y121{bottom:285.945000px;}
.y106{bottom:291.090000px;}
.y74{bottom:294.870000px;}
.y33{bottom:298.470000px;}
.yaf{bottom:298.650000px;}
.y40{bottom:298.830000px;}
.y164{bottom:299.010000px;}
.y105{bottom:308.370000px;}
.y73{bottom:312.150000px;}
.y163{bottom:315.570000px;}
.y32{bottom:315.750000px;}
.yae{bottom:315.930000px;}
.y104{bottom:325.650000px;}
.ye1{bottom:328.710000px;}
.y72{bottom:329.430000px;}
.yad{bottom:330.330000px;}
.y162{bottom:332.130000px;}
.y31{bottom:333.210000px;}
.y103{bottom:342.930000px;}
.yde{bottom:345.630000px;}
.y71{bottom:346.710000px;}
.yab{bottom:348.330000px;}
.y161{bottom:348.690000px;}
.y30{bottom:350.490000px;}
.y102{bottom:360.210000px;}
.y70{bottom:363.990000px;}
.y160{bottom:365.250000px;}
.yac{bottom:366.330000px;}
.y2f{bottom:367.770000px;}
.ye0{bottom:368.130000px;}
.y101{bottom:377.310000px;}
.y6f{bottom:381.090000px;}
.y15f{bottom:381.630000px;}
.yaa{bottom:384.330000px;}
.y2e{bottom:385.050000px;}
.ydb{bottom:390.630000px;}
.y100{bottom:394.590000px;}
.y15e{bottom:398.190000px;}
.y6e{bottom:398.370000px;}
.y2d{bottom:402.330000px;}
.ya9{bottom:405.615000px;}
.yff{bottom:411.915000px;}
.ydd{bottom:413.175000px;}
.y15d{bottom:414.795000px;}
.y6d{bottom:415.695000px;}
.y2c{bottom:419.655000px;}
.ya8{bottom:423.255000px;}
.yfe{bottom:429.195000px;}
.y15c{bottom:431.355000px;}
.y6c{bottom:432.975000px;}
.yda{bottom:435.675000px;}
.y2b{bottom:436.395000px;}
.ya7{bottom:440.535000px;}
.yfd{bottom:446.475000px;}
.y15b{bottom:447.915000px;}
.y6b{bottom:450.255000px;}
.y2a{bottom:454.035000px;}
.ya6{bottom:454.935000px;}
.yd9{bottom:459.255000px;}
.yfc{bottom:463.575000px;}
.y15a{bottom:464.475000px;}
.y6a{bottom:467.535000px;}
.y29{bottom:471.315000px;}
.ya4{bottom:472.935000px;}
.yfb{bottom:480.855000px;}
.y69{bottom:484.635000px;}
.y28{bottom:488.595000px;}
.ya5{bottom:490.935000px;}
.yd8{bottom:493.635000px;}
.y159{bottom:497.415000px;}
.yfa{bottom:498.135000px;}
.y68{bottom:501.915000px;}
.y27{bottom:505.875000px;}
.yd7{bottom:508.395000px;}
.ya3{bottom:512.175000px;}
.y158{bottom:513.975000px;}
.yf9{bottom:515.415000px;}
.y67{bottom:519.195000px;}
.y26{bottom:523.155000px;}
.yd5{bottom:526.395000px;}
.ya2{bottom:529.635000px;}
.y157{bottom:530.535000px;}
.yf8{bottom:532.695000px;}
.y66{bottom:536.475000px;}
.y25{bottom:539.895000px;}
.yd6{bottom:544.395000px;}
.ya1{bottom:546.915000px;}
.y156{bottom:547.095000px;}
.yf7{bottom:549.615000px;}
.y111{bottom:549.975000px;}
.y7a{bottom:553.395000px;}
.y65{bottom:553.755000px;}
.y24{bottom:557.535000px;}
.ya0{bottom:561.315000px;}
.yd4{bottom:562.395000px;}
.y155{bottom:563.655000px;}
.yf6{bottom:567.075000px;}
.y64{bottom:571.035000px;}
.y23{bottom:574.815000px;}
.y9c{bottom:579.315000px;}
.y154{bottom:580.035000px;}
.yd3{bottom:583.635000px;}
.yf5{bottom:584.355000px;}
.y63{bottom:588.135000px;}
.y22{bottom:592.095000px;}
.y153{bottom:596.595000px;}
.y9f{bottom:597.315000px;}
.yf4{bottom:598.035000px;}
.y122{bottom:599.400000px;}
.y62{bottom:605.415000px;}
.y21{bottom:609.375000px;}
.y152{bottom:613.155000px;}
.y9b{bottom:615.315000px;}
.yd2{bottom:618.195000px;}
.y61{bottom:622.695000px;}
.y20{bottom:626.655000px;}
.y151{bottom:629.715000px;}
.yd1{bottom:632.955000px;}
.y9a{bottom:636.555000px;}
.y60{bottom:639.975000px;}
.y1f{bottom:643.755000px;}
.y150{bottom:646.275000px;}
.ycf{bottom:650.985000px;}
.y99{bottom:654.225000px;}
.y5f{bottom:657.285000px;}
.y1e{bottom:660.705000px;}
.y14f{bottom:662.865000px;}
.yd0{bottom:668.985000px;}
.y98{bottom:671.505000px;}
.y5e{bottom:674.385000px;}
.y1d{bottom:678.345000px;}
.y14e{bottom:679.245000px;}
.y97{bottom:685.905000px;}
.yce{bottom:690.225000px;}
.y5d{bottom:691.665000px;}
.y1c{bottom:695.625000px;}
.y14d{bottom:695.805000px;}
.y94{bottom:703.905000px;}
.y5c{bottom:708.945000px;}
.y14c{bottom:712.365000px;}
.y1b{bottom:712.905000px;}
.y96{bottom:721.905000px;}
.ycd{bottom:724.785000px;}
.y5b{bottom:726.225000px;}
.y14b{bottom:728.925000px;}
.y1a{bottom:729.645000px;}
.ycc{bottom:739.545000px;}
.y93{bottom:743.145000px;}
.y5a{bottom:743.505000px;}
.y14a{bottom:745.485000px;}
.y19{bottom:746.925000px;}
.yca{bottom:757.545000px;}
.y59{bottom:760.785000px;}
.y149{bottom:762.045000px;}
.y18{bottom:764.565000px;}
.ycb{bottom:775.545000px;}
.y58{bottom:777.885000px;}
.y148{bottom:778.425000px;}
.y17{bottom:781.845000px;}
.y92{bottom:792.285000px;}
.yc9{bottom:793.545000px;}
.y147{bottom:794.985000px;}
.y57{bottom:795.165000px;}
.y16{bottom:799.125000px;}
.y91{bottom:810.285000px;}
.y146{bottom:811.545000px;}
.y56{bottom:812.445000px;}
.yc8{bottom:814.785000px;}
.y15{bottom:816.405000px;}
.y145{bottom:828.105000px;}
.y8e{bottom:828.285000px;}
.y55{bottom:829.725000px;}
.y14{bottom:833.145000px;}
.yf3{bottom:840.165000px;}
.y144{bottom:844.665000px;}
.y90{bottom:846.285000px;}
.y54{bottom:847.005000px;}
.yc7{bottom:849.165000px;}
.y13{bottom:850.785000px;}
.yf2{bottom:857.445000px;}
.y143{bottom:861.225000px;}
.y53{bottom:864.285000px;}
.yc6{bottom:866.265000px;}
.y12{bottom:867.705000px;}
.yf1{bottom:871.125000px;}
.y113{bottom:871.200000px;}
.y142{bottom:877.605000px;}
.y52{bottom:881.385000px;}
.y11{bottom:885.345000px;}
.y8d{bottom:885.525000px;}
.yc3{bottom:888.765000px;}
.y141{bottom:894.165000px;}
.y51{bottom:898.710000px;}
.y10{bottom:902.310000px;}
.y140{bottom:910.770000px;}
.yc5{bottom:911.310000px;}
.y50{bottom:915.990000px;}
.yf{bottom:919.950000px;}
.y8c{bottom:920.130000px;}
.y13f{bottom:927.330000px;}
.y4f{bottom:933.270000px;}
.yc2{bottom:934.710000px;}
.y8a{bottom:934.890000px;}
.ye{bottom:936.690000px;}
.y13e{bottom:943.890000px;}
.y4e{bottom:950.550000px;}
.y87{bottom:952.890000px;}
.yd{bottom:954.330000px;}
.y13d{bottom:960.450000px;}
.yc1{bottom:967.650000px;}
.y4d{bottom:967.830000px;}
.y89{bottom:970.890000px;}
.yc{bottom:971.250000px;}
.yc0{bottom:975.390000px;}
.y13c{bottom:976.830000px;}
.y4c{bottom:984.930000px;}
.yb{bottom:988.890000px;}
.y86{bottom:992.130000px;}
.ybe{bottom:993.390000px;}
.y4b{bottom:1002.210000px;}
.ya{bottom:1006.170000px;}
.y85{bottom:1009.770000px;}
.y13b{bottom:1009.950000px;}
.ybf{bottom:1011.390000px;}
.y4a{bottom:1019.490000px;}
.y9{bottom:1023.090000px;}
.y13a{bottom:1026.510000px;}
.y84{bottom:1027.050000px;}
.ybd{bottom:1029.390000px;}
.y49{bottom:1036.770000px;}
.y8{bottom:1040.550000px;}
.y139{bottom:1043.070000px;}
.y83{bottom:1043.610000px;}
.ybc{bottom:1050.630000px;}
.y48{bottom:1054.050000px;}
.y7{bottom:1057.830000px;}
.y138{bottom:1059.630000px;}
.y82{bottom:1066.110000px;}
.y47{bottom:1071.150000px;}
.y137{bottom:1076.010000px;}
.ybb{bottom:1085.190000px;}
.y46{bottom:1088.430000px;}
.y81{bottom:1088.610000px;}
.y6{bottom:1092.390000px;}
.y136{bottom:1092.570000px;}
.yba{bottom:1099.950000px;}
.y45{bottom:1105.710000px;}
.y135{bottom:1109.130000px;}
.y5{bottom:1109.310000px;}
.y80{bottom:1111.110000px;}
.yb8{bottom:1117.950000px;}
.y44{bottom:1122.990000px;}
.y134{bottom:1125.690000px;}
.y7d{bottom:1133.610000px;}
.yb9{bottom:1135.950000px;}
.y43{bottom:1140.270000px;}
.y133{bottom:1142.280000px;}
.y4{bottom:1144.080000px;}
.y7c{bottom:1157.220000px;}
.y42{bottom:1157.580000px;}
.y132{bottom:1158.840000px;}
.y3{bottom:1163.880000px;}
.y41{bottom:1174.680000px;}
.y131{bottom:1175.220000px;}
.y1{bottom:1195.380000px;}
.h1c{height:5.805000px;}
.hd{height:17.100000px;}
.h10{height:17.136000px;}
.ha{height:17.280000px;}
.h9{height:17.316000px;}
.h11{height:30.476250px;}
.hc{height:35.100000px;}
.hf{height:35.136000px;}
.hb{height:35.280000px;}
.h13{height:35.316000px;}
.he{height:39.780000px;}
.h12{height:39.816000px;}
.h3{height:52.998047px;}
.h15{height:53.709961px;}
.h8{height:54.536836px;}
.h7{height:58.621992px;}
.h5{height:58.651172px;}
.h2{height:59.439023px;}
.h6{height:60.226875px;}
.h1b{height:61.423863px;}
.h4{height:81.949219px;}
.h17{height:86.255508px;}
.h19{height:97.809961px;}
.h16{height:111.609961px;}
.h14{height:218.160000px;}
.h1a{height:237.240000px;}
.h18{height:317.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:39.960000px;}
.w3{width:60.840000px;}
.w7{width:85.140000px;}
.wc{width:104.220000px;}
.w1c{width:105.660000px;}
.w2e{width:114.840000px;}
.w25{width:124.956000px;}
.w14{width:125.136000px;}
.w29{width:140.976000px;}
.w5{width:142.776000px;}
.w21{width:143.316000px;}
.w6{width:147.816000px;}
.wa{width:153.900000px;}
.w12{width:156.060000px;}
.w2c{width:156.600000px;}
.w2a{width:168.120000px;}
.w1f{width:170.820000px;}
.w22{width:171.030000px;}
.w1a{width:171.540000px;}
.w27{width:181.110000px;}
.w15{width:183.270000px;}
.w1d{width:185.250000px;}
.w2b{width:188.310000px;}
.w23{width:191.370000px;}
.w26{width:194.970000px;}
.wd{width:197.850000px;}
.w8{width:198.570000px;}
.w2f{width:200.010000px;}
.w30{width:205.095000px;}
.w31{width:210.810000px;}
.wf{width:211.170000px;}
.w16{width:212.250000px;}
.w17{width:214.230000px;}
.w1e{width:214.275000px;}
.we{width:220.755000px;}
.w19{width:221.970000px;}
.w11{width:228.270000px;}
.w33{width:228.810000px;}
.w32{width:237.810000px;}
.w10{width:237.990000px;}
.w18{width:241.230000px;}
.w28{width:357.150000px;}
.w20{width:363.135000px;}
.w24{width:380.775000px;}
.w13{width:396.255000px;}
.w1b{width:400.245000px;}
.w2d{width:405.825000px;}
.wb{width:419.325000px;}
.w36{width:528.840000px;}
.w34{width:550.080000px;}
.w35{width:605.160000px;}
.w9{width:678.885000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.800000px;}
.x31{left:7.740000px;}
.x67{left:9.825000px;}
.x1f{left:12.420000px;}
.x14{left:14.580000px;}
.x66{left:16.665000px;}
.x1e{left:17.820000px;}
.x1a{left:24.300000px;}
.x22{left:29.520000px;}
.x2c{left:35.100000px;}
.x16{left:39.240000px;}
.x18{left:40.500000px;}
.x5d{left:45.045000px;}
.x25{left:46.434000px;}
.x55{left:48.090000px;}
.x5e{left:49.905000px;}
.x41{left:50.985000px;}
.x2d{left:52.020000px;}
.x1c{left:53.820000px;}
.x43{left:57.090000px;}
.x29{left:58.185000px;}
.x37{left:59.220000px;}
.x2b{left:61.230000px;}
.x20{left:63.900000px;}
.x21{left:66.240000px;}
.x2e{left:68.214000px;}
.x2f{left:72.390000px;}
.x68{left:76.350000px;}
.x50{left:81.714000px;}
.x59{left:84.594000px;}
.x47{left:88.374000px;}
.x23{left:90.045000px;}
.x51{left:93.420000px;}
.x48{left:95.220000px;}
.x36{left:96.834000px;}
.x38{left:98.460000px;}
.x39{left:100.074000px;}
.x35{left:101.520000px;}
.x49{left:103.545000px;}
.x1{left:106.415987px;}
.x33{left:110.160000px;}
.x3a{left:111.420000px;}
.x3c{left:114.165000px;}
.x3b{left:118.980000px;}
.x5b{left:123.300000px;}
.x52{left:126.405000px;}
.x3{left:136.115987px;}
.x57{left:138.465000px;}
.x6c{left:143.820000px;}
.x3f{left:146.205000px;}
.x4c{left:148.185000px;}
.x5f{left:150.885000px;}
.x27{left:157.725000px;}
.x13{left:168.870000px;}
.x63{left:170.820000px;}
.x69{left:173.010000px;}
.x70{left:181.980000px;}
.x6d{left:196.920000px;}
.x64{left:206.280000px;}
.x15{left:209.550000px;}
.x6f{left:211.110000px;}
.x71{left:222.630000px;}
.x4{left:239.789987px;}
.x65{left:257.505000px;}
.x26{left:261.750000px;}
.x3e{left:263.910000px;}
.x4b{left:279.390000px;}
.x5a{left:280.469987px;}
.x4a{left:287.714987px;}
.x56{left:289.514987px;}
.x62{left:291.494987px;}
.x3d{left:294.914987px;}
.x24{left:305.174987px;}
.x5{left:314.534987px;}
.x2{left:317.054987px;}
.x32{left:319.035000px;}
.x45{left:322.095000px;}
.x1d{left:323.859000px;}
.x61{left:333.794987px;}
.x4f{left:340.274987px;}
.x58{left:342.074987px;}
.x44{left:347.294987px;}
.x9{left:349.994987px;}
.x17{left:353.055000px;}
.x6{left:358.274987px;}
.x11{left:379.694987px;}
.x6e{left:412.590000px;}
.x30{left:446.474987px;}
.x42{left:447.915000px;}
.x54{left:450.435000px;}
.xe{left:457.274987px;}
.x2a{left:460.335000px;}
.x4e{left:465.375000px;}
.xf{left:487.004987px;}
.x19{left:501.585000px;}
.xc{left:537.944987px;}
.x34{left:557.745000px;}
.x46{left:564.045000px;}
.x1b{left:587.445000px;}
.x53{left:642.705000px;}
.x5c{left:645.945000px;}
.x40{left:660.885000px;}
.x60{left:671.190000px;}
.x4d{left:680.370000px;}
.x28{left:681.810000px;}
.xb{left:698.009987px;}
.xa{left:699.629987px;}
.x6b{left:710.969987px;}
.x7{left:712.949987px;}
.x8{left:722.129987px;}
.x10{left:731.309987px;}
.x6a{left:749.129987px;}
.xd{left:786.749987px;}
@media print{
.v1{vertical-align:-62.826667pt;}
.v2{vertical-align:-60.160000pt;}
.v3{vertical-align:-54.400000pt;}
.v5{vertical-align:-51.466667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:39.200000pt;}
.v4{vertical-align:51.466667pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.327680pt;}
.ls14{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.960000pt;}
.ls10{letter-spacing:1.872640pt;}
.lse{letter-spacing:28.091307pt;}
.lsf{letter-spacing:28.112640pt;}
.lsd{letter-spacing:333.578667pt;}
.lsc{letter-spacing:361.957333pt;}
.ls8{letter-spacing:973.226667pt;}
.ls9{letter-spacing:979.786667pt;}
.ls5{letter-spacing:999.466667pt;}
.ls0{letter-spacing:2055.605333pt;}
.wsa{word-spacing:-372.805333pt;}
.wsd{word-spacing:-16.922880pt;}
.wsf{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.185067pt;}
.wse{word-spacing:-13.096533pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:64.026667pt;}
.ws6{word-spacing:64.133333pt;}
.ws8{word-spacing:134.629333pt;}
.ws9{word-spacing:280.506667pt;}
.wsc{word-spacing:592.192000pt;}
.wsb{word-spacing:735.877333pt;}
._1a{margin-left:-361.904000pt;}
._15{margin-left:-9.351253pt;}
._4{margin-left:-3.332480pt;}
._3{margin-left:-1.760000pt;}
._1{width:0.956160pt;}
._2{width:2.317867pt;}
._5{width:3.222400pt;}
._6{width:4.408960pt;}
._7{width:5.312000pt;}
._d{width:6.335360pt;}
._8{width:7.330560pt;}
._c{width:8.817920pt;}
._f{width:10.046720pt;}
._e{width:11.102080pt;}
._11{width:12.058240pt;}
._a{width:14.342400pt;}
._9{width:15.564160pt;}
._b{width:16.785920pt;}
._10{width:17.721387pt;}
._12{width:18.612693pt;}
._24{width:20.557440pt;}
._13{width:21.885440pt;}
._14{width:22.971307pt;}
._29{width:24.116480pt;}
._28{width:25.208533pt;}
._2e{width:26.292053pt;}
._1c{width:27.303680pt;}
._1b{width:28.206080pt;}
._1d{width:36.314027pt;}
._2c{width:38.405760pt;}
._2d{width:39.296427pt;}
._16{width:40.849280pt;}
._17{width:41.918720pt;}
._25{width:43.407787pt;}
._30{width:44.352000pt;}
._31{width:45.742720pt;}
._32{width:47.595520pt;}
._1f{width:58.505173pt;}
._1e{width:60.005547pt;}
._27{width:67.993387pt;}
._33{width:76.599040pt;}
._34{width:81.570347pt;}
._2a{width:93.544320pt;}
._21{width:95.934720pt;}
._22{width:96.859307pt;}
._2b{width:117.288960pt;}
._19{width:134.384000pt;}
._2f{width:150.913920pt;}
._23{width:186.079360pt;}
._26{width:218.429440pt;}
._20{width:279.304960pt;}
._0{width:682.533547pt;}
._18{width:754.858667pt;}
._35{width:766.858667pt;}
.fs5{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:2.880000pt;}
.y7e{bottom:3.200000pt;}
.y9e{bottom:3.520000pt;}
.y8b{bottom:3.840000pt;}
.y8f{bottom:4.000000pt;}
.y95{bottom:11.200000pt;}
.yef{bottom:11.712000pt;}
.y12b{bottom:11.773333pt;}
.y120{bottom:11.866667pt;}
.yb4{bottom:12.800000pt;}
.yc4{bottom:12.840000pt;}
.ydf{bottom:13.280000pt;}
.ydc{bottom:13.320000pt;}
.y9d{bottom:18.880000pt;}
.y88{bottom:19.200000pt;}
.yb2{bottom:22.880000pt;}
.ye8{bottom:27.296000pt;}
.y124{bottom:27.360000pt;}
.y118{bottom:27.453333pt;}
.ye9{bottom:46.240000pt;}
.y125{bottom:49.146667pt;}
.y117{bottom:49.626667pt;}
.y2{bottom:49.920000pt;}
.ye6{bottom:52.480000pt;}
.y119{bottom:56.293333pt;}
.yea{bottom:65.186667pt;}
.y116{bottom:68.933333pt;}
.y126{bottom:70.906667pt;}
.y3f{bottom:81.600000pt;}
.ye3{bottom:83.200000pt;}
.yeb{bottom:84.133333pt;}
.y11a{bottom:85.093333pt;}
.y171{bottom:85.280000pt;}
.y170{bottom:89.440000pt;}
.y112{bottom:90.080000pt;}
.y127{bottom:92.666667pt;}
.ye2{bottom:95.200000pt;}
.ye4{bottom:95.520000pt;}
.y130{bottom:95.840000pt;}
.y3e{bottom:96.960000pt;}
.y115{bottom:97.760000pt;}
.yec{bottom:103.066667pt;}
.ye7{bottom:103.226667pt;}
.y16f{bottom:104.160000pt;}
.y110{bottom:105.440000pt;}
.y12f{bottom:110.560000pt;}
.y3d{bottom:112.320000pt;}
.y11b{bottom:113.893333pt;}
.y128{bottom:114.466667pt;}
.y16e{bottom:118.880000pt;}
.y10f{bottom:120.800000pt;}
.yed{bottom:122.013333pt;}
.y12e{bottom:125.280000pt;}
.y3c{bottom:127.520000pt;}
.y16d{bottom:133.600000pt;}
.y10e{bottom:136.160000pt;}
.y129{bottom:136.226667pt;}
.yb7{bottom:138.880000pt;}
.yee{bottom:140.933333pt;}
.ye5{bottom:141.120000pt;}
.y11c{bottom:142.693333pt;}
.y3b{bottom:142.906667pt;}
.y16c{bottom:148.346667pt;}
.y123{bottom:148.893333pt;}
.y10d{bottom:151.386667pt;}
.yb6{bottom:153.786667pt;}
.y12d{bottom:154.906667pt;}
.y12a{bottom:158.013333pt;}
.y3a{bottom:158.266667pt;}
.y16b{bottom:162.906667pt;}
.yf0{bottom:166.013333pt;}
.y10c{bottom:166.746667pt;}
.yb5{bottom:168.986667pt;}
.y7b{bottom:170.106667pt;}
.y11d{bottom:171.493333pt;}
.y39{bottom:173.626667pt;}
.y16a{bottom:177.626667pt;}
.y10b{bottom:182.106667pt;}
.y12c{bottom:183.066667pt;}
.y79{bottom:185.466667pt;}
.y38{bottom:188.986667pt;}
.y169{bottom:192.346667pt;}
.y10a{bottom:197.466667pt;}
.y11e{bottom:200.320000pt;}
.y78{bottom:200.826667pt;}
.y37{bottom:204.346667pt;}
.y168{bottom:207.066667pt;}
.yb1{bottom:208.986667pt;}
.y109{bottom:212.826667pt;}
.y114{bottom:212.960000pt;}
.y77{bottom:216.186667pt;}
.y36{bottom:219.546667pt;}
.y167{bottom:221.786667pt;}
.y108{bottom:228.186667pt;}
.yb3{bottom:228.986667pt;}
.y11f{bottom:229.120000pt;}
.y76{bottom:231.546667pt;}
.y35{bottom:234.906667pt;}
.y166{bottom:236.506667pt;}
.y107{bottom:243.386667pt;}
.y75{bottom:246.906667pt;}
.yb0{bottom:249.786667pt;}
.y34{bottom:250.266667pt;}
.y165{bottom:251.066667pt;}
.y121{bottom:254.173333pt;}
.y106{bottom:258.746667pt;}
.y74{bottom:262.106667pt;}
.y33{bottom:265.306667pt;}
.yaf{bottom:265.466667pt;}
.y40{bottom:265.626667pt;}
.y164{bottom:265.786667pt;}
.y105{bottom:274.106667pt;}
.y73{bottom:277.466667pt;}
.y163{bottom:280.506667pt;}
.y32{bottom:280.666667pt;}
.yae{bottom:280.826667pt;}
.y104{bottom:289.466667pt;}
.ye1{bottom:292.186667pt;}
.y72{bottom:292.826667pt;}
.yad{bottom:293.626667pt;}
.y162{bottom:295.226667pt;}
.y31{bottom:296.186667pt;}
.y103{bottom:304.826667pt;}
.yde{bottom:307.226667pt;}
.y71{bottom:308.186667pt;}
.yab{bottom:309.626667pt;}
.y161{bottom:309.946667pt;}
.y30{bottom:311.546667pt;}
.y102{bottom:320.186667pt;}
.y70{bottom:323.546667pt;}
.y160{bottom:324.666667pt;}
.yac{bottom:325.626667pt;}
.y2f{bottom:326.906667pt;}
.ye0{bottom:327.226667pt;}
.y101{bottom:335.386667pt;}
.y6f{bottom:338.746667pt;}
.y15f{bottom:339.226667pt;}
.yaa{bottom:341.626667pt;}
.y2e{bottom:342.266667pt;}
.ydb{bottom:347.226667pt;}
.y100{bottom:350.746667pt;}
.y15e{bottom:353.946667pt;}
.y6e{bottom:354.106667pt;}
.y2d{bottom:357.626667pt;}
.ya9{bottom:360.546667pt;}
.yff{bottom:366.146667pt;}
.ydd{bottom:367.266667pt;}
.y15d{bottom:368.706667pt;}
.y6d{bottom:369.506667pt;}
.y2c{bottom:373.026667pt;}
.ya8{bottom:376.226667pt;}
.yfe{bottom:381.506667pt;}
.y15c{bottom:383.426667pt;}
.y6c{bottom:384.866667pt;}
.yda{bottom:387.266667pt;}
.y2b{bottom:387.906667pt;}
.ya7{bottom:391.586667pt;}
.yfd{bottom:396.866667pt;}
.y15b{bottom:398.146667pt;}
.y6b{bottom:400.226667pt;}
.y2a{bottom:403.586667pt;}
.ya6{bottom:404.386667pt;}
.yd9{bottom:408.226667pt;}
.yfc{bottom:412.066667pt;}
.y15a{bottom:412.866667pt;}
.y6a{bottom:415.586667pt;}
.y29{bottom:418.946667pt;}
.ya4{bottom:420.386667pt;}
.yfb{bottom:427.426667pt;}
.y69{bottom:430.786667pt;}
.y28{bottom:434.306667pt;}
.ya5{bottom:436.386667pt;}
.yd8{bottom:438.786667pt;}
.y159{bottom:442.146667pt;}
.yfa{bottom:442.786667pt;}
.y68{bottom:446.146667pt;}
.y27{bottom:449.666667pt;}
.yd7{bottom:451.906667pt;}
.ya3{bottom:455.266667pt;}
.y158{bottom:456.866667pt;}
.yf9{bottom:458.146667pt;}
.y67{bottom:461.506667pt;}
.y26{bottom:465.026667pt;}
.yd5{bottom:467.906667pt;}
.ya2{bottom:470.786667pt;}
.y157{bottom:471.586667pt;}
.yf8{bottom:473.506667pt;}
.y66{bottom:476.866667pt;}
.y25{bottom:479.906667pt;}
.yd6{bottom:483.906667pt;}
.ya1{bottom:486.146667pt;}
.y156{bottom:486.306667pt;}
.yf7{bottom:488.546667pt;}
.y111{bottom:488.866667pt;}
.y7a{bottom:491.906667pt;}
.y65{bottom:492.226667pt;}
.y24{bottom:495.586667pt;}
.ya0{bottom:498.946667pt;}
.yd4{bottom:499.906667pt;}
.y155{bottom:501.026667pt;}
.yf6{bottom:504.066667pt;}
.y64{bottom:507.586667pt;}
.y23{bottom:510.946667pt;}
.y9c{bottom:514.946667pt;}
.y154{bottom:515.586667pt;}
.yd3{bottom:518.786667pt;}
.yf5{bottom:519.426667pt;}
.y63{bottom:522.786667pt;}
.y22{bottom:526.306667pt;}
.y153{bottom:530.306667pt;}
.y9f{bottom:530.946667pt;}
.yf4{bottom:531.586667pt;}
.y122{bottom:532.800000pt;}
.y62{bottom:538.146667pt;}
.y21{bottom:541.666667pt;}
.y152{bottom:545.026667pt;}
.y9b{bottom:546.946667pt;}
.yd2{bottom:549.506667pt;}
.y61{bottom:553.506667pt;}
.y20{bottom:557.026667pt;}
.y151{bottom:559.746667pt;}
.yd1{bottom:562.626667pt;}
.y9a{bottom:565.826667pt;}
.y60{bottom:568.866667pt;}
.y1f{bottom:572.226667pt;}
.y150{bottom:574.466667pt;}
.ycf{bottom:578.653333pt;}
.y99{bottom:581.533333pt;}
.y5f{bottom:584.253333pt;}
.y1e{bottom:587.293333pt;}
.y14f{bottom:589.213333pt;}
.yd0{bottom:594.653333pt;}
.y98{bottom:596.893333pt;}
.y5e{bottom:599.453333pt;}
.y1d{bottom:602.973333pt;}
.y14e{bottom:603.773333pt;}
.y97{bottom:609.693333pt;}
.yce{bottom:613.533333pt;}
.y5d{bottom:614.813333pt;}
.y1c{bottom:618.333333pt;}
.y14d{bottom:618.493333pt;}
.y94{bottom:625.693333pt;}
.y5c{bottom:630.173333pt;}
.y14c{bottom:633.213333pt;}
.y1b{bottom:633.693333pt;}
.y96{bottom:641.693333pt;}
.ycd{bottom:644.253333pt;}
.y5b{bottom:645.533333pt;}
.y14b{bottom:647.933333pt;}
.y1a{bottom:648.573333pt;}
.ycc{bottom:657.373333pt;}
.y93{bottom:660.573333pt;}
.y5a{bottom:660.893333pt;}
.y14a{bottom:662.653333pt;}
.y19{bottom:663.933333pt;}
.yca{bottom:673.373333pt;}
.y59{bottom:676.253333pt;}
.y149{bottom:677.373333pt;}
.y18{bottom:679.613333pt;}
.ycb{bottom:689.373333pt;}
.y58{bottom:691.453333pt;}
.y148{bottom:691.933333pt;}
.y17{bottom:694.973333pt;}
.y92{bottom:704.253333pt;}
.yc9{bottom:705.373333pt;}
.y147{bottom:706.653333pt;}
.y57{bottom:706.813333pt;}
.y16{bottom:710.333333pt;}
.y91{bottom:720.253333pt;}
.y146{bottom:721.373333pt;}
.y56{bottom:722.173333pt;}
.yc8{bottom:724.253333pt;}
.y15{bottom:725.693333pt;}
.y145{bottom:736.093333pt;}
.y8e{bottom:736.253333pt;}
.y55{bottom:737.533333pt;}
.y14{bottom:740.573333pt;}
.yf3{bottom:746.813333pt;}
.y144{bottom:750.813333pt;}
.y90{bottom:752.253333pt;}
.y54{bottom:752.893333pt;}
.yc7{bottom:754.813333pt;}
.y13{bottom:756.253333pt;}
.yf2{bottom:762.173333pt;}
.y143{bottom:765.533333pt;}
.y53{bottom:768.253333pt;}
.yc6{bottom:770.013333pt;}
.y12{bottom:771.293333pt;}
.yf1{bottom:774.333333pt;}
.y113{bottom:774.400000pt;}
.y142{bottom:780.093333pt;}
.y52{bottom:783.453333pt;}
.y11{bottom:786.973333pt;}
.y8d{bottom:787.133333pt;}
.yc3{bottom:790.013333pt;}
.y141{bottom:794.813333pt;}
.y51{bottom:798.853333pt;}
.y10{bottom:802.053333pt;}
.y140{bottom:809.573333pt;}
.yc5{bottom:810.053333pt;}
.y50{bottom:814.213333pt;}
.yf{bottom:817.733333pt;}
.y8c{bottom:817.893333pt;}
.y13f{bottom:824.293333pt;}
.y4f{bottom:829.573333pt;}
.yc2{bottom:830.853333pt;}
.y8a{bottom:831.013333pt;}
.ye{bottom:832.613333pt;}
.y13e{bottom:839.013333pt;}
.y4e{bottom:844.933333pt;}
.y87{bottom:847.013333pt;}
.yd{bottom:848.293333pt;}
.y13d{bottom:853.733333pt;}
.yc1{bottom:860.133333pt;}
.y4d{bottom:860.293333pt;}
.y89{bottom:863.013333pt;}
.yc{bottom:863.333333pt;}
.yc0{bottom:867.013333pt;}
.y13c{bottom:868.293333pt;}
.y4c{bottom:875.493333pt;}
.yb{bottom:879.013333pt;}
.y86{bottom:881.893333pt;}
.ybe{bottom:883.013333pt;}
.y4b{bottom:890.853333pt;}
.ya{bottom:894.373333pt;}
.y85{bottom:897.573333pt;}
.y13b{bottom:897.733333pt;}
.ybf{bottom:899.013333pt;}
.y4a{bottom:906.213333pt;}
.y9{bottom:909.413333pt;}
.y13a{bottom:912.453333pt;}
.y84{bottom:912.933333pt;}
.ybd{bottom:915.013333pt;}
.y49{bottom:921.573333pt;}
.y8{bottom:924.933333pt;}
.y139{bottom:927.173333pt;}
.y83{bottom:927.653333pt;}
.ybc{bottom:933.893333pt;}
.y48{bottom:936.933333pt;}
.y7{bottom:940.293333pt;}
.y138{bottom:941.893333pt;}
.y82{bottom:947.653333pt;}
.y47{bottom:952.133333pt;}
.y137{bottom:956.453333pt;}
.ybb{bottom:964.613333pt;}
.y46{bottom:967.493333pt;}
.y81{bottom:967.653333pt;}
.y6{bottom:971.013333pt;}
.y136{bottom:971.173333pt;}
.yba{bottom:977.733333pt;}
.y45{bottom:982.853333pt;}
.y135{bottom:985.893333pt;}
.y5{bottom:986.053333pt;}
.y80{bottom:987.653333pt;}
.yb8{bottom:993.733333pt;}
.y44{bottom:998.213333pt;}
.y134{bottom:1000.613333pt;}
.y7d{bottom:1007.653333pt;}
.yb9{bottom:1009.733333pt;}
.y43{bottom:1013.573333pt;}
.y133{bottom:1015.360000pt;}
.y4{bottom:1016.960000pt;}
.y7c{bottom:1028.640000pt;}
.y42{bottom:1028.960000pt;}
.y132{bottom:1030.080000pt;}
.y3{bottom:1034.560000pt;}
.y41{bottom:1044.160000pt;}
.y131{bottom:1044.640000pt;}
.y1{bottom:1062.560000pt;}
.h1c{height:5.160000pt;}
.hd{height:15.200000pt;}
.h10{height:15.232000pt;}
.ha{height:15.360000pt;}
.h9{height:15.392000pt;}
.h11{height:27.090000pt;}
.hc{height:31.200000pt;}
.hf{height:31.232000pt;}
.hb{height:31.360000pt;}
.h13{height:31.392000pt;}
.he{height:35.360000pt;}
.h12{height:35.392000pt;}
.h3{height:47.109375pt;}
.h15{height:47.742188pt;}
.h8{height:48.477187pt;}
.h7{height:52.108438pt;}
.h5{height:52.134375pt;}
.h2{height:52.834688pt;}
.h6{height:53.535000pt;}
.h1b{height:54.598989pt;}
.h4{height:72.843750pt;}
.h17{height:76.671562pt;}
.h19{height:86.942188pt;}
.h16{height:99.208854pt;}
.h14{height:193.920000pt;}
.h1a{height:210.880000pt;}
.h18{height:281.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:35.520000pt;}
.w3{width:54.080000pt;}
.w7{width:75.680000pt;}
.wc{width:92.640000pt;}
.w1c{width:93.920000pt;}
.w2e{width:102.080000pt;}
.w25{width:111.072000pt;}
.w14{width:111.232000pt;}
.w29{width:125.312000pt;}
.w5{width:126.912000pt;}
.w21{width:127.392000pt;}
.w6{width:131.392000pt;}
.wa{width:136.800000pt;}
.w12{width:138.720000pt;}
.w2c{width:139.200000pt;}
.w2a{width:149.440000pt;}
.w1f{width:151.840000pt;}
.w22{width:152.026667pt;}
.w1a{width:152.480000pt;}
.w27{width:160.986667pt;}
.w15{width:162.906667pt;}
.w1d{width:164.666667pt;}
.w2b{width:167.386667pt;}
.w23{width:170.106667pt;}
.w26{width:173.306667pt;}
.wd{width:175.866667pt;}
.w8{width:176.506667pt;}
.w2f{width:177.786667pt;}
.w30{width:182.306667pt;}
.w31{width:187.386667pt;}
.wf{width:187.706667pt;}
.w16{width:188.666667pt;}
.w17{width:190.426667pt;}
.w1e{width:190.466667pt;}
.we{width:196.226667pt;}
.w19{width:197.306667pt;}
.w11{width:202.906667pt;}
.w33{width:203.386667pt;}
.w32{width:211.386667pt;}
.w10{width:211.546667pt;}
.w18{width:214.426667pt;}
.w28{width:317.466667pt;}
.w20{width:322.786667pt;}
.w24{width:338.466667pt;}
.w13{width:352.226667pt;}
.w1b{width:355.773333pt;}
.w2d{width:360.733333pt;}
.wb{width:372.733333pt;}
.w36{width:470.080000pt;}
.w34{width:488.960000pt;}
.w35{width:537.920000pt;}
.w9{width:603.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.600000pt;}
.x31{left:6.880000pt;}
.x67{left:8.733333pt;}
.x1f{left:11.040000pt;}
.x14{left:12.960000pt;}
.x66{left:14.813333pt;}
.x1e{left:15.840000pt;}
.x1a{left:21.600000pt;}
.x22{left:26.240000pt;}
.x2c{left:31.200000pt;}
.x16{left:34.880000pt;}
.x18{left:36.000000pt;}
.x5d{left:40.040000pt;}
.x25{left:41.274667pt;}
.x55{left:42.746667pt;}
.x5e{left:44.360000pt;}
.x41{left:45.320000pt;}
.x2d{left:46.240000pt;}
.x1c{left:47.840000pt;}
.x43{left:50.746667pt;}
.x29{left:51.720000pt;}
.x37{left:52.640000pt;}
.x2b{left:54.426667pt;}
.x20{left:56.800000pt;}
.x21{left:58.880000pt;}
.x2e{left:60.634667pt;}
.x2f{left:64.346667pt;}
.x68{left:67.866667pt;}
.x50{left:72.634667pt;}
.x59{left:75.194667pt;}
.x47{left:78.554667pt;}
.x23{left:80.040000pt;}
.x51{left:83.040000pt;}
.x48{left:84.640000pt;}
.x36{left:86.074667pt;}
.x38{left:87.520000pt;}
.x39{left:88.954667pt;}
.x35{left:90.240000pt;}
.x49{left:92.040000pt;}
.x1{left:94.591988pt;}
.x33{left:97.920000pt;}
.x3a{left:99.040000pt;}
.x3c{left:101.480000pt;}
.x3b{left:105.760000pt;}
.x5b{left:109.600000pt;}
.x52{left:112.360000pt;}
.x3{left:120.991988pt;}
.x57{left:123.080000pt;}
.x6c{left:127.840000pt;}
.x3f{left:129.960000pt;}
.x4c{left:131.720000pt;}
.x5f{left:134.120000pt;}
.x27{left:140.200000pt;}
.x13{left:150.106667pt;}
.x63{left:151.840000pt;}
.x69{left:153.786667pt;}
.x70{left:161.760000pt;}
.x6d{left:175.040000pt;}
.x64{left:183.360000pt;}
.x15{left:186.266667pt;}
.x6f{left:187.653333pt;}
.x71{left:197.893333pt;}
.x4{left:213.146655pt;}
.x65{left:228.893333pt;}
.x26{left:232.666667pt;}
.x3e{left:234.586667pt;}
.x4b{left:248.346667pt;}
.x5a{left:249.306655pt;}
.x4a{left:255.746655pt;}
.x56{left:257.346655pt;}
.x62{left:259.106655pt;}
.x3d{left:262.146655pt;}
.x24{left:271.266655pt;}
.x5{left:279.586655pt;}
.x2{left:281.826655pt;}
.x32{left:283.586667pt;}
.x45{left:286.306667pt;}
.x1d{left:287.874667pt;}
.x61{left:296.706655pt;}
.x4f{left:302.466655pt;}
.x58{left:304.066655pt;}
.x44{left:308.706655pt;}
.x9{left:311.106655pt;}
.x17{left:313.826667pt;}
.x6{left:318.466655pt;}
.x11{left:337.506655pt;}
.x6e{left:366.746667pt;}
.x30{left:396.866655pt;}
.x42{left:398.146667pt;}
.x54{left:400.386667pt;}
.xe{left:406.466655pt;}
.x2a{left:409.186667pt;}
.x4e{left:413.666667pt;}
.xf{left:432.893322pt;}
.x19{left:445.853333pt;}
.xc{left:478.173322pt;}
.x34{left:495.773333pt;}
.x46{left:501.373333pt;}
.x1b{left:522.173333pt;}
.x53{left:571.293333pt;}
.x5c{left:574.173333pt;}
.x40{left:587.453333pt;}
.x60{left:596.613333pt;}
.x4d{left:604.773333pt;}
.x28{left:606.053333pt;}
.xb{left:620.453322pt;}
.xa{left:621.893322pt;}
.x6b{left:631.973322pt;}
.x7{left:633.733322pt;}
.x8{left:641.893322pt;}
.x10{left:650.053322pt;}
.x6a{left:665.893322pt;}
.xd{left:699.333322pt;}
}




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