
    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_a9a6b54a5a0d5b7560e56dbb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8f0c8fd72f757c30fc991ba3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_32d8b9c55820ab89d152e4f8.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_63b53ac404815362795d2557.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ac8fb4dc105bc33c55501a03.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_5d123772bb4c8abe91c34807.woff')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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.576000px;}
.ls0{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.900000px;}
.ls1{letter-spacing:3.600000px;}
.ls6{letter-spacing:5.736000px;}
.ls5{letter-spacing:33.984000px;}
.ls4{letter-spacing:54.864000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.576000px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-4.896000px;}
._7{margin-left:-3.096000px;}
._17{margin-left:-2.016000px;}
._1{margin-left:-1.008000px;}
._0{width:1.176000px;}
._9{width:2.952000px;}
._21{width:3.960000px;}
._13{width:5.016000px;}
._c{width:6.048000px;}
._d{width:7.056000px;}
._16{width:8.280000px;}
._4{width:9.432000px;}
._2{width:10.944000px;}
._3{width:11.952000px;}
._1b{width:12.960000px;}
._15{width:14.400000px;}
._14{width:15.408000px;}
._12{width:16.704000px;}
._11{width:19.080000px;}
._a{width:20.952000px;}
._b{width:21.960000px;}
._1c{width:23.472000px;}
._1e{width:24.912000px;}
._10{width:25.920000px;}
._1f{width:26.928000px;}
._5{width:27.936000px;}
._6{width:29.172000px;}
._1d{width:30.948000px;}
._20{width:32.040000px;}
._26{width:33.264000px;}
._29{width:34.704000px;}
._e{width:36.720000px;}
._f{width:38.088000px;}
._1a{width:39.672000px;}
._25{width:42.048000px;}
._23{width:43.056000px;}
._24{width:44.784000px;}
._22{width:50.112000px;}
._18{width:51.696000px;}
._19{width:52.896000px;}
._2a{width:58.392000px;}
._2b{width:59.592000px;}
._28{width:66.360000px;}
._27{width:67.392000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y88{bottom:3.960000px;}
.y8b{bottom:24.660000px;}
.y137{bottom:24.690000px;}
.yc4{bottom:24.705000px;}
.y108{bottom:45.180000px;}
.y8a{bottom:45.360000px;}
.ybe{bottom:45.390000px;}
.yc3{bottom:45.405000px;}
.y2{bottom:58.320000px;}
.yb9{bottom:66.060000px;}
.ybd{bottom:66.090000px;}
.yc2{bottom:66.105000px;}
.y1{bottom:78.516000px;}
.ybb{bottom:86.760000px;}
.yc1{bottom:86.805000px;}
.y9e{bottom:100.656000px;}
.y130{bottom:101.196000px;}
.y2f{bottom:101.736000px;}
.ye2{bottom:106.236000px;}
.ya6{bottom:108.576000px;}
.y58{bottom:111.636000px;}
.y149{bottom:111.996000px;}
.y76{bottom:116.496000px;}
.yc8{bottom:116.676000px;}
.y103{bottom:117.396000px;}
.y9d{bottom:121.356000px;}
.y12f{bottom:121.896000px;}
.y2e{bottom:122.436000px;}
.y12a{bottom:125.856000px;}
.ye1{bottom:126.936000px;}
.ya5{bottom:129.276000px;}
.y57{bottom:132.156000px;}
.y148{bottom:132.696000px;}
.y75{bottom:137.196000px;}
.yc7{bottom:137.376000px;}
.y102{bottom:138.096000px;}
.y9c{bottom:142.056000px;}
.y12e{bottom:142.596000px;}
.y2d{bottom:143.136000px;}
.ye0{bottom:147.636000px;}
.ya4{bottom:149.976000px;}
.y56{bottom:152.850000px;}
.y147{bottom:153.390000px;}
.yc6{bottom:156.090000px;}
.y11a{bottom:158.070000px;}
.y101{bottom:158.790000px;}
.y74{bottom:159.150000px;}
.y9b{bottom:162.750000px;}
.y12d{bottom:163.290000px;}
.y2c{bottom:163.830000px;}
.yc5{bottom:165.090000px;}
.ydf{bottom:168.330000px;}
.ya3{bottom:170.670000px;}
.y55{bottom:173.550000px;}
.y146{bottom:174.090000px;}
.y119{bottom:178.770000px;}
.y100{bottom:179.490000px;}
.y73{bottom:179.850000px;}
.y9a{bottom:183.450000px;}
.y12c{bottom:183.990000px;}
.y2b{bottom:184.530000px;}
.yde{bottom:189.030000px;}
.ya2{bottom:191.370000px;}
.yb7{bottom:192.450000px;}
.y54{bottom:194.250000px;}
.y145{bottom:194.790000px;}
.y118{bottom:197.490000px;}
.yff{bottom:200.190000px;}
.y72{bottom:200.550000px;}
.y99{bottom:204.150000px;}
.yb6{bottom:204.690000px;}
.y2a{bottom:205.230000px;}
.ydd{bottom:209.730000px;}
.ya1{bottom:212.070000px;}
.y53{bottom:214.950000px;}
.y144{bottom:215.490000px;}
.yfe{bottom:220.890000px;}
.y71{bottom:221.250000px;}
.y98{bottom:224.850000px;}
.yb5{bottom:225.390000px;}
.y29{bottom:225.930000px;}
.ydc{bottom:230.430000px;}
.y52{bottom:235.650000px;}
.y143{bottom:236.190000px;}
.yfd{bottom:241.590000px;}
.y70{bottom:241.950000px;}
.y97{bottom:245.550000px;}
.yb4{bottom:246.090000px;}
.y28{bottom:246.630000px;}
.ydb{bottom:251.130000px;}
.y51{bottom:256.350000px;}
.y142{bottom:256.890000px;}
.yfc{bottom:262.290000px;}
.y6f{bottom:262.650000px;}
.y96{bottom:266.250000px;}
.yb3{bottom:266.790000px;}
.y27{bottom:267.330000px;}
.yc0{bottom:269.490000px;}
.yda{bottom:271.830000px;}
.y50{bottom:277.050000px;}
.y141{bottom:277.590000px;}
.yfb{bottom:282.990000px;}
.y6e{bottom:283.350000px;}
.y95{bottom:286.950000px;}
.yb2{bottom:287.490000px;}
.y26{bottom:288.030000px;}
.yd9{bottom:292.575000px;}
.y140{bottom:296.535000px;}
.y4f{bottom:297.795000px;}
.yfa{bottom:303.735000px;}
.y6d{bottom:304.095000px;}
.y94{bottom:307.695000px;}
.yb1{bottom:308.235000px;}
.y25{bottom:308.775000px;}
.yd8{bottom:313.275000px;}
.y4e{bottom:318.495000px;}
.yf9{bottom:324.435000px;}
.y6c{bottom:324.795000px;}
.y93{bottom:328.395000px;}
.yb0{bottom:328.935000px;}
.y24{bottom:329.475000px;}
.yd7{bottom:333.975000px;}
.y4d{bottom:339.195000px;}
.yf8{bottom:345.135000px;}
.y6b{bottom:345.495000px;}
.y92{bottom:348.915000px;}
.yaf{bottom:349.635000px;}
.y23{bottom:350.175000px;}
.y13f{bottom:351.435000px;}
.yd6{bottom:354.675000px;}
.y4c{bottom:359.895000px;}
.yf7{bottom:365.835000px;}
.y6a{bottom:366.195000px;}
.y22{bottom:369.075000px;}
.y91{bottom:369.615000px;}
.yae{bottom:370.335000px;}
.y13e{bottom:372.135000px;}
.ybf{bottom:373.755000px;}
.yd5{bottom:375.375000px;}
.y5c{bottom:378.795000px;}
.y4b{bottom:380.595000px;}
.y21{bottom:381.315000px;}
.y129{bottom:385.815000px;}
.yf6{bottom:386.535000px;}
.y69{bottom:386.895000px;}
.y90{bottom:390.315000px;}
.y5b{bottom:391.035000px;}
.y13d{bottom:394.095000px;}
.yd4{bottom:396.075000px;}
.y4a{bottom:401.295000px;}
.y20{bottom:402.015000px;}
.y128{bottom:406.515000px;}
.yf5{bottom:407.235000px;}
.y68{bottom:407.595000px;}
.y8f{bottom:411.015000px;}
.y5a{bottom:411.735000px;}
.y13c{bottom:414.795000px;}
.yd3{bottom:416.775000px;}
.y49{bottom:421.995000px;}
.y1f{bottom:422.715000px;}
.y67{bottom:426.315000px;}
.y127{bottom:427.215000px;}
.yf4{bottom:427.935000px;}
.y8e{bottom:428.655000px;}
.y59{bottom:432.435000px;}
.yd2{bottom:435.675000px;}
.y13b{bottom:436.755000px;}
.y117{bottom:437.475000px;}
.y66{bottom:438.555000px;}
.y48{bottom:440.895000px;}
.y1e{bottom:443.415000px;}
.yd1{bottom:447.915000px;}
.yf3{bottom:448.635000px;}
.y47{bottom:453.135000px;}
.y13a{bottom:457.455000px;}
.y116{bottom:458.175000px;}
.y1d{bottom:464.115000px;}
.yd0{bottom:468.615000px;}
.yf2{bottom:469.335000px;}
.y46{bottom:473.835000px;}
.ybc{bottom:477.975000px;}
.y139{bottom:478.155000px;}
.y115{bottom:478.875000px;}
.y1c{bottom:484.815000px;}
.ycf{bottom:487.335000px;}
.y126{bottom:489.315000px;}
.yf1{bottom:490.035000px;}
.y8d{bottom:491.475000px;}
.y45{bottom:494.535000px;}
.yce{bottom:496.335000px;}
.y138{bottom:498.855000px;}
.y114{bottom:499.575000px;}
.y1b{bottom:505.515000px;}
.yf0{bottom:508.755000px;}
.y125{bottom:510.015000px;}
.y44{bottom:515.235000px;}
.y136{bottom:516.315000px;}
.y113{bottom:518.475000px;}
.yef{bottom:520.995000px;}
.y1a{bottom:526.245000px;}
.y124{bottom:528.765000px;}
.y112{bottom:530.745000px;}
.y8c{bottom:533.625000px;}
.y43{bottom:535.965000px;}
.ycd{bottom:538.485000px;}
.y123{bottom:541.005000px;}
.yee{bottom:541.725000px;}
.y19{bottom:546.945000px;}
.y111{bottom:551.445000px;}
.y42{bottom:556.665000px;}
.yba{bottom:561.525000px;}
.y122{bottom:561.705000px;}
.yed{bottom:562.425000px;}
.y18{bottom:567.645000px;}
.y110{bottom:572.145000px;}
.y89{bottom:575.745000px;}
.y41{bottom:577.365000px;}
.y135{bottom:579.165000px;}
.y121{bottom:582.405000px;}
.yec{bottom:583.125000px;}
.y17{bottom:588.345000px;}
.y10f{bottom:592.845000px;}
.y40{bottom:598.065000px;}
.ycc{bottom:601.485000px;}
.y120{bottom:603.105000px;}
.yeb{bottom:603.825000px;}
.y16{bottom:609.045000px;}
.y10e{bottom:613.545000px;}
.y3f{bottom:618.765000px;}
.y11f{bottom:623.805000px;}
.yea{bottom:624.525000px;}
.y65{bottom:629.025000px;}
.y15{bottom:629.745000px;}
.y10d{bottom:634.245000px;}
.y87{bottom:638.565000px;}
.y3e{bottom:639.465000px;}
.y11e{bottom:641.265000px;}
.y134{bottom:641.985000px;}
.ye9{bottom:645.225000px;}
.y64{bottom:649.725000px;}
.y14{bottom:650.445000px;}
.y10c{bottom:654.945000px;}
.y3d{bottom:660.165000px;}
.y86{bottom:663.945000px;}
.ycb{bottom:664.305000px;}
.yb8{bottom:665.745000px;}
.ye8{bottom:665.925000px;}
.y63{bottom:670.425000px;}
.y13{bottom:671.145000px;}
.y10b{bottom:673.665000px;}
.y3c{bottom:680.865000px;}
.y10a{bottom:682.665000px;}
.ye7{bottom:683.385000px;}
.y85{bottom:684.645000px;}
.y62{bottom:691.125000px;}
.y12{bottom:691.845000px;}
.y3b{bottom:701.565000px;}
.y11d{bottom:704.085000px;}
.y84{bottom:705.345000px;}
.y61{bottom:711.825000px;}
.y11{bottom:712.545000px;}
.y3a{bottom:722.265000px;}
.y133{bottom:725.685000px;}
.y83{bottom:726.045000px;}
.yca{bottom:727.125000px;}
.y60{bottom:732.525000px;}
.y10{bottom:733.245000px;}
.y39{bottom:742.965000px;}
.y109{bottom:745.485000px;}
.ye6{bottom:746.385000px;}
.y82{bottom:746.745000px;}
.y5f{bottom:753.225000px;}
.yf{bottom:753.990000px;}
.y38{bottom:763.710000px;}
.y11c{bottom:767.130000px;}
.y81{bottom:768.750000px;}
.yc9{bottom:769.290000px;}
.ye{bottom:772.710000px;}
.y5e{bottom:773.970000px;}
.y37{bottom:784.410000px;}
.y107{bottom:787.830000px;}
.y132{bottom:788.550000px;}
.y80{bottom:789.630000px;}
.yd{bottom:789.810000px;}
.y5d{bottom:794.670000px;}
.y36{bottom:803.130000px;}
.ya0{bottom:805.110000px;}
.ye5{bottom:809.250000px;}
.yc{bottom:810.510000px;}
.y7f{bottom:811.590000px;}
.y35{bottom:815.370000px;}
.y9f{bottom:823.830000px;}
.yad{bottom:825.810000px;}
.y11b{bottom:829.950000px;}
.yb{bottom:831.210000px;}
.y7e{bottom:832.290000px;}
.y34{bottom:836.070000px;}
.yac{bottom:846.510000px;}
.ya{bottom:850.110000px;}
.y106{bottom:850.650000px;}
.y7d{bottom:852.990000px;}
.y33{bottom:856.770000px;}
.y9{bottom:862.350000px;}
.y131{bottom:865.230000px;}
.yab{bottom:867.210000px;}
.ye4{bottom:872.070000px;}
.y7c{bottom:874.950000px;}
.y32{bottom:877.470000px;}
.y8{bottom:883.050000px;}
.y12b{bottom:885.930000px;}
.yaa{bottom:887.910000px;}
.y105{bottom:892.770000px;}
.y7b{bottom:895.650000px;}
.y31{bottom:898.170000px;}
.y7{bottom:903.750000px;}
.ya9{bottom:908.610000px;}
.y7a{bottom:916.350000px;}
.y30{bottom:918.870000px;}
.y6{bottom:922.470000px;}
.ya8{bottom:929.310000px;}
.ye3{bottom:934.890000px;}
.y79{bottom:937.050000px;}
.y5{bottom:939.570000px;}
.ya7{bottom:948.030000px;}
.y104{bottom:955.590000px;}
.y78{bottom:959.010000px;}
.y4{bottom:960.270000px;}
.y77{bottom:979.710000px;}
.y3{bottom:980.970000px;}
.h7{height:20.700000px;}
.h4{height:25.400391px;}
.h6{height:32.273438px;}
.h9{height:41.400000px;}
.ha{height:41.436000px;}
.h3{height:50.800781px;}
.hb{height:52.417969px;}
.h11{height:61.920000px;}
.h8{height:62.100000px;}
.h10{height:62.136000px;}
.h5{height:64.546875px;}
.h2{height:67.824844px;}
.hc{height:82.800000px;}
.he{height:82.836000px;}
.hd{height:103.500000px;}
.hf{height:103.536000px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w7{width:93.456000px;}
.w6{width:102.456000px;}
.w9{width:109.440000px;}
.w8{width:134.496000px;}
.w5{width:139.500000px;}
.w13{width:190.290000px;}
.wc{width:192.630000px;}
.we{width:193.530000px;}
.wd{width:194.790000px;}
.w14{width:195.870000px;}
.w10{width:289.695000px;}
.w3{width:289.830000px;}
.wb{width:290.235000px;}
.w11{width:290.550000px;}
.w12{width:291.135000px;}
.wa{width:291.450000px;}
.w4{width:291.855000px;}
.wf{width:291.990000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x26{left:9.720000px;}
.x2f{left:11.385000px;}
.x39{left:12.600000px;}
.x29{left:14.040000px;}
.x25{left:15.840000px;}
.x2b{left:17.100000px;}
.x28{left:18.585000px;}
.x31{left:20.340000px;}
.x1f{left:22.140000px;}
.x1b{left:23.265000px;}
.x2a{left:24.660000px;}
.x32{left:26.145000px;}
.x2c{left:27.225000px;}
.x1c{left:28.665000px;}
.x4e{left:29.700000px;}
.x2d{left:30.960000px;}
.x33{left:32.265000px;}
.x27{left:33.660000px;}
.x34{left:35.100000px;}
.x30{left:36.180000px;}
.x22{left:37.260000px;}
.x24{left:39.240000px;}
.x3d{left:40.710000px;}
.x2e{left:41.760000px;}
.x4d{left:43.920000px;}
.x48{left:45.000000px;}
.x1e{left:46.620000px;}
.x43{left:48.090000px;}
.x44{left:49.500000px;}
.x1a{left:51.165000px;}
.x47{left:57.810000px;}
.x3e{left:59.394000px;}
.x3b{left:60.474000px;}
.x38{left:62.094000px;}
.x14{left:63.354000px;}
.x42{left:65.334000px;}
.x21{left:67.140000px;}
.x18{left:69.654000px;}
.x12{left:71.094000px;}
.x49{left:72.534000px;}
.x10{left:74.514000px;}
.x3f{left:76.674000px;}
.xb{left:95.075988px;}
.x13{left:98.634000px;}
.x37{left:100.650000px;}
.x4{left:101.735988px;}
.x3a{left:103.350000px;}
.xe{left:104.574000px;}
.x45{left:106.230000px;}
.x15{left:111.095988px;}
.xf{left:115.950000px;}
.x3c{left:117.030000px;}
.xd{left:122.075988px;}
.x5{left:123.515988px;}
.x4a{left:130.535988px;}
.x46{left:145.835988px;}
.x4f{left:149.075988px;}
.x35{left:151.589988px;}
.x17{left:154.109988px;}
.x8{left:228.629988px;}
.x16{left:230.249988px;}
.x19{left:236.010000px;}
.x9{left:269.894988px;}
.x7{left:281.234988px;}
.x4b{left:286.815000px;}
.x40{left:289.155000px;}
.x6{left:303.374988px;}
.xa{left:322.454988px;}
.x3{left:335.414988px;}
.x1d{left:339.375000px;}
.xc{left:348.014988px;}
.x1{left:378.614988px;}
.x2{left:386.894988px;}
.x36{left:387.975000px;}
.x20{left:433.545000px;}
.x4c{left:483.405000px;}
.x41{left:484.665000px;}
.x23{left:568.770000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.512000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls1{letter-spacing:3.200000pt;}
.ls6{letter-spacing:5.098667pt;}
.ls5{letter-spacing:30.208000pt;}
.ls4{letter-spacing:48.768000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.512000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-4.352000pt;}
._7{margin-left:-2.752000pt;}
._17{margin-left:-1.792000pt;}
._1{margin-left:-0.896000pt;}
._0{width:1.045333pt;}
._9{width:2.624000pt;}
._21{width:3.520000pt;}
._13{width:4.458667pt;}
._c{width:5.376000pt;}
._d{width:6.272000pt;}
._16{width:7.360000pt;}
._4{width:8.384000pt;}
._2{width:9.728000pt;}
._3{width:10.624000pt;}
._1b{width:11.520000pt;}
._15{width:12.800000pt;}
._14{width:13.696000pt;}
._12{width:14.848000pt;}
._11{width:16.960000pt;}
._a{width:18.624000pt;}
._b{width:19.520000pt;}
._1c{width:20.864000pt;}
._1e{width:22.144000pt;}
._10{width:23.040000pt;}
._1f{width:23.936000pt;}
._5{width:24.832000pt;}
._6{width:25.930667pt;}
._1d{width:27.509333pt;}
._20{width:28.480000pt;}
._26{width:29.568000pt;}
._29{width:30.848000pt;}
._e{width:32.640000pt;}
._f{width:33.856000pt;}
._1a{width:35.264000pt;}
._25{width:37.376000pt;}
._23{width:38.272000pt;}
._24{width:39.808000pt;}
._22{width:44.544000pt;}
._18{width:45.952000pt;}
._19{width:47.018667pt;}
._2a{width:51.904000pt;}
._2b{width:52.970667pt;}
._28{width:58.986667pt;}
._27{width:59.904000pt;}
.fs2{font-size:32.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:3.520000pt;}
.y8b{bottom:21.920000pt;}
.y137{bottom:21.946667pt;}
.yc4{bottom:21.960000pt;}
.y108{bottom:40.160000pt;}
.y8a{bottom:40.320000pt;}
.ybe{bottom:40.346667pt;}
.yc3{bottom:40.360000pt;}
.y2{bottom:51.840000pt;}
.yb9{bottom:58.720000pt;}
.ybd{bottom:58.746667pt;}
.yc2{bottom:58.760000pt;}
.y1{bottom:69.792000pt;}
.ybb{bottom:77.120000pt;}
.yc1{bottom:77.160000pt;}
.y9e{bottom:89.472000pt;}
.y130{bottom:89.952000pt;}
.y2f{bottom:90.432000pt;}
.ye2{bottom:94.432000pt;}
.ya6{bottom:96.512000pt;}
.y58{bottom:99.232000pt;}
.y149{bottom:99.552000pt;}
.y76{bottom:103.552000pt;}
.yc8{bottom:103.712000pt;}
.y103{bottom:104.352000pt;}
.y9d{bottom:107.872000pt;}
.y12f{bottom:108.352000pt;}
.y2e{bottom:108.832000pt;}
.y12a{bottom:111.872000pt;}
.ye1{bottom:112.832000pt;}
.ya5{bottom:114.912000pt;}
.y57{bottom:117.472000pt;}
.y148{bottom:117.952000pt;}
.y75{bottom:121.952000pt;}
.yc7{bottom:122.112000pt;}
.y102{bottom:122.752000pt;}
.y9c{bottom:126.272000pt;}
.y12e{bottom:126.752000pt;}
.y2d{bottom:127.232000pt;}
.ye0{bottom:131.232000pt;}
.ya4{bottom:133.312000pt;}
.y56{bottom:135.866667pt;}
.y147{bottom:136.346667pt;}
.yc6{bottom:138.746667pt;}
.y11a{bottom:140.506667pt;}
.y101{bottom:141.146667pt;}
.y74{bottom:141.466667pt;}
.y9b{bottom:144.666667pt;}
.y12d{bottom:145.146667pt;}
.y2c{bottom:145.626667pt;}
.yc5{bottom:146.746667pt;}
.ydf{bottom:149.626667pt;}
.ya3{bottom:151.706667pt;}
.y55{bottom:154.266667pt;}
.y146{bottom:154.746667pt;}
.y119{bottom:158.906667pt;}
.y100{bottom:159.546667pt;}
.y73{bottom:159.866667pt;}
.y9a{bottom:163.066667pt;}
.y12c{bottom:163.546667pt;}
.y2b{bottom:164.026667pt;}
.yde{bottom:168.026667pt;}
.ya2{bottom:170.106667pt;}
.yb7{bottom:171.066667pt;}
.y54{bottom:172.666667pt;}
.y145{bottom:173.146667pt;}
.y118{bottom:175.546667pt;}
.yff{bottom:177.946667pt;}
.y72{bottom:178.266667pt;}
.y99{bottom:181.466667pt;}
.yb6{bottom:181.946667pt;}
.y2a{bottom:182.426667pt;}
.ydd{bottom:186.426667pt;}
.ya1{bottom:188.506667pt;}
.y53{bottom:191.066667pt;}
.y144{bottom:191.546667pt;}
.yfe{bottom:196.346667pt;}
.y71{bottom:196.666667pt;}
.y98{bottom:199.866667pt;}
.yb5{bottom:200.346667pt;}
.y29{bottom:200.826667pt;}
.ydc{bottom:204.826667pt;}
.y52{bottom:209.466667pt;}
.y143{bottom:209.946667pt;}
.yfd{bottom:214.746667pt;}
.y70{bottom:215.066667pt;}
.y97{bottom:218.266667pt;}
.yb4{bottom:218.746667pt;}
.y28{bottom:219.226667pt;}
.ydb{bottom:223.226667pt;}
.y51{bottom:227.866667pt;}
.y142{bottom:228.346667pt;}
.yfc{bottom:233.146667pt;}
.y6f{bottom:233.466667pt;}
.y96{bottom:236.666667pt;}
.yb3{bottom:237.146667pt;}
.y27{bottom:237.626667pt;}
.yc0{bottom:239.546667pt;}
.yda{bottom:241.626667pt;}
.y50{bottom:246.266667pt;}
.y141{bottom:246.746667pt;}
.yfb{bottom:251.546667pt;}
.y6e{bottom:251.866667pt;}
.y95{bottom:255.066667pt;}
.yb2{bottom:255.546667pt;}
.y26{bottom:256.026667pt;}
.yd9{bottom:260.066667pt;}
.y140{bottom:263.586667pt;}
.y4f{bottom:264.706667pt;}
.yfa{bottom:269.986667pt;}
.y6d{bottom:270.306667pt;}
.y94{bottom:273.506667pt;}
.yb1{bottom:273.986667pt;}
.y25{bottom:274.466667pt;}
.yd8{bottom:278.466667pt;}
.y4e{bottom:283.106667pt;}
.yf9{bottom:288.386667pt;}
.y6c{bottom:288.706667pt;}
.y93{bottom:291.906667pt;}
.yb0{bottom:292.386667pt;}
.y24{bottom:292.866667pt;}
.yd7{bottom:296.866667pt;}
.y4d{bottom:301.506667pt;}
.yf8{bottom:306.786667pt;}
.y6b{bottom:307.106667pt;}
.y92{bottom:310.146667pt;}
.yaf{bottom:310.786667pt;}
.y23{bottom:311.266667pt;}
.y13f{bottom:312.386667pt;}
.yd6{bottom:315.266667pt;}
.y4c{bottom:319.906667pt;}
.yf7{bottom:325.186667pt;}
.y6a{bottom:325.506667pt;}
.y22{bottom:328.066667pt;}
.y91{bottom:328.546667pt;}
.yae{bottom:329.186667pt;}
.y13e{bottom:330.786667pt;}
.ybf{bottom:332.226667pt;}
.yd5{bottom:333.666667pt;}
.y5c{bottom:336.706667pt;}
.y4b{bottom:338.306667pt;}
.y21{bottom:338.946667pt;}
.y129{bottom:342.946667pt;}
.yf6{bottom:343.586667pt;}
.y69{bottom:343.906667pt;}
.y90{bottom:346.946667pt;}
.y5b{bottom:347.586667pt;}
.y13d{bottom:350.306667pt;}
.yd4{bottom:352.066667pt;}
.y4a{bottom:356.706667pt;}
.y20{bottom:357.346667pt;}
.y128{bottom:361.346667pt;}
.yf5{bottom:361.986667pt;}
.y68{bottom:362.306667pt;}
.y8f{bottom:365.346667pt;}
.y5a{bottom:365.986667pt;}
.y13c{bottom:368.706667pt;}
.yd3{bottom:370.466667pt;}
.y49{bottom:375.106667pt;}
.y1f{bottom:375.746667pt;}
.y67{bottom:378.946667pt;}
.y127{bottom:379.746667pt;}
.yf4{bottom:380.386667pt;}
.y8e{bottom:381.026667pt;}
.y59{bottom:384.386667pt;}
.yd2{bottom:387.266667pt;}
.y13b{bottom:388.226667pt;}
.y117{bottom:388.866667pt;}
.y66{bottom:389.826667pt;}
.y48{bottom:391.906667pt;}
.y1e{bottom:394.146667pt;}
.yd1{bottom:398.146667pt;}
.yf3{bottom:398.786667pt;}
.y47{bottom:402.786667pt;}
.y13a{bottom:406.626667pt;}
.y116{bottom:407.266667pt;}
.y1d{bottom:412.546667pt;}
.yd0{bottom:416.546667pt;}
.yf2{bottom:417.186667pt;}
.y46{bottom:421.186667pt;}
.ybc{bottom:424.866667pt;}
.y139{bottom:425.026667pt;}
.y115{bottom:425.666667pt;}
.y1c{bottom:430.946667pt;}
.ycf{bottom:433.186667pt;}
.y126{bottom:434.946667pt;}
.yf1{bottom:435.586667pt;}
.y8d{bottom:436.866667pt;}
.y45{bottom:439.586667pt;}
.yce{bottom:441.186667pt;}
.y138{bottom:443.426667pt;}
.y114{bottom:444.066667pt;}
.y1b{bottom:449.346667pt;}
.yf0{bottom:452.226667pt;}
.y125{bottom:453.346667pt;}
.y44{bottom:457.986667pt;}
.y136{bottom:458.946667pt;}
.y113{bottom:460.866667pt;}
.yef{bottom:463.106667pt;}
.y1a{bottom:467.773333pt;}
.y124{bottom:470.013333pt;}
.y112{bottom:471.773333pt;}
.y8c{bottom:474.333333pt;}
.y43{bottom:476.413333pt;}
.ycd{bottom:478.653333pt;}
.y123{bottom:480.893333pt;}
.yee{bottom:481.533333pt;}
.y19{bottom:486.173333pt;}
.y111{bottom:490.173333pt;}
.y42{bottom:494.813333pt;}
.yba{bottom:499.133333pt;}
.y122{bottom:499.293333pt;}
.yed{bottom:499.933333pt;}
.y18{bottom:504.573333pt;}
.y110{bottom:508.573333pt;}
.y89{bottom:511.773333pt;}
.y41{bottom:513.213333pt;}
.y135{bottom:514.813333pt;}
.y121{bottom:517.693333pt;}
.yec{bottom:518.333333pt;}
.y17{bottom:522.973333pt;}
.y10f{bottom:526.973333pt;}
.y40{bottom:531.613333pt;}
.ycc{bottom:534.653333pt;}
.y120{bottom:536.093333pt;}
.yeb{bottom:536.733333pt;}
.y16{bottom:541.373333pt;}
.y10e{bottom:545.373333pt;}
.y3f{bottom:550.013333pt;}
.y11f{bottom:554.493333pt;}
.yea{bottom:555.133333pt;}
.y65{bottom:559.133333pt;}
.y15{bottom:559.773333pt;}
.y10d{bottom:563.773333pt;}
.y87{bottom:567.613333pt;}
.y3e{bottom:568.413333pt;}
.y11e{bottom:570.013333pt;}
.y134{bottom:570.653333pt;}
.ye9{bottom:573.533333pt;}
.y64{bottom:577.533333pt;}
.y14{bottom:578.173333pt;}
.y10c{bottom:582.173333pt;}
.y3d{bottom:586.813333pt;}
.y86{bottom:590.173333pt;}
.ycb{bottom:590.493333pt;}
.yb8{bottom:591.773333pt;}
.ye8{bottom:591.933333pt;}
.y63{bottom:595.933333pt;}
.y13{bottom:596.573333pt;}
.y10b{bottom:598.813333pt;}
.y3c{bottom:605.213333pt;}
.y10a{bottom:606.813333pt;}
.ye7{bottom:607.453333pt;}
.y85{bottom:608.573333pt;}
.y62{bottom:614.333333pt;}
.y12{bottom:614.973333pt;}
.y3b{bottom:623.613333pt;}
.y11d{bottom:625.853333pt;}
.y84{bottom:626.973333pt;}
.y61{bottom:632.733333pt;}
.y11{bottom:633.373333pt;}
.y3a{bottom:642.013333pt;}
.y133{bottom:645.053333pt;}
.y83{bottom:645.373333pt;}
.yca{bottom:646.333333pt;}
.y60{bottom:651.133333pt;}
.y10{bottom:651.773333pt;}
.y39{bottom:660.413333pt;}
.y109{bottom:662.653333pt;}
.ye6{bottom:663.453333pt;}
.y82{bottom:663.773333pt;}
.y5f{bottom:669.533333pt;}
.yf{bottom:670.213333pt;}
.y38{bottom:678.853333pt;}
.y11c{bottom:681.893333pt;}
.y81{bottom:683.333333pt;}
.yc9{bottom:683.813333pt;}
.ye{bottom:686.853333pt;}
.y5e{bottom:687.973333pt;}
.y37{bottom:697.253333pt;}
.y107{bottom:700.293333pt;}
.y132{bottom:700.933333pt;}
.y80{bottom:701.893333pt;}
.yd{bottom:702.053333pt;}
.y5d{bottom:706.373333pt;}
.y36{bottom:713.893333pt;}
.ya0{bottom:715.653333pt;}
.ye5{bottom:719.333333pt;}
.yc{bottom:720.453333pt;}
.y7f{bottom:721.413333pt;}
.y35{bottom:724.773333pt;}
.y9f{bottom:732.293333pt;}
.yad{bottom:734.053333pt;}
.y11b{bottom:737.733333pt;}
.yb{bottom:738.853333pt;}
.y7e{bottom:739.813333pt;}
.y34{bottom:743.173333pt;}
.yac{bottom:752.453333pt;}
.ya{bottom:755.653333pt;}
.y106{bottom:756.133333pt;}
.y7d{bottom:758.213333pt;}
.y33{bottom:761.573333pt;}
.y9{bottom:766.533333pt;}
.y131{bottom:769.093333pt;}
.yab{bottom:770.853333pt;}
.ye4{bottom:775.173333pt;}
.y7c{bottom:777.733333pt;}
.y32{bottom:779.973333pt;}
.y8{bottom:784.933333pt;}
.y12b{bottom:787.493333pt;}
.yaa{bottom:789.253333pt;}
.y105{bottom:793.573333pt;}
.y7b{bottom:796.133333pt;}
.y31{bottom:798.373333pt;}
.y7{bottom:803.333333pt;}
.ya9{bottom:807.653333pt;}
.y7a{bottom:814.533333pt;}
.y30{bottom:816.773333pt;}
.y6{bottom:819.973333pt;}
.ya8{bottom:826.053333pt;}
.ye3{bottom:831.013333pt;}
.y79{bottom:832.933333pt;}
.y5{bottom:835.173333pt;}
.ya7{bottom:842.693333pt;}
.y104{bottom:849.413333pt;}
.y78{bottom:852.453333pt;}
.y4{bottom:853.573333pt;}
.y77{bottom:870.853333pt;}
.y3{bottom:871.973333pt;}
.h7{height:18.400000pt;}
.h4{height:22.578125pt;}
.h6{height:28.687500pt;}
.h9{height:36.800000pt;}
.ha{height:36.832000pt;}
.h3{height:45.156250pt;}
.hb{height:46.593750pt;}
.h11{height:55.040000pt;}
.h8{height:55.200000pt;}
.h10{height:55.232000pt;}
.h5{height:57.375000pt;}
.h2{height:60.288750pt;}
.hc{height:73.600000pt;}
.he{height:73.632000pt;}
.hd{height:92.000000pt;}
.hf{height:92.032000pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w7{width:83.072000pt;}
.w6{width:91.072000pt;}
.w9{width:97.280000pt;}
.w8{width:119.552000pt;}
.w5{width:124.000000pt;}
.w13{width:169.146667pt;}
.wc{width:171.226667pt;}
.we{width:172.026667pt;}
.wd{width:173.146667pt;}
.w14{width:174.106667pt;}
.w10{width:257.506667pt;}
.w3{width:257.626667pt;}
.wb{width:257.986667pt;}
.w11{width:258.266667pt;}
.w12{width:258.786667pt;}
.wa{width:259.066667pt;}
.w4{width:259.426667pt;}
.wf{width:259.546667pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x26{left:8.640000pt;}
.x2f{left:10.120000pt;}
.x39{left:11.200000pt;}
.x29{left:12.480000pt;}
.x25{left:14.080000pt;}
.x2b{left:15.200000pt;}
.x28{left:16.520000pt;}
.x31{left:18.080000pt;}
.x1f{left:19.680000pt;}
.x1b{left:20.680000pt;}
.x2a{left:21.920000pt;}
.x32{left:23.240000pt;}
.x2c{left:24.200000pt;}
.x1c{left:25.480000pt;}
.x4e{left:26.400000pt;}
.x2d{left:27.520000pt;}
.x33{left:28.680000pt;}
.x27{left:29.920000pt;}
.x34{left:31.200000pt;}
.x30{left:32.160000pt;}
.x22{left:33.120000pt;}
.x24{left:34.880000pt;}
.x3d{left:36.186667pt;}
.x2e{left:37.120000pt;}
.x4d{left:39.040000pt;}
.x48{left:40.000000pt;}
.x1e{left:41.440000pt;}
.x43{left:42.746667pt;}
.x44{left:44.000000pt;}
.x1a{left:45.480000pt;}
.x47{left:51.386667pt;}
.x3e{left:52.794667pt;}
.x3b{left:53.754667pt;}
.x38{left:55.194667pt;}
.x14{left:56.314667pt;}
.x42{left:58.074667pt;}
.x21{left:59.680000pt;}
.x18{left:61.914667pt;}
.x12{left:63.194667pt;}
.x49{left:64.474667pt;}
.x10{left:66.234667pt;}
.x3f{left:68.154667pt;}
.xb{left:84.511990pt;}
.x13{left:87.674667pt;}
.x37{left:89.466667pt;}
.x4{left:90.431990pt;}
.x3a{left:91.866667pt;}
.xe{left:92.954667pt;}
.x45{left:94.426667pt;}
.x15{left:98.751990pt;}
.xf{left:103.066667pt;}
.x3c{left:104.026667pt;}
.xd{left:108.511990pt;}
.x5{left:109.791990pt;}
.x4a{left:116.031990pt;}
.x46{left:129.631990pt;}
.x4f{left:132.511990pt;}
.x35{left:134.746656pt;}
.x17{left:136.986656pt;}
.x8{left:203.226656pt;}
.x16{left:204.666656pt;}
.x19{left:209.786667pt;}
.x9{left:239.906656pt;}
.x7{left:249.986656pt;}
.x4b{left:254.946667pt;}
.x40{left:257.026667pt;}
.x6{left:269.666656pt;}
.xa{left:286.626656pt;}
.x3{left:298.146656pt;}
.x1d{left:301.666667pt;}
.xc{left:309.346656pt;}
.x1{left:336.546656pt;}
.x2{left:343.906656pt;}
.x36{left:344.866667pt;}
.x20{left:385.373333pt;}
.x4c{left:429.693333pt;}
.x41{left:430.813333pt;}
.x23{left:505.573333pt;}
}




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