
    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_a108ad417484a9d5f5b6ba78.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_08c67be108c166d4ab09bca4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7e22086f450c09598790cf94.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_ec6e487e2316a9d7419a5108.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ad19225959416a76c7af3b5b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_14146d033b06004cc6c924d8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_883ab80b840c0aca0ecde5c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c18d3d829b9ad4a6e2f6f52a.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);}
.va{vertical-align:-76.560000px;}
.v2{vertical-align:-68.400000px;}
.v6{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v7{vertical-align:-61.320000px;}
.v9{vertical-align:-48.156000px;}
.v4{vertical-align:-23.760000px;}
.v8{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.ls12{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.220800px;}
.ls22{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.126000px;}
.ls19{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.027360px;}
.ls1a{letter-spacing:-0.018000px;}
.lsd{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.108000px;}
.ls29{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.234000px;}
.ls2{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.900000px;}
.ls6{letter-spacing:1.020000px;}
.ls28{letter-spacing:2.988000px;}
.ls1e{letter-spacing:5.220000px;}
.ls8{letter-spacing:10.260000px;}
.ls27{letter-spacing:30.348000px;}
.ls9{letter-spacing:52.560000px;}
.lsb{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls15{letter-spacing:196.500000px;}
.ls25{letter-spacing:227.100000px;}
.ls14{letter-spacing:293.700000px;}
.ls13{letter-spacing:296.700000px;}
.ls16{letter-spacing:303.300000px;}
.ls20{letter-spacing:381.300000px;}
.ls17{letter-spacing:616.500000px;}
.ls1c{letter-spacing:623.700000px;}
.ls1f{letter-spacing:768.300000px;}
.ls26{letter-spacing:849.300000px;}
.lsc{letter-spacing:1220.100000px;}
.ls1d{letter-spacing:1277.700000px;}
.lsa{letter-spacing:1367.340000px;}
.ls21{letter-spacing:1593.900000px;}
.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;}
}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.102200px;}
.ws3{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws13{word-spacing:-14.004000px;}
.ws4{word-spacing:-13.999200px;}
.ws9{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.734000px;}
.ws10{word-spacing:-13.716000px;}
.ws15{word-spacing:-13.626000px;}
.ws11{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.482000px;}
.wse{word-spacing:-13.392000px;}
.ws14{word-spacing:-13.374000px;}
.ws12{word-spacing:-13.284000px;}
.wsb{word-spacing:-13.140000px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
._1d{margin-left:-4.494000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._8{width:2.819760px;}
._9{width:4.337520px;}
._a{width:5.353680px;}
._b{width:7.175760px;}
._7{width:8.496000px;}
._5{width:9.954000px;}
._6{width:11.195760px;}
._1b{width:12.300720px;}
._1e{width:13.500000px;}
._15{width:14.747760px;}
._1c{width:16.326720px;}
._d{width:89.100000px;}
._11{width:142.506000px;}
._16{width:149.628000px;}
._12{width:178.020000px;}
._f{width:196.044000px;}
._14{width:204.336000px;}
._e{width:217.512000px;}
._13{width:220.602000px;}
._22{width:223.200000px;}
._25{width:229.800000px;}
._1f{width:263.700000px;}
._23{width:271.800000px;}
._26{width:291.900000px;}
._10{width:292.980000px;}
._20{width:312.300000px;}
._17{width:348.204000px;}
._1a{width:386.700000px;}
._19{width:399.180000px;}
._18{width:401.004000px;}
._24{width:429.000000px;}
._21{width:449.100000px;}
._27{width:453.600000px;}
._c{width:1041.240000px;}
._4{width:1441.260000px;}
._3{width:1574.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsc{font-size:60.000000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y46{bottom:2.850000px;}
.yc9{bottom:3.150000px;}
.y9c{bottom:3.225000px;}
.y4b{bottom:3.300000px;}
.y9a{bottom:3.405000px;}
.ycc{bottom:3.450000px;}
.yc7{bottom:18.300000px;}
.y61{bottom:19.575000px;}
.ybe{bottom:21.825000px;}
.y9e{bottom:28.575000px;}
.yee{bottom:38.655000px;}
.y32{bottom:54.060000px;}
.ya3{bottom:54.105000px;}
.yc4{bottom:54.156150px;}
.y2{bottom:57.960000px;}
.y60{bottom:66.780000px;}
.ybd{bottom:72.690000px;}
.y1{bottom:76.890000px;}
.y5f{bottom:82.290000px;}
.y9d{bottom:87.690000px;}
.ybc{bottom:88.170000px;}
.y5e{bottom:97.770000px;}
.y9b{bottom:101.025000px;}
.ybb{bottom:103.830000px;}
.y2c{bottom:108.795000px;}
.y5d{bottom:113.430000px;}
.yba{bottom:119.310000px;}
.y2b{bottom:124.275000px;}
.y99{bottom:126.045000px;}
.y5c{bottom:128.730000px;}
.yb9{bottom:134.790000px;}
.y2a{bottom:139.755000px;}
.y5b{bottom:144.210000px;}
.yb8{bottom:150.270000px;}
.y98{bottom:154.500000px;}
.y29{bottom:155.415000px;}
.y5a{bottom:160.230000px;}
.yb7{bottom:165.930000px;}
.y28{bottom:170.535000px;}
.y97{bottom:179.700000px;}
.yb6{bottom:181.590000px;}
.y59{bottom:191.370000px;}
.yb5{bottom:196.710000px;}
.y27{bottom:202.215000px;}
.y96{bottom:204.750000px;}
.y58{bottom:206.850000px;}
.y26{bottom:217.695000px;}
.y57{bottom:222.510000px;}
.y95{bottom:229.950000px;}
.yb4{bottom:231.870000px;}
.y25{bottom:233.175000px;}
.y56{bottom:237.990000px;}
.yb3{bottom:244.110000px;}
.y55{bottom:253.470000px;}
.y94{bottom:254.700000px;}
.y54{bottom:269.130000px;}
.y53{bottom:284.250000px;}
.y93{bottom:295.590000px;}
.y52{bottom:299.910000px;}
.y92{bottom:311.070000px;}
.y51{bottom:315.570000px;}
.y91{bottom:326.730000px;}
.y50{bottom:331.050000px;}
.y90{bottom:342.075000px;}
.y4f{bottom:347.850000px;}
.y8f{bottom:357.555000px;}
.y4e{bottom:371.100000px;}
.y8e{bottom:373.575000px;}
.y8d{bottom:389.055000px;}
.y4d{bottom:394.350000px;}
.y8c{bottom:404.715000px;}
.y4c{bottom:417.450000px;}
.y8b{bottom:420.195000px;}
.y8a{bottom:435.495000px;}
.y4a{bottom:437.550000px;}
.y89{bottom:451.155000px;}
.y49{bottom:464.100000px;}
.y88{bottom:466.995000px;}
.yed{bottom:470.505000px;}
.y24{bottom:481.575000px;}
.y87{bottom:482.475000px;}
.yec{bottom:486.165000px;}
.y48{bottom:487.350000px;}
.y23{bottom:497.055000px;}
.y86{bottom:498.135000px;}
.yeb{bottom:501.675000px;}
.y45{bottom:507.300000px;}
.y47{bottom:510.150000px;}
.y22{bottom:512.535000px;}
.y85{bottom:513.615000px;}
.yea{bottom:517.335000px;}
.y21{bottom:528.015000px;}
.y84{bottom:529.095000px;}
.ye9{bottom:532.995000px;}
.y44{bottom:533.790000px;}
.y20{bottom:543.675000px;}
.y83{bottom:544.575000px;}
.ye8{bottom:548.475000px;}
.y43{bottom:548.910000px;}
.y1f{bottom:559.155000px;}
.y82{bottom:560.235000px;}
.ye7{bottom:564.135000px;}
.y42{bottom:564.570000px;}
.y1e{bottom:574.635000px;}
.y81{bottom:575.715000px;}
.ye6{bottom:579.795000px;}
.y41{bottom:580.590000px;}
.yb2{bottom:589.560000px;}
.y80{bottom:591.195000px;}
.y40{bottom:593.010000px;}
.ye5{bottom:595.275000px;}
.y1d{bottom:605.625000px;}
.y7f{bottom:606.705000px;}
.ye4{bottom:610.935000px;}
.yb1{bottom:620.730000px;}
.y7e{bottom:622.365000px;}
.ye3{bottom:626.595000px;}
.yb0{bottom:633.150000px;}
.y1c{bottom:636.585000px;}
.y7d{bottom:637.845000px;}
.ye2{bottom:642.075000px;}
.y7c{bottom:653.325000px;}
.y1b{bottom:654.765000px;}
.ye1{bottom:657.735000px;}
.y2d{bottom:668.700000px;}
.y7b{bottom:668.805000px;}
.ye0{bottom:673.035000px;}
.y1a{bottom:683.745000px;}
.y7a{bottom:684.465000px;}
.ydf{bottom:688.515000px;}
.y79{bottom:699.945000px;}
.y19{bottom:701.925000px;}
.yde{bottom:704.355000px;}
.y78{bottom:715.425000px;}
.y18{bottom:717.585000px;}
.ydd{bottom:720.015000px;}
.y77{bottom:730.905000px;}
.y17{bottom:733.245000px;}
.ydc{bottom:735.495000px;}
.y76{bottom:746.565000px;}
.ydb{bottom:751.155000px;}
.y16{bottom:755.205000px;}
.y75{bottom:762.045000px;}
.yda{bottom:766.275000px;}
.y74{bottom:777.525000px;}
.yd9{bottom:781.980000px;}
.y15{bottom:782.025000px;}
.y73{bottom:793.005000px;}
.y12{bottom:797.505000px;}
.yd8{bottom:798.000000px;}
.y72{bottom:808.665000px;}
.yd7{bottom:811.050000px;}
.y11{bottom:813.165000px;}
.y13{bottom:818.895000px;}
.y71{bottom:824.145000px;}
.yd5{bottom:835.950000px;}
.yd6{bottom:839.250000px;}
.y70{bottom:839.625000px;}
.y14{bottom:844.785000px;}
.y10{bottom:853.665000px;}
.y6f{bottom:855.285000px;}
.yd3{bottom:860.850000px;}
.yd4{bottom:864.300000px;}
.y6e{bottom:870.765000px;}
.yd1{bottom:885.900000px;}
.yf{bottom:888.450000px;}
.yd2{bottom:889.050000px;}
.yaf{bottom:900.900000px;}
.y6d{bottom:909.690000px;}
.yd0{bottom:910.950000px;}
.yae{bottom:917.100000px;}
.ye{bottom:917.430000px;}
.y6c{bottom:925.350000px;}
.yce{bottom:935.850000px;}
.ycf{bottom:939.150000px;}
.y6b{bottom:940.830000px;}
.yad{bottom:947.100000px;}
.y6a{bottom:956.490000px;}
.yd{bottom:956.670000px;}
.ycb{bottom:960.750000px;}
.ycd{bottom:964.200000px;}
.y3f{bottom:971.610000px;}
.y69{bottom:971.970000px;}
.yac{bottom:977.250000px;}
.yc8{bottom:985.800000px;}
.y3e{bottom:987.450000px;}
.yca{bottom:988.950000px;}
.y68{bottom:1002.930000px;}
.y3d{bottom:1003.110000px;}
.ya0{bottom:1006.845000px;}
.yab{bottom:1007.400000px;}
.yc5{bottom:1010.850000px;}
.yc{bottom:1016.070000px;}
.y3c{bottom:1018.590000px;}
.y9{bottom:1034.070000px;}
.y3b{bottom:1034.250000px;}
.yc6{bottom:1035.900000px;}
.yaa{bottom:1037.550000px;}
.yb{bottom:1039.290000px;}
.y67{bottom:1049.370000px;}
.y3a{bottom:1049.730000px;}
.y8{bottom:1057.290000px;}
.ybf{bottom:1062.000000px;}
.y39{bottom:1065.210000px;}
.y9f{bottom:1065.375000px;}
.y66{bottom:1065.390000px;}
.ya9{bottom:1067.550000px;}
.ya{bottom:1071.330000px;}
.yc3{bottom:1071.606150px;}
.yc0{bottom:1076.634000px;}
.y38{bottom:1080.870000px;}
.y7{bottom:1086.630000px;}
.ya7{bottom:1094.400000px;}
.y37{bottom:1096.350000px;}
.y65{bottom:1096.530000px;}
.ya8{bottom:1097.250000px;}
.y6{bottom:1105.710000px;}
.y2f{bottom:1111.530000px;}
.y36{bottom:1111.650000px;}
.y64{bottom:1112.010000px;}
.yef{bottom:1113.255000px;}
.y62{bottom:1116.030000px;}
.y5{bottom:1122.990000px;}
.ya6{bottom:1127.565000px;}
.y35{bottom:1127.670000px;}
.y4{bottom:1140.300000px;}
.y63{bottom:1141.920000px;}
.y34{bottom:1143.180000px;}
.ya5{bottom:1143.255000px;}
.y3{bottom:1158.300000px;}
.ya4{bottom:1158.555000px;}
.y33{bottom:1158.660000px;}
.y30{bottom:1164.435000px;}
.yc1{bottom:1174.569000px;}
.y31{bottom:1175.160000px;}
.yc2{bottom:1175.166150px;}
.ya2{bottom:1175.205000px;}
.y2e{bottom:1193.700000px;}
.ya1{bottom:1193.745000px;}
.h18{height:22.350000px;}
.h17{height:22.500000px;}
.h21{height:23.970000px;}
.h1e{height:24.015000px;}
.h20{height:24.120000px;}
.h1a{height:24.285000px;}
.h1f{height:24.300000px;}
.h19{height:24.465000px;}
.h1b{height:29.160000px;}
.h1d{height:30.960000px;}
.hb{height:35.314453px;}
.h11{height:38.158594px;}
.h12{height:47.344922px;}
.h6{height:48.616875px;}
.hf{height:52.971680px;}
.hd{height:52.998047px;}
.hc{height:54.421875px;}
.h22{height:55.503491px;}
.h7{height:55.796836px;}
.h16{height:55.824609px;}
.h1c{height:55.875000px;}
.h8{height:58.621992px;}
.h10{height:59.074453px;}
.h13{height:59.092031px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h14{height:62.578125px;}
.h15{height:64.978594px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.wc{width:71.100000px;}
.w3{width:71.460000px;}
.w2{width:71.490000px;}
.wb{width:80.310000px;}
.w1{width:89.460000px;}
.w8{width:93.945000px;}
.w5{width:104.040000px;}
.wd{width:104.400000px;}
.w7{width:116.280000px;}
.w4{width:119.190000px;}
.w6{width:133.410000px;}
.wa{width:133.800000px;}
.we{width:149.790000px;}
.w9{width:540.900000px;}
.w0{width:894.000000px;}
.x38{left:-369.765000px;}
.x15{left:-338.190000px;}
.x13{left:-289.950000px;}
.x22{left:-281.940000px;}
.x2b{left:-223.335000px;}
.x37{left:-177.615000px;}
.xb{left:-158.946000px;}
.x2a{left:-150.540000px;}
.x14{left:-142.740000px;}
.xc{left:-131.931000px;}
.x21{left:-123.540000px;}
.x0{left:0.000000px;}
.x1b{left:7.800000px;}
.x3c{left:12.045000px;}
.x4a{left:13.845000px;}
.x41{left:17.550000px;}
.x48{left:27.150000px;}
.x2{left:29.970000px;}
.x2e{left:31.650000px;}
.x4e{left:33.450000px;}
.x28{left:36.900000px;}
.x4d{left:37.950000px;}
.x3e{left:40.800000px;}
.x29{left:43.650000px;}
.x35{left:45.165000px;}
.xa{left:46.740000px;}
.x23{left:47.811000px;}
.xf{left:50.448000px;}
.x26{left:53.100000px;}
.x2f{left:55.200000px;}
.x46{left:58.650000px;}
.x44{left:63.750000px;}
.x4c{left:64.800000px;}
.x49{left:66.600000px;}
.x51{left:74.505000px;}
.x50{left:101.535000px;}
.x8{left:123.420000px;}
.x3b{left:135.405000px;}
.x3d{left:158.400000px;}
.x11{left:197.568000px;}
.x16{left:202.710000px;}
.x39{left:206.085000px;}
.x2c{left:229.125000px;}
.x5{left:244.170000px;}
.x3{left:270.300000px;}
.x4{left:290.610000px;}
.x3a{left:294.495000px;}
.x18{left:301.125000px;}
.x34{left:318.525000px;}
.x2d{left:328.050000px;}
.xd{left:330.519000px;}
.x1a{left:336.300000px;}
.x19{left:341.445000px;}
.x1d{left:344.100000px;}
.x3f{left:364.050000px;}
.x24{left:366.006000px;}
.x31{left:381.150000px;}
.x9{left:388.860000px;}
.x4b{left:392.550000px;}
.x25{left:394.500000px;}
.x47{left:395.850000px;}
.x45{left:400.950000px;}
.x4f{left:403.500000px;}
.x1c{left:408.750000px;}
.xe{left:412.518000px;}
.x1e{left:426.300000px;}
.x20{left:429.450000px;}
.x36{left:438.450000px;}
.x1{left:440.700000px;}
.x40{left:444.750000px;}
.x12{left:449.208000px;}
.x27{left:460.950000px;}
.x6{left:478.965000px;}
.x1f{left:498.300000px;}
.x7{left:506.580000px;}
.x42{left:516.150000px;}
.x30{left:550.350000px;}
.x43{left:621.000000px;}
.x10{left:666.948000px;}
.x17{left:738.375000px;}
.x33{left:773.325000px;}
.x32{left:816.000000px;}
@media print{
.va{vertical-align:-68.053333pt;}
.v2{vertical-align:-60.800000pt;}
.v6{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v7{vertical-align:-54.506667pt;}
.v9{vertical-align:-42.805333pt;}
.v4{vertical-align:-21.120000pt;}
.v8{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.196267pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.112000pt;}
.ls19{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.024320pt;}
.ls1a{letter-spacing:-0.016000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls29{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.208000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls6{letter-spacing:0.906667pt;}
.ls28{letter-spacing:2.656000pt;}
.ls1e{letter-spacing:4.640000pt;}
.ls8{letter-spacing:9.120000pt;}
.ls27{letter-spacing:26.976000pt;}
.ls9{letter-spacing:46.720000pt;}
.lsb{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls15{letter-spacing:174.666667pt;}
.ls25{letter-spacing:201.866667pt;}
.ls14{letter-spacing:261.066667pt;}
.ls13{letter-spacing:263.733333pt;}
.ls16{letter-spacing:269.600000pt;}
.ls20{letter-spacing:338.933333pt;}
.ls17{letter-spacing:548.000000pt;}
.ls1c{letter-spacing:554.400000pt;}
.ls1f{letter-spacing:682.933333pt;}
.ls26{letter-spacing:754.933333pt;}
.lsc{letter-spacing:1084.533333pt;}
.ls1d{letter-spacing:1135.733333pt;}
.lsa{letter-spacing:1215.413333pt;}
.ls21{letter-spacing:1416.800000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.313067pt;}
.ws3{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws13{word-spacing:-12.448000pt;}
.ws4{word-spacing:-12.443733pt;}
.ws9{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.208000pt;}
.ws10{word-spacing:-12.192000pt;}
.ws15{word-spacing:-12.112000pt;}
.ws11{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.904000pt;}
.ws14{word-spacing:-11.888000pt;}
.ws12{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
._1d{margin-left:-3.994667pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._8{width:2.506453pt;}
._9{width:3.855573pt;}
._a{width:4.758827pt;}
._b{width:6.378453pt;}
._7{width:7.552000pt;}
._5{width:8.848000pt;}
._6{width:9.951787pt;}
._1b{width:10.933973pt;}
._1e{width:12.000000pt;}
._15{width:13.109120pt;}
._1c{width:14.512640pt;}
._d{width:79.200000pt;}
._11{width:126.672000pt;}
._16{width:133.002667pt;}
._12{width:158.240000pt;}
._f{width:174.261333pt;}
._14{width:181.632000pt;}
._e{width:193.344000pt;}
._13{width:196.090667pt;}
._22{width:198.400000pt;}
._25{width:204.266667pt;}
._1f{width:234.400000pt;}
._23{width:241.600000pt;}
._26{width:259.466667pt;}
._10{width:260.426667pt;}
._20{width:277.600000pt;}
._17{width:309.514667pt;}
._1a{width:343.733333pt;}
._19{width:354.826667pt;}
._18{width:356.448000pt;}
._24{width:381.333333pt;}
._21{width:399.200000pt;}
._27{width:403.200000pt;}
._c{width:925.546667pt;}
._4{width:1281.120000pt;}
._3{width:1399.520000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsc{font-size:53.333333pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:2.533333pt;}
.yc9{bottom:2.800000pt;}
.y9c{bottom:2.866667pt;}
.y4b{bottom:2.933333pt;}
.y9a{bottom:3.026667pt;}
.ycc{bottom:3.066667pt;}
.yc7{bottom:16.266667pt;}
.y61{bottom:17.400000pt;}
.ybe{bottom:19.400000pt;}
.y9e{bottom:25.400000pt;}
.yee{bottom:34.360000pt;}
.y32{bottom:48.053333pt;}
.ya3{bottom:48.093333pt;}
.yc4{bottom:48.138800pt;}
.y2{bottom:51.520000pt;}
.y60{bottom:59.360000pt;}
.ybd{bottom:64.613333pt;}
.y1{bottom:68.346667pt;}
.y5f{bottom:73.146667pt;}
.y9d{bottom:77.946667pt;}
.ybc{bottom:78.373333pt;}
.y5e{bottom:86.906667pt;}
.y9b{bottom:89.800000pt;}
.ybb{bottom:92.293333pt;}
.y2c{bottom:96.706667pt;}
.y5d{bottom:100.826667pt;}
.yba{bottom:106.053333pt;}
.y2b{bottom:110.466667pt;}
.y99{bottom:112.040000pt;}
.y5c{bottom:114.426667pt;}
.yb9{bottom:119.813333pt;}
.y2a{bottom:124.226667pt;}
.y5b{bottom:128.186667pt;}
.yb8{bottom:133.573333pt;}
.y98{bottom:137.333333pt;}
.y29{bottom:138.146667pt;}
.y5a{bottom:142.426667pt;}
.yb7{bottom:147.493333pt;}
.y28{bottom:151.586667pt;}
.y97{bottom:159.733333pt;}
.yb6{bottom:161.413333pt;}
.y59{bottom:170.106667pt;}
.yb5{bottom:174.853333pt;}
.y27{bottom:179.746667pt;}
.y96{bottom:182.000000pt;}
.y58{bottom:183.866667pt;}
.y26{bottom:193.506667pt;}
.y57{bottom:197.786667pt;}
.y95{bottom:204.400000pt;}
.yb4{bottom:206.106667pt;}
.y25{bottom:207.266667pt;}
.y56{bottom:211.546667pt;}
.yb3{bottom:216.986667pt;}
.y55{bottom:225.306667pt;}
.y94{bottom:226.400000pt;}
.y54{bottom:239.226667pt;}
.y53{bottom:252.666667pt;}
.y93{bottom:262.746667pt;}
.y52{bottom:266.586667pt;}
.y92{bottom:276.506667pt;}
.y51{bottom:280.506667pt;}
.y91{bottom:290.426667pt;}
.y50{bottom:294.266667pt;}
.y90{bottom:304.066667pt;}
.y4f{bottom:309.200000pt;}
.y8f{bottom:317.826667pt;}
.y4e{bottom:329.866667pt;}
.y8e{bottom:332.066667pt;}
.y8d{bottom:345.826667pt;}
.y4d{bottom:350.533333pt;}
.y8c{bottom:359.746667pt;}
.y4c{bottom:371.066667pt;}
.y8b{bottom:373.506667pt;}
.y8a{bottom:387.106667pt;}
.y4a{bottom:388.933333pt;}
.y89{bottom:401.026667pt;}
.y49{bottom:412.533333pt;}
.y88{bottom:415.106667pt;}
.yed{bottom:418.226667pt;}
.y24{bottom:428.066667pt;}
.y87{bottom:428.866667pt;}
.yec{bottom:432.146667pt;}
.y48{bottom:433.200000pt;}
.y23{bottom:441.826667pt;}
.y86{bottom:442.786667pt;}
.yeb{bottom:445.933333pt;}
.y45{bottom:450.933333pt;}
.y47{bottom:453.466667pt;}
.y22{bottom:455.586667pt;}
.y85{bottom:456.546667pt;}
.yea{bottom:459.853333pt;}
.y21{bottom:469.346667pt;}
.y84{bottom:470.306667pt;}
.ye9{bottom:473.773333pt;}
.y44{bottom:474.480000pt;}
.y20{bottom:483.266667pt;}
.y83{bottom:484.066667pt;}
.ye8{bottom:487.533333pt;}
.y43{bottom:487.920000pt;}
.y1f{bottom:497.026667pt;}
.y82{bottom:497.986667pt;}
.ye7{bottom:501.453333pt;}
.y42{bottom:501.840000pt;}
.y1e{bottom:510.786667pt;}
.y81{bottom:511.746667pt;}
.ye6{bottom:515.373333pt;}
.y41{bottom:516.080000pt;}
.yb2{bottom:524.053333pt;}
.y80{bottom:525.506667pt;}
.y40{bottom:527.120000pt;}
.ye5{bottom:529.133333pt;}
.y1d{bottom:538.333333pt;}
.y7f{bottom:539.293333pt;}
.ye4{bottom:543.053333pt;}
.yb1{bottom:551.760000pt;}
.y7e{bottom:553.213333pt;}
.ye3{bottom:556.973333pt;}
.yb0{bottom:562.800000pt;}
.y1c{bottom:565.853333pt;}
.y7d{bottom:566.973333pt;}
.ye2{bottom:570.733333pt;}
.y7c{bottom:580.733333pt;}
.y1b{bottom:582.013333pt;}
.ye1{bottom:584.653333pt;}
.y2d{bottom:594.400000pt;}
.y7b{bottom:594.493333pt;}
.ye0{bottom:598.253333pt;}
.y1a{bottom:607.773333pt;}
.y7a{bottom:608.413333pt;}
.ydf{bottom:612.013333pt;}
.y79{bottom:622.173333pt;}
.y19{bottom:623.933333pt;}
.yde{bottom:626.093333pt;}
.y78{bottom:635.933333pt;}
.y18{bottom:637.853333pt;}
.ydd{bottom:640.013333pt;}
.y77{bottom:649.693333pt;}
.y17{bottom:651.773333pt;}
.ydc{bottom:653.773333pt;}
.y76{bottom:663.613333pt;}
.ydb{bottom:667.693333pt;}
.y16{bottom:671.293333pt;}
.y75{bottom:677.373333pt;}
.yda{bottom:681.133333pt;}
.y74{bottom:691.133333pt;}
.yd9{bottom:695.093333pt;}
.y15{bottom:695.133333pt;}
.y73{bottom:704.893333pt;}
.y12{bottom:708.893333pt;}
.yd8{bottom:709.333333pt;}
.y72{bottom:718.813333pt;}
.yd7{bottom:720.933333pt;}
.y11{bottom:722.813333pt;}
.y13{bottom:727.906667pt;}
.y71{bottom:732.573333pt;}
.yd5{bottom:743.066667pt;}
.yd6{bottom:746.000000pt;}
.y70{bottom:746.333333pt;}
.y14{bottom:750.920000pt;}
.y10{bottom:758.813333pt;}
.y6f{bottom:760.253333pt;}
.yd3{bottom:765.200000pt;}
.yd4{bottom:768.266667pt;}
.y6e{bottom:774.013333pt;}
.yd1{bottom:787.466667pt;}
.yf{bottom:789.733333pt;}
.yd2{bottom:790.266667pt;}
.yaf{bottom:800.800000pt;}
.y6d{bottom:808.613333pt;}
.yd0{bottom:809.733333pt;}
.yae{bottom:815.200000pt;}
.ye{bottom:815.493333pt;}
.y6c{bottom:822.533333pt;}
.yce{bottom:831.866667pt;}
.ycf{bottom:834.800000pt;}
.y6b{bottom:836.293333pt;}
.yad{bottom:841.866667pt;}
.y6a{bottom:850.213333pt;}
.yd{bottom:850.373333pt;}
.ycb{bottom:854.000000pt;}
.ycd{bottom:857.066667pt;}
.y3f{bottom:863.653333pt;}
.y69{bottom:863.973333pt;}
.yac{bottom:868.666667pt;}
.yc8{bottom:876.266667pt;}
.y3e{bottom:877.733333pt;}
.yca{bottom:879.066667pt;}
.y68{bottom:891.493333pt;}
.y3d{bottom:891.653333pt;}
.ya0{bottom:894.973333pt;}
.yab{bottom:895.466667pt;}
.yc5{bottom:898.533333pt;}
.yc{bottom:903.173333pt;}
.y3c{bottom:905.413333pt;}
.y9{bottom:919.173333pt;}
.y3b{bottom:919.333333pt;}
.yc6{bottom:920.800000pt;}
.yaa{bottom:922.266667pt;}
.yb{bottom:923.813333pt;}
.y67{bottom:932.773333pt;}
.y3a{bottom:933.093333pt;}
.y8{bottom:939.813333pt;}
.ybf{bottom:944.000000pt;}
.y39{bottom:946.853333pt;}
.y9f{bottom:947.000000pt;}
.y66{bottom:947.013333pt;}
.ya9{bottom:948.933333pt;}
.ya{bottom:952.293333pt;}
.yc3{bottom:952.538800pt;}
.yc0{bottom:957.008000pt;}
.y38{bottom:960.773333pt;}
.y7{bottom:965.893333pt;}
.ya7{bottom:972.800000pt;}
.y37{bottom:974.533333pt;}
.y65{bottom:974.693333pt;}
.ya8{bottom:975.333333pt;}
.y6{bottom:982.853333pt;}
.y2f{bottom:988.026667pt;}
.y36{bottom:988.133333pt;}
.y64{bottom:988.453333pt;}
.yef{bottom:989.560000pt;}
.y62{bottom:992.026667pt;}
.y5{bottom:998.213333pt;}
.ya6{bottom:1002.280000pt;}
.y35{bottom:1002.373333pt;}
.y4{bottom:1013.600000pt;}
.y63{bottom:1015.040000pt;}
.y34{bottom:1016.160000pt;}
.ya5{bottom:1016.226667pt;}
.y3{bottom:1029.600000pt;}
.ya4{bottom:1029.826667pt;}
.y33{bottom:1029.920000pt;}
.y30{bottom:1035.053333pt;}
.yc1{bottom:1044.061333pt;}
.y31{bottom:1044.586667pt;}
.yc2{bottom:1044.592133pt;}
.ya2{bottom:1044.626667pt;}
.y2e{bottom:1061.066667pt;}
.ya1{bottom:1061.106667pt;}
.h18{height:19.866667pt;}
.h17{height:20.000000pt;}
.h21{height:21.306667pt;}
.h1e{height:21.346667pt;}
.h20{height:21.440000pt;}
.h1a{height:21.586667pt;}
.h1f{height:21.600000pt;}
.h19{height:21.746667pt;}
.h1b{height:25.920000pt;}
.h1d{height:27.520000pt;}
.hb{height:31.390625pt;}
.h11{height:33.918750pt;}
.h12{height:42.084375pt;}
.h6{height:43.215000pt;}
.hf{height:47.085938pt;}
.hd{height:47.109375pt;}
.hc{height:48.375000pt;}
.h22{height:49.336436pt;}
.h7{height:49.597187pt;}
.h16{height:49.621875pt;}
.h1c{height:49.666667pt;}
.h8{height:52.108438pt;}
.h10{height:52.510625pt;}
.h13{height:52.526250pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h14{height:55.625000pt;}
.h15{height:57.758750pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.wc{width:63.200000pt;}
.w3{width:63.520000pt;}
.w2{width:63.546667pt;}
.wb{width:71.386667pt;}
.w1{width:79.520000pt;}
.w8{width:83.506667pt;}
.w5{width:92.480000pt;}
.wd{width:92.800000pt;}
.w7{width:103.360000pt;}
.w4{width:105.946667pt;}
.w6{width:118.586667pt;}
.wa{width:118.933333pt;}
.we{width:133.146667pt;}
.w9{width:480.800000pt;}
.w0{width:794.666667pt;}
.x38{left:-328.680000pt;}
.x15{left:-300.613333pt;}
.x13{left:-257.733333pt;}
.x22{left:-250.613333pt;}
.x2b{left:-198.520000pt;}
.x37{left:-157.880000pt;}
.xb{left:-141.285333pt;}
.x2a{left:-133.813333pt;}
.x14{left:-126.880000pt;}
.xc{left:-117.272000pt;}
.x21{left:-109.813333pt;}
.x0{left:0.000000pt;}
.x1b{left:6.933333pt;}
.x3c{left:10.706667pt;}
.x4a{left:12.306667pt;}
.x41{left:15.600000pt;}
.x48{left:24.133333pt;}
.x2{left:26.640000pt;}
.x2e{left:28.133333pt;}
.x4e{left:29.733333pt;}
.x28{left:32.800000pt;}
.x4d{left:33.733333pt;}
.x3e{left:36.266667pt;}
.x29{left:38.800000pt;}
.x35{left:40.146667pt;}
.xa{left:41.546667pt;}
.x23{left:42.498667pt;}
.xf{left:44.842667pt;}
.x26{left:47.200000pt;}
.x2f{left:49.066667pt;}
.x46{left:52.133333pt;}
.x44{left:56.666667pt;}
.x4c{left:57.600000pt;}
.x49{left:59.200000pt;}
.x51{left:66.226667pt;}
.x50{left:90.253333pt;}
.x8{left:109.706667pt;}
.x3b{left:120.360000pt;}
.x3d{left:140.800000pt;}
.x11{left:175.616000pt;}
.x16{left:180.186667pt;}
.x39{left:183.186667pt;}
.x2c{left:203.666667pt;}
.x5{left:217.040000pt;}
.x3{left:240.266667pt;}
.x4{left:258.320000pt;}
.x3a{left:261.773333pt;}
.x18{left:267.666667pt;}
.x34{left:283.133333pt;}
.x2d{left:291.600000pt;}
.xd{left:293.794667pt;}
.x1a{left:298.933333pt;}
.x19{left:303.506667pt;}
.x1d{left:305.866667pt;}
.x3f{left:323.600000pt;}
.x24{left:325.338667pt;}
.x31{left:338.800000pt;}
.x9{left:345.653333pt;}
.x4b{left:348.933333pt;}
.x25{left:350.666667pt;}
.x47{left:351.866667pt;}
.x45{left:356.400000pt;}
.x4f{left:358.666667pt;}
.x1c{left:363.333333pt;}
.xe{left:366.682667pt;}
.x1e{left:378.933333pt;}
.x20{left:381.733333pt;}
.x36{left:389.733333pt;}
.x1{left:391.733333pt;}
.x40{left:395.333333pt;}
.x12{left:399.296000pt;}
.x27{left:409.733333pt;}
.x6{left:425.746667pt;}
.x1f{left:442.933333pt;}
.x7{left:450.293333pt;}
.x42{left:458.800000pt;}
.x30{left:489.200000pt;}
.x43{left:552.000000pt;}
.x10{left:592.842667pt;}
.x17{left:656.333333pt;}
.x33{left:687.400000pt;}
.x32{left:725.333333pt;}
}




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