
    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_e5a8d4c88aad0d9a063420f0.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_c0cfe5b6e589acae38901074.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bc5ad10ce80670a393ca0e92.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dd40f3b412a012a9085daa09.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_e16cc92bec55d39fcf2bf047.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_943be283115d548844cd47cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_2befbfc653239f9dea33589a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_76ecda18508b31847b19cc35.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-83.520000px;}
.v4{vertical-align:-77.760000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:38.880000px;}
.ls14{letter-spacing:-1.562458px;}
.ls12{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.106560px;}
.ls4{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.206400px;}
.lsc{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.ls9{letter-spacing:5.040000px;}
.lsd{letter-spacing:5.220000px;}
.lsf{letter-spacing:10.260000px;}
.lsa{letter-spacing:11.700000px;}
.lse{letter-spacing:151.920000px;}
.ls0{letter-spacing:662.340000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-54.000000px;}
.ws2{word-spacing:-38.880000px;}
.wsc{word-spacing:-18.206119px;}
.ws10{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsf{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.146400px;}
.ws6{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.wse{word-spacing:-0.065490px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:644.265989px;}
._1e{margin-left:-2.088000px;}
._0{margin-left:-1.080000px;}
._1{width:1.308000px;}
._6{width:2.880000px;}
._7{width:4.452000px;}
._16{width:5.688000px;}
._1a{width:7.488000px;}
._a{width:8.568000px;}
._b{width:9.720000px;}
._e{width:10.776000px;}
._19{width:12.048000px;}
._12{width:13.320000px;}
._13{width:14.388000px;}
._f{width:15.768000px;}
._c{width:16.920000px;}
._24{width:18.066720px;}
._21{width:19.152000px;}
._18{width:20.160000px;}
._17{width:21.312000px;}
._5{width:22.512000px;}
._d{width:23.880000px;}
._22{width:25.104000px;}
._25{width:26.148000px;}
._1d{width:27.216000px;}
._8{width:28.440000px;}
._9{width:29.520000px;}
._1b{width:30.600000px;}
._1c{width:31.872000px;}
._14{width:33.048000px;}
._15{width:34.344000px;}
._23{width:35.568000px;}
._11{width:39.672000px;}
._10{width:40.968000px;}
._1f{width:45.864000px;}
._20{width:47.700000px;}
._2{width:171.792000px;}
._26{width:327.312000px;}
._4{width:660.948000px;}
._3{width:751.080000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:65.489637px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:69.845932px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y119{bottom:4.356295px;}
.y106{bottom:7.616256px;}
.y101{bottom:7.623516px;}
.y103{bottom:7.652558px;}
.y111{bottom:9.801664px;}
.y114{bottom:9.837966px;}
.y116{bottom:9.845227px;}
.y118{bottom:29.477597px;}
.y5{bottom:57.420000px;}
.y112{bottom:68.756858px;}
.y4{bottom:77.760000px;}
.y108{bottom:87.343717px;}
.y66{bottom:109.800000px;}
.y2a{bottom:116.640000px;}
.y65{bottom:127.080000px;}
.y109{bottom:127.712052px;}
.y29{bottom:129.060000px;}
.y64{bottom:133.920000px;}
.y63{bottom:144.360000px;}
.yf5{bottom:145.080000px;}
.y94{bottom:151.200000px;}
.yf4{bottom:153.360000px;}
.y62{bottom:161.640000px;}
.yf3{bottom:165.060000px;}
.y10a{bottom:168.080387px;}
.y9e{bottom:168.480000px;}
.yf2{bottom:171.900000px;}
.y11b{bottom:175.890000px;}
.y28{bottom:176.070000px;}
.y61{bottom:178.950000px;}
.y121{bottom:179.670000px;}
.yf1{bottom:182.370000px;}
.y93{bottom:185.790000px;}
.y11a{bottom:190.830000px;}
.y60{bottom:196.230000px;}
.y107{bottom:196.335369px;}
.y12c{bottom:196.950000px;}
.yf0{bottom:199.650000px;}
.yaf{bottom:203.070000px;}
.y10b{bottom:208.477763px;}
.y27{bottom:210.450000px;}
.y5f{bottom:213.330000px;}
.yb7{bottom:214.230000px;}
.yef{bottom:216.930000px;}
.yb3{bottom:220.170000px;}
.yfa{bottom:222.510000px;}
.y113{bottom:229.080187px;}
.y5e{bottom:230.610000px;}
.yee{bottom:234.030000px;}
.yf9{bottom:234.930000px;}
.y92{bottom:237.450000px;}
.y120{bottom:237.630000px;}
.y11d{bottom:241.950000px;}
.y26{bottom:244.830000px;}
.y5d{bottom:247.890000px;}
.yc6{bottom:248.610000px;}
.y10c{bottom:248.846098px;}
.yed{bottom:251.310000px;}
.y11c{bottom:256.890000px;}
.yb6{bottom:258.330000px;}
.y5c{bottom:265.170000px;}
.yae{bottom:265.890000px;}
.yec{bottom:268.590000px;}
.y5b{bottom:272.010000px;}
.yad{bottom:274.170000px;}
.y25{bottom:279.030000px;}
.y5a{bottom:282.450000px;}
.y12a{bottom:283.170000px;}
.yeb{bottom:285.870000px;}
.yac{bottom:286.590000px;}
.yb5{bottom:287.310000px;}
.y10d{bottom:289.257996px;}
.y9d{bottom:289.290000px;}
.yc5{bottom:291.090000px;}
.yea{bottom:292.710000px;}
.y59{bottom:299.550000px;}
.yb4{bottom:299.730000px;}
.ye9{bottom:303.150000px;}
.ye8{bottom:309.990000px;}
.yc4{bottom:311.790000px;}
.y24{bottom:313.770000px;}
.y58{bottom:316.830000px;}
.yaa{bottom:320.430000px;}
.ye7{bottom:321.150000px;}
.yab{bottom:328.710000px;}
.y10e{bottom:329.626330px;}
.y129{bottom:330.690000px;}
.yc3{bottom:332.490000px;}
.y105{bottom:332.796313px;}
.y57{bottom:334.110000px;}
.y91{bottom:340.950000px;}
.ya9{bottom:341.130000px;}
.y23{bottom:348.150000px;}
.y56{bottom:351.390000px;}
.yfe{bottom:352.110000px;}
.yc2{bottom:353.190000px;}
.y55{bottom:358.230000px;}
.ya8{bottom:361.830000px;}
.y102{bottom:362.237608px;}
.y54{bottom:368.670000px;}
.y10f{bottom:370.023707px;}
.y128{bottom:371.550000px;}
.y104{bottom:373.157388px;}
.yc1{bottom:373.890000px;}
.y90{bottom:375.510000px;}
.y22{bottom:382.170000px;}
.ya7{bottom:382.530000px;}
.y53{bottom:385.950000px;}
.y117{bottom:390.626131px;}
.y126{bottom:390.630000px;}
.yf8{bottom:390.810000px;}
.y9c{bottom:392.790000px;}
.yc0{bottom:394.590000px;}
.y127{bottom:398.190000px;}
.y52{bottom:403.050000px;}
.ya6{bottom:403.230000px;}
.y125{bottom:409.530000px;}
.y51{bottom:409.890000px;}
.ye5{bottom:413.490000px;}
.ybe{bottom:414.750000px;}
.y21{bottom:416.730000px;}
.y110{bottom:416.836507px;}
.y50{bottom:420.375000px;}
.ye6{bottom:421.815000px;}
.ybf{bottom:422.355000px;}
.ya5{bottom:423.975000px;}
.y8f{bottom:427.215000px;}
.y124{bottom:428.655000px;}
.ybd{bottom:433.695000px;}
.ye4{bottom:434.235000px;}
.y4f{bottom:437.655000px;}
.y8e{bottom:438.375000px;}
.y20{bottom:439.095000px;}
.ya4{bottom:444.675000px;}
.y123{bottom:447.555000px;}
.ybc{bottom:452.775000px;}
.yfd{bottom:452.955000px;}
.y4e{bottom:454.935000px;}
.yb2{bottom:455.655000px;}
.y1f{bottom:461.415000px;}
.y9b{bottom:461.775000px;}
.y8d{bottom:465.375000px;}
.ybb{bottom:471.675000px;}
.y4d{bottom:472.215000px;}
.y9a{bottom:472.935000px;}
.yfc{bottom:473.655000px;}
.ye3{bottom:475.635000px;}
.y1e{bottom:483.735000px;}
.y8c{bottom:485.895000px;}
.y4c{bottom:489.495000px;}
.yba{bottom:490.755000px;}
.ye1{bottom:496.335000px;}
.ye2{bottom:504.615000px;}
.y1d{bottom:506.055000px;}
.y4b{bottom:506.595000px;}
.yb9{bottom:509.655000px;}
.y4a{bottom:513.435000px;}
.y11f{bottom:514.875000px;}
.ye0{bottom:517.035000px;}
.y49{bottom:524.595000px;}
.y8b{bottom:527.295000px;}
.y1c{bottom:528.375000px;}
.ya3{bottom:535.575000px;}
.ydf{bottom:537.735000px;}
.y8a{bottom:547.995000px;}
.yb1{bottom:556.275000px;}
.yde{bottom:558.435000px;}
.y48{bottom:560.235000px;}
.y1b{bottom:562.935000px;}
.y100{bottom:568.537223px;}
.y89{bottom:568.695000px;}
.ydd{bottom:579.135000px;}
.y47{bottom:580.935000px;}
.y88{bottom:589.395000px;}
.y1a{bottom:597.135000px;}
.ydc{bottom:599.835000px;}
.y46{bottom:601.635000px;}
.y86{bottom:610.095000px;}
.y87{bottom:618.375000px;}
.yda{bottom:620.535000px;}
.y45{bottom:622.335000px;}
.ydb{bottom:628.815000px;}
.y85{bottom:630.795000px;}
.y19{bottom:631.515000px;}
.y122{bottom:639.075000px;}
.yd9{bottom:641.235000px;}
.y115{bottom:641.650376px;}
.y44{bottom:643.035000px;}
.y84{bottom:651.495000px;}
.y99{bottom:659.805000px;}
.yd8{bottom:661.965000px;}
.y43{bottom:663.765000px;}
.y18{bottom:665.565000px;}
.y82{bottom:672.225000px;}
.y83{bottom:680.505000px;}
.yd7{bottom:682.665000px;}
.y42{bottom:684.465000px;}
.y81{bottom:692.925000px;}
.y17{bottom:700.305000px;}
.ya2{bottom:701.205000px;}
.yd6{bottom:703.365000px;}
.y41{bottom:705.165000px;}
.yf7{bottom:713.265000px;}
.y80{bottom:713.625000px;}
.yb0{bottom:721.905000px;}
.y16{bottom:722.445000px;}
.yd5{bottom:724.065000px;}
.y3f{bottom:725.865000px;}
.yf6{bottom:733.965000px;}
.y40{bottom:734.145000px;}
.y7f{bottom:734.325000px;}
.y15{bottom:744.765000px;}
.y3e{bottom:746.565000px;}
.y7e{bottom:755.025000px;}
.yfb{bottom:763.305000px;}
.yd4{bottom:765.465000px;}
.y14{bottom:767.085000px;}
.y3d{bottom:767.265000px;}
.y7d{bottom:775.725000px;}
.y98{bottom:784.005000px;}
.yd3{bottom:786.165000px;}
.y3b{bottom:787.965000px;}
.y13{bottom:789.405000px;}
.y3c{bottom:796.245000px;}
.y7c{bottom:796.425000px;}
.yd2{bottom:806.865000px;}
.y3a{bottom:808.665000px;}
.y12{bottom:811.725000px;}
.y7b{bottom:817.125000px;}
.yb8{bottom:825.405000px;}
.yd1{bottom:827.565000px;}
.y39{bottom:829.365000px;}
.y11{bottom:834.045000px;}
.ya1{bottom:837.465000px;}
.y7a{bottom:837.825000px;}
.y97{bottom:846.105000px;}
.yd0{bottom:848.265000px;}
.y37{bottom:850.065000px;}
.y10{bottom:854.565000px;}
.ya0{bottom:858.165000px;}
.y38{bottom:858.345000px;}
.y79{bottom:858.525000px;}
.yff{bottom:866.805000px;}
.ycf{bottom:868.965000px;}
.y36{bottom:870.765000px;}
.yf{bottom:875.265000px;}
.y77{bottom:879.225000px;}
.y78{bottom:887.505000px;}
.yce{bottom:889.665000px;}
.y34{bottom:891.465000px;}
.ye{bottom:896.325000px;}
.y35{bottom:899.745000px;}
.y76{bottom:899.925000px;}
.ycd{bottom:910.410000px;}
.y33{bottom:912.030000px;}
.y74{bottom:920.670000px;}
.y75{bottom:928.950000px;}
.ycc{bottom:931.110000px;}
.y32{bottom:932.730000px;}
.yd{bottom:937.950000px;}
.y73{bottom:941.370000px;}
.y11e{bottom:949.650000px;}
.ycb{bottom:951.810000px;}
.y31{bottom:953.430000px;}
.y12b{bottom:961.710000px;}
.y71{bottom:962.070000px;}
.yc{bottom:962.250000px;}
.y72{bottom:970.350000px;}
.yca{bottom:971.970000px;}
.y30{bottom:974.130000px;}
.y70{bottom:982.770000px;}
.y9f{bottom:991.050000px;}
.y2f{bottom:994.830000px;}
.yc9{bottom:998.610000px;}
.yb{bottom:1000.410000px;}
.y6f{bottom:1003.470000px;}
.yc8{bottom:1009.950000px;}
.y6e{bottom:1024.170000px;}
.ya{bottom:1026.510000px;}
.y2e{bottom:1028.850000px;}
.y96{bottom:1032.450000px;}
.y6d{bottom:1044.870000px;}
.yc7{bottom:1047.930000px;}
.y9{bottom:1050.450000px;}
.y2d{bottom:1063.230000px;}
.y6b{bottom:1065.570000px;}
.y6c{bottom:1073.850000px;}
.y8{bottom:1074.570000px;}
.y69{bottom:1086.270000px;}
.y6a{bottom:1094.550000px;}
.y2c{bottom:1098.510000px;}
.y7{bottom:1098.870000px;}
.y68{bottom:1106.970000px;}
.y95{bottom:1115.250000px;}
.y6{bottom:1124.430000px;}
.y2b{bottom:1124.610000px;}
.y67{bottom:1127.670000px;}
.y3{bottom:1148.400000px;}
.y2{bottom:1172.700000px;}
.y1{bottom:1193.580000px;}
.h10{height:27.263147px;}
.h12{height:27.299449px;}
.h14{height:30.530368px;}
.h15{height:30.566671px;}
.h7{height:31.291172px;}
.h16{height:31.655744px;}
.h9{height:38.158594px;}
.he{height:40.985156px;}
.h8{height:47.344922px;}
.h18{height:48.028154px;}
.hb{height:58.621992px;}
.ha{height:58.651172px;}
.hd{height:59.383125px;}
.hf{height:60.226875px;}
.hc{height:64.546875px;}
.h3{height:65.010937px;}
.h11{height:68.303644px;}
.h19{height:70.628906px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h17{height:72.847124px;}
.h4{height:84.898125px;}
.h13{height:486.815979px;}
.h6{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:30.541538px;}
.w5{width:30.577853px;}
.w3{width:39.293631px;}
.w7{width:65.477280px;}
.wa{width:99.323550px;}
.w8{width:122.238782px;}
.w9{width:225.883904px;}
.w6{width:626.446519px;}
.w2{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x66{left:2.178944px;}
.x6e{left:3.268417px;}
.x70{left:19.639552px;}
.x6c{left:82.945151px;}
.x6b{left:91.697244px;}
.x6a{left:109.128799px;}
.x1{left:127.656000px;}
.x13{left:132.516000px;}
.x21{left:137.376000px;}
.x39{left:139.896000px;}
.x5b{left:148.896000px;}
.x4d{left:164.188125px;}
.x7f{left:168.148125px;}
.x3{left:171.030000px;}
.x4e{left:176.430000px;}
.x80{left:180.390000px;}
.x49{left:185.068125px;}
.x2b{left:187.588125px;}
.x40{left:195.148125px;}
.x35{left:197.128125px;}
.x2c{left:199.830000px;}
.x6d{left:206.273405px;}
.xc{left:207.568125px;}
.x36{left:209.370000px;}
.x82{left:212.610000px;}
.xd{left:213.690000px;}
.x3c{left:218.188125px;}
.x53{left:221.068125px;}
.xa{left:229.168125px;}
.x3d{left:230.430000px;}
.x54{left:233.310000px;}
.xb{left:235.290000px;}
.x1a{left:240.148125px;}
.x60{left:241.590000px;}
.x1b{left:246.270000px;}
.x5e{left:254.728125px;}
.x64{left:261.568125px;}
.x5f{left:266.970000px;}
.x31{left:271.288125px;}
.x65{left:273.810000px;}
.x4f{left:278.308125px;}
.x32{left:283.530000px;}
.x79{left:287.488125px;}
.x50{left:288.750000px;}
.x27{left:293.653125px;}
.x7a{left:295.993125px;}
.x14{left:297.073125px;}
.x5c{left:298.873125px;}
.x15{left:303.195000px;}
.x28{left:305.895000px;}
.x7b{left:308.235000px;}
.x5d{left:311.115000px;}
.x51{left:314.533125px;}
.x52{left:324.975000px;}
.x47{left:329.113125px;}
.x4{left:330.195000px;}
.x9{left:333.615000px;}
.x48{left:341.355000px;}
.x8{left:343.695000px;}
.x33{left:350.173125px;}
.x20{left:355.395000px;}
.x34{left:362.415000px;}
.x81{left:366.555000px;}
.x29{left:368.893125px;}
.x6{left:372.135000px;}
.x83{left:374.655000px;}
.x16{left:376.093125px;}
.x2a{left:381.135000px;}
.x17{left:382.215000px;}
.x77{left:394.093125px;}
.x1e{left:397.693125px;}
.x78{left:406.335000px;}
.x74{left:408.133125px;}
.x1f{left:409.935000px;}
.x1c{left:413.533125px;}
.x67{left:415.757036px;}
.x75{left:420.375000px;}
.x24{left:422.353125px;}
.x37{left:423.613125px;}
.x1d{left:425.775000px;}
.x25{left:434.595000px;}
.x38{left:435.855000px;}
.x72{left:438.193125px;}
.x22{left:441.613125px;}
.x73{left:450.435000px;}
.x23{left:453.855000px;}
.x55{left:459.613125px;}
.x62{left:466.093125px;}
.x5{left:467.715000px;}
.x56{left:471.855000px;}
.x41{left:475.453125px;}
.x63{left:478.335000px;}
.x42{left:487.725000px;}
.x2d{left:496.183125px;}
.x2e{left:508.425000px;}
.x11{left:511.483125px;}
.x12{left:517.605000px;}
.x26{left:523.365000px;}
.x68{left:536.877292px;}
.x4b{left:576.463125px;}
.x5a{left:580.783125px;}
.x69{left:586.005226px;}
.x4c{left:588.705000px;}
.xe{left:593.023125px;}
.xf{left:599.145000px;}
.x7{left:601.485000px;}
.x7d{left:605.083125px;}
.x7e{left:617.325000px;}
.x18{left:618.583125px;}
.x19{left:624.705000px;}
.x2f{left:633.523125px;}
.x30{left:645.765000px;}
.x3e{left:664.663125px;}
.x76{left:668.625000px;}
.x3f{left:676.905000px;}
.x46{left:681.808125px;}
.x43{left:693.148125px;}
.x3a{left:694.228125px;}
.x6f{left:697.320233px;}
.x44{left:705.390000px;}
.x3b{left:706.470000px;}
.x2{left:708.630000px;}
.x10{left:714.030000px;}
.x59{left:717.990000px;}
.x4a{left:719.430000px;}
.x7c{left:729.330000px;}
.x57{left:747.868125px;}
.x61{left:753.268125px;}
.x58{left:760.110000px;}
.x45{left:765.510000px;}
.x71{left:807.630000px;}
@media print{
.v2{vertical-align:-74.240000pt;}
.v4{vertical-align:-69.120000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.560000pt;}
.ls14{letter-spacing:-1.388851pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.094720pt;}
.ls4{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.183467pt;}
.lsc{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls9{letter-spacing:4.480000pt;}
.lsd{letter-spacing:4.640000pt;}
.lsf{letter-spacing:9.120000pt;}
.lsa{letter-spacing:10.400000pt;}
.lse{letter-spacing:135.040000pt;}
.ls0{letter-spacing:588.746667pt;}
.ws0{word-spacing:-48.000000pt;}
.ws2{word-spacing:-34.560000pt;}
.wsc{word-spacing:-16.183217pt;}
.ws10{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.wse{word-spacing:-0.058213pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:572.680879pt;}
._1e{margin-left:-1.856000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.162667pt;}
._6{width:2.560000pt;}
._7{width:3.957333pt;}
._16{width:5.056000pt;}
._1a{width:6.656000pt;}
._a{width:7.616000pt;}
._b{width:8.640000pt;}
._e{width:9.578667pt;}
._19{width:10.709333pt;}
._12{width:11.840000pt;}
._13{width:12.789333pt;}
._f{width:14.016000pt;}
._c{width:15.040000pt;}
._24{width:16.059307pt;}
._21{width:17.024000pt;}
._18{width:17.920000pt;}
._17{width:18.944000pt;}
._5{width:20.010667pt;}
._d{width:21.226667pt;}
._22{width:22.314667pt;}
._25{width:23.242667pt;}
._1d{width:24.192000pt;}
._8{width:25.280000pt;}
._9{width:26.240000pt;}
._1b{width:27.200000pt;}
._1c{width:28.330667pt;}
._14{width:29.376000pt;}
._15{width:30.528000pt;}
._23{width:31.616000pt;}
._11{width:35.264000pt;}
._10{width:36.416000pt;}
._1f{width:40.768000pt;}
._20{width:42.400000pt;}
._2{width:152.704000pt;}
._26{width:290.944000pt;}
._4{width:587.509333pt;}
._3{width:667.626667pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:58.213010pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:62.085273pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y119{bottom:3.872262pt;}
.y106{bottom:6.770005pt;}
.y101{bottom:6.776459pt;}
.y103{bottom:6.802274pt;}
.y111{bottom:8.712590pt;}
.y114{bottom:8.744859pt;}
.y116{bottom:8.751313pt;}
.y118{bottom:26.202308pt;}
.y5{bottom:51.040000pt;}
.y112{bottom:61.117207pt;}
.y4{bottom:69.120000pt;}
.y108{bottom:77.638860pt;}
.y66{bottom:97.600000pt;}
.y2a{bottom:103.680000pt;}
.y65{bottom:112.960000pt;}
.y109{bottom:113.521824pt;}
.y29{bottom:114.720000pt;}
.y64{bottom:119.040000pt;}
.y63{bottom:128.320000pt;}
.yf5{bottom:128.960000pt;}
.y94{bottom:134.400000pt;}
.yf4{bottom:136.320000pt;}
.y62{bottom:143.680000pt;}
.yf3{bottom:146.720000pt;}
.y10a{bottom:149.404788pt;}
.y9e{bottom:149.760000pt;}
.yf2{bottom:152.800000pt;}
.y11b{bottom:156.346667pt;}
.y28{bottom:156.506667pt;}
.y61{bottom:159.066667pt;}
.y121{bottom:159.706667pt;}
.yf1{bottom:162.106667pt;}
.y93{bottom:165.146667pt;}
.y11a{bottom:169.626667pt;}
.y60{bottom:174.426667pt;}
.y107{bottom:174.520328pt;}
.y12c{bottom:175.066667pt;}
.yf0{bottom:177.466667pt;}
.yaf{bottom:180.506667pt;}
.y10b{bottom:185.313567pt;}
.y27{bottom:187.066667pt;}
.y5f{bottom:189.626667pt;}
.yb7{bottom:190.426667pt;}
.yef{bottom:192.826667pt;}
.yb3{bottom:195.706667pt;}
.yfa{bottom:197.786667pt;}
.y113{bottom:203.626833pt;}
.y5e{bottom:204.986667pt;}
.yee{bottom:208.026667pt;}
.yf9{bottom:208.826667pt;}
.y92{bottom:211.066667pt;}
.y120{bottom:211.226667pt;}
.y11d{bottom:215.066667pt;}
.y26{bottom:217.626667pt;}
.y5d{bottom:220.346667pt;}
.yc6{bottom:220.986667pt;}
.y10c{bottom:221.196531pt;}
.yed{bottom:223.386667pt;}
.y11c{bottom:228.346667pt;}
.yb6{bottom:229.626667pt;}
.y5c{bottom:235.706667pt;}
.yae{bottom:236.346667pt;}
.yec{bottom:238.746667pt;}
.y5b{bottom:241.786667pt;}
.yad{bottom:243.706667pt;}
.y25{bottom:248.026667pt;}
.y5a{bottom:251.066667pt;}
.y12a{bottom:251.706667pt;}
.yeb{bottom:254.106667pt;}
.yac{bottom:254.746667pt;}
.yb5{bottom:255.386667pt;}
.y10d{bottom:257.118218pt;}
.y9d{bottom:257.146667pt;}
.yc5{bottom:258.746667pt;}
.yea{bottom:260.186667pt;}
.y59{bottom:266.266667pt;}
.yb4{bottom:266.426667pt;}
.ye9{bottom:269.466667pt;}
.ye8{bottom:275.546667pt;}
.yc4{bottom:277.146667pt;}
.y24{bottom:278.906667pt;}
.y58{bottom:281.626667pt;}
.yaa{bottom:284.826667pt;}
.ye7{bottom:285.466667pt;}
.yab{bottom:292.186667pt;}
.y10e{bottom:293.001183pt;}
.y129{bottom:293.946667pt;}
.yc3{bottom:295.546667pt;}
.y105{bottom:295.818945pt;}
.y57{bottom:296.986667pt;}
.y91{bottom:303.066667pt;}
.ya9{bottom:303.226667pt;}
.y23{bottom:309.466667pt;}
.y56{bottom:312.346667pt;}
.yfe{bottom:312.986667pt;}
.yc2{bottom:313.946667pt;}
.y55{bottom:318.426667pt;}
.ya8{bottom:321.626667pt;}
.y102{bottom:321.988985pt;}
.y54{bottom:327.706667pt;}
.y10f{bottom:328.909962pt;}
.y128{bottom:330.266667pt;}
.y104{bottom:331.695456pt;}
.yc1{bottom:332.346667pt;}
.y90{bottom:333.786667pt;}
.y22{bottom:339.706667pt;}
.ya7{bottom:340.026667pt;}
.y53{bottom:343.066667pt;}
.y117{bottom:347.223228pt;}
.y126{bottom:347.226667pt;}
.yf8{bottom:347.386667pt;}
.y9c{bottom:349.146667pt;}
.yc0{bottom:350.746667pt;}
.y127{bottom:353.946667pt;}
.y52{bottom:358.266667pt;}
.ya6{bottom:358.426667pt;}
.y125{bottom:364.026667pt;}
.y51{bottom:364.346667pt;}
.ye5{bottom:367.546667pt;}
.ybe{bottom:368.666667pt;}
.y21{bottom:370.426667pt;}
.y110{bottom:370.521339pt;}
.y50{bottom:373.666667pt;}
.ye6{bottom:374.946667pt;}
.ybf{bottom:375.426667pt;}
.ya5{bottom:376.866667pt;}
.y8f{bottom:379.746667pt;}
.y124{bottom:381.026667pt;}
.ybd{bottom:385.506667pt;}
.ye4{bottom:385.986667pt;}
.y4f{bottom:389.026667pt;}
.y8e{bottom:389.666667pt;}
.y20{bottom:390.306667pt;}
.ya4{bottom:395.266667pt;}
.y123{bottom:397.826667pt;}
.ybc{bottom:402.466667pt;}
.yfd{bottom:402.626667pt;}
.y4e{bottom:404.386667pt;}
.yb2{bottom:405.026667pt;}
.y1f{bottom:410.146667pt;}
.y9b{bottom:410.466667pt;}
.y8d{bottom:413.666667pt;}
.ybb{bottom:419.266667pt;}
.y4d{bottom:419.746667pt;}
.y9a{bottom:420.386667pt;}
.yfc{bottom:421.026667pt;}
.ye3{bottom:422.786667pt;}
.y1e{bottom:429.986667pt;}
.y8c{bottom:431.906667pt;}
.y4c{bottom:435.106667pt;}
.yba{bottom:436.226667pt;}
.ye1{bottom:441.186667pt;}
.ye2{bottom:448.546667pt;}
.y1d{bottom:449.826667pt;}
.y4b{bottom:450.306667pt;}
.yb9{bottom:453.026667pt;}
.y4a{bottom:456.386667pt;}
.y11f{bottom:457.666667pt;}
.ye0{bottom:459.586667pt;}
.y49{bottom:466.306667pt;}
.y8b{bottom:468.706667pt;}
.y1c{bottom:469.666667pt;}
.ya3{bottom:476.066667pt;}
.ydf{bottom:477.986667pt;}
.y8a{bottom:487.106667pt;}
.yb1{bottom:494.466667pt;}
.yde{bottom:496.386667pt;}
.y48{bottom:497.986667pt;}
.y1b{bottom:500.386667pt;}
.y100{bottom:505.366421pt;}
.y89{bottom:505.506667pt;}
.ydd{bottom:514.786667pt;}
.y47{bottom:516.386667pt;}
.y88{bottom:523.906667pt;}
.y1a{bottom:530.786667pt;}
.ydc{bottom:533.186667pt;}
.y46{bottom:534.786667pt;}
.y86{bottom:542.306667pt;}
.y87{bottom:549.666667pt;}
.yda{bottom:551.586667pt;}
.y45{bottom:553.186667pt;}
.ydb{bottom:558.946667pt;}
.y85{bottom:560.706667pt;}
.y19{bottom:561.346667pt;}
.y122{bottom:568.066667pt;}
.yd9{bottom:569.986667pt;}
.y115{bottom:570.355890pt;}
.y44{bottom:571.586667pt;}
.y84{bottom:579.106667pt;}
.y99{bottom:586.493333pt;}
.yd8{bottom:588.413333pt;}
.y43{bottom:590.013333pt;}
.y18{bottom:591.613333pt;}
.y82{bottom:597.533333pt;}
.y83{bottom:604.893333pt;}
.yd7{bottom:606.813333pt;}
.y42{bottom:608.413333pt;}
.y81{bottom:615.933333pt;}
.y17{bottom:622.493333pt;}
.ya2{bottom:623.293333pt;}
.yd6{bottom:625.213333pt;}
.y41{bottom:626.813333pt;}
.yf7{bottom:634.013333pt;}
.y80{bottom:634.333333pt;}
.yb0{bottom:641.693333pt;}
.y16{bottom:642.173333pt;}
.yd5{bottom:643.613333pt;}
.y3f{bottom:645.213333pt;}
.yf6{bottom:652.413333pt;}
.y40{bottom:652.573333pt;}
.y7f{bottom:652.733333pt;}
.y15{bottom:662.013333pt;}
.y3e{bottom:663.613333pt;}
.y7e{bottom:671.133333pt;}
.yfb{bottom:678.493333pt;}
.yd4{bottom:680.413333pt;}
.y14{bottom:681.853333pt;}
.y3d{bottom:682.013333pt;}
.y7d{bottom:689.533333pt;}
.y98{bottom:696.893333pt;}
.yd3{bottom:698.813333pt;}
.y3b{bottom:700.413333pt;}
.y13{bottom:701.693333pt;}
.y3c{bottom:707.773333pt;}
.y7c{bottom:707.933333pt;}
.yd2{bottom:717.213333pt;}
.y3a{bottom:718.813333pt;}
.y12{bottom:721.533333pt;}
.y7b{bottom:726.333333pt;}
.yb8{bottom:733.693333pt;}
.yd1{bottom:735.613333pt;}
.y39{bottom:737.213333pt;}
.y11{bottom:741.373333pt;}
.ya1{bottom:744.413333pt;}
.y7a{bottom:744.733333pt;}
.y97{bottom:752.093333pt;}
.yd0{bottom:754.013333pt;}
.y37{bottom:755.613333pt;}
.y10{bottom:759.613333pt;}
.ya0{bottom:762.813333pt;}
.y38{bottom:762.973333pt;}
.y79{bottom:763.133333pt;}
.yff{bottom:770.493333pt;}
.ycf{bottom:772.413333pt;}
.y36{bottom:774.013333pt;}
.yf{bottom:778.013333pt;}
.y77{bottom:781.533333pt;}
.y78{bottom:788.893333pt;}
.yce{bottom:790.813333pt;}
.y34{bottom:792.413333pt;}
.ye{bottom:796.733333pt;}
.y35{bottom:799.773333pt;}
.y76{bottom:799.933333pt;}
.ycd{bottom:809.253333pt;}
.y33{bottom:810.693333pt;}
.y74{bottom:818.373333pt;}
.y75{bottom:825.733333pt;}
.ycc{bottom:827.653333pt;}
.y32{bottom:829.093333pt;}
.yd{bottom:833.733333pt;}
.y73{bottom:836.773333pt;}
.y11e{bottom:844.133333pt;}
.ycb{bottom:846.053333pt;}
.y31{bottom:847.493333pt;}
.y12b{bottom:854.853333pt;}
.y71{bottom:855.173333pt;}
.yc{bottom:855.333333pt;}
.y72{bottom:862.533333pt;}
.yca{bottom:863.973333pt;}
.y30{bottom:865.893333pt;}
.y70{bottom:873.573333pt;}
.y9f{bottom:880.933333pt;}
.y2f{bottom:884.293333pt;}
.yc9{bottom:887.653333pt;}
.yb{bottom:889.253333pt;}
.y6f{bottom:891.973333pt;}
.yc8{bottom:897.733333pt;}
.y6e{bottom:910.373333pt;}
.ya{bottom:912.453333pt;}
.y2e{bottom:914.533333pt;}
.y96{bottom:917.733333pt;}
.y6d{bottom:928.773333pt;}
.yc7{bottom:931.493333pt;}
.y9{bottom:933.733333pt;}
.y2d{bottom:945.093333pt;}
.y6b{bottom:947.173333pt;}
.y6c{bottom:954.533333pt;}
.y8{bottom:955.173333pt;}
.y69{bottom:965.573333pt;}
.y6a{bottom:972.933333pt;}
.y2c{bottom:976.453333pt;}
.y7{bottom:976.773333pt;}
.y68{bottom:983.973333pt;}
.y95{bottom:991.333333pt;}
.y6{bottom:999.493333pt;}
.y2b{bottom:999.653333pt;}
.y67{bottom:1002.373333pt;}
.y3{bottom:1020.800000pt;}
.y2{bottom:1042.400000pt;}
.y1{bottom:1060.960000pt;}
.h10{height:24.233908pt;}
.h12{height:24.266177pt;}
.h14{height:27.138105pt;}
.h15{height:27.170374pt;}
.h7{height:27.814375pt;}
.h16{height:28.138440pt;}
.h9{height:33.918750pt;}
.he{height:36.431250pt;}
.h8{height:42.084375pt;}
.h18{height:42.691692pt;}
.hb{height:52.108438pt;}
.ha{height:52.134375pt;}
.hd{height:52.785000pt;}
.hf{height:53.535000pt;}
.hc{height:57.375000pt;}
.h3{height:57.787500pt;}
.h11{height:60.714351pt;}
.h19{height:62.781250pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h17{height:64.752999pt;}
.h4{height:75.465000pt;}
.h13{height:432.725315pt;}
.h6{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:27.148033pt;}
.w5{width:27.180314pt;}
.w3{width:34.927672pt;}
.w7{width:58.202026pt;}
.wa{width:88.287600pt;}
.w8{width:108.656695pt;}
.w9{width:200.785693pt;}
.w6{width:556.841351pt;}
.w2{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x66{left:1.936839pt;}
.x6e{left:2.905259pt;}
.x70{left:17.457380pt;}
.x6c{left:73.729023pt;}
.x6b{left:81.508661pt;}
.x6a{left:97.003377pt;}
.x1{left:113.472000pt;}
.x13{left:117.792000pt;}
.x21{left:122.112000pt;}
.x39{left:124.352000pt;}
.x5b{left:132.352000pt;}
.x4d{left:145.945000pt;}
.x7f{left:149.465000pt;}
.x3{left:152.026667pt;}
.x4e{left:156.826667pt;}
.x80{left:160.346667pt;}
.x49{left:164.505000pt;}
.x2b{left:166.745000pt;}
.x40{left:173.465000pt;}
.x35{left:175.225000pt;}
.x2c{left:177.626667pt;}
.x6d{left:183.354137pt;}
.xc{left:184.505000pt;}
.x36{left:186.106667pt;}
.x82{left:188.986667pt;}
.xd{left:189.946667pt;}
.x3c{left:193.945000pt;}
.x53{left:196.505000pt;}
.xa{left:203.705000pt;}
.x3d{left:204.826667pt;}
.x54{left:207.386667pt;}
.xb{left:209.146667pt;}
.x1a{left:213.465000pt;}
.x60{left:214.746667pt;}
.x1b{left:218.906667pt;}
.x5e{left:226.425000pt;}
.x64{left:232.505000pt;}
.x5f{left:237.306667pt;}
.x31{left:241.145000pt;}
.x65{left:243.386667pt;}
.x4f{left:247.385000pt;}
.x32{left:252.026667pt;}
.x79{left:255.545000pt;}
.x50{left:256.666667pt;}
.x27{left:261.025000pt;}
.x7a{left:263.105000pt;}
.x14{left:264.065000pt;}
.x5c{left:265.665000pt;}
.x15{left:269.506667pt;}
.x28{left:271.906667pt;}
.x7b{left:273.986667pt;}
.x5d{left:276.546667pt;}
.x51{left:279.585000pt;}
.x52{left:288.866667pt;}
.x47{left:292.545000pt;}
.x4{left:293.506667pt;}
.x9{left:296.546667pt;}
.x48{left:303.426667pt;}
.x8{left:305.506667pt;}
.x33{left:311.265000pt;}
.x20{left:315.906667pt;}
.x34{left:322.146667pt;}
.x81{left:325.826667pt;}
.x29{left:327.905000pt;}
.x6{left:330.786667pt;}
.x83{left:333.026667pt;}
.x16{left:334.305000pt;}
.x2a{left:338.786667pt;}
.x17{left:339.746667pt;}
.x77{left:350.305000pt;}
.x1e{left:353.505000pt;}
.x78{left:361.186667pt;}
.x74{left:362.785000pt;}
.x1f{left:364.386667pt;}
.x1c{left:367.585000pt;}
.x67{left:369.561809pt;}
.x75{left:373.666667pt;}
.x24{left:375.425000pt;}
.x37{left:376.545000pt;}
.x1d{left:378.466667pt;}
.x25{left:386.306667pt;}
.x38{left:387.426667pt;}
.x72{left:389.505000pt;}
.x22{left:392.545000pt;}
.x73{left:400.386667pt;}
.x23{left:403.426667pt;}
.x55{left:408.545000pt;}
.x62{left:414.305000pt;}
.x5{left:415.746667pt;}
.x56{left:419.426667pt;}
.x41{left:422.625000pt;}
.x63{left:425.186667pt;}
.x42{left:433.533333pt;}
.x2d{left:441.051667pt;}
.x2e{left:451.933333pt;}
.x11{left:454.651667pt;}
.x12{left:460.093333pt;}
.x26{left:465.213333pt;}
.x68{left:477.224260pt;}
.x4b{left:512.411667pt;}
.x5a{left:516.251667pt;}
.x69{left:520.893534pt;}
.x4c{left:523.293333pt;}
.xe{left:527.131667pt;}
.xf{left:532.573333pt;}
.x7{left:534.653333pt;}
.x7d{left:537.851667pt;}
.x7e{left:548.733333pt;}
.x18{left:549.851667pt;}
.x19{left:555.293333pt;}
.x2f{left:563.131667pt;}
.x30{left:574.013333pt;}
.x3e{left:590.811667pt;}
.x76{left:594.333333pt;}
.x3f{left:601.693333pt;}
.x46{left:606.051667pt;}
.x43{left:616.131667pt;}
.x3a{left:617.091667pt;}
.x6f{left:619.840207pt;}
.x44{left:627.013333pt;}
.x3b{left:627.973333pt;}
.x2{left:629.893333pt;}
.x10{left:634.693333pt;}
.x59{left:638.213333pt;}
.x4a{left:639.493333pt;}
.x7c{left:648.293333pt;}
.x57{left:664.771667pt;}
.x61{left:669.571667pt;}
.x58{left:675.653333pt;}
.x45{left:680.453333pt;}
.x71{left:717.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; }
  