
    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_b252b650d2becf3b7474b0de.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_122439be1eecbbfb8ed81621.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_73dc2c7d4ee9a646a1c52012.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_f46c0c8e468dbda5168fe0cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_f0c2f4a0fe101182f9b3a145.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.977539;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_17ea54eaae1ab1d3834c3d40.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_10949db7a3e626e1fa3dc2ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104004;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_14aaf53f676ed5937e662def.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsd{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-1.422000px;}
.ls6{letter-spacing:-0.972000px;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.498000px;}
.lsb{letter-spacing:-0.486600px;}
.lsc{letter-spacing:-0.466800px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.020160px;}
.lsf{letter-spacing:0.423360px;}
.ls10{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.ls14{letter-spacing:0.501120px;}
.ls8{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.840000px;}
.ls11{letter-spacing:0.900000px;}
.lse{letter-spacing:2.160000px;}
.ls13{letter-spacing:13.265280px;}
.ls12{letter-spacing:46.558560px;}
.lsa{letter-spacing:81.250560px;}
.ls1{letter-spacing:82.690560px;}
.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:-119.520000px;}
.ws2{word-spacing:-23.425920px;}
.ws8{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.140160px;}
.ws3{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.653200px;}
.ws5{word-spacing:-14.633400px;}
.ws0{word-spacing:-13.182000px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-5.436000px;}
._a{margin-left:-4.299840px;}
._9{margin-left:-3.211200px;}
._3{margin-left:-2.039040px;}
._0{margin-left:-1.028160px;}
._1{width:1.816800px;}
._6{width:3.336960px;}
._7{width:4.518720px;}
._8{width:5.588640px;}
._b{width:7.316640px;}
._d{width:8.841600px;}
._e{width:10.348320px;}
._4{width:11.712960px;}
._5{width:13.218720px;}
._13{width:14.743680px;}
._11{width:17.795520px;}
._10{width:18.941760px;}
._12{width:20.047680px;}
._14{width:21.889440px;}
._15{width:23.192640px;}
._16{width:25.200000px;}
._17{width:26.254080px;}
._2{width:393.960000px;}
._c{width:1069.656000px;}
.fc7{color:rgb(112,173,71);}
.fc6{color:transparent;}
.fc5{color:rgb(118,113,113);}
.fc4{color:rgb(83,129,53);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.ya{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y13{bottom:6.120000px;}
.ye{bottom:11.556000px;}
.yc{bottom:19.836000px;}
.y12{bottom:41.760000px;}
.yf{bottom:43.560000px;}
.yb{bottom:68.400000px;}
.y11{bottom:77.040000px;}
.y47{bottom:94.716000px;}
.y9{bottom:111.636000px;}
.y7f{bottom:136.116000px;}
.yfd{bottom:136.476000px;}
.y12d{bottom:136.836000px;}
.yde{bottom:143.676000px;}
.y125{bottom:146.556000px;}
.y161{bottom:147.276000px;}
.ya8{bottom:149.796000px;}
.y43{bottom:152.670000px;}
.y7e{bottom:153.390000px;}
.yfc{bottom:153.750000px;}
.y145{bottom:159.150000px;}
.ydd{bottom:160.590000px;}
.y124{bottom:163.830000px;}
.y160{bottom:168.150000px;}
.ya7{bottom:169.590000px;}
.y42{bottom:169.950000px;}
.y7d{bottom:170.670000px;}
.yfb{bottom:171.030000px;}
.y144{bottom:176.430000px;}
.ydc{bottom:177.870000px;}
.y123{bottom:181.110000px;}
.y41{bottom:187.230000px;}
.y7c{bottom:187.950000px;}
.yfa{bottom:188.310000px;}
.y15f{bottom:188.670000px;}
.ya6{bottom:189.390000px;}
.y143{bottom:193.710000px;}
.ydb{bottom:195.150000px;}
.y122{bottom:198.075000px;}
.y40{bottom:204.555000px;}
.y7b{bottom:205.275000px;}
.yf9{bottom:205.635000px;}
.ya5{bottom:209.595000px;}
.y142{bottom:211.035000px;}
.yda{bottom:212.475000px;}
.y121{bottom:215.355000px;}
.y3f{bottom:221.835000px;}
.y7a{bottom:222.555000px;}
.yf8{bottom:222.915000px;}
.y141{bottom:228.315000px;}
.ya4{bottom:229.395000px;}
.yd9{bottom:229.755000px;}
.y120{bottom:232.635000px;}
.y3e{bottom:239.115000px;}
.y79{bottom:239.835000px;}
.yf7{bottom:240.195000px;}
.y140{bottom:245.235000px;}
.yd8{bottom:247.035000px;}
.y15e{bottom:247.755000px;}
.ya3{bottom:249.195000px;}
.y11f{bottom:249.915000px;}
.y3d{bottom:256.395000px;}
.y78{bottom:257.115000px;}
.yf6{bottom:257.475000px;}
.y13f{bottom:262.515000px;}
.yd7{bottom:264.315000px;}
.y11e{bottom:267.195000px;}
.ya2{bottom:268.995000px;}
.y15d{bottom:271.875000px;}
.y3c{bottom:273.675000px;}
.y77{bottom:274.395000px;}
.yf5{bottom:274.755000px;}
.y13e{bottom:279.795000px;}
.yd6{bottom:281.595000px;}
.y11d{bottom:284.475000px;}
.ya1{bottom:288.795000px;}
.y3b{bottom:290.595000px;}
.y76{bottom:291.675000px;}
.yf4{bottom:292.035000px;}
.y15c{bottom:295.635000px;}
.y13d{bottom:297.075000px;}
.yd5{bottom:298.875000px;}
.y11c{bottom:301.755000px;}
.y3a{bottom:307.875000px;}
.y75{bottom:308.595000px;}
.yf3{bottom:308.955000px;}
.y12c{bottom:309.315000px;}
.y13c{bottom:314.355000px;}
.yd4{bottom:316.155000px;}
.y15b{bottom:319.395000px;}
.y39{bottom:325.185000px;}
.y74{bottom:325.905000px;}
.yf2{bottom:326.265000px;}
.y12b{bottom:326.625000px;}
.ya0{bottom:328.425000px;}
.y13b{bottom:331.665000px;}
.yd3{bottom:333.465000px;}
.y11b{bottom:337.065000px;}
.y38{bottom:342.465000px;}
.y73{bottom:343.185000px;}
.yf1{bottom:343.545000px;}
.y12a{bottom:343.905000px;}
.y9f{bottom:348.225000px;}
.y13a{bottom:348.945000px;}
.yd2{bottom:350.385000px;}
.y11a{bottom:354.345000px;}
.y37{bottom:359.745000px;}
.y72{bottom:360.465000px;}
.yf0{bottom:360.825000px;}
.y139{bottom:366.225000px;}
.y15a{bottom:366.945000px;}
.yd1{bottom:367.665000px;}
.y9e{bottom:368.025000px;}
.y119{bottom:371.625000px;}
.y36{bottom:377.025000px;}
.y71{bottom:377.745000px;}
.yef{bottom:378.105000px;}
.y138{bottom:383.505000px;}
.yd0{bottom:384.945000px;}
.y9d{bottom:387.825000px;}
.y159{bottom:390.705000px;}
.y35{bottom:394.305000px;}
.y70{bottom:395.025000px;}
.yee{bottom:395.385000px;}
.y137{bottom:400.785000px;}
.ycf{bottom:402.225000px;}
.y118{bottom:406.905000px;}
.y9c{bottom:407.985000px;}
.y6f{bottom:412.305000px;}
.yed{bottom:412.665000px;}
.y158{bottom:414.465000px;}
.y136{bottom:418.065000px;}
.yce{bottom:419.505000px;}
.y117{bottom:423.825000px;}
.y9b{bottom:427.785000px;}
.y34{bottom:429.225000px;}
.y6e{bottom:429.585000px;}
.yec{bottom:429.945000px;}
.y135{bottom:434.985000px;}
.ycd{bottom:436.785000px;}
.y157{bottom:438.225000px;}
.y116{bottom:441.105000px;}
.y6d{bottom:446.865000px;}
.yeb{bottom:447.225000px;}
.y9a{bottom:447.585000px;}
.y134{bottom:452.310000px;}
.ycc{bottom:454.110000px;}
.y33{bottom:458.070000px;}
.y115{bottom:458.430000px;}
.y156{bottom:462.030000px;}
.y6c{bottom:464.190000px;}
.yea{bottom:464.550000px;}
.y99{bottom:467.430000px;}
.y133{bottom:469.590000px;}
.ycb{bottom:471.390000px;}
.y32{bottom:475.350000px;}
.y114{bottom:475.710000px;}
.y6b{bottom:481.470000px;}
.ye9{bottom:481.830000px;}
.y155{bottom:486.150000px;}
.y132{bottom:486.870000px;}
.y98{bottom:487.230000px;}
.yca{bottom:488.670000px;}
.y31{bottom:492.630000px;}
.y113{bottom:492.990000px;}
.y6a{bottom:498.390000px;}
.ye8{bottom:499.110000px;}
.y131{bottom:504.150000px;}
.yc9{bottom:505.950000px;}
.y97{bottom:507.030000px;}
.y30{bottom:509.910000px;}
.y112{bottom:510.270000px;}
.y69{bottom:515.670000px;}
.ye7{bottom:516.030000px;}
.y129{bottom:516.390000px;}
.y130{bottom:521.430000px;}
.yc8{bottom:523.230000px;}
.y96{bottom:526.830000px;}
.y2f{bottom:527.190000px;}
.y111{bottom:527.550000px;}
.y68{bottom:532.950000px;}
.ye6{bottom:533.310000px;}
.y128{bottom:533.670000px;}
.y12f{bottom:538.710000px;}
.yc7{bottom:540.510000px;}
.y2e{bottom:544.470000px;}
.y110{bottom:544.830000px;}
.y95{bottom:546.630000px;}
.y67{bottom:550.230000px;}
.y127{bottom:553.470000px;}
.ye5{bottom:555.270000px;}
.y12e{bottom:555.990000px;}
.yc6{bottom:557.430000px;}
.y2d{bottom:561.390000px;}
.y10f{bottom:562.110000px;}
.y94{bottom:566.430000px;}
.y66{bottom:567.510000px;}
.y126{bottom:573.270000px;}
.yc5{bottom:574.710000px;}
.y2c{bottom:578.700000px;}
.y10e{bottom:579.420000px;}
.y154{bottom:581.220000px;}
.y65{bottom:584.820000px;}
.y93{bottom:586.260000px;}
.ye4{bottom:590.580000px;}
.yc4{bottom:592.020000px;}
.y2b{bottom:595.980000px;}
.y10d{bottom:596.700000px;}
.y64{bottom:602.100000px;}
.y92{bottom:606.420000px;}
.ye3{bottom:607.860000px;}
.yc3{bottom:609.300000px;}
.y153{bottom:612.900000px;}
.y2a{bottom:613.260000px;}
.y10c{bottom:613.980000px;}
.y63{bottom:619.380000px;}
.ye2{bottom:625.140000px;}
.y91{bottom:626.220000px;}
.yc2{bottom:626.580000px;}
.y29{bottom:630.540000px;}
.y10b{bottom:630.900000px;}
.y152{bottom:632.700000px;}
.y62{bottom:636.660000px;}
.ye1{bottom:642.060000px;}
.yc1{bottom:643.860000px;}
.y90{bottom:646.020000px;}
.y28{bottom:647.820000px;}
.y10a{bottom:648.180000px;}
.y151{bottom:649.980000px;}
.y61{bottom:653.940000px;}
.ye0{bottom:659.340000px;}
.yc0{bottom:661.140000px;}
.y27{bottom:665.100000px;}
.y109{bottom:665.460000px;}
.y150{bottom:667.260000px;}
.y8f{bottom:667.620000px;}
.y60{bottom:671.220000px;}
.ydf{bottom:676.620000px;}
.ybf{bottom:678.420000px;}
.y26{bottom:682.380000px;}
.y108{bottom:682.740000px;}
.y14f{bottom:684.540000px;}
.y5f{bottom:688.500000px;}
.y8e{bottom:693.900000px;}
.ybe{bottom:695.700000px;}
.y25{bottom:699.660000px;}
.y107{bottom:700.020000px;}
.y14e{bottom:701.850000px;}
.y5e{bottom:705.450000px;}
.y175{bottom:707.610000px;}
.y8d{bottom:711.210000px;}
.y24{bottom:716.970000px;}
.ybd{bottom:717.330000px;}
.y14d{bottom:719.130000px;}
.y5d{bottom:722.730000px;}
.y174{bottom:725.970000px;}
.y8c{bottom:728.490000px;}
.y23{bottom:734.250000px;}
.y106{bottom:734.610000px;}
.y14c{bottom:736.410000px;}
.y5c{bottom:740.010000px;}
.ybc{bottom:743.610000px;}
.y8b{bottom:745.770000px;}
.y173{bottom:746.490000px;}
.y22{bottom:751.530000px;}
.y14b{bottom:753.690000px;}
.y5b{bottom:757.290000px;}
.ybb{bottom:760.890000px;}
.y8a{bottom:763.050000px;}
.y105{bottom:765.210000px;}
.y172{bottom:767.370000px;}
.y21{bottom:768.450000px;}
.y14a{bottom:770.970000px;}
.y5a{bottom:774.570000px;}
.yba{bottom:778.170000px;}
.y89{bottom:780.330000px;}
.y20{bottom:785.730000px;}
.y171{bottom:787.890000px;}
.y149{bottom:788.250000px;}
.y104{bottom:791.490000px;}
.yb9{bottom:795.450000px;}
.y59{bottom:796.170000px;}
.y88{bottom:797.610000px;}
.y1f{bottom:803.010000px;}
.y148{bottom:805.170000px;}
.y103{bottom:808.770000px;}
.yb8{bottom:812.730000px;}
.y87{bottom:814.890000px;}
.y1e{bottom:820.290000px;}
.y58{bottom:822.450000px;}
.y102{bottom:826.050000px;}
.y170{bottom:829.335000px;}
.yb7{bottom:830.055000px;}
.y86{bottom:831.855000px;}
.y1d{bottom:837.615000px;}
.y57{bottom:839.775000px;}
.y101{bottom:843.375000px;}
.y85{bottom:849.135000px;}
.y16f{bottom:850.215000px;}
.y1c{bottom:854.895000px;}
.yb6{bottom:855.615000px;}
.y56{bottom:857.055000px;}
.y100{bottom:860.655000px;}
.y84{bottom:866.415000px;}
.y16e{bottom:870.735000px;}
.y1b{bottom:872.175000px;}
.y55{bottom:874.335000px;}
.yff{bottom:877.575000px;}
.y83{bottom:883.695000px;}
.yb5{bottom:884.415000px;}
.y54{bottom:891.615000px;}
.y1a{bottom:893.775000px;}
.yfe{bottom:895.935000px;}
.y82{bottom:900.975000px;}
.yb4{bottom:904.575000px;}
.y147{bottom:908.895000px;}
.y16d{bottom:912.135000px;}
.y81{bottom:918.255000px;}
.y19{bottom:920.055000px;}
.yb3{bottom:924.375000px;}
.y53{bottom:926.535000px;}
.y16c{bottom:933.015000px;}
.y80{bottom:935.535000px;}
.y18{bottom:938.775000px;}
.y146{bottom:943.815000px;}
.yb2{bottom:944.175000px;}
.y52{bottom:952.845000px;}
.y16b{bottom:953.565000px;}
.y17{bottom:958.605000px;}
.yb1{bottom:964.005000px;}
.y51{bottom:970.125000px;}
.y16a{bottom:974.445000px;}
.y16{bottom:979.125000px;}
.yb0{bottom:983.805000px;}
.y50{bottom:987.405000px;}
.y169{bottom:994.965000px;}
.y15{bottom:1000.005000px;}
.yaf{bottom:1003.605000px;}
.y4f{bottom:1004.685000px;}
.y168{bottom:1015.845000px;}
.y14{bottom:1021.605000px;}
.yae{bottom:1023.405000px;}
.y167{bottom:1036.365000px;}
.y4e{bottom:1038.885000px;}
.yad{bottom:1043.205000px;}
.y8{bottom:1047.165000px;}
.y4d{bottom:1056.165000px;}
.y166{bottom:1057.245000px;}
.yac{bottom:1063.005000px;}
.y7{bottom:1064.445000px;}
.y4c{bottom:1073.445000px;}
.y165{bottom:1077.765000px;}
.y6{bottom:1082.130000px;}
.yab{bottom:1082.850000px;}
.y4b{bottom:1090.770000px;}
.y164{bottom:1098.690000px;}
.yaa{bottom:1103.010000px;}
.y10{bottom:1103.370000px;}
.y5{bottom:1104.450000px;}
.y4a{bottom:1108.050000px;}
.y163{bottom:1119.210000px;}
.ya9{bottom:1122.810000px;}
.y49{bottom:1125.330000px;}
.y4{bottom:1128.210000px;}
.y162{bottom:1140.090000px;}
.y48{bottom:1142.610000px;}
.y3{bottom:1151.610000px;}
.y46{bottom:1167.090000px;}
.y2{bottom:1175.370000px;}
.y45{bottom:1181.130000px;}
.y1{bottom:1199.130000px;}
.y44{bottom:1202.010000px;}
.h5{height:8.640000px;}
.he{height:15.516000px;}
.h7{height:32.436000px;}
.h6{height:48.013594px;}
.h8{height:48.147188px;}
.h4{height:53.067656px;}
.h10{height:53.215313px;}
.hd{height:53.717344px;}
.h3{height:58.121719px;}
.hc{height:58.833281px;}
.hf{height:63.175781px;}
.h11{height:63.351562px;}
.h2{height:63.949219px;}
.h12{height:69.172031px;}
.hb{height:85.691953px;}
.ha{height:95.300859px;}
.h9{height:106.596000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:181.875000px;}
.w9{width:333.510000px;}
.w7{width:339.270000px;}
.w6{width:341.430000px;}
.w8{width:347.190000px;}
.w3{width:498.810000px;}
.w5{width:566.130000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x9{left:10.800000px;}
.x1{left:106.235987px;}
.xa{left:114.155987px;}
.xe{left:119.915987px;}
.x5{left:127.869000px;}
.x14{left:133.271987px;}
.x13{left:138.671987px;}
.x7{left:146.595000px;}
.x12{left:148.751987px;}
.x15{left:160.274987px;}
.x8{left:248.865000px;}
.xd{left:275.504987px;}
.x11{left:298.230000px;}
.x6{left:308.664000px;}
.xb{left:372.029987px;}
.xc{left:374.189987px;}
.x2{left:446.579987px;}
.xf{left:447.660000px;}
.x10{left:453.420000px;}
.x4{left:605.055000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-1.264000pt;}
.ls6{letter-spacing:-0.864000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.442667pt;}
.lsb{letter-spacing:-0.432533pt;}
.lsc{letter-spacing:-0.414933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.017920pt;}
.lsf{letter-spacing:0.376320pt;}
.ls10{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.ls14{letter-spacing:0.445440pt;}
.ls8{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.746667pt;}
.ls11{letter-spacing:0.800000pt;}
.lse{letter-spacing:1.920000pt;}
.ls13{letter-spacing:11.791360pt;}
.ls12{letter-spacing:41.385387pt;}
.lsa{letter-spacing:72.222720pt;}
.ls1{letter-spacing:73.502720pt;}
.ws1{word-spacing:-106.240000pt;}
.ws2{word-spacing:-20.823040pt;}
.ws8{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.457920pt;}
.ws3{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.025067pt;}
.ws5{word-spacing:-13.007467pt;}
.ws0{word-spacing:-11.717333pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-4.832000pt;}
._a{margin-left:-3.822080pt;}
._9{margin-left:-2.854400pt;}
._3{margin-left:-1.812480pt;}
._0{margin-left:-0.913920pt;}
._1{width:1.614933pt;}
._6{width:2.966187pt;}
._7{width:4.016640pt;}
._8{width:4.967680pt;}
._b{width:6.503680pt;}
._d{width:7.859200pt;}
._e{width:9.198507pt;}
._4{width:10.411520pt;}
._5{width:11.749973pt;}
._13{width:13.105493pt;}
._11{width:15.818240pt;}
._10{width:16.837120pt;}
._12{width:17.820160pt;}
._14{width:19.457280pt;}
._15{width:20.615680pt;}
._16{width:22.400000pt;}
._17{width:23.336960pt;}
._2{width:350.186667pt;}
._c{width:950.805333pt;}
.fs6{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.ya{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y13{bottom:5.440000pt;}
.ye{bottom:10.272000pt;}
.yc{bottom:17.632000pt;}
.y12{bottom:37.120000pt;}
.yf{bottom:38.720000pt;}
.yb{bottom:60.800000pt;}
.y11{bottom:68.480000pt;}
.y47{bottom:84.192000pt;}
.y9{bottom:99.232000pt;}
.y7f{bottom:120.992000pt;}
.yfd{bottom:121.312000pt;}
.y12d{bottom:121.632000pt;}
.yde{bottom:127.712000pt;}
.y125{bottom:130.272000pt;}
.y161{bottom:130.912000pt;}
.ya8{bottom:133.152000pt;}
.y43{bottom:135.706667pt;}
.y7e{bottom:136.346667pt;}
.yfc{bottom:136.666667pt;}
.y145{bottom:141.466667pt;}
.ydd{bottom:142.746667pt;}
.y124{bottom:145.626667pt;}
.y160{bottom:149.466667pt;}
.ya7{bottom:150.746667pt;}
.y42{bottom:151.066667pt;}
.y7d{bottom:151.706667pt;}
.yfb{bottom:152.026667pt;}
.y144{bottom:156.826667pt;}
.ydc{bottom:158.106667pt;}
.y123{bottom:160.986667pt;}
.y41{bottom:166.426667pt;}
.y7c{bottom:167.066667pt;}
.yfa{bottom:167.386667pt;}
.y15f{bottom:167.706667pt;}
.ya6{bottom:168.346667pt;}
.y143{bottom:172.186667pt;}
.ydb{bottom:173.466667pt;}
.y122{bottom:176.066667pt;}
.y40{bottom:181.826667pt;}
.y7b{bottom:182.466667pt;}
.yf9{bottom:182.786667pt;}
.ya5{bottom:186.306667pt;}
.y142{bottom:187.586667pt;}
.yda{bottom:188.866667pt;}
.y121{bottom:191.426667pt;}
.y3f{bottom:197.186667pt;}
.y7a{bottom:197.826667pt;}
.yf8{bottom:198.146667pt;}
.y141{bottom:202.946667pt;}
.ya4{bottom:203.906667pt;}
.yd9{bottom:204.226667pt;}
.y120{bottom:206.786667pt;}
.y3e{bottom:212.546667pt;}
.y79{bottom:213.186667pt;}
.yf7{bottom:213.506667pt;}
.y140{bottom:217.986667pt;}
.yd8{bottom:219.586667pt;}
.y15e{bottom:220.226667pt;}
.ya3{bottom:221.506667pt;}
.y11f{bottom:222.146667pt;}
.y3d{bottom:227.906667pt;}
.y78{bottom:228.546667pt;}
.yf6{bottom:228.866667pt;}
.y13f{bottom:233.346667pt;}
.yd7{bottom:234.946667pt;}
.y11e{bottom:237.506667pt;}
.ya2{bottom:239.106667pt;}
.y15d{bottom:241.666667pt;}
.y3c{bottom:243.266667pt;}
.y77{bottom:243.906667pt;}
.yf5{bottom:244.226667pt;}
.y13e{bottom:248.706667pt;}
.yd6{bottom:250.306667pt;}
.y11d{bottom:252.866667pt;}
.ya1{bottom:256.706667pt;}
.y3b{bottom:258.306667pt;}
.y76{bottom:259.266667pt;}
.yf4{bottom:259.586667pt;}
.y15c{bottom:262.786667pt;}
.y13d{bottom:264.066667pt;}
.yd5{bottom:265.666667pt;}
.y11c{bottom:268.226667pt;}
.y3a{bottom:273.666667pt;}
.y75{bottom:274.306667pt;}
.yf3{bottom:274.626667pt;}
.y12c{bottom:274.946667pt;}
.y13c{bottom:279.426667pt;}
.yd4{bottom:281.026667pt;}
.y15b{bottom:283.906667pt;}
.y39{bottom:289.053333pt;}
.y74{bottom:289.693333pt;}
.yf2{bottom:290.013333pt;}
.y12b{bottom:290.333333pt;}
.ya0{bottom:291.933333pt;}
.y13b{bottom:294.813333pt;}
.yd3{bottom:296.413333pt;}
.y11b{bottom:299.613333pt;}
.y38{bottom:304.413333pt;}
.y73{bottom:305.053333pt;}
.yf1{bottom:305.373333pt;}
.y12a{bottom:305.693333pt;}
.y9f{bottom:309.533333pt;}
.y13a{bottom:310.173333pt;}
.yd2{bottom:311.453333pt;}
.y11a{bottom:314.973333pt;}
.y37{bottom:319.773333pt;}
.y72{bottom:320.413333pt;}
.yf0{bottom:320.733333pt;}
.y139{bottom:325.533333pt;}
.y15a{bottom:326.173333pt;}
.yd1{bottom:326.813333pt;}
.y9e{bottom:327.133333pt;}
.y119{bottom:330.333333pt;}
.y36{bottom:335.133333pt;}
.y71{bottom:335.773333pt;}
.yef{bottom:336.093333pt;}
.y138{bottom:340.893333pt;}
.yd0{bottom:342.173333pt;}
.y9d{bottom:344.733333pt;}
.y159{bottom:347.293333pt;}
.y35{bottom:350.493333pt;}
.y70{bottom:351.133333pt;}
.yee{bottom:351.453333pt;}
.y137{bottom:356.253333pt;}
.ycf{bottom:357.533333pt;}
.y118{bottom:361.693333pt;}
.y9c{bottom:362.653333pt;}
.y6f{bottom:366.493333pt;}
.yed{bottom:366.813333pt;}
.y158{bottom:368.413333pt;}
.y136{bottom:371.613333pt;}
.yce{bottom:372.893333pt;}
.y117{bottom:376.733333pt;}
.y9b{bottom:380.253333pt;}
.y34{bottom:381.533333pt;}
.y6e{bottom:381.853333pt;}
.yec{bottom:382.173333pt;}
.y135{bottom:386.653333pt;}
.ycd{bottom:388.253333pt;}
.y157{bottom:389.533333pt;}
.y116{bottom:392.093333pt;}
.y6d{bottom:397.213333pt;}
.yeb{bottom:397.533333pt;}
.y9a{bottom:397.853333pt;}
.y134{bottom:402.053333pt;}
.ycc{bottom:403.653333pt;}
.y33{bottom:407.173333pt;}
.y115{bottom:407.493333pt;}
.y156{bottom:410.693333pt;}
.y6c{bottom:412.613333pt;}
.yea{bottom:412.933333pt;}
.y99{bottom:415.493333pt;}
.y133{bottom:417.413333pt;}
.ycb{bottom:419.013333pt;}
.y32{bottom:422.533333pt;}
.y114{bottom:422.853333pt;}
.y6b{bottom:427.973333pt;}
.ye9{bottom:428.293333pt;}
.y155{bottom:432.133333pt;}
.y132{bottom:432.773333pt;}
.y98{bottom:433.093333pt;}
.yca{bottom:434.373333pt;}
.y31{bottom:437.893333pt;}
.y113{bottom:438.213333pt;}
.y6a{bottom:443.013333pt;}
.ye8{bottom:443.653333pt;}
.y131{bottom:448.133333pt;}
.yc9{bottom:449.733333pt;}
.y97{bottom:450.693333pt;}
.y30{bottom:453.253333pt;}
.y112{bottom:453.573333pt;}
.y69{bottom:458.373333pt;}
.ye7{bottom:458.693333pt;}
.y129{bottom:459.013333pt;}
.y130{bottom:463.493333pt;}
.yc8{bottom:465.093333pt;}
.y96{bottom:468.293333pt;}
.y2f{bottom:468.613333pt;}
.y111{bottom:468.933333pt;}
.y68{bottom:473.733333pt;}
.ye6{bottom:474.053333pt;}
.y128{bottom:474.373333pt;}
.y12f{bottom:478.853333pt;}
.yc7{bottom:480.453333pt;}
.y2e{bottom:483.973333pt;}
.y110{bottom:484.293333pt;}
.y95{bottom:485.893333pt;}
.y67{bottom:489.093333pt;}
.y127{bottom:491.973333pt;}
.ye5{bottom:493.573333pt;}
.y12e{bottom:494.213333pt;}
.yc6{bottom:495.493333pt;}
.y2d{bottom:499.013333pt;}
.y10f{bottom:499.653333pt;}
.y94{bottom:503.493333pt;}
.y66{bottom:504.453333pt;}
.y126{bottom:509.573333pt;}
.yc5{bottom:510.853333pt;}
.y2c{bottom:514.400000pt;}
.y10e{bottom:515.040000pt;}
.y154{bottom:516.640000pt;}
.y65{bottom:519.840000pt;}
.y93{bottom:521.120000pt;}
.ye4{bottom:524.960000pt;}
.yc4{bottom:526.240000pt;}
.y2b{bottom:529.760000pt;}
.y10d{bottom:530.400000pt;}
.y64{bottom:535.200000pt;}
.y92{bottom:539.040000pt;}
.ye3{bottom:540.320000pt;}
.yc3{bottom:541.600000pt;}
.y153{bottom:544.800000pt;}
.y2a{bottom:545.120000pt;}
.y10c{bottom:545.760000pt;}
.y63{bottom:550.560000pt;}
.ye2{bottom:555.680000pt;}
.y91{bottom:556.640000pt;}
.yc2{bottom:556.960000pt;}
.y29{bottom:560.480000pt;}
.y10b{bottom:560.800000pt;}
.y152{bottom:562.400000pt;}
.y62{bottom:565.920000pt;}
.ye1{bottom:570.720000pt;}
.yc1{bottom:572.320000pt;}
.y90{bottom:574.240000pt;}
.y28{bottom:575.840000pt;}
.y10a{bottom:576.160000pt;}
.y151{bottom:577.760000pt;}
.y61{bottom:581.280000pt;}
.ye0{bottom:586.080000pt;}
.yc0{bottom:587.680000pt;}
.y27{bottom:591.200000pt;}
.y109{bottom:591.520000pt;}
.y150{bottom:593.120000pt;}
.y8f{bottom:593.440000pt;}
.y60{bottom:596.640000pt;}
.ydf{bottom:601.440000pt;}
.ybf{bottom:603.040000pt;}
.y26{bottom:606.560000pt;}
.y108{bottom:606.880000pt;}
.y14f{bottom:608.480000pt;}
.y5f{bottom:612.000000pt;}
.y8e{bottom:616.800000pt;}
.ybe{bottom:618.400000pt;}
.y25{bottom:621.920000pt;}
.y107{bottom:622.240000pt;}
.y14e{bottom:623.866667pt;}
.y5e{bottom:627.066667pt;}
.y175{bottom:628.986667pt;}
.y8d{bottom:632.186667pt;}
.y24{bottom:637.306667pt;}
.ybd{bottom:637.626667pt;}
.y14d{bottom:639.226667pt;}
.y5d{bottom:642.426667pt;}
.y174{bottom:645.306667pt;}
.y8c{bottom:647.546667pt;}
.y23{bottom:652.666667pt;}
.y106{bottom:652.986667pt;}
.y14c{bottom:654.586667pt;}
.y5c{bottom:657.786667pt;}
.ybc{bottom:660.986667pt;}
.y8b{bottom:662.906667pt;}
.y173{bottom:663.546667pt;}
.y22{bottom:668.026667pt;}
.y14b{bottom:669.946667pt;}
.y5b{bottom:673.146667pt;}
.ybb{bottom:676.346667pt;}
.y8a{bottom:678.266667pt;}
.y105{bottom:680.186667pt;}
.y172{bottom:682.106667pt;}
.y21{bottom:683.066667pt;}
.y14a{bottom:685.306667pt;}
.y5a{bottom:688.506667pt;}
.yba{bottom:691.706667pt;}
.y89{bottom:693.626667pt;}
.y20{bottom:698.426667pt;}
.y171{bottom:700.346667pt;}
.y149{bottom:700.666667pt;}
.y104{bottom:703.546667pt;}
.yb9{bottom:707.066667pt;}
.y59{bottom:707.706667pt;}
.y88{bottom:708.986667pt;}
.y1f{bottom:713.786667pt;}
.y148{bottom:715.706667pt;}
.y103{bottom:718.906667pt;}
.yb8{bottom:722.426667pt;}
.y87{bottom:724.346667pt;}
.y1e{bottom:729.146667pt;}
.y58{bottom:731.066667pt;}
.y102{bottom:734.266667pt;}
.y170{bottom:737.186667pt;}
.yb7{bottom:737.826667pt;}
.y86{bottom:739.426667pt;}
.y1d{bottom:744.546667pt;}
.y57{bottom:746.466667pt;}
.y101{bottom:749.666667pt;}
.y85{bottom:754.786667pt;}
.y16f{bottom:755.746667pt;}
.y1c{bottom:759.906667pt;}
.yb6{bottom:760.546667pt;}
.y56{bottom:761.826667pt;}
.y100{bottom:765.026667pt;}
.y84{bottom:770.146667pt;}
.y16e{bottom:773.986667pt;}
.y1b{bottom:775.266667pt;}
.y55{bottom:777.186667pt;}
.yff{bottom:780.066667pt;}
.y83{bottom:785.506667pt;}
.yb5{bottom:786.146667pt;}
.y54{bottom:792.546667pt;}
.y1a{bottom:794.466667pt;}
.yfe{bottom:796.386667pt;}
.y82{bottom:800.866667pt;}
.yb4{bottom:804.066667pt;}
.y147{bottom:807.906667pt;}
.y16d{bottom:810.786667pt;}
.y81{bottom:816.226667pt;}
.y19{bottom:817.826667pt;}
.yb3{bottom:821.666667pt;}
.y53{bottom:823.586667pt;}
.y16c{bottom:829.346667pt;}
.y80{bottom:831.586667pt;}
.y18{bottom:834.466667pt;}
.y146{bottom:838.946667pt;}
.yb2{bottom:839.266667pt;}
.y52{bottom:846.973333pt;}
.y16b{bottom:847.613333pt;}
.y17{bottom:852.093333pt;}
.yb1{bottom:856.893333pt;}
.y51{bottom:862.333333pt;}
.y16a{bottom:866.173333pt;}
.y16{bottom:870.333333pt;}
.yb0{bottom:874.493333pt;}
.y50{bottom:877.693333pt;}
.y169{bottom:884.413333pt;}
.y15{bottom:888.893333pt;}
.yaf{bottom:892.093333pt;}
.y4f{bottom:893.053333pt;}
.y168{bottom:902.973333pt;}
.y14{bottom:908.093333pt;}
.yae{bottom:909.693333pt;}
.y167{bottom:921.213333pt;}
.y4e{bottom:923.453333pt;}
.yad{bottom:927.293333pt;}
.y8{bottom:930.813333pt;}
.y4d{bottom:938.813333pt;}
.y166{bottom:939.773333pt;}
.yac{bottom:944.893333pt;}
.y7{bottom:946.173333pt;}
.y4c{bottom:954.173333pt;}
.y165{bottom:958.013333pt;}
.y6{bottom:961.893333pt;}
.yab{bottom:962.533333pt;}
.y4b{bottom:969.573333pt;}
.y164{bottom:976.613333pt;}
.yaa{bottom:980.453333pt;}
.y10{bottom:980.773333pt;}
.y5{bottom:981.733333pt;}
.y4a{bottom:984.933333pt;}
.y163{bottom:994.853333pt;}
.ya9{bottom:998.053333pt;}
.y49{bottom:1000.293333pt;}
.y4{bottom:1002.853333pt;}
.y162{bottom:1013.413333pt;}
.y48{bottom:1015.653333pt;}
.y3{bottom:1023.653333pt;}
.y46{bottom:1037.413333pt;}
.y2{bottom:1044.773333pt;}
.y45{bottom:1049.893333pt;}
.y1{bottom:1065.893333pt;}
.y44{bottom:1068.453333pt;}
.h5{height:7.680000pt;}
.he{height:13.792000pt;}
.h7{height:28.832000pt;}
.h6{height:42.678750pt;}
.h8{height:42.797500pt;}
.h4{height:47.171250pt;}
.h10{height:47.302500pt;}
.hd{height:47.748750pt;}
.h3{height:51.663750pt;}
.hc{height:52.296250pt;}
.hf{height:56.156250pt;}
.h11{height:56.312500pt;}
.h2{height:56.843750pt;}
.h12{height:61.486250pt;}
.hb{height:76.170625pt;}
.ha{height:84.711875pt;}
.h9{height:94.752000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:161.666667pt;}
.w9{width:296.453333pt;}
.w7{width:301.573333pt;}
.w6{width:303.493333pt;}
.w8{width:308.613333pt;}
.w3{width:443.386667pt;}
.w5{width:503.226667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x9{left:9.600000pt;}
.x1{left:94.431988pt;}
.xa{left:101.471988pt;}
.xe{left:106.591988pt;}
.x5{left:113.661333pt;}
.x14{left:118.463988pt;}
.x13{left:123.263988pt;}
.x7{left:130.306667pt;}
.x12{left:132.223988pt;}
.x15{left:142.466655pt;}
.x8{left:221.213333pt;}
.xd{left:244.893322pt;}
.x11{left:265.093333pt;}
.x6{left:274.368000pt;}
.xb{left:330.693322pt;}
.xc{left:332.613322pt;}
.x2{left:396.959988pt;}
.xf{left:397.920000pt;}
.x10{left:403.040000pt;}
.x4{left:537.826667pt;}
}




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