
    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_752b5e2d58082b9d4201f6e5.woff')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_c890204d8f30f718fdfdf62a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_3b61cad560f71cc7e874b40a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_f2bdcd5f9199f62d649599b7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_556aee530b6b4e76ac71508d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9cf4a83794b8b16fc08701b9.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d084419e4116dbcb45611999.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0300db0b99baed92c5f078dc.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c247f8ac4d61cb036fb46923.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.017280px;}
.ls8{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls9{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;}
}
.ws7{word-spacing:-72.000000px;}
.ws1{word-spacing:-19.457280px;}
.ws6{word-spacing:-19.440000px;}
.ws5{word-spacing:-19.431360px;}
.ws2{word-spacing:-19.422720px;}
.ws9{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.712000px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._d{margin-left:-4.680000px;}
._b{margin-left:-3.312000px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._a{width:3.691200px;}
._5{width:5.489280px;}
._8{width:6.869520px;}
._9{width:8.130480px;}
._17{width:9.432000px;}
._c{width:11.234400px;}
._19{width:12.307200px;}
._1a{width:13.608000px;}
._1b{width:14.666640px;}
._14{width:15.768000px;}
._1d{width:16.920000px;}
._1f{width:19.434480px;}
._18{width:20.448000px;}
._e{width:21.528000px;}
._f{width:22.680000px;}
._6{width:23.760000px;}
._7{width:24.978480px;}
._1c{width:26.069520px;}
._21{width:27.402000px;}
._25{width:31.824000px;}
._20{width:34.200000px;}
._1e{width:35.784000px;}
._12{width:37.230480px;}
._13{width:38.306160px;}
._27{width:46.475520px;}
._15{width:48.456000px;}
._16{width:49.464000px;}
._22{width:51.408000px;}
._11{width:56.880000px;}
._10{width:58.865040px;}
._24{width:65.509680px;}
._23{width:66.746400px;}
._2{width:532.260000px;}
._26{width:957.096000px;}
._3{width:1523.177520px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:4.500000px;}
.yde{bottom:4.860000px;}
.ydd{bottom:5.040000px;}
.yac{bottom:5.580000px;}
.ya6{bottom:5.760000px;}
.yf1{bottom:6.285000px;}
.yce{bottom:6.300000px;}
.yf2{bottom:6.465000px;}
.yc6{bottom:6.645000px;}
.y93{bottom:6.660000px;}
.y96{bottom:6.840000px;}
.yc4{bottom:8.265000px;}
.yed{bottom:8.625000px;}
.y92{bottom:9.000000px;}
.ycb{bottom:9.360000px;}
.ye4{bottom:9.900000px;}
.yc2{bottom:10.440000px;}
.yc0{bottom:10.620000px;}
.yd6{bottom:12.240000px;}
.y90{bottom:14.760000px;}
.ya2{bottom:14.940000px;}
.ydb{bottom:18.360000px;}
.yef{bottom:19.065000px;}
.yd8{bottom:19.620000px;}
.ya3{bottom:25.200000px;}
.y7{bottom:39.276000px;}
.y6{bottom:58.536000px;}
.y2f{bottom:131.076000px;}
.y116{bottom:133.596000px;}
.y2e{bottom:136.296000px;}
.ya0{bottom:142.416000px;}
.yee{bottom:144.585000px;}
.y2d{bottom:149.256000px;}
.y80{bottom:151.410000px;}
.y115{bottom:154.290000px;}
.yc8{bottom:161.130000px;}
.y58{bottom:166.890000px;}
.yf0{bottom:170.145000px;}
.y114{bottom:174.990000px;}
.y9f{bottom:181.110000px;}
.yc7{bottom:181.830000px;}
.y57{bottom:187.590000px;}
.y7f{bottom:192.090000px;}
.yec{bottom:195.165000px;}
.y2c{bottom:205.770000px;}
.y56{bottom:208.290000px;}
.y7e{bottom:212.790000px;}
.y113{bottom:213.690000px;}
.yc5{bottom:219.105000px;}
.y9e{bottom:219.810000px;}
.y2b{bottom:223.050000px;}
.y55{bottom:228.990000px;}
.y7d{bottom:233.490000px;}
.y112{bottom:234.390000px;}
.yeb{bottom:239.610000px;}
.y2a{bottom:240.330000px;}
.yc3{bottom:249.345000px;}
.y54{bottom:249.690000px;}
.y7c{bottom:254.190000px;}
.y111{bottom:255.090000px;}
.y29{bottom:257.610000px;}
.y9d{bottom:258.690000px;}
.y12e{bottom:267.690000px;}
.y7b{bottom:274.935000px;}
.y110{bottom:275.835000px;}
.yea{bottom:278.535000px;}
.y9c{bottom:279.435000px;}
.yc1{bottom:280.875000px;}
.y53{bottom:288.435000px;}
.y28{bottom:293.655000px;}
.y7a{bottom:295.635000px;}
.y10f{bottom:296.535000px;}
.ye9{bottom:299.235000px;}
.y9b{bottom:300.135000px;}
.y52{bottom:309.135000px;}
.y27{bottom:314.175000px;}
.ye8{bottom:319.935000px;}
.y12d{bottom:327.135000px;}
.y51{bottom:329.835000px;}
.y79{bottom:334.335000px;}
.y9a{bottom:335.055000px;}
.y10e{bottom:335.235000px;}
.y12c{bottom:347.835000px;}
.y50{bottom:350.535000px;}
.y26{bottom:354.675000px;}
.y78{bottom:355.035000px;}
.y10d{bottom:355.935000px;}
.ye7{bottom:357.015000px;}
.y99{bottom:360.975000px;}
.ybf{bottom:361.155000px;}
.y4f{bottom:371.235000px;}
.y25{bottom:375.375000px;}
.y77{bottom:375.735000px;}
.y10c{bottom:376.635000px;}
.ybe{bottom:381.855000px;}
.ye6{bottom:386.355000px;}
.y12b{bottom:386.535000px;}
.y98{bottom:386.895000px;}
.y4e{bottom:391.935000px;}
.y24{bottom:396.075000px;}
.y76{bottom:396.435000px;}
.y10b{bottom:397.335000px;}
.y12a{bottom:407.235000px;}
.y4d{bottom:412.635000px;}
.y97{bottom:412.815000px;}
.ye5{bottom:414.615000px;}
.y23{bottom:416.775000px;}
.y10a{bottom:418.035000px;}
.ybd{bottom:420.375000px;}
.y75{bottom:435.135000px;}
.y22{bottom:437.475000px;}
.y95{bottom:438.735000px;}
.y129{bottom:445.935000px;}
.ye3{bottom:446.835000px;}
.y4c{bottom:451.335000px;}
.y74{bottom:455.835000px;}
.y109{bottom:456.735000px;}
.y21{bottom:458.175000px;}
.ybc{bottom:460.515000px;}
.y94{bottom:464.835000px;}
.y128{bottom:466.635000px;}
.y4b{bottom:472.035000px;}
.y73{bottom:476.535000px;}
.y108{bottom:477.435000px;}
.y20{bottom:478.875000px;}
.y127{bottom:487.335000px;}
.y91{bottom:490.755000px;}
.y4a{bottom:492.735000px;}
.y72{bottom:497.235000px;}
.y107{bottom:498.135000px;}
.ye2{bottom:498.315000px;}
.y1f{bottom:499.575000px;}
.ybb{bottom:500.475000px;}
.y49{bottom:513.435000px;}
.y8f{bottom:516.675000px;}
.y71{bottom:517.935000px;}
.y106{bottom:518.835000px;}
.y1e{bottom:520.275000px;}
.y126{bottom:525.855000px;}
.y48{bottom:534.135000px;}
.ye1{bottom:537.195000px;}
.y70{bottom:538.635000px;}
.y105{bottom:539.535000px;}
.yba{bottom:540.615000px;}
.y1d{bottom:540.975000px;}
.y125{bottom:546.555000px;}
.y47{bottom:554.835000px;}
.ye0{bottom:557.925000px;}
.y104{bottom:560.265000px;}
.yb9{bottom:561.345000px;}
.y1c{bottom:561.705000px;}
.y124{bottom:567.285000px;}
.y46{bottom:575.565000px;}
.y6f{bottom:577.365000px;}
.y8e{bottom:578.085000px;}
.ydf{bottom:578.625000px;}
.y103{bottom:580.965000px;}
.yb8{bottom:582.045000px;}
.y1b{bottom:582.405000px;}
.y45{bottom:596.265000px;}
.y6e{bottom:597.885000px;}
.y1a{bottom:603.105000px;}
.y123{bottom:605.985000px;}
.yda{bottom:615.885000px;}
.y8d{bottom:616.965000px;}
.y6d{bottom:618.585000px;}
.y102{bottom:619.305000px;}
.yb7{bottom:620.745000px;}
.y19{bottom:623.805000px;}
.y122{bottom:626.685000px;}
.y44{bottom:634.965000px;}
.y8c{bottom:637.665000px;}
.y6c{bottom:639.285000px;}
.yb6{bottom:641.445000px;}
.ydc{bottom:642.525000px;}
.y18{bottom:644.505000px;}
.y43{bottom:655.665000px;}
.y8b{bottom:658.365000px;}
.y6b{bottom:659.985000px;}
.yb5{bottom:662.145000px;}
.y17{bottom:665.205000px;}
.y121{bottom:665.385000px;}
.yd7{bottom:667.365000px;}
.y42{bottom:676.365000px;}
.y8a{bottom:679.065000px;}
.y6a{bottom:680.685000px;}
.yb4{bottom:682.845000px;}
.y16{bottom:685.905000px;}
.y120{bottom:686.085000px;}
.yd9{bottom:693.285000px;}
.y41{bottom:697.065000px;}
.y89{bottom:699.765000px;}
.y101{bottom:701.385000px;}
.y15{bottom:706.605000px;}
.y11f{bottom:706.785000px;}
.y40{bottom:717.765000px;}
.yd5{bottom:719.025000px;}
.y69{bottom:719.205000px;}
.yb3{bottom:721.545000px;}
.y100{bottom:722.085000px;}
.y14{bottom:727.305000px;}
.y11e{bottom:727.485000px;}
.y88{bottom:738.105000px;}
.y3f{bottom:738.465000px;}
.yb2{bottom:742.245000px;}
.yff{bottom:742.785000px;}
.y13{bottom:748.005000px;}
.y3e{bottom:759.165000px;}
.y68{bottom:759.885000px;}
.yb1{bottom:762.945000px;}
.y11d{bottom:766.185000px;}
.yd4{bottom:770.685000px;}
.y87{bottom:778.785000px;}
.y3d{bottom:779.865000px;}
.y67{bottom:780.585000px;}
.yfe{bottom:781.485000px;}
.yb0{bottom:783.645000px;}
.y12{bottom:786.525000px;}
.y11c{bottom:786.885000px;}
.y86{bottom:799.485000px;}
.y3c{bottom:800.565000px;}
.y66{bottom:801.285000px;}
.yfd{bottom:802.185000px;}
.yaf{bottom:804.345000px;}
.yd3{bottom:809.565000px;}
.y85{bottom:820.185000px;}
.y65{bottom:821.985000px;}
.yfc{bottom:822.885000px;}
.yae{bottom:825.045000px;}
.y11b{bottom:825.585000px;}
.y11{bottom:826.845000px;}
.yd2{bottom:830.265000px;}
.y3b{bottom:838.950000px;}
.y84{bottom:840.930000px;}
.y64{bottom:842.730000px;}
.yfb{bottom:843.630000px;}
.y11a{bottom:846.330000px;}
.yd1{bottom:851.010000px;}
.yad{bottom:860.010000px;}
.y83{bottom:861.630000px;}
.y63{bottom:863.430000px;}
.yfa{bottom:864.330000px;}
.y10{bottom:867.930000px;}
.yd0{bottom:871.710000px;}
.y3a{bottom:879.630000px;}
.y82{bottom:882.330000px;}
.yab{bottom:883.770000px;}
.y62{bottom:884.130000px;}
.yf9{bottom:885.030000px;}
.yf{bottom:890.250000px;}
.y39{bottom:900.330000px;}
.y81{bottom:903.030000px;}
.y119{bottom:905.730000px;}
.yaa{bottom:907.530000px;}
.ycf{bottom:908.970000px;}
.yd{bottom:913.110000px;}
.ye{bottom:920.670000px;}
.y38{bottom:921.030000px;}
.y61{bottom:922.830000px;}
.yf8{bottom:923.730000px;}
.ycd{bottom:937.590000px;}
.yc{bottom:938.670000px;}
.y37{bottom:941.730000px;}
.y60{bottom:943.530000px;}
.yf7{bottom:944.430000px;}
.ya9{bottom:949.650000px;}
.y36{bottom:962.430000px;}
.y5f{bottom:964.230000px;}
.ycc{bottom:964.950000px;}
.yf6{bottom:965.130000px;}
.ya8{bottom:973.410000px;}
.y35{bottom:983.130000px;}
.y5e{bottom:984.930000px;}
.yf5{bottom:985.830000px;}
.yb{bottom:991.230000px;}
.yca{bottom:996.270000px;}
.ya7{bottom:997.170000px;}
.y118{bottom:1003.650000px;}
.y34{bottom:1003.830000px;}
.y5d{bottom:1005.630000px;}
.ya5{bottom:1020.930000px;}
.yf4{bottom:1024.350000px;}
.y33{bottom:1024.530000px;}
.ya{bottom:1025.790000px;}
.y5c{bottom:1026.330000px;}
.y117{bottom:1044.330000px;}
.ya1{bottom:1044.690000px;}
.y32{bottom:1045.230000px;}
.yc9{bottom:1046.850000px;}
.y5b{bottom:1047.030000px;}
.y9{bottom:1060.170000px;}
.yf3{bottom:1065.030000px;}
.y31{bottom:1065.930000px;}
.y5a{bottom:1085.730000px;}
.y8{bottom:1094.730000px;}
.y30{bottom:1104.450000px;}
.y59{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h24{height:21.420000px;}
.h23{height:21.780000px;}
.h15{height:23.025000px;}
.h1e{height:23.205000px;}
.h26{height:24.105000px;}
.h1d{height:24.285000px;}
.h1a{height:24.825000px;}
.h29{height:24.831000px;}
.h21{height:25.020000px;}
.h13{height:25.185000px;}
.h10{height:26.995781px;}
.h19{height:28.461000px;}
.h27{height:28.965000px;}
.h1b{height:30.405000px;}
.h1c{height:30.585000px;}
.h25{height:31.485000px;}
.h18{height:32.565000px;}
.h17{height:32.745000px;}
.h1f{height:36.360000px;}
.ha{height:37.494141px;}
.h12{height:41.250000px;}
.h14{height:41.385000px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h22{height:48.420000px;}
.h28{height:49.851000px;}
.h11{height:50.027344px;}
.h20{height:50.940000px;}
.hb{height:52.998047px;}
.h5{height:53.640000px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.he{height:70.664062px;}
.hf{height:72.562500px;}
.h16{height:74.004654px;}
.hc{height:76.317188px;}
.hd{height:78.367500px;}
.h8{height:82.676953px;}
.h7{height:121.179375px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:22.320000px;}
.w19{width:37.620000px;}
.wf{width:53.640000px;}
.wc{width:53.820000px;}
.w1e{width:54.180000px;}
.w1a{width:54.216000px;}
.w16{width:59.760000px;}
.w13{width:59.940000px;}
.w5{width:62.625000px;}
.w8{width:62.676000px;}
.w9{width:104.565000px;}
.w10{width:113.256000px;}
.w14{width:113.616000px;}
.wd{width:113.796000px;}
.w6{width:117.201000px;}
.wa{width:122.421000px;}
.w2{width:125.460000px;}
.w11{width:135.525000px;}
.w17{width:135.705000px;}
.w15{width:136.065000px;}
.we{width:136.245000px;}
.w1b{width:152.625000px;}
.w1f{width:152.850000px;}
.w1c{width:156.615000px;}
.w12{width:156.795000px;}
.w18{width:156.975000px;}
.wb{width:166.515000px;}
.w7{width:344.541000px;}
.w4{width:393.180000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:1.980000px;}
.x17{left:6.645000px;}
.x36{left:9.540000px;}
.x15{left:10.605000px;}
.x35{left:12.765000px;}
.x3d{left:14.220000px;}
.x2c{left:16.365000px;}
.x3a{left:18.720000px;}
.x21{left:22.845000px;}
.x29{left:24.120000px;}
.x1e{left:25.185000px;}
.x31{left:27.360000px;}
.x1c{left:28.650000px;}
.x23{left:32.025000px;}
.x18{left:33.825000px;}
.x22{left:36.525000px;}
.x20{left:40.845000px;}
.x34{left:44.625000px;}
.x2d{left:47.325000px;}
.x2{left:50.399998px;}
.x3e{left:55.965000px;}
.x41{left:78.285000px;}
.x1{left:127.656000px;}
.x10{left:132.516000px;}
.x5{left:135.756000px;}
.x1a{left:141.285000px;}
.x3{left:143.316000px;}
.x11{left:148.896000px;}
.x24{left:154.650000px;}
.xe{left:159.510000px;}
.x4{left:161.850000px;}
.x13{left:165.450000px;}
.xd{left:180.750000px;}
.xc{left:184.890000px;}
.xb{left:189.930000px;}
.x25{left:198.390000px;}
.x27{left:211.005000px;}
.x2f{left:212.805000px;}
.x40{left:236.730000px;}
.x38{left:244.665000px;}
.x2e{left:246.450000px;}
.x43{left:252.585000px;}
.x42{left:273.990000px;}
.x37{left:275.070000px;}
.x12{left:281.910000px;}
.x8{left:283.890000px;}
.x6{left:342.075000px;}
.xf{left:343.695000px;}
.x19{left:348.735000px;}
.x26{left:365.655000px;}
.x30{left:370.335000px;}
.x28{left:378.255000px;}
.x39{left:402.375000px;}
.x44{left:409.935000px;}
.x9{left:411.712500px;}
.xa{left:418.575000px;}
.x32{left:430.635000px;}
.x2a{left:432.435000px;}
.x3b{left:440.715000px;}
.x7{left:457.275000px;}
.x1b{left:473.655000px;}
.x45{left:487.875000px;}
.x3c{left:495.840000px;}
.x1d{left:537.060000px;}
.x33{left:544.620000px;}
.x2b{left:546.420000px;}
.x14{left:553.260000px;}
.x16{left:616.620000px;}
.x1f{left:642.360000px;}
@media print{
.v1{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:48.768000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws1{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.280000pt;}
.ws5{word-spacing:-17.272320pt;}
.ws2{word-spacing:-17.264640pt;}
.ws9{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._d{margin-left:-4.160000pt;}
._b{margin-left:-2.944000pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._a{width:3.281067pt;}
._5{width:4.879360pt;}
._8{width:6.106240pt;}
._9{width:7.227093pt;}
._17{width:8.384000pt;}
._c{width:9.986133pt;}
._19{width:10.939733pt;}
._1a{width:12.096000pt;}
._1b{width:13.037013pt;}
._14{width:14.016000pt;}
._1d{width:15.040000pt;}
._1f{width:17.275093pt;}
._18{width:18.176000pt;}
._e{width:19.136000pt;}
._f{width:20.160000pt;}
._6{width:21.120000pt;}
._7{width:22.203093pt;}
._1c{width:23.172907pt;}
._21{width:24.357333pt;}
._25{width:28.288000pt;}
._20{width:30.400000pt;}
._1e{width:31.808000pt;}
._12{width:33.093760pt;}
._13{width:34.049920pt;}
._27{width:41.311573pt;}
._15{width:43.072000pt;}
._16{width:43.968000pt;}
._22{width:45.696000pt;}
._11{width:50.560000pt;}
._10{width:52.324480pt;}
._24{width:58.230827pt;}
._23{width:59.330133pt;}
._2{width:473.120000pt;}
._26{width:850.752000pt;}
._3{width:1353.935573pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:4.000000pt;}
.yde{bottom:4.320000pt;}
.ydd{bottom:4.480000pt;}
.yac{bottom:4.960000pt;}
.ya6{bottom:5.120000pt;}
.yf1{bottom:5.586667pt;}
.yce{bottom:5.600000pt;}
.yf2{bottom:5.746667pt;}
.yc6{bottom:5.906667pt;}
.y93{bottom:5.920000pt;}
.y96{bottom:6.080000pt;}
.yc4{bottom:7.346667pt;}
.yed{bottom:7.666667pt;}
.y92{bottom:8.000000pt;}
.ycb{bottom:8.320000pt;}
.ye4{bottom:8.800000pt;}
.yc2{bottom:9.280000pt;}
.yc0{bottom:9.440000pt;}
.yd6{bottom:10.880000pt;}
.y90{bottom:13.120000pt;}
.ya2{bottom:13.280000pt;}
.ydb{bottom:16.320000pt;}
.yef{bottom:16.946667pt;}
.yd8{bottom:17.440000pt;}
.ya3{bottom:22.400000pt;}
.y7{bottom:34.912000pt;}
.y6{bottom:52.032000pt;}
.y2f{bottom:116.512000pt;}
.y116{bottom:118.752000pt;}
.y2e{bottom:121.152000pt;}
.ya0{bottom:126.592000pt;}
.yee{bottom:128.520000pt;}
.y2d{bottom:132.672000pt;}
.y80{bottom:134.586667pt;}
.y115{bottom:137.146667pt;}
.yc8{bottom:143.226667pt;}
.y58{bottom:148.346667pt;}
.yf0{bottom:151.240000pt;}
.y114{bottom:155.546667pt;}
.y9f{bottom:160.986667pt;}
.yc7{bottom:161.626667pt;}
.y57{bottom:166.746667pt;}
.y7f{bottom:170.746667pt;}
.yec{bottom:173.480000pt;}
.y2c{bottom:182.906667pt;}
.y56{bottom:185.146667pt;}
.y7e{bottom:189.146667pt;}
.y113{bottom:189.946667pt;}
.yc5{bottom:194.760000pt;}
.y9e{bottom:195.386667pt;}
.y2b{bottom:198.266667pt;}
.y55{bottom:203.546667pt;}
.y7d{bottom:207.546667pt;}
.y112{bottom:208.346667pt;}
.yeb{bottom:212.986667pt;}
.y2a{bottom:213.626667pt;}
.yc3{bottom:221.640000pt;}
.y54{bottom:221.946667pt;}
.y7c{bottom:225.946667pt;}
.y111{bottom:226.746667pt;}
.y29{bottom:228.986667pt;}
.y9d{bottom:229.946667pt;}
.y12e{bottom:237.946667pt;}
.y7b{bottom:244.386667pt;}
.y110{bottom:245.186667pt;}
.yea{bottom:247.586667pt;}
.y9c{bottom:248.386667pt;}
.yc1{bottom:249.666667pt;}
.y53{bottom:256.386667pt;}
.y28{bottom:261.026667pt;}
.y7a{bottom:262.786667pt;}
.y10f{bottom:263.586667pt;}
.ye9{bottom:265.986667pt;}
.y9b{bottom:266.786667pt;}
.y52{bottom:274.786667pt;}
.y27{bottom:279.266667pt;}
.ye8{bottom:284.386667pt;}
.y12d{bottom:290.786667pt;}
.y51{bottom:293.186667pt;}
.y79{bottom:297.186667pt;}
.y9a{bottom:297.826667pt;}
.y10e{bottom:297.986667pt;}
.y12c{bottom:309.186667pt;}
.y50{bottom:311.586667pt;}
.y26{bottom:315.266667pt;}
.y78{bottom:315.586667pt;}
.y10d{bottom:316.386667pt;}
.ye7{bottom:317.346667pt;}
.y99{bottom:320.866667pt;}
.ybf{bottom:321.026667pt;}
.y4f{bottom:329.986667pt;}
.y25{bottom:333.666667pt;}
.y77{bottom:333.986667pt;}
.y10c{bottom:334.786667pt;}
.ybe{bottom:339.426667pt;}
.ye6{bottom:343.426667pt;}
.y12b{bottom:343.586667pt;}
.y98{bottom:343.906667pt;}
.y4e{bottom:348.386667pt;}
.y24{bottom:352.066667pt;}
.y76{bottom:352.386667pt;}
.y10b{bottom:353.186667pt;}
.y12a{bottom:361.986667pt;}
.y4d{bottom:366.786667pt;}
.y97{bottom:366.946667pt;}
.ye5{bottom:368.546667pt;}
.y23{bottom:370.466667pt;}
.y10a{bottom:371.586667pt;}
.ybd{bottom:373.666667pt;}
.y75{bottom:386.786667pt;}
.y22{bottom:388.866667pt;}
.y95{bottom:389.986667pt;}
.y129{bottom:396.386667pt;}
.ye3{bottom:397.186667pt;}
.y4c{bottom:401.186667pt;}
.y74{bottom:405.186667pt;}
.y109{bottom:405.986667pt;}
.y21{bottom:407.266667pt;}
.ybc{bottom:409.346667pt;}
.y94{bottom:413.186667pt;}
.y128{bottom:414.786667pt;}
.y4b{bottom:419.586667pt;}
.y73{bottom:423.586667pt;}
.y108{bottom:424.386667pt;}
.y20{bottom:425.666667pt;}
.y127{bottom:433.186667pt;}
.y91{bottom:436.226667pt;}
.y4a{bottom:437.986667pt;}
.y72{bottom:441.986667pt;}
.y107{bottom:442.786667pt;}
.ye2{bottom:442.946667pt;}
.y1f{bottom:444.066667pt;}
.ybb{bottom:444.866667pt;}
.y49{bottom:456.386667pt;}
.y8f{bottom:459.266667pt;}
.y71{bottom:460.386667pt;}
.y106{bottom:461.186667pt;}
.y1e{bottom:462.466667pt;}
.y126{bottom:467.426667pt;}
.y48{bottom:474.786667pt;}
.ye1{bottom:477.506667pt;}
.y70{bottom:478.786667pt;}
.y105{bottom:479.586667pt;}
.yba{bottom:480.546667pt;}
.y1d{bottom:480.866667pt;}
.y125{bottom:485.826667pt;}
.y47{bottom:493.186667pt;}
.ye0{bottom:495.933333pt;}
.y104{bottom:498.013333pt;}
.yb9{bottom:498.973333pt;}
.y1c{bottom:499.293333pt;}
.y124{bottom:504.253333pt;}
.y46{bottom:511.613333pt;}
.y6f{bottom:513.213333pt;}
.y8e{bottom:513.853333pt;}
.ydf{bottom:514.333333pt;}
.y103{bottom:516.413333pt;}
.yb8{bottom:517.373333pt;}
.y1b{bottom:517.693333pt;}
.y45{bottom:530.013333pt;}
.y6e{bottom:531.453333pt;}
.y1a{bottom:536.093333pt;}
.y123{bottom:538.653333pt;}
.yda{bottom:547.453333pt;}
.y8d{bottom:548.413333pt;}
.y6d{bottom:549.853333pt;}
.y102{bottom:550.493333pt;}
.yb7{bottom:551.773333pt;}
.y19{bottom:554.493333pt;}
.y122{bottom:557.053333pt;}
.y44{bottom:564.413333pt;}
.y8c{bottom:566.813333pt;}
.y6c{bottom:568.253333pt;}
.yb6{bottom:570.173333pt;}
.ydc{bottom:571.133333pt;}
.y18{bottom:572.893333pt;}
.y43{bottom:582.813333pt;}
.y8b{bottom:585.213333pt;}
.y6b{bottom:586.653333pt;}
.yb5{bottom:588.573333pt;}
.y17{bottom:591.293333pt;}
.y121{bottom:591.453333pt;}
.yd7{bottom:593.213333pt;}
.y42{bottom:601.213333pt;}
.y8a{bottom:603.613333pt;}
.y6a{bottom:605.053333pt;}
.yb4{bottom:606.973333pt;}
.y16{bottom:609.693333pt;}
.y120{bottom:609.853333pt;}
.yd9{bottom:616.253333pt;}
.y41{bottom:619.613333pt;}
.y89{bottom:622.013333pt;}
.y101{bottom:623.453333pt;}
.y15{bottom:628.093333pt;}
.y11f{bottom:628.253333pt;}
.y40{bottom:638.013333pt;}
.yd5{bottom:639.133333pt;}
.y69{bottom:639.293333pt;}
.yb3{bottom:641.373333pt;}
.y100{bottom:641.853333pt;}
.y14{bottom:646.493333pt;}
.y11e{bottom:646.653333pt;}
.y88{bottom:656.093333pt;}
.y3f{bottom:656.413333pt;}
.yb2{bottom:659.773333pt;}
.yff{bottom:660.253333pt;}
.y13{bottom:664.893333pt;}
.y3e{bottom:674.813333pt;}
.y68{bottom:675.453333pt;}
.yb1{bottom:678.173333pt;}
.y11d{bottom:681.053333pt;}
.yd4{bottom:685.053333pt;}
.y87{bottom:692.253333pt;}
.y3d{bottom:693.213333pt;}
.y67{bottom:693.853333pt;}
.yfe{bottom:694.653333pt;}
.yb0{bottom:696.573333pt;}
.y12{bottom:699.133333pt;}
.y11c{bottom:699.453333pt;}
.y86{bottom:710.653333pt;}
.y3c{bottom:711.613333pt;}
.y66{bottom:712.253333pt;}
.yfd{bottom:713.053333pt;}
.yaf{bottom:714.973333pt;}
.yd3{bottom:719.613333pt;}
.y85{bottom:729.053333pt;}
.y65{bottom:730.653333pt;}
.yfc{bottom:731.453333pt;}
.yae{bottom:733.373333pt;}
.y11b{bottom:733.853333pt;}
.y11{bottom:734.973333pt;}
.yd2{bottom:738.013333pt;}
.y3b{bottom:745.733333pt;}
.y84{bottom:747.493333pt;}
.y64{bottom:749.093333pt;}
.yfb{bottom:749.893333pt;}
.y11a{bottom:752.293333pt;}
.yd1{bottom:756.453333pt;}
.yad{bottom:764.453333pt;}
.y83{bottom:765.893333pt;}
.y63{bottom:767.493333pt;}
.yfa{bottom:768.293333pt;}
.y10{bottom:771.493333pt;}
.yd0{bottom:774.853333pt;}
.y3a{bottom:781.893333pt;}
.y82{bottom:784.293333pt;}
.yab{bottom:785.573333pt;}
.y62{bottom:785.893333pt;}
.yf9{bottom:786.693333pt;}
.yf{bottom:791.333333pt;}
.y39{bottom:800.293333pt;}
.y81{bottom:802.693333pt;}
.y119{bottom:805.093333pt;}
.yaa{bottom:806.693333pt;}
.ycf{bottom:807.973333pt;}
.yd{bottom:811.653333pt;}
.ye{bottom:818.373333pt;}
.y38{bottom:818.693333pt;}
.y61{bottom:820.293333pt;}
.yf8{bottom:821.093333pt;}
.ycd{bottom:833.413333pt;}
.yc{bottom:834.373333pt;}
.y37{bottom:837.093333pt;}
.y60{bottom:838.693333pt;}
.yf7{bottom:839.493333pt;}
.ya9{bottom:844.133333pt;}
.y36{bottom:855.493333pt;}
.y5f{bottom:857.093333pt;}
.ycc{bottom:857.733333pt;}
.yf6{bottom:857.893333pt;}
.ya8{bottom:865.253333pt;}
.y35{bottom:873.893333pt;}
.y5e{bottom:875.493333pt;}
.yf5{bottom:876.293333pt;}
.yb{bottom:881.093333pt;}
.yca{bottom:885.573333pt;}
.ya7{bottom:886.373333pt;}
.y118{bottom:892.133333pt;}
.y34{bottom:892.293333pt;}
.y5d{bottom:893.893333pt;}
.ya5{bottom:907.493333pt;}
.yf4{bottom:910.533333pt;}
.y33{bottom:910.693333pt;}
.ya{bottom:911.813333pt;}
.y5c{bottom:912.293333pt;}
.y117{bottom:928.293333pt;}
.ya1{bottom:928.613333pt;}
.y32{bottom:929.093333pt;}
.yc9{bottom:930.533333pt;}
.y5b{bottom:930.693333pt;}
.y9{bottom:942.373333pt;}
.yf3{bottom:946.693333pt;}
.y31{bottom:947.493333pt;}
.y5a{bottom:965.093333pt;}
.y8{bottom:973.093333pt;}
.y30{bottom:981.733333pt;}
.y59{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h24{height:19.040000pt;}
.h23{height:19.360000pt;}
.h15{height:20.466667pt;}
.h1e{height:20.626667pt;}
.h26{height:21.426667pt;}
.h1d{height:21.586667pt;}
.h1a{height:22.066667pt;}
.h29{height:22.072000pt;}
.h21{height:22.240000pt;}
.h13{height:22.386667pt;}
.h10{height:23.996250pt;}
.h19{height:25.298667pt;}
.h27{height:25.746667pt;}
.h1b{height:27.026667pt;}
.h1c{height:27.186667pt;}
.h25{height:27.986667pt;}
.h18{height:28.946667pt;}
.h17{height:29.106667pt;}
.h1f{height:32.320000pt;}
.ha{height:33.328125pt;}
.h12{height:36.666667pt;}
.h14{height:36.786667pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h22{height:43.040000pt;}
.h28{height:44.312000pt;}
.h11{height:44.468750pt;}
.h20{height:45.280000pt;}
.hb{height:47.109375pt;}
.h5{height:47.680000pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.he{height:62.812500pt;}
.hf{height:64.500000pt;}
.h16{height:65.781915pt;}
.hc{height:67.837500pt;}
.hd{height:69.660000pt;}
.h8{height:73.490625pt;}
.h7{height:107.715000pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:19.840000pt;}
.w19{width:33.440000pt;}
.wf{width:47.680000pt;}
.wc{width:47.840000pt;}
.w1e{width:48.160000pt;}
.w1a{width:48.192000pt;}
.w16{width:53.120000pt;}
.w13{width:53.280000pt;}
.w5{width:55.666667pt;}
.w8{width:55.712000pt;}
.w9{width:92.946667pt;}
.w10{width:100.672000pt;}
.w14{width:100.992000pt;}
.wd{width:101.152000pt;}
.w6{width:104.178667pt;}
.wa{width:108.818667pt;}
.w2{width:111.520000pt;}
.w11{width:120.466667pt;}
.w17{width:120.626667pt;}
.w15{width:120.946667pt;}
.we{width:121.106667pt;}
.w1b{width:135.666667pt;}
.w1f{width:135.866667pt;}
.w1c{width:139.213333pt;}
.w12{width:139.373333pt;}
.w18{width:139.533333pt;}
.wb{width:148.013333pt;}
.w7{width:306.258667pt;}
.w4{width:349.493333pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:1.760000pt;}
.x17{left:5.906667pt;}
.x36{left:8.480000pt;}
.x15{left:9.426667pt;}
.x35{left:11.346667pt;}
.x3d{left:12.640000pt;}
.x2c{left:14.546667pt;}
.x3a{left:16.640000pt;}
.x21{left:20.306667pt;}
.x29{left:21.440000pt;}
.x1e{left:22.386667pt;}
.x31{left:24.320000pt;}
.x1c{left:25.466667pt;}
.x23{left:28.466667pt;}
.x18{left:30.066667pt;}
.x22{left:32.466667pt;}
.x20{left:36.306667pt;}
.x34{left:39.666667pt;}
.x2d{left:42.066667pt;}
.x2{left:44.799998pt;}
.x3e{left:49.746667pt;}
.x41{left:69.586667pt;}
.x1{left:113.472000pt;}
.x10{left:117.792000pt;}
.x5{left:120.672000pt;}
.x1a{left:125.586667pt;}
.x3{left:127.392000pt;}
.x11{left:132.352000pt;}
.x24{left:137.466667pt;}
.xe{left:141.786667pt;}
.x4{left:143.866667pt;}
.x13{left:147.066667pt;}
.xd{left:160.666667pt;}
.xc{left:164.346667pt;}
.xb{left:168.826667pt;}
.x25{left:176.346667pt;}
.x27{left:187.560000pt;}
.x2f{left:189.160000pt;}
.x40{left:210.426667pt;}
.x38{left:217.480000pt;}
.x2e{left:219.066667pt;}
.x43{left:224.520000pt;}
.x42{left:243.546667pt;}
.x37{left:244.506667pt;}
.x12{left:250.586667pt;}
.x8{left:252.346667pt;}
.x6{left:304.066667pt;}
.xf{left:305.506667pt;}
.x19{left:309.986667pt;}
.x26{left:325.026667pt;}
.x30{left:329.186667pt;}
.x28{left:336.226667pt;}
.x39{left:357.666667pt;}
.x44{left:364.386667pt;}
.x9{left:365.966667pt;}
.xa{left:372.066667pt;}
.x32{left:382.786667pt;}
.x2a{left:384.386667pt;}
.x3b{left:391.746667pt;}
.x7{left:406.466667pt;}
.x1b{left:421.026667pt;}
.x45{left:433.666667pt;}
.x3c{left:440.746667pt;}
.x1d{left:477.386667pt;}
.x33{left:484.106667pt;}
.x2b{left:485.706667pt;}
.x14{left:491.786667pt;}
.x16{left:548.106667pt;}
.x1f{left:570.986667pt;}
}




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