
    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_a1d4c270c4e3a97273d69f3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.101000;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_e772a0c32b5b179bfbc93d5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.101000;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_f331ef10fc2a875cd8e4c977.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_bfde72e2a206a626465e20d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100000;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_33861382f2c7c017fdb15539.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.094000;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_360c096f4103b180f1436e4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.387000;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_00b618e32135a518f76889c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008000;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_dc02241f7c60f223780bb158.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.008000;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_c4cb577009f0559a1669f5d2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.056000;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_290a0954eaa196ae2604dc75.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.056000;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:ffb;src:url('chunks/assets/font_949b00f074899afc7e312e3b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.407143;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:ffc;src:url('chunks/assets/font_86ec5d29e9638cca7031a72f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.008000;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:ffd;src:url('chunks/assets/font_bd32e01003bad2176ba766d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.008000;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:ffe;src:url('chunks/assets/font_ea09bcb51be148be38d8612b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.056000;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:fff;src:url('chunks/assets/font_7fdd67a57b41a11142a791f1.woff2')format("woff");}.fff{font-family:fff;line-height:0.996000;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:ff10;src:url('chunks/assets/font_7f62c4b54b46ec3bf504374e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.008000;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:ff11;src:url('chunks/assets/font_7a7b75173a3954f9a82b7c3e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.996000;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.319800px;}
.ls2{letter-spacing:-0.279600px;}
.ls5{letter-spacing:-0.219000px;}
.ls4{letter-spacing:-0.190200px;}
.ls7{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.303600px;}
.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:-38.250000px;}
.wsc{word-spacing:-27.648000px;}
.wsa{word-spacing:-21.312000px;}
.wsb{word-spacing:-19.536000px;}
.ws8{word-spacing:-18.348000px;}
.ws4{word-spacing:-16.096320px;}
.ws5{word-spacing:-15.877320px;}
.ws0{word-spacing:-15.816720px;}
.ws6{word-spacing:-15.776520px;}
.ws9{word-spacing:-15.012000px;}
.ws1{word-spacing:-14.825280px;}
.ws2{word-spacing:-14.521680px;}
.ws3{word-spacing:0.000000px;}
._c{margin-left:-17.730000px;}
._d{margin-left:-15.120000px;}
._a{margin-left:-7.326000px;}
._8{margin-left:-5.964240px;}
._3{margin-left:-4.630320px;}
._2{margin-left:-3.173760px;}
._1{margin-left:-1.229760px;}
._0{width:1.092000px;}
._4{width:5.693760px;}
._5{width:7.557840px;}
._6{width:12.766320px;}
._7{width:14.229840px;}
._9{width:55.466400px;}
._b{width:56.654400px;}
.fc3{color:rgb(0,101,151);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:90.000000px;}
.fs3{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:6.660000px;}
.y28{bottom:23.580000px;}
.yc{bottom:26.820000px;}
.yb{bottom:47.160000px;}
.y27{bottom:55.260000px;}
.y8{bottom:56.916000px;}
.ya{bottom:67.530000px;}
.y62{bottom:78.168750px;}
.yb2{bottom:86.655900px;}
.y7{bottom:86.796000px;}
.y26{bottom:86.985000px;}
.y12c{bottom:88.155900px;}
.y4f{bottom:90.866250px;}
.y61{bottom:94.668750px;}
.y2{bottom:98.310000px;}
.yb1{bottom:103.155900px;}
.y1c{bottom:103.710000px;}
.y4e{bottom:104.366250px;}
.y12b{bottom:104.655900px;}
.y6{bottom:106.236000px;}
.y37{bottom:107.906100px;}
.y60{bottom:111.168750px;}
.y4d{bottom:117.866250px;}
.y10f{bottom:121.155900px;}
.y36{bottom:124.406100px;}
.y5{bottom:125.676000px;}
.y5f{bottom:127.668750px;}
.y10e{bottom:137.130900px;}
.y4{bottom:145.116000px;}
.yfb{bottom:145.668750px;}
.y29{bottom:151.050000px;}
.y10d{bottom:153.631500px;}
.y85{bottom:155.656500px;}
.y35{bottom:158.905500px;}
.y5e{bottom:162.168000px;}
.y25{bottom:164.730000px;}
.y7e{bottom:168.631500px;}
.y10c{bottom:170.131500px;}
.y84{bottom:172.156500px;}
.y34{bottom:175.405500px;}
.y19{bottom:177.330000px;}
.y5d{bottom:178.668000px;}
.yfa{bottom:180.168000px;}
.y7d{bottom:185.131500px;}
.y10b{bottom:186.631500px;}
.y83{bottom:188.656500px;}
.yf4{bottom:190.836000px;}
.y33{bottom:191.905500px;}
.y1b{bottom:191.910000px;}
.y142{bottom:194.793000px;}
.y4c{bottom:197.586000px;}
.y7c{bottom:201.631500px;}
.yf3{bottom:204.336000px;}
.y82{bottom:205.156500px;}
.y32{bottom:208.405500px;}
.y4b{bottom:211.086000px;}
.y5c{bottom:213.168000px;}
.yf9{bottom:214.668000px;}
.yf2{bottom:217.836000px;}
.y10a{bottom:221.131500px;}
.y4a{bottom:224.586000px;}
.y18{bottom:226.110000px;}
.y141{bottom:229.293000px;}
.yf1{bottom:231.336000px;}
.y7b{bottom:236.131500px;}
.y109{bottom:237.631500px;}
.y49{bottom:238.086000px;}
.y81{bottom:239.656500px;}
.y31{bottom:242.905500px;}
.yf0{bottom:244.836000px;}
.y5b{bottom:247.668000px;}
.yf8{bottom:249.168000px;}
.y7a{bottom:252.631500px;}
.y108{bottom:254.131500px;}
.y30{bottom:259.405500px;}
.y140{bottom:263.793000px;}
.y79{bottom:269.131500px;}
.y135{bottom:272.793000px;}
.y17{bottom:274.755000px;}
.y2f{bottom:275.905500px;}
.ye4{bottom:277.293000px;}
.y13f{bottom:280.293000px;}
.y5a{bottom:282.168000px;}
.yf7{bottom:283.668000px;}
.y107{bottom:288.631500px;}
.yd5{bottom:289.293000px;}
.y2e{bottom:292.405500px;}
.y13e{bottom:296.793000px;}
.yf6{bottom:300.168000px;}
.y78{bottom:303.631500px;}
.yd4{bottom:305.793000px;}
.y24{bottom:305.895000px;}
.ye9{bottom:307.293000px;}
.y97{bottom:309.031500px;}
.ye3{bottom:311.793000px;}
.y13d{bottom:313.293000px;}
.y59{bottom:316.668000px;}
.y96{bottom:322.531500px;}
.y106{bottom:323.131500px;}
.ye8{bottom:323.793000px;}
.y11f{bottom:324.781500px;}
.y2d{bottom:326.905500px;}
.y13c{bottom:329.793000px;}
.y58{bottom:333.168000px;}
.y77{bottom:338.131500px;}
.y11e{bottom:338.281500px;}
.y105{bottom:339.631500px;}
.y43{bottom:340.293000px;}
.y16{bottom:341.715000px;}
.y2c{bottom:343.405500px;}
.ye2{bottom:346.293000px;}
.y23{bottom:349.455000px;}
.yf5{bottom:351.168000px;}
.y11d{bottom:351.781500px;}
.y95{bottom:354.031500px;}
.y76{bottom:354.631500px;}
.y42{bottom:356.793000px;}
.ye7{bottom:358.293000px;}
.y134{bottom:359.793000px;}
.y2b{bottom:359.905500px;}
.ye1{bottom:362.793000px;}
.y13b{bottom:364.293000px;}
.y11c{bottom:365.281500px;}
.y94{bottom:367.531500px;}
.y57{bottom:367.668000px;}
.y104{bottom:374.131500px;}
.ye6{bottom:374.793000px;}
.y133{bottom:376.293000px;}
.y11b{bottom:378.781500px;}
.ye0{bottom:379.293000px;}
.y12a{bottom:380.656500px;}
.y13a{bottom:380.793000px;}
.y93{bottom:381.031500px;}
.y56{bottom:384.168000px;}
.y75{bottom:389.131500px;}
.y41{bottom:391.293000px;}
.y11a{bottom:392.281500px;}
.yd3{bottom:392.793000px;}
.y2a{bottom:394.405500px;}
.y92{bottom:394.531500px;}
.ydf{bottom:395.793000px;}
.y129{bottom:397.156500px;}
.y139{bottom:397.293000px;}
.y55{bottom:400.668000px;}
.y1a{bottom:400.935000px;}
.y119{bottom:405.781500px;}
.y40{bottom:407.793000px;}
.y91{bottom:408.031500px;}
.y15{bottom:408.135000px;}
.y103{bottom:408.631500px;}
.yd2{bottom:409.293000px;}
.yb0{bottom:413.656500px;}
.y118{bottom:419.281500px;}
.y90{bottom:421.531500px;}
.y74{bottom:423.631500px;}
.y102{bottom:425.131500px;}
.yd1{bottom:425.793000px;}
.yab{bottom:428.332500px;}
.yaf{bottom:430.156500px;}
.yde{bottom:430.293000px;}
.y128{bottom:431.656500px;}
.yc7{bottom:431.793000px;}
.y8f{bottom:435.031500px;}
.y54{bottom:435.168000px;}
.y73{bottom:440.131500px;}
.yaa{bottom:441.832500px;}
.yd0{bottom:442.293000px;}
.yef{bottom:443.640000px;}
.ydd{bottom:446.793000px;}
.y127{bottom:448.156500px;}
.yc6{bottom:448.293000px;}
.y14{bottom:448.845000px;}
.y48{bottom:450.390000px;}
.ya9{bottom:455.332500px;}
.yee{bottom:457.140000px;}
.ycf{bottom:458.793000px;}
.y101{bottom:459.631500px;}
.y132{bottom:460.293000px;}
.ydc{bottom:463.293000px;}
.y47{bottom:463.890000px;}
.yae{bottom:464.656500px;}
.yc5{bottom:464.793000px;}
.ya8{bottom:468.832500px;}
.ya3{bottom:469.156500px;}
.yed{bottom:470.640000px;}
.y22{bottom:470.985000px;}
.y72{bottom:474.631500px;}
.y100{bottom:476.131500px;}
.y131{bottom:476.793000px;}
.y46{bottom:477.390000px;}
.y53{bottom:477.693000px;}
.y12d{bottom:481.293000px;}
.ya7{bottom:482.332500px;}
.yec{bottom:484.140000px;}
.ya2{bottom:485.656500px;}
.y13{bottom:489.525000px;}
.y45{bottom:490.890000px;}
.yce{bottom:493.293000px;}
.y52{bottom:494.193000px;}
.yeb{bottom:497.640000px;}
.ydb{bottom:497.793000px;}
.yc4{bottom:499.293000px;}
.ya1{bottom:502.156500px;}
.y44{bottom:504.390000px;}
.y21{bottom:508.965000px;}
.y71{bottom:509.131500px;}
.ycd{bottom:509.793000px;}
.yff{bottom:510.631500px;}
.yea{bottom:511.140000px;}
.yda{bottom:514.293000px;}
.y80{bottom:515.656500px;}
.yc3{bottom:515.793000px;}
.ya0{bottom:518.656500px;}
.y122{bottom:520.156500px;}
.ycc{bottom:526.293000px;}
.yfe{bottom:527.131500px;}
.y130{bottom:527.793000px;}
.y51{bottom:528.693000px;}
.y12{bottom:530.385000px;}
.y7f{bottom:532.156500px;}
.yc2{bottom:532.293000px;}
.y121{bottom:536.656500px;}
.y70{bottom:543.631500px;}
.yc1{bottom:548.793000px;}
.y20{bottom:551.985000px;}
.y9f{bottom:553.156500px;}
.y125{bottom:555.768000px;}
.ycb{bottom:560.793000px;}
.yfd{bottom:561.631500px;}
.y50{bottom:563.193000px;}
.y12f{bottom:563.793000px;}
.yd9{bottom:565.293000px;}
.y120{bottom:569.656500px;}
.y11{bottom:571.065000px;}
.y124{bottom:572.268000px;}
.y6f{bottom:578.131500px;}
.y12e{bottom:580.293000px;}
.yd8{bottom:581.793000px;}
.yc0{bottom:583.293000px;}
.y9e{bottom:587.656500px;}
.ya6{bottom:588.768000px;}
.y6e{bottom:594.631500px;}
.yca{bottom:596.793000px;}
.ye5{bottom:598.293000px;}
.ybf{bottom:599.793000px;}
.y1f{bottom:600.585000px;}
.y9d{bottom:604.156500px;}
.yb7{bottom:604.999500px;}
.ya5{bottom:605.268000px;}
.y10{bottom:611.745000px;}
.yc9{bottom:613.293000px;}
.y3f{bottom:614.793000px;}
.ybe{bottom:616.293000px;}
.y138{bottom:617.793000px;}
.yb6{bottom:618.499500px;}
.y123{bottom:623.268000px;}
.y6d{bottom:629.131500px;}
.y3e{bottom:631.293000px;}
.yb5{bottom:631.999500px;}
.ybd{bottom:632.793000px;}
.y137{bottom:634.293000px;}
.y9c{bottom:638.656500px;}
.ya4{bottom:639.768000px;}
.yb4{bottom:645.499500px;}
.y1e{bottom:649.230000px;}
.yc8{bottom:649.293000px;}
.yd7{bottom:650.793000px;}
.yf{bottom:652.470000px;}
.y9b{bottom:655.156500px;}
.yb3{bottom:658.999500px;}
.y3d{bottom:665.793000px;}
.ybc{bottom:667.293000px;}
.y67{bottom:667.345500px;}
.y9a{bottom:671.656500px;}
.y8e{bottom:675.789000px;}
.y66{bottom:680.845500px;}
.y3c{bottom:682.293000px;}
.y117{bottom:682.539000px;}
.ybb{bottom:683.793000px;}
.y99{bottom:688.156500px;}
.y8d{bottom:689.289000px;}
.ye{bottom:693.330000px;}
.y65{bottom:694.345500px;}
.y116{bottom:696.039000px;}
.y1d{bottom:698.010000px;}
.y3b{bottom:698.793000px;}
.yba{bottom:700.293000px;}
.y8c{bottom:702.789000px;}
.yfc{bottom:704.656500px;}
.y6c{bottom:706.156500px;}
.y64{bottom:707.845500px;}
.y115{bottom:709.539000px;}
.y8b{bottom:716.289000px;}
.yb9{bottom:716.793000px;}
.y136{bottom:718.293000px;}
.y63{bottom:721.345500px;}
.y6b{bottom:722.656500px;}
.y114{bottom:723.039000px;}
.y3{bottom:723.390000px;}
.y8a{bottom:729.789000px;}
.y3a{bottom:733.293000px;}
.yd6{bottom:734.793000px;}
.y113{bottom:736.539000px;}
.y6a{bottom:739.156500px;}
.y1{bottom:740.490000px;}
.y89{bottom:743.289000px;}
.y112{bottom:750.039000px;}
.yb8{bottom:751.293000px;}
.y88{bottom:756.789000px;}
.y98{bottom:757.156500px;}
.y126{bottom:758.656500px;}
.y111{bottom:763.539000px;}
.y39{bottom:767.793000px;}
.y87{bottom:770.289000px;}
.y69{bottom:773.656500px;}
.yad{bottom:775.156500px;}
.y9{bottom:776.490000px;}
.y110{bottom:777.039000px;}
.y86{bottom:783.789000px;}
.yac{bottom:791.656500px;}
.y38{bottom:802.293000px;}
.y68{bottom:808.156500px;}
.hf{height:41.472000px;}
.h12{height:49.896000px;}
.ha{height:50.166000px;}
.he{height:50.688000px;}
.h10{height:55.296000px;}
.h5{height:55.517040px;}
.h3{height:61.536960px;}
.h2{height:66.888000px;}
.hd{height:73.350000px;}
.h11{height:75.162857px;}
.h4{height:81.756000px;}
.h7{height:83.610000px;}
.h9{height:113.076000px;}
.h1{height:124.416000px;}
.h6{height:167.220000px;}
.h8{height:302.115000px;}
.h14{height:892.500000px;}
.h13{height:892.800000px;}
.hb{height:892.914000px;}
.hc{height:893.250000px;}
.h0{height:918.000000px;}
.w2{width:116.820000px;}
.w1{width:135.576000px;}
.w4{width:449.355000px;}
.w8{width:629.250000px;}
.w7{width:629.292000px;}
.w6{width:700.665000px;}
.w5{width:1187.459963px;}
.w3{width:1187.999982px;}
.w0{width:1188.000000px;}
.w9{width:1262.880000px;}
.wa{width:1263.000000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x6{left:10.800000px;}
.x11{left:72.283500px;}
.x33{left:73.980600px;}
.x1d{left:76.133550px;}
.x21{left:78.307950px;}
.x4a{left:79.893600px;}
.x14{left:81.029850px;}
.x30{left:82.119450px;}
.x34{left:84.821100px;}
.x24{left:86.044500px;}
.x1e{left:87.392550px;}
.x22{left:88.719450px;}
.x44{left:90.079050px;}
.x15{left:91.924350px;}
.x2d{left:93.778350px;}
.x32{left:95.202600px;}
.x12{left:99.283500px;}
.x51{left:101.581200px;}
.x39{left:104.460450px;}
.x1{left:108.000000px;}
.x4c{left:109.762350px;}
.x3f{left:111.620850px;}
.x3b{left:113.191950px;}
.x45{left:119.772300px;}
.x13{left:126.283500px;}
.x2{left:127.290000px;}
.x4b{left:129.523950px;}
.x4f{left:131.548200px;}
.x2f{left:133.002600px;}
.x2e{left:140.758350px;}
.x1f{left:143.296050px;}
.x16{left:145.971600px;}
.x31{left:165.262500px;}
.x3d{left:171.367500px;}
.x23{left:192.612000px;}
.x8{left:196.409963px;}
.x47{left:207.717000px;}
.x3c{left:220.177500px;}
.x3{left:243.570000px;}
.x46{left:253.084500px;}
.x3e{left:254.329500px;}
.x52{left:255.840000px;}
.x20{left:261.945000px;}
.x5{left:264.450000px;}
.x3a{left:271.869000px;}
.x1b{left:273.853500px;}
.x50{left:275.593500px;}
.x1c{left:277.060500px;}
.x41{left:292.642500px;}
.x17{left:296.443500px;}
.x40{left:297.874500px;}
.x19{left:303.172500px;}
.x42{left:306.318000px;}
.x18{left:309.787500px;}
.x1a{left:352.590000px;}
.x2b{left:362.475000px;}
.x49{left:363.595500px;}
.x48{left:364.608000px;}
.x2a{left:365.877000px;}
.x25{left:367.315500px;}
.x36{left:371.461500px;}
.x26{left:373.161000px;}
.x4d{left:375.585000px;}
.x37{left:376.948500px;}
.xb{left:378.434982px;}
.x29{left:380.883000px;}
.x27{left:382.873500px;}
.x35{left:384.900000px;}
.x28{left:392.863500px;}
.x43{left:397.585500px;}
.xd{left:411.734982px;}
.x4e{left:413.608500px;}
.x38{left:424.246500px;}
.xc{left:426.134982px;}
.x2c{left:433.276500px;}
.x9{left:472.934963px;}
.xe{left:545.474982px;}
.xa{left:588.674982px;}
.x7{left:594.074982px;}
.xf{left:945.149982px;}
.x4{left:1080.149982px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.284267pt;}
.ls2{letter-spacing:-0.248533pt;}
.ls5{letter-spacing:-0.194667pt;}
.ls4{letter-spacing:-0.169067pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.269867pt;}
.ws7{word-spacing:-34.000000pt;}
.wsc{word-spacing:-24.576000pt;}
.wsa{word-spacing:-18.944000pt;}
.wsb{word-spacing:-17.365333pt;}
.ws8{word-spacing:-16.309333pt;}
.ws4{word-spacing:-14.307840pt;}
.ws5{word-spacing:-14.113173pt;}
.ws0{word-spacing:-14.059307pt;}
.ws6{word-spacing:-14.023573pt;}
.ws9{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.178027pt;}
.ws2{word-spacing:-12.908160pt;}
.ws3{word-spacing:0.000000pt;}
._c{margin-left:-15.760000pt;}
._d{margin-left:-13.440000pt;}
._a{margin-left:-6.512000pt;}
._8{margin-left:-5.301547pt;}
._3{margin-left:-4.115840pt;}
._2{margin-left:-2.821120pt;}
._1{margin-left:-1.093120pt;}
._0{width:0.970667pt;}
._4{width:5.061120pt;}
._5{width:6.718080pt;}
._6{width:11.347840pt;}
._7{width:12.648747pt;}
._9{width:49.303467pt;}
._b{width:50.359467pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:80.000000pt;}
.fs3{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:5.920000pt;}
.y28{bottom:20.960000pt;}
.yc{bottom:23.840000pt;}
.yb{bottom:41.920000pt;}
.y27{bottom:49.120000pt;}
.y8{bottom:50.592000pt;}
.ya{bottom:60.026667pt;}
.y62{bottom:69.483333pt;}
.yb2{bottom:77.027467pt;}
.y7{bottom:77.152000pt;}
.y26{bottom:77.320000pt;}
.y12c{bottom:78.360800pt;}
.y4f{bottom:80.770000pt;}
.y61{bottom:84.150000pt;}
.y2{bottom:87.386667pt;}
.yb1{bottom:91.694133pt;}
.y1c{bottom:92.186667pt;}
.y4e{bottom:92.770000pt;}
.y12b{bottom:93.027467pt;}
.y6{bottom:94.432000pt;}
.y37{bottom:95.916533pt;}
.y60{bottom:98.816667pt;}
.y4d{bottom:104.770000pt;}
.y10f{bottom:107.694133pt;}
.y36{bottom:110.583200pt;}
.y5{bottom:111.712000pt;}
.y5f{bottom:113.483333pt;}
.y10e{bottom:121.894133pt;}
.y4{bottom:128.992000pt;}
.yfb{bottom:129.483333pt;}
.y29{bottom:134.266667pt;}
.y10d{bottom:136.561333pt;}
.y85{bottom:138.361333pt;}
.y35{bottom:141.249333pt;}
.y5e{bottom:144.149333pt;}
.y25{bottom:146.426667pt;}
.y7e{bottom:149.894667pt;}
.y10c{bottom:151.228000pt;}
.y84{bottom:153.028000pt;}
.y34{bottom:155.916000pt;}
.y19{bottom:157.626667pt;}
.y5d{bottom:158.816000pt;}
.yfa{bottom:160.149333pt;}
.y7d{bottom:164.561333pt;}
.y10b{bottom:165.894667pt;}
.y83{bottom:167.694667pt;}
.yf4{bottom:169.632000pt;}
.y33{bottom:170.582667pt;}
.y1b{bottom:170.586667pt;}
.y142{bottom:173.149333pt;}
.y4c{bottom:175.632000pt;}
.y7c{bottom:179.228000pt;}
.yf3{bottom:181.632000pt;}
.y82{bottom:182.361333pt;}
.y32{bottom:185.249333pt;}
.y4b{bottom:187.632000pt;}
.y5c{bottom:189.482667pt;}
.yf9{bottom:190.816000pt;}
.yf2{bottom:193.632000pt;}
.y10a{bottom:196.561333pt;}
.y4a{bottom:199.632000pt;}
.y18{bottom:200.986667pt;}
.y141{bottom:203.816000pt;}
.yf1{bottom:205.632000pt;}
.y7b{bottom:209.894667pt;}
.y109{bottom:211.228000pt;}
.y49{bottom:211.632000pt;}
.y81{bottom:213.028000pt;}
.y31{bottom:215.916000pt;}
.yf0{bottom:217.632000pt;}
.y5b{bottom:220.149333pt;}
.yf8{bottom:221.482667pt;}
.y7a{bottom:224.561333pt;}
.y108{bottom:225.894667pt;}
.y30{bottom:230.582667pt;}
.y140{bottom:234.482667pt;}
.y79{bottom:239.228000pt;}
.y135{bottom:242.482667pt;}
.y17{bottom:244.226667pt;}
.y2f{bottom:245.249333pt;}
.ye4{bottom:246.482667pt;}
.y13f{bottom:249.149333pt;}
.y5a{bottom:250.816000pt;}
.yf7{bottom:252.149333pt;}
.y107{bottom:256.561333pt;}
.yd5{bottom:257.149333pt;}
.y2e{bottom:259.916000pt;}
.y13e{bottom:263.816000pt;}
.yf6{bottom:266.816000pt;}
.y78{bottom:269.894667pt;}
.yd4{bottom:271.816000pt;}
.y24{bottom:271.906667pt;}
.ye9{bottom:273.149333pt;}
.y97{bottom:274.694667pt;}
.ye3{bottom:277.149333pt;}
.y13d{bottom:278.482667pt;}
.y59{bottom:281.482667pt;}
.y96{bottom:286.694667pt;}
.y106{bottom:287.228000pt;}
.ye8{bottom:287.816000pt;}
.y11f{bottom:288.694667pt;}
.y2d{bottom:290.582667pt;}
.y13c{bottom:293.149333pt;}
.y58{bottom:296.149333pt;}
.y77{bottom:300.561333pt;}
.y11e{bottom:300.694667pt;}
.y105{bottom:301.894667pt;}
.y43{bottom:302.482667pt;}
.y16{bottom:303.746667pt;}
.y2c{bottom:305.249333pt;}
.ye2{bottom:307.816000pt;}
.y23{bottom:310.626667pt;}
.yf5{bottom:312.149333pt;}
.y11d{bottom:312.694667pt;}
.y95{bottom:314.694667pt;}
.y76{bottom:315.228000pt;}
.y42{bottom:317.149333pt;}
.ye7{bottom:318.482667pt;}
.y134{bottom:319.816000pt;}
.y2b{bottom:319.916000pt;}
.ye1{bottom:322.482667pt;}
.y13b{bottom:323.816000pt;}
.y11c{bottom:324.694667pt;}
.y94{bottom:326.694667pt;}
.y57{bottom:326.816000pt;}
.y104{bottom:332.561333pt;}
.ye6{bottom:333.149333pt;}
.y133{bottom:334.482667pt;}
.y11b{bottom:336.694667pt;}
.ye0{bottom:337.149333pt;}
.y12a{bottom:338.361333pt;}
.y13a{bottom:338.482667pt;}
.y93{bottom:338.694667pt;}
.y56{bottom:341.482667pt;}
.y75{bottom:345.894667pt;}
.y41{bottom:347.816000pt;}
.y11a{bottom:348.694667pt;}
.yd3{bottom:349.149333pt;}
.y2a{bottom:350.582667pt;}
.y92{bottom:350.694667pt;}
.ydf{bottom:351.816000pt;}
.y129{bottom:353.028000pt;}
.y139{bottom:353.149333pt;}
.y55{bottom:356.149333pt;}
.y1a{bottom:356.386667pt;}
.y119{bottom:360.694667pt;}
.y40{bottom:362.482667pt;}
.y91{bottom:362.694667pt;}
.y15{bottom:362.786667pt;}
.y103{bottom:363.228000pt;}
.yd2{bottom:363.816000pt;}
.yb0{bottom:367.694667pt;}
.y118{bottom:372.694667pt;}
.y90{bottom:374.694667pt;}
.y74{bottom:376.561333pt;}
.y102{bottom:377.894667pt;}
.yd1{bottom:378.482667pt;}
.yab{bottom:380.740000pt;}
.yaf{bottom:382.361333pt;}
.yde{bottom:382.482667pt;}
.y128{bottom:383.694667pt;}
.yc7{bottom:383.816000pt;}
.y8f{bottom:386.694667pt;}
.y54{bottom:386.816000pt;}
.y73{bottom:391.228000pt;}
.yaa{bottom:392.740000pt;}
.yd0{bottom:393.149333pt;}
.yef{bottom:394.346667pt;}
.ydd{bottom:397.149333pt;}
.y127{bottom:398.361333pt;}
.yc6{bottom:398.482667pt;}
.y14{bottom:398.973333pt;}
.y48{bottom:400.346667pt;}
.ya9{bottom:404.740000pt;}
.yee{bottom:406.346667pt;}
.ycf{bottom:407.816000pt;}
.y101{bottom:408.561333pt;}
.y132{bottom:409.149333pt;}
.ydc{bottom:411.816000pt;}
.y47{bottom:412.346667pt;}
.yae{bottom:413.028000pt;}
.yc5{bottom:413.149333pt;}
.ya8{bottom:416.740000pt;}
.ya3{bottom:417.028000pt;}
.yed{bottom:418.346667pt;}
.y22{bottom:418.653333pt;}
.y72{bottom:421.894667pt;}
.y100{bottom:423.228000pt;}
.y131{bottom:423.816000pt;}
.y46{bottom:424.346667pt;}
.y53{bottom:424.616000pt;}
.y12d{bottom:427.816000pt;}
.ya7{bottom:428.740000pt;}
.yec{bottom:430.346667pt;}
.ya2{bottom:431.694667pt;}
.y13{bottom:435.133333pt;}
.y45{bottom:436.346667pt;}
.yce{bottom:438.482667pt;}
.y52{bottom:439.282667pt;}
.yeb{bottom:442.346667pt;}
.ydb{bottom:442.482667pt;}
.yc4{bottom:443.816000pt;}
.ya1{bottom:446.361333pt;}
.y44{bottom:448.346667pt;}
.y21{bottom:452.413333pt;}
.y71{bottom:452.561333pt;}
.ycd{bottom:453.149333pt;}
.yff{bottom:453.894667pt;}
.yea{bottom:454.346667pt;}
.yda{bottom:457.149333pt;}
.y80{bottom:458.361333pt;}
.yc3{bottom:458.482667pt;}
.ya0{bottom:461.028000pt;}
.y122{bottom:462.361333pt;}
.ycc{bottom:467.816000pt;}
.yfe{bottom:468.561333pt;}
.y130{bottom:469.149333pt;}
.y51{bottom:469.949333pt;}
.y12{bottom:471.453333pt;}
.y7f{bottom:473.028000pt;}
.yc2{bottom:473.149333pt;}
.y121{bottom:477.028000pt;}
.y70{bottom:483.228000pt;}
.yc1{bottom:487.816000pt;}
.y20{bottom:490.653333pt;}
.y9f{bottom:491.694667pt;}
.y125{bottom:494.016000pt;}
.ycb{bottom:498.482667pt;}
.yfd{bottom:499.228000pt;}
.y50{bottom:500.616000pt;}
.y12f{bottom:501.149333pt;}
.yd9{bottom:502.482667pt;}
.y120{bottom:506.361333pt;}
.y11{bottom:507.613333pt;}
.y124{bottom:508.682667pt;}
.y6f{bottom:513.894667pt;}
.y12e{bottom:515.816000pt;}
.yd8{bottom:517.149333pt;}
.yc0{bottom:518.482667pt;}
.y9e{bottom:522.361333pt;}
.ya6{bottom:523.349333pt;}
.y6e{bottom:528.561333pt;}
.yca{bottom:530.482667pt;}
.ye5{bottom:531.816000pt;}
.ybf{bottom:533.149333pt;}
.y1f{bottom:533.853333pt;}
.y9d{bottom:537.028000pt;}
.yb7{bottom:537.777333pt;}
.ya5{bottom:538.016000pt;}
.y10{bottom:543.773333pt;}
.yc9{bottom:545.149333pt;}
.y3f{bottom:546.482667pt;}
.ybe{bottom:547.816000pt;}
.y138{bottom:549.149333pt;}
.yb6{bottom:549.777333pt;}
.y123{bottom:554.016000pt;}
.y6d{bottom:559.228000pt;}
.y3e{bottom:561.149333pt;}
.yb5{bottom:561.777333pt;}
.ybd{bottom:562.482667pt;}
.y137{bottom:563.816000pt;}
.y9c{bottom:567.694667pt;}
.ya4{bottom:568.682667pt;}
.yb4{bottom:573.777333pt;}
.y1e{bottom:577.093333pt;}
.yc8{bottom:577.149333pt;}
.yd7{bottom:578.482667pt;}
.yf{bottom:579.973333pt;}
.y9b{bottom:582.361333pt;}
.yb3{bottom:585.777333pt;}
.y3d{bottom:591.816000pt;}
.ybc{bottom:593.149333pt;}
.y67{bottom:593.196000pt;}
.y9a{bottom:597.028000pt;}
.y8e{bottom:600.701333pt;}
.y66{bottom:605.196000pt;}
.y3c{bottom:606.482667pt;}
.y117{bottom:606.701333pt;}
.ybb{bottom:607.816000pt;}
.y99{bottom:611.694667pt;}
.y8d{bottom:612.701333pt;}
.ye{bottom:616.293333pt;}
.y65{bottom:617.196000pt;}
.y116{bottom:618.701333pt;}
.y1d{bottom:620.453333pt;}
.y3b{bottom:621.149333pt;}
.yba{bottom:622.482667pt;}
.y8c{bottom:624.701333pt;}
.yfc{bottom:626.361333pt;}
.y6c{bottom:627.694667pt;}
.y64{bottom:629.196000pt;}
.y115{bottom:630.701333pt;}
.y8b{bottom:636.701333pt;}
.yb9{bottom:637.149333pt;}
.y136{bottom:638.482667pt;}
.y63{bottom:641.196000pt;}
.y6b{bottom:642.361333pt;}
.y114{bottom:642.701333pt;}
.y3{bottom:643.013333pt;}
.y8a{bottom:648.701333pt;}
.y3a{bottom:651.816000pt;}
.yd6{bottom:653.149333pt;}
.y113{bottom:654.701333pt;}
.y6a{bottom:657.028000pt;}
.y1{bottom:658.213333pt;}
.y89{bottom:660.701333pt;}
.y112{bottom:666.701333pt;}
.yb8{bottom:667.816000pt;}
.y88{bottom:672.701333pt;}
.y98{bottom:673.028000pt;}
.y126{bottom:674.361333pt;}
.y111{bottom:678.701333pt;}
.y39{bottom:682.482667pt;}
.y87{bottom:684.701333pt;}
.y69{bottom:687.694667pt;}
.yad{bottom:689.028000pt;}
.y9{bottom:690.213333pt;}
.y110{bottom:690.701333pt;}
.y86{bottom:696.701333pt;}
.yac{bottom:703.694667pt;}
.y38{bottom:713.149333pt;}
.y68{bottom:718.361333pt;}
.hf{height:36.864000pt;}
.h12{height:44.352000pt;}
.ha{height:44.592000pt;}
.he{height:45.056000pt;}
.h10{height:49.152000pt;}
.h5{height:49.348480pt;}
.h3{height:54.699520pt;}
.h2{height:59.456000pt;}
.hd{height:65.200000pt;}
.h11{height:66.811429pt;}
.h4{height:72.672000pt;}
.h7{height:74.320000pt;}
.h9{height:100.512000pt;}
.h1{height:110.592000pt;}
.h6{height:148.640000pt;}
.h8{height:268.546667pt;}
.h14{height:793.333333pt;}
.h13{height:793.600000pt;}
.hb{height:793.701333pt;}
.hc{height:794.000000pt;}
.h0{height:816.000000pt;}
.w2{width:103.840000pt;}
.w1{width:120.512000pt;}
.w4{width:399.426667pt;}
.w8{width:559.333333pt;}
.w7{width:559.370667pt;}
.w6{width:622.813333pt;}
.w5{width:1055.519967pt;}
.w3{width:1055.999984pt;}
.w0{width:1056.000000pt;}
.w9{width:1122.560000pt;}
.wa{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x6{left:9.600000pt;}
.x11{left:64.252000pt;}
.x33{left:65.760533pt;}
.x1d{left:67.674267pt;}
.x21{left:69.607067pt;}
.x4a{left:71.016533pt;}
.x14{left:72.026533pt;}
.x30{left:72.995067pt;}
.x34{left:75.396533pt;}
.x24{left:76.484000pt;}
.x1e{left:77.682267pt;}
.x22{left:78.861733pt;}
.x44{left:80.070267pt;}
.x15{left:81.710533pt;}
.x2d{left:83.358533pt;}
.x32{left:84.624533pt;}
.x12{left:88.252000pt;}
.x51{left:90.294400pt;}
.x39{left:92.853733pt;}
.x1{left:96.000000pt;}
.x4c{left:97.566533pt;}
.x3f{left:99.218533pt;}
.x3b{left:100.615067pt;}
.x45{left:106.464267pt;}
.x13{left:112.252000pt;}
.x2{left:113.146667pt;}
.x4b{left:115.132400pt;}
.x4f{left:116.931733pt;}
.x2f{left:118.224533pt;}
.x2e{left:125.118533pt;}
.x1f{left:127.374267pt;}
.x16{left:129.752533pt;}
.x31{left:146.900000pt;}
.x3d{left:152.326667pt;}
.x23{left:171.210667pt;}
.x8{left:174.586634pt;}
.x47{left:184.637333pt;}
.x3c{left:195.713333pt;}
.x3{left:216.506667pt;}
.x46{left:224.964000pt;}
.x3e{left:226.070667pt;}
.x52{left:227.413333pt;}
.x20{left:232.840000pt;}
.x5{left:235.066667pt;}
.x3a{left:241.661333pt;}
.x1b{left:243.425333pt;}
.x50{left:244.972000pt;}
.x1c{left:246.276000pt;}
.x41{left:260.126667pt;}
.x17{left:263.505333pt;}
.x40{left:264.777333pt;}
.x19{left:269.486667pt;}
.x42{left:272.282667pt;}
.x18{left:275.366667pt;}
.x1a{left:313.413333pt;}
.x2b{left:322.200000pt;}
.x49{left:323.196000pt;}
.x48{left:324.096000pt;}
.x2a{left:325.224000pt;}
.x25{left:326.502667pt;}
.x36{left:330.188000pt;}
.x26{left:331.698667pt;}
.x4d{left:333.853333pt;}
.x37{left:335.065333pt;}
.xb{left:336.386651pt;}
.x29{left:338.562667pt;}
.x27{left:340.332000pt;}
.x35{left:342.133333pt;}
.x28{left:349.212000pt;}
.x43{left:353.409333pt;}
.xd{left:365.986651pt;}
.x4e{left:367.652000pt;}
.x38{left:377.108000pt;}
.xc{left:378.786651pt;}
.x2c{left:385.134667pt;}
.x9{left:420.386634pt;}
.xe{left:484.866651pt;}
.xa{left:523.266651pt;}
.x7{left:528.066651pt;}
.xf{left:840.133318pt;}
.x4{left:960.133318pt;}
}




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