
    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_300e974548f5857ace4ad95d.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_33ea7f1762d7548c7f9999d4.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_b8c7199508e1088c1f356520.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_12c45d6ff9c499751a63338f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_ddbba76fe4bba4db7262fb42.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_e497fd59ff47b8db00426889.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_11b13892a9a97499896f1025.woff')format("woff");}.ff8{font-family:ff8;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: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_e4d285ed83e0db8d61dc303b.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ae86519ed353f607b7988fa4.woff')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_00099a6ba5b36924638f7fe0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.912109;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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.034560px;}
.ls8{letter-spacing:-0.017280px;}
.lsa{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.025920px;}
.ls14{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.720000px;}
.ls15{letter-spacing:5.220000px;}
.ls16{letter-spacing:10.080000px;}
.lsc{letter-spacing:77.904000px;}
.ls9{letter-spacing:82.385280px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws8{word-spacing:-66.240000px;}
.ws2{word-spacing:-19.457280px;}
.ws6{word-spacing:-19.431360px;}
.ws3{word-spacing:-19.422720px;}
.wsb{word-spacing:-19.405440px;}
.wse{word-spacing:-18.216000px;}
.ws10{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws7{word-spacing:-16.822200px;}
.ws4{word-spacing:-15.300000px;}
.ws0{word-spacing:-15.093600px;}
.ws1{word-spacing:-14.940000px;}
.wsf{word-spacing:-12.420000px;}
.ws5{word-spacing:0.000000px;}
._1f{margin-left:-7.344000px;}
._4{margin-left:-1.370400px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._7{width:3.607200px;}
._13{width:5.400000px;}
._6{width:7.122480px;}
._17{width:8.545680px;}
._12{width:10.224000px;}
._f{width:11.880000px;}
._1a{width:13.248000px;}
._e{width:14.328000px;}
._c{width:15.840000px;}
._19{width:17.619840px;}
._d{width:19.156800px;}
._8{width:20.304000px;}
._18{width:22.170960px;}
._a{width:23.682480px;}
._b{width:24.929280px;}
._1b{width:26.642400px;}
._10{width:28.080000px;}
._11{width:29.160000px;}
._1c{width:30.280080px;}
._1d{width:31.495920px;}
._22{width:32.800080px;}
._1e{width:33.856800px;}
._9{width:34.920000px;}
._21{width:36.199200px;}
._20{width:38.880000px;}
._16{width:45.288000px;}
._15{width:46.625040px;}
._14{width:48.888000px;}
._23{width:72.720000px;}
._24{width:73.772160px;}
._5{width:219.369120px;}
._2{width:1208.520000px;}
._3{width:2047.692480px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs9{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yde{bottom:4.320000px;}
.yda{bottom:4.485000px;}
.ybb{bottom:4.500000px;}
.y104{bottom:7.365000px;}
.y100{bottom:7.380000px;}
.y102{bottom:7.425000px;}
.y107{bottom:7.560000px;}
.ye0{bottom:14.940000px;}
.yd8{bottom:25.185000px;}
.yc0{bottom:25.200000px;}
.ycd{bottom:25.230000px;}
.yc5{bottom:25.245000px;}
.yc7{bottom:35.460000px;}
.ybd{bottom:35.640000px;}
.y7{bottom:44.676000px;}
.yd7{bottom:45.885000px;}
.ybf{bottom:45.900000px;}
.yce{bottom:45.930000px;}
.yc2{bottom:45.945000px;}
.yc9{bottom:56.160000px;}
.y6{bottom:58.536000px;}
.yd6{bottom:66.585000px;}
.ybe{bottom:66.600000px;}
.yc4{bottom:66.645000px;}
.yd0{bottom:76.860000px;}
.ycb{bottom:87.300000px;}
.yd9{bottom:87.330000px;}
.yc3{bottom:87.345000px;}
.yd3{bottom:107.820000px;}
.yca{bottom:108.000000px;}
.yd2{bottom:128.520000px;}
.y2e{bottom:131.076000px;}
.y17b{bottom:134.676000px;}
.y83{bottom:135.576000px;}
.y2d{bottom:136.296000px;}
.y58{bottom:145.116000px;}
.y19e{bottom:146.556000px;}
.yd1{bottom:149.220000px;}
.y2c{bottom:149.256000px;}
.ydb{bottom:152.310000px;}
.y11b{bottom:152.850000px;}
.y17a{bottom:155.190000px;}
.y82{bottom:156.270000px;}
.ya7{bottom:158.790000px;}
.yb8{bottom:161.490000px;}
.y57{bottom:165.810000px;}
.y19d{bottom:167.250000px;}
.yf5{bottom:169.950000px;}
.y158{bottom:173.010000px;}
.y11a{bottom:173.550000px;}
.y2b{bottom:175.890000px;}
.y81{bottom:176.970000px;}
.y139{bottom:178.410000px;}
.y56{bottom:186.510000px;}
.y19c{bottom:187.950000px;}
.yd5{bottom:189.225000px;}
.yf4{bottom:190.650000px;}
.y2a{bottom:193.170000px;}
.y157{bottom:193.710000px;}
.y179{bottom:195.330000px;}
.ya6{bottom:197.490000px;}
.y80{bottom:197.670000px;}
.y138{bottom:199.110000px;}
.yb7{bottom:200.550000px;}
.y55{bottom:207.210000px;}
.y29{bottom:210.450000px;}
.yf3{bottom:211.350000px;}
.y119{bottom:212.250000px;}
.y156{bottom:214.410000px;}
.y178{bottom:216.030000px;}
.ya5{bottom:218.190000px;}
.y137{bottom:219.810000px;}
.y19b{bottom:226.650000px;}
.yf2{bottom:232.230000px;}
.y118{bottom:232.950000px;}
.y155{bottom:235.110000px;}
.y7f{bottom:236.010000px;}
.y177{bottom:236.550000px;}
.ya4{bottom:238.890000px;}
.yb6{bottom:239.250000px;}
.y136{bottom:240.510000px;}
.y54{bottom:245.910000px;}
.y28{bottom:246.450000px;}
.y19a{bottom:247.350000px;}
.y117{bottom:253.650000px;}
.y7e{bottom:254.910000px;}
.y154{bottom:255.810000px;}
.ya3{bottom:259.590000px;}
.yb5{bottom:259.950000px;}
.y135{bottom:261.210000px;}
.y53{bottom:266.610000px;}
.y27{bottom:267.150000px;}
.y199{bottom:268.050000px;}
.yf1{bottom:272.190000px;}
.y7d{bottom:274.035000px;}
.y116{bottom:274.395000px;}
.y153{bottom:276.555000px;}
.y176{bottom:276.735000px;}
.ya2{bottom:280.335000px;}
.yb4{bottom:280.695000px;}
.y134{bottom:281.955000px;}
.y52{bottom:287.355000px;}
.yd4{bottom:293.475000px;}
.y152{bottom:297.255000px;}
.y175{bottom:297.435000px;}
.ya1{bottom:301.035000px;}
.yb3{bottom:301.395000px;}
.y133{bottom:302.655000px;}
.y198{bottom:306.795000px;}
.y26{bottom:307.695000px;}
.y51{bottom:308.055000px;}
.yf0{bottom:309.135000px;}
.y7c{bottom:311.655000px;}
.y115{bottom:313.095000px;}
.y15d{bottom:314.895000px;}
.y151{bottom:317.955000px;}
.y174{bottom:318.135000px;}
.ya0{bottom:321.735000px;}
.yb2{bottom:322.095000px;}
.y132{bottom:323.355000px;}
.y197{bottom:327.495000px;}
.y25{bottom:328.395000px;}
.yef{bottom:330.555000px;}
.y114{bottom:333.795000px;}
.y173{bottom:338.835000px;}
.y9f{bottom:342.435000px;}
.yb1{bottom:342.795000px;}
.y131{bottom:344.055000px;}
.y50{bottom:346.395000px;}
.y196{bottom:348.195000px;}
.y24{bottom:349.095000px;}
.y7b{bottom:351.615000px;}
.yee{bottom:351.975000px;}
.y15c{bottom:353.955000px;}
.y113{bottom:354.495000px;}
.y150{bottom:356.655000px;}
.y172{bottom:359.535000px;}
.y130{bottom:364.755000px;}
.y23{bottom:369.795000px;}
.y7a{bottom:373.395000px;}
.y15b{bottom:374.655000px;}
.y112{bottom:375.195000px;}
.ycf{bottom:377.175000px;}
.yb0{bottom:380.955000px;}
.y9e{bottom:381.135000px;}
.y4f{bottom:386.715000px;}
.y195{bottom:386.895000px;}
.y22{bottom:390.495000px;}
.y79{bottom:393.555000px;}
.y14f{bottom:395.355000px;}
.y171{bottom:397.875000px;}
.y12f{bottom:403.455000px;}
.y194{bottom:407.595000px;}
.y21{bottom:411.195000px;}
.y78{bottom:412.635000px;}
.y111{bottom:413.895000px;}
.y14e{bottom:416.055000px;}
.yed{bottom:416.595000px;}
.yaf{bottom:418.035000px;}
.y9d{bottom:419.835000px;}
.y4e{bottom:423.615000px;}
.y193{bottom:428.295000px;}
.y20{bottom:431.895000px;}
.y110{bottom:434.595000px;}
.y14d{bottom:436.755000px;}
.y170{bottom:436.935000px;}
.y9c{bottom:440.535000px;}
.y12e{bottom:442.155000px;}
.y77{bottom:450.615000px;}
.y1f{bottom:452.595000px;}
.y10f{bottom:455.295000px;}
.yec{bottom:455.475000px;}
.y14c{bottom:457.455000px;}
.y16f{bottom:457.635000px;}
.y4d{bottom:460.515000px;}
.y9b{bottom:461.235000px;}
.y12d{bottom:462.855000px;}
.y192{bottom:466.995000px;}
.y1e{bottom:473.295000px;}
.y10e{bottom:475.995000px;}
.yeb{bottom:476.175000px;}
.y14b{bottom:478.155000px;}
.y16e{bottom:478.335000px;}
.y4c{bottom:479.595000px;}
.y12c{bottom:483.555000px;}
.y191{bottom:487.695000px;}
.y76{bottom:488.055000px;}
.y1d{bottom:493.995000px;}
.yea{bottom:496.875000px;}
.y4b{bottom:498.495000px;}
.y14a{bottom:498.855000px;}
.y16d{bottom:499.035000px;}
.y9a{bottom:499.935000px;}
.y12b{bottom:504.255000px;}
.y75{bottom:508.755000px;}
.y1c{bottom:514.695000px;}
.ye9{bottom:517.575000px;}
.y149{bottom:519.555000px;}
.y16c{bottom:519.735000px;}
.y12a{bottom:524.955000px;}
.y190{bottom:526.395000px;}
.y1b{bottom:535.395000px;}
.y4a{bottom:535.575000px;}
.ye8{bottom:538.275000px;}
.y99{bottom:538.635000px;}
.y148{bottom:540.255000px;}
.ycc{bottom:543.495000px;}
.y129{bottom:545.655000px;}
.y18f{bottom:547.095000px;}
.y74{bottom:547.455000px;}
.y49{bottom:554.655000px;}
.y1a{bottom:556.125000px;}
.y16b{bottom:558.465000px;}
.ye7{bottom:559.005000px;}
.y98{bottom:559.365000px;}
.y128{bottom:566.385000px;}
.y18e{bottom:567.825000px;}
.y73{bottom:568.185000px;}
.y48{bottom:574.665000px;}
.y19{bottom:576.825000px;}
.y147{bottom:578.985000px;}
.y16a{bottom:579.165000px;}
.y97{bottom:579.885000px;}
.y127{bottom:587.085000px;}
.y72{bottom:588.885000px;}
.y47{bottom:593.745000px;}
.y18{bottom:597.525000px;}
.ye6{bottom:597.885000px;}
.y146{bottom:599.685000px;}
.y169{bottom:599.865000px;}
.yc8{bottom:606.345000px;}
.y18d{bottom:606.525000px;}
.y71{bottom:609.585000px;}
.y10d{bottom:611.745000px;}
.y17{bottom:618.225000px;}
.y96{bottom:618.585000px;}
.y168{bottom:620.565000px;}
.y126{bottom:625.785000px;}
.y18c{bottom:627.225000px;}
.y70{bottom:630.285000px;}
.y46{bottom:631.725000px;}
.ye5{bottom:634.425000px;}
.y10c{bottom:636.225000px;}
.y145{bottom:638.385000px;}
.y16{bottom:638.925000px;}
.y95{bottom:639.285000px;}
.y18b{bottom:647.925000px;}
.y6f{bottom:650.985000px;}
.ye4{bottom:655.845000px;}
.y144{bottom:659.085000px;}
.y167{bottom:659.265000px;}
.y15{bottom:659.625000px;}
.y94{bottom:659.985000px;}
.y10b{bottom:660.885000px;}
.y125{bottom:664.485000px;}
.y45{bottom:668.805000px;}
.y6e{bottom:671.685000px;}
.ye3{bottom:677.265000px;}
.y143{bottom:679.785000px;}
.y166{bottom:679.965000px;}
.y93{bottom:680.685000px;}
.y124{bottom:685.185000px;}
.y10a{bottom:685.365000px;}
.y18a{bottom:686.625000px;}
.y44{bottom:687.705000px;}
.y1a4{bottom:690.585000px;}
.y6d{bottom:692.385000px;}
.y14{bottom:697.965000px;}
.ye2{bottom:698.685000px;}
.y142{bottom:700.485000px;}
.y165{bottom:700.665000px;}
.y123{bottom:705.885000px;}
.y43{bottom:706.785000px;}
.y189{bottom:707.325000px;}
.y109{bottom:710.025000px;}
.y6c{bottom:713.085000px;}
.y92{bottom:719.385000px;}
.ye1{bottom:720.105000px;}
.y141{bottom:721.185000px;}
.y42{bottom:725.685000px;}
.y122{bottom:726.585000px;}
.y1a3{bottom:729.285000px;}
.yc6{bottom:731.265000px;}
.y6b{bottom:733.785000px;}
.y108{bottom:734.505000px;}
.y13{bottom:738.465000px;}
.y91{bottom:740.085000px;}
.ydf{bottom:741.525000px;}
.y140{bottom:741.885000px;}
.y41{bottom:744.585000px;}
.y188{bottom:746.025000px;}
.y121{bottom:747.285000px;}
.y6a{bottom:754.485000px;}
.y106{bottom:758.985000px;}
.y90{bottom:760.785000px;}
.y164{bottom:761.325000px;}
.y13f{bottom:762.585000px;}
.y40{bottom:763.665000px;}
.y187{bottom:766.725000px;}
.y1a2{bottom:767.985000px;}
.y69{bottom:775.185000px;}
.y12{bottom:779.325000px;}
.y8f{bottom:781.485000px;}
.y163{bottom:782.025000px;}
.y3f{bottom:782.565000px;}
.y13e{bottom:783.285000px;}
.y105{bottom:783.645000px;}
.ydd{bottom:783.825000px;}
.y120{bottom:785.985000px;}
.y68{bottom:795.885000px;}
.y3e{bottom:801.645000px;}
.y11{bottom:801.825000px;}
.y8e{bottom:802.185000px;}
.y162{bottom:802.725000px;}
.y13d{bottom:803.985000px;}
.y186{bottom:805.425000px;}
.y1a1{bottom:806.685000px;}
.y103{bottom:808.140000px;}
.yc1{bottom:814.785000px;}
.y67{bottom:816.585000px;}
.y3d{bottom:820.545000px;}
.y8d{bottom:822.885000px;}
.y11f{bottom:824.325000px;}
.y10{bottom:824.505000px;}
.y13c{bottom:824.685000px;}
.y185{bottom:826.125000px;}
.y101{bottom:832.785000px;}
.y66{bottom:837.285000px;}
.y3c{bottom:839.490000px;}
.y15a{bottom:842.730000px;}
.y161{bottom:842.910000px;}
.y1a0{bottom:845.430000px;}
.y184{bottom:846.870000px;}
.yff{bottom:857.310000px;}
.y65{bottom:858.030000px;}
.y3b{bottom:858.570000px;}
.y8c{bottom:861.630000px;}
.ydc{bottom:863.430000px;}
.y160{bottom:863.610000px;}
.y19f{bottom:866.130000px;}
.yf{bottom:866.490000px;}
.y3a{bottom:877.470000px;}
.y64{bottom:878.730000px;}
.y8b{bottom:882.330000px;}
.yae{bottom:884.130000px;}
.y183{bottom:885.570000px;}
.ye{bottom:888.810000px;}
.y39{bottom:896.550000px;}
.y63{bottom:899.430000px;}
.yfe{bottom:901.230000px;}
.y13b{bottom:902.130000px;}
.y8a{bottom:903.030000px;}
.yad{bottom:904.830000px;}
.y182{bottom:906.270000px;}
.yc{bottom:911.490000px;}
.y38{bottom:915.450000px;}
.yd{bottom:919.050000px;}
.y62{bottom:920.130000px;}
.y13a{bottom:922.830000px;}
.y89{bottom:923.730000px;}
.y15f{bottom:924.270000px;}
.y11e{bottom:925.530000px;}
.y181{bottom:926.970000px;}
.y37{bottom:934.350000px;}
.yfd{bottom:940.110000px;}
.y61{bottom:940.830000px;}
.yac{bottom:943.530000px;}
.y88{bottom:944.430000px;}
.y15e{bottom:944.790000px;}
.y11d{bottom:946.230000px;}
.y36{bottom:953.430000px;}
.yb{bottom:955.230000px;}
.yfc{bottom:960.810000px;}
.y60{bottom:961.530000px;}
.yab{bottom:964.230000px;}
.y87{bottom:965.130000px;}
.y180{bottom:965.670000px;}
.y35{bottom:972.330000px;}
.yfb{bottom:981.510000px;}
.ybc{bottom:981.870000px;}
.y5f{bottom:982.230000px;}
.yaa{bottom:984.930000px;}
.y86{bottom:985.830000px;}
.y17f{bottom:986.370000px;}
.ya{bottom:989.790000px;}
.y34{bottom:991.410000px;}
.yfa{bottom:1002.390000px;}
.y5e{bottom:1002.930000px;}
.ya9{bottom:1005.630000px;}
.y85{bottom:1006.530000px;}
.y33{bottom:1010.310000px;}
.y5d{bottom:1023.630000px;}
.y9{bottom:1024.170000px;}
.y17e{bottom:1024.710000px;}
.ya8{bottom:1026.330000px;}
.y32{bottom:1029.210000px;}
.yf9{bottom:1042.530000px;}
.y5c{bottom:1044.330000px;}
.y84{bottom:1045.590000px;}
.y11c{bottom:1047.030000px;}
.y31{bottom:1048.290000px;}
.yf8{bottom:1063.230000px;}
.y17d{bottom:1063.770000px;}
.y5b{bottom:1065.030000px;}
.yba{bottom:1065.390000px;}
.y30{bottom:1067.190000px;}
.y159{bottom:1067.730000px;}
.y8{bottom:1076.730000px;}
.yf7{bottom:1083.930000px;}
.y17c{bottom:1084.470000px;}
.y5a{bottom:1085.730000px;}
.y2f{bottom:1104.450000px;}
.yf6{bottom:1104.990000px;}
.yb9{bottom:1106.250000px;}
.y59{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h21{height:20.520000px;}
.h18{height:20.685000px;}
.h23{height:20.700000px;}
.h25{height:23.745000px;}
.h27{height:23.760000px;}
.h26{height:23.782500px;}
.h28{height:23.940000px;}
.h10{height:26.995781px;}
.ha{height:36.571289px;}
.h24{height:41.385000px;}
.h22{height:41.400000px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h17{height:50.132812px;}
.h11{height:58.621992px;}
.h2{height:58.651172px;}
.h5{height:58.905000px;}
.h3{height:60.226875px;}
.h1a{height:62.085000px;}
.h1e{height:62.130000px;}
.h12{height:65.010937px;}
.h13{height:68.084282px;}
.h15{height:70.628906px;}
.he{height:70.664062px;}
.hf{height:72.562500px;}
.h14{height:74.004654px;}
.h16{height:76.279219px;}
.hb{height:76.317188px;}
.hd{height:78.367500px;}
.h8{height:82.676953px;}
.h19{height:82.785000px;}
.h1c{height:82.800000px;}
.h20{height:103.521000px;}
.h1b{height:103.522500px;}
.hc{height:105.996094px;}
.h7{height:121.179375px;}
.h1d{height:124.200000px;}
.h1f{height:165.405000px;}
.h9{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:51.300000px;}
.w14{width:55.965000px;}
.w13{width:56.016000px;}
.wa{width:68.391000px;}
.w11{width:70.020000px;}
.we{width:77.025000px;}
.w15{width:93.441000px;}
.w10{width:96.501000px;}
.wd{width:112.356000px;}
.wb{width:113.421000px;}
.w12{width:120.060000px;}
.wf{width:125.661000px;}
.w2{width:136.282500px;}
.w7{width:147.261000px;}
.wc{width:152.640000px;}
.w4{width:172.995000px;}
.w8{width:222.510000px;}
.w9{width:264.981000px;}
.w6{width:426.660000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.740000px;}
.x17{left:9.180000px;}
.x26{left:12.585000px;}
.x20{left:13.851000px;}
.x22{left:15.111000px;}
.x40{left:16.200000px;}
.x30{left:17.445000px;}
.x2c{left:18.900000px;}
.x1f{left:21.051000px;}
.x34{left:23.025000px;}
.x2a{left:24.831000px;}
.x2e{left:34.185000px;}
.x37{left:35.850000px;}
.x31{left:37.065000px;}
.x3f{left:38.685000px;}
.x41{left:41.220000px;}
.x23{left:43.005000px;}
.x1c{left:44.805000px;}
.x36{left:46.830000px;}
.x1d{left:49.305000px;}
.x1e{left:53.085000px;}
.x2{left:55.777500px;}
.x15{left:57.585000px;}
.x29{left:69.105000px;}
.x1a{left:73.965000px;}
.x2b{left:77.745000px;}
.x21{left:80.085000px;}
.x2d{left:82.785000px;}
.x28{left:101.505000px;}
.x14{left:120.465000px;}
.x1{left:127.656000px;}
.xf{left:132.516000px;}
.x19{left:144.750000px;}
.x10{left:148.896000px;}
.x9{left:155.370000px;}
.x4{left:159.330000px;}
.xc{left:178.050000px;}
.xe{left:180.750000px;}
.x2f{left:189.045000px;}
.x39{left:198.765000px;}
.xd{left:236.190000px;}
.xa{left:265.710000px;}
.x16{left:294.375000px;}
.x3a{left:295.995000px;}
.x32{left:303.375000px;}
.x11{left:314.535000px;}
.x13{left:322.455000px;}
.x24{left:328.935000px;}
.x5{left:343.695000px;}
.x12{left:345.135000px;}
.x18{left:346.575000px;}
.x6{left:364.935000px;}
.x3b{left:366.735000px;}
.xb{left:375.915000px;}
.x38{left:380.415000px;}
.x27{left:385.815000px;}
.x3{left:457.275000px;}
.x3c{left:487.515000px;}
.x7{left:542.782500px;}
.x3d{left:544.260000px;}
.x8{left:549.645000px;}
.x33{left:569.820000px;}
.x3e{left:600.960000px;}
.x25{left:609.060000px;}
.x35{left:647.580000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.030720pt;}
.ls8{letter-spacing:-0.015360pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.023040pt;}
.ls14{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls15{letter-spacing:4.640000pt;}
.ls16{letter-spacing:8.960000pt;}
.lsc{letter-spacing:69.248000pt;}
.ls9{letter-spacing:73.231360pt;}
.ws9{word-spacing:-64.000000pt;}
.ws8{word-spacing:-58.880000pt;}
.ws2{word-spacing:-17.295360pt;}
.ws6{word-spacing:-17.272320pt;}
.ws3{word-spacing:-17.264640pt;}
.wsb{word-spacing:-17.249280pt;}
.wse{word-spacing:-16.192000pt;}
.ws10{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.953067pt;}
.ws4{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.416533pt;}
.ws1{word-spacing:-13.280000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws5{word-spacing:0.000000pt;}
._1f{margin-left:-6.528000pt;}
._4{margin-left:-1.218133pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._7{width:3.206400pt;}
._13{width:4.800000pt;}
._6{width:6.331093pt;}
._17{width:7.596160pt;}
._12{width:9.088000pt;}
._f{width:10.560000pt;}
._1a{width:11.776000pt;}
._e{width:12.736000pt;}
._c{width:14.080000pt;}
._19{width:15.662080pt;}
._d{width:17.028267pt;}
._8{width:18.048000pt;}
._18{width:19.707520pt;}
._a{width:21.051093pt;}
._b{width:22.159360pt;}
._1b{width:23.682133pt;}
._10{width:24.960000pt;}
._11{width:25.920000pt;}
._1c{width:26.915627pt;}
._1d{width:27.996373pt;}
._22{width:29.155627pt;}
._1e{width:30.094933pt;}
._9{width:31.040000pt;}
._21{width:32.177067pt;}
._20{width:34.560000pt;}
._16{width:40.256000pt;}
._15{width:41.444480pt;}
._14{width:43.456000pt;}
._23{width:64.640000pt;}
._24{width:65.575253pt;}
._5{width:194.994773pt;}
._2{width:1074.240000pt;}
._3{width:1820.171093pt;}
.fs8{font-size:34.560000pt;}
.fs9{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:3.840000pt;}
.yda{bottom:3.986667pt;}
.ybb{bottom:4.000000pt;}
.y104{bottom:6.546667pt;}
.y100{bottom:6.560000pt;}
.y102{bottom:6.600000pt;}
.y107{bottom:6.720000pt;}
.ye0{bottom:13.280000pt;}
.yd8{bottom:22.386667pt;}
.yc0{bottom:22.400000pt;}
.ycd{bottom:22.426667pt;}
.yc5{bottom:22.440000pt;}
.yc7{bottom:31.520000pt;}
.ybd{bottom:31.680000pt;}
.y7{bottom:39.712000pt;}
.yd7{bottom:40.786667pt;}
.ybf{bottom:40.800000pt;}
.yce{bottom:40.826667pt;}
.yc2{bottom:40.840000pt;}
.yc9{bottom:49.920000pt;}
.y6{bottom:52.032000pt;}
.yd6{bottom:59.186667pt;}
.ybe{bottom:59.200000pt;}
.yc4{bottom:59.240000pt;}
.yd0{bottom:68.320000pt;}
.ycb{bottom:77.600000pt;}
.yd9{bottom:77.626667pt;}
.yc3{bottom:77.640000pt;}
.yd3{bottom:95.840000pt;}
.yca{bottom:96.000000pt;}
.yd2{bottom:114.240000pt;}
.y2e{bottom:116.512000pt;}
.y17b{bottom:119.712000pt;}
.y83{bottom:120.512000pt;}
.y2d{bottom:121.152000pt;}
.y58{bottom:128.992000pt;}
.y19e{bottom:130.272000pt;}
.yd1{bottom:132.640000pt;}
.y2c{bottom:132.672000pt;}
.ydb{bottom:135.386667pt;}
.y11b{bottom:135.866667pt;}
.y17a{bottom:137.946667pt;}
.y82{bottom:138.906667pt;}
.ya7{bottom:141.146667pt;}
.yb8{bottom:143.546667pt;}
.y57{bottom:147.386667pt;}
.y19d{bottom:148.666667pt;}
.yf5{bottom:151.066667pt;}
.y158{bottom:153.786667pt;}
.y11a{bottom:154.266667pt;}
.y2b{bottom:156.346667pt;}
.y81{bottom:157.306667pt;}
.y139{bottom:158.586667pt;}
.y56{bottom:165.786667pt;}
.y19c{bottom:167.066667pt;}
.yd5{bottom:168.200000pt;}
.yf4{bottom:169.466667pt;}
.y2a{bottom:171.706667pt;}
.y157{bottom:172.186667pt;}
.y179{bottom:173.626667pt;}
.ya6{bottom:175.546667pt;}
.y80{bottom:175.706667pt;}
.y138{bottom:176.986667pt;}
.yb7{bottom:178.266667pt;}
.y55{bottom:184.186667pt;}
.y29{bottom:187.066667pt;}
.yf3{bottom:187.866667pt;}
.y119{bottom:188.666667pt;}
.y156{bottom:190.586667pt;}
.y178{bottom:192.026667pt;}
.ya5{bottom:193.946667pt;}
.y137{bottom:195.386667pt;}
.y19b{bottom:201.466667pt;}
.yf2{bottom:206.426667pt;}
.y118{bottom:207.066667pt;}
.y155{bottom:208.986667pt;}
.y7f{bottom:209.786667pt;}
.y177{bottom:210.266667pt;}
.ya4{bottom:212.346667pt;}
.yb6{bottom:212.666667pt;}
.y136{bottom:213.786667pt;}
.y54{bottom:218.586667pt;}
.y28{bottom:219.066667pt;}
.y19a{bottom:219.866667pt;}
.y117{bottom:225.466667pt;}
.y7e{bottom:226.586667pt;}
.y154{bottom:227.386667pt;}
.ya3{bottom:230.746667pt;}
.yb5{bottom:231.066667pt;}
.y135{bottom:232.186667pt;}
.y53{bottom:236.986667pt;}
.y27{bottom:237.466667pt;}
.y199{bottom:238.266667pt;}
.yf1{bottom:241.946667pt;}
.y7d{bottom:243.586667pt;}
.y116{bottom:243.906667pt;}
.y153{bottom:245.826667pt;}
.y176{bottom:245.986667pt;}
.ya2{bottom:249.186667pt;}
.yb4{bottom:249.506667pt;}
.y134{bottom:250.626667pt;}
.y52{bottom:255.426667pt;}
.yd4{bottom:260.866667pt;}
.y152{bottom:264.226667pt;}
.y175{bottom:264.386667pt;}
.ya1{bottom:267.586667pt;}
.yb3{bottom:267.906667pt;}
.y133{bottom:269.026667pt;}
.y198{bottom:272.706667pt;}
.y26{bottom:273.506667pt;}
.y51{bottom:273.826667pt;}
.yf0{bottom:274.786667pt;}
.y7c{bottom:277.026667pt;}
.y115{bottom:278.306667pt;}
.y15d{bottom:279.906667pt;}
.y151{bottom:282.626667pt;}
.y174{bottom:282.786667pt;}
.ya0{bottom:285.986667pt;}
.yb2{bottom:286.306667pt;}
.y132{bottom:287.426667pt;}
.y197{bottom:291.106667pt;}
.y25{bottom:291.906667pt;}
.yef{bottom:293.826667pt;}
.y114{bottom:296.706667pt;}
.y173{bottom:301.186667pt;}
.y9f{bottom:304.386667pt;}
.yb1{bottom:304.706667pt;}
.y131{bottom:305.826667pt;}
.y50{bottom:307.906667pt;}
.y196{bottom:309.506667pt;}
.y24{bottom:310.306667pt;}
.y7b{bottom:312.546667pt;}
.yee{bottom:312.866667pt;}
.y15c{bottom:314.626667pt;}
.y113{bottom:315.106667pt;}
.y150{bottom:317.026667pt;}
.y172{bottom:319.586667pt;}
.y130{bottom:324.226667pt;}
.y23{bottom:328.706667pt;}
.y7a{bottom:331.906667pt;}
.y15b{bottom:333.026667pt;}
.y112{bottom:333.506667pt;}
.ycf{bottom:335.266667pt;}
.yb0{bottom:338.626667pt;}
.y9e{bottom:338.786667pt;}
.y4f{bottom:343.746667pt;}
.y195{bottom:343.906667pt;}
.y22{bottom:347.106667pt;}
.y79{bottom:349.826667pt;}
.y14f{bottom:351.426667pt;}
.y171{bottom:353.666667pt;}
.y12f{bottom:358.626667pt;}
.y194{bottom:362.306667pt;}
.y21{bottom:365.506667pt;}
.y78{bottom:366.786667pt;}
.y111{bottom:367.906667pt;}
.y14e{bottom:369.826667pt;}
.yed{bottom:370.306667pt;}
.yaf{bottom:371.586667pt;}
.y9d{bottom:373.186667pt;}
.y4e{bottom:376.546667pt;}
.y193{bottom:380.706667pt;}
.y20{bottom:383.906667pt;}
.y110{bottom:386.306667pt;}
.y14d{bottom:388.226667pt;}
.y170{bottom:388.386667pt;}
.y9c{bottom:391.586667pt;}
.y12e{bottom:393.026667pt;}
.y77{bottom:400.546667pt;}
.y1f{bottom:402.306667pt;}
.y10f{bottom:404.706667pt;}
.yec{bottom:404.866667pt;}
.y14c{bottom:406.626667pt;}
.y16f{bottom:406.786667pt;}
.y4d{bottom:409.346667pt;}
.y9b{bottom:409.986667pt;}
.y12d{bottom:411.426667pt;}
.y192{bottom:415.106667pt;}
.y1e{bottom:420.706667pt;}
.y10e{bottom:423.106667pt;}
.yeb{bottom:423.266667pt;}
.y14b{bottom:425.026667pt;}
.y16e{bottom:425.186667pt;}
.y4c{bottom:426.306667pt;}
.y12c{bottom:429.826667pt;}
.y191{bottom:433.506667pt;}
.y76{bottom:433.826667pt;}
.y1d{bottom:439.106667pt;}
.yea{bottom:441.666667pt;}
.y4b{bottom:443.106667pt;}
.y14a{bottom:443.426667pt;}
.y16d{bottom:443.586667pt;}
.y9a{bottom:444.386667pt;}
.y12b{bottom:448.226667pt;}
.y75{bottom:452.226667pt;}
.y1c{bottom:457.506667pt;}
.ye9{bottom:460.066667pt;}
.y149{bottom:461.826667pt;}
.y16c{bottom:461.986667pt;}
.y12a{bottom:466.626667pt;}
.y190{bottom:467.906667pt;}
.y1b{bottom:475.906667pt;}
.y4a{bottom:476.066667pt;}
.ye8{bottom:478.466667pt;}
.y99{bottom:478.786667pt;}
.y148{bottom:480.226667pt;}
.ycc{bottom:483.106667pt;}
.y129{bottom:485.026667pt;}
.y18f{bottom:486.306667pt;}
.y74{bottom:486.626667pt;}
.y49{bottom:493.026667pt;}
.y1a{bottom:494.333333pt;}
.y16b{bottom:496.413333pt;}
.ye7{bottom:496.893333pt;}
.y98{bottom:497.213333pt;}
.y128{bottom:503.453333pt;}
.y18e{bottom:504.733333pt;}
.y73{bottom:505.053333pt;}
.y48{bottom:510.813333pt;}
.y19{bottom:512.733333pt;}
.y147{bottom:514.653333pt;}
.y16a{bottom:514.813333pt;}
.y97{bottom:515.453333pt;}
.y127{bottom:521.853333pt;}
.y72{bottom:523.453333pt;}
.y47{bottom:527.773333pt;}
.y18{bottom:531.133333pt;}
.ye6{bottom:531.453333pt;}
.y146{bottom:533.053333pt;}
.y169{bottom:533.213333pt;}
.yc8{bottom:538.973333pt;}
.y18d{bottom:539.133333pt;}
.y71{bottom:541.853333pt;}
.y10d{bottom:543.773333pt;}
.y17{bottom:549.533333pt;}
.y96{bottom:549.853333pt;}
.y168{bottom:551.613333pt;}
.y126{bottom:556.253333pt;}
.y18c{bottom:557.533333pt;}
.y70{bottom:560.253333pt;}
.y46{bottom:561.533333pt;}
.ye5{bottom:563.933333pt;}
.y10c{bottom:565.533333pt;}
.y145{bottom:567.453333pt;}
.y16{bottom:567.933333pt;}
.y95{bottom:568.253333pt;}
.y18b{bottom:575.933333pt;}
.y6f{bottom:578.653333pt;}
.ye4{bottom:582.973333pt;}
.y144{bottom:585.853333pt;}
.y167{bottom:586.013333pt;}
.y15{bottom:586.333333pt;}
.y94{bottom:586.653333pt;}
.y10b{bottom:587.453333pt;}
.y125{bottom:590.653333pt;}
.y45{bottom:594.493333pt;}
.y6e{bottom:597.053333pt;}
.ye3{bottom:602.013333pt;}
.y143{bottom:604.253333pt;}
.y166{bottom:604.413333pt;}
.y93{bottom:605.053333pt;}
.y124{bottom:609.053333pt;}
.y10a{bottom:609.213333pt;}
.y18a{bottom:610.333333pt;}
.y44{bottom:611.293333pt;}
.y1a4{bottom:613.853333pt;}
.y6d{bottom:615.453333pt;}
.y14{bottom:620.413333pt;}
.ye2{bottom:621.053333pt;}
.y142{bottom:622.653333pt;}
.y165{bottom:622.813333pt;}
.y123{bottom:627.453333pt;}
.y43{bottom:628.253333pt;}
.y189{bottom:628.733333pt;}
.y109{bottom:631.133333pt;}
.y6c{bottom:633.853333pt;}
.y92{bottom:639.453333pt;}
.ye1{bottom:640.093333pt;}
.y141{bottom:641.053333pt;}
.y42{bottom:645.053333pt;}
.y122{bottom:645.853333pt;}
.y1a3{bottom:648.253333pt;}
.yc6{bottom:650.013333pt;}
.y6b{bottom:652.253333pt;}
.y108{bottom:652.893333pt;}
.y13{bottom:656.413333pt;}
.y91{bottom:657.853333pt;}
.ydf{bottom:659.133333pt;}
.y140{bottom:659.453333pt;}
.y41{bottom:661.853333pt;}
.y188{bottom:663.133333pt;}
.y121{bottom:664.253333pt;}
.y6a{bottom:670.653333pt;}
.y106{bottom:674.653333pt;}
.y90{bottom:676.253333pt;}
.y164{bottom:676.733333pt;}
.y13f{bottom:677.853333pt;}
.y40{bottom:678.813333pt;}
.y187{bottom:681.533333pt;}
.y1a2{bottom:682.653333pt;}
.y69{bottom:689.053333pt;}
.y12{bottom:692.733333pt;}
.y8f{bottom:694.653333pt;}
.y163{bottom:695.133333pt;}
.y3f{bottom:695.613333pt;}
.y13e{bottom:696.253333pt;}
.y105{bottom:696.573333pt;}
.ydd{bottom:696.733333pt;}
.y120{bottom:698.653333pt;}
.y68{bottom:707.453333pt;}
.y3e{bottom:712.573333pt;}
.y11{bottom:712.733333pt;}
.y8e{bottom:713.053333pt;}
.y162{bottom:713.533333pt;}
.y13d{bottom:714.653333pt;}
.y186{bottom:715.933333pt;}
.y1a1{bottom:717.053333pt;}
.y103{bottom:718.346667pt;}
.yc1{bottom:724.253333pt;}
.y67{bottom:725.853333pt;}
.y3d{bottom:729.373333pt;}
.y8d{bottom:731.453333pt;}
.y11f{bottom:732.733333pt;}
.y10{bottom:732.893333pt;}
.y13c{bottom:733.053333pt;}
.y185{bottom:734.333333pt;}
.y101{bottom:740.253333pt;}
.y66{bottom:744.253333pt;}
.y3c{bottom:746.213333pt;}
.y15a{bottom:749.093333pt;}
.y161{bottom:749.253333pt;}
.y1a0{bottom:751.493333pt;}
.y184{bottom:752.773333pt;}
.yff{bottom:762.053333pt;}
.y65{bottom:762.693333pt;}
.y3b{bottom:763.173333pt;}
.y8c{bottom:765.893333pt;}
.ydc{bottom:767.493333pt;}
.y160{bottom:767.653333pt;}
.y19f{bottom:769.893333pt;}
.yf{bottom:770.213333pt;}
.y3a{bottom:779.973333pt;}
.y64{bottom:781.093333pt;}
.y8b{bottom:784.293333pt;}
.yae{bottom:785.893333pt;}
.y183{bottom:787.173333pt;}
.ye{bottom:790.053333pt;}
.y39{bottom:796.933333pt;}
.y63{bottom:799.493333pt;}
.yfe{bottom:801.093333pt;}
.y13b{bottom:801.893333pt;}
.y8a{bottom:802.693333pt;}
.yad{bottom:804.293333pt;}
.y182{bottom:805.573333pt;}
.yc{bottom:810.213333pt;}
.y38{bottom:813.733333pt;}
.yd{bottom:816.933333pt;}
.y62{bottom:817.893333pt;}
.y13a{bottom:820.293333pt;}
.y89{bottom:821.093333pt;}
.y15f{bottom:821.573333pt;}
.y11e{bottom:822.693333pt;}
.y181{bottom:823.973333pt;}
.y37{bottom:830.533333pt;}
.yfd{bottom:835.653333pt;}
.y61{bottom:836.293333pt;}
.yac{bottom:838.693333pt;}
.y88{bottom:839.493333pt;}
.y15e{bottom:839.813333pt;}
.y11d{bottom:841.093333pt;}
.y36{bottom:847.493333pt;}
.yb{bottom:849.093333pt;}
.yfc{bottom:854.053333pt;}
.y60{bottom:854.693333pt;}
.yab{bottom:857.093333pt;}
.y87{bottom:857.893333pt;}
.y180{bottom:858.373333pt;}
.y35{bottom:864.293333pt;}
.yfb{bottom:872.453333pt;}
.ybc{bottom:872.773333pt;}
.y5f{bottom:873.093333pt;}
.yaa{bottom:875.493333pt;}
.y86{bottom:876.293333pt;}
.y17f{bottom:876.773333pt;}
.ya{bottom:879.813333pt;}
.y34{bottom:881.253333pt;}
.yfa{bottom:891.013333pt;}
.y5e{bottom:891.493333pt;}
.ya9{bottom:893.893333pt;}
.y85{bottom:894.693333pt;}
.y33{bottom:898.053333pt;}
.y5d{bottom:909.893333pt;}
.y9{bottom:910.373333pt;}
.y17e{bottom:910.853333pt;}
.ya8{bottom:912.293333pt;}
.y32{bottom:914.853333pt;}
.yf9{bottom:926.693333pt;}
.y5c{bottom:928.293333pt;}
.y84{bottom:929.413333pt;}
.y11c{bottom:930.693333pt;}
.y31{bottom:931.813333pt;}
.yf8{bottom:945.093333pt;}
.y17d{bottom:945.573333pt;}
.y5b{bottom:946.693333pt;}
.yba{bottom:947.013333pt;}
.y30{bottom:948.613333pt;}
.y159{bottom:949.093333pt;}
.y8{bottom:957.093333pt;}
.yf7{bottom:963.493333pt;}
.y17c{bottom:963.973333pt;}
.y5a{bottom:965.093333pt;}
.y2f{bottom:981.733333pt;}
.yf6{bottom:982.213333pt;}
.yb9{bottom:983.333333pt;}
.y59{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h21{height:18.240000pt;}
.h18{height:18.386667pt;}
.h23{height:18.400000pt;}
.h25{height:21.106667pt;}
.h27{height:21.120000pt;}
.h26{height:21.140000pt;}
.h28{height:21.280000pt;}
.h10{height:23.996250pt;}
.ha{height:32.507812pt;}
.h24{height:36.786667pt;}
.h22{height:36.800000pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h17{height:44.562500pt;}
.h11{height:52.108438pt;}
.h2{height:52.134375pt;}
.h5{height:52.360000pt;}
.h3{height:53.535000pt;}
.h1a{height:55.186667pt;}
.h1e{height:55.226667pt;}
.h12{height:57.787500pt;}
.h13{height:60.519362pt;}
.h15{height:62.781250pt;}
.he{height:62.812500pt;}
.hf{height:64.500000pt;}
.h14{height:65.781915pt;}
.h16{height:67.803750pt;}
.hb{height:67.837500pt;}
.hd{height:69.660000pt;}
.h8{height:73.490625pt;}
.h19{height:73.586667pt;}
.h1c{height:73.600000pt;}
.h20{height:92.018667pt;}
.h1b{height:92.020000pt;}
.hc{height:94.218750pt;}
.h7{height:107.715000pt;}
.h1d{height:110.400000pt;}
.h1f{height:147.026667pt;}
.h9{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:45.600000pt;}
.w14{width:49.746667pt;}
.w13{width:49.792000pt;}
.wa{width:60.792000pt;}
.w11{width:62.240000pt;}
.we{width:68.466667pt;}
.w15{width:83.058667pt;}
.w10{width:85.778667pt;}
.wd{width:99.872000pt;}
.wb{width:100.818667pt;}
.w12{width:106.720000pt;}
.wf{width:111.698667pt;}
.w2{width:121.140000pt;}
.w7{width:130.898667pt;}
.wc{width:135.680000pt;}
.w4{width:153.773333pt;}
.w8{width:197.786667pt;}
.w9{width:235.538667pt;}
.w6{width:379.253333pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.880000pt;}
.x17{left:8.160000pt;}
.x26{left:11.186667pt;}
.x20{left:12.312000pt;}
.x22{left:13.432000pt;}
.x40{left:14.400000pt;}
.x30{left:15.506667pt;}
.x2c{left:16.800000pt;}
.x1f{left:18.712000pt;}
.x34{left:20.466667pt;}
.x2a{left:22.072000pt;}
.x2e{left:30.386667pt;}
.x37{left:31.866667pt;}
.x31{left:32.946667pt;}
.x3f{left:34.386667pt;}
.x41{left:36.640000pt;}
.x23{left:38.226667pt;}
.x1c{left:39.826667pt;}
.x36{left:41.626667pt;}
.x1d{left:43.826667pt;}
.x1e{left:47.186667pt;}
.x2{left:49.580000pt;}
.x15{left:51.186667pt;}
.x29{left:61.426667pt;}
.x1a{left:65.746667pt;}
.x2b{left:69.106667pt;}
.x21{left:71.186667pt;}
.x2d{left:73.586667pt;}
.x28{left:90.226667pt;}
.x14{left:107.080000pt;}
.x1{left:113.472000pt;}
.xf{left:117.792000pt;}
.x19{left:128.666667pt;}
.x10{left:132.352000pt;}
.x9{left:138.106667pt;}
.x4{left:141.626667pt;}
.xc{left:158.266667pt;}
.xe{left:160.666667pt;}
.x2f{left:168.040000pt;}
.x39{left:176.680000pt;}
.xd{left:209.946667pt;}
.xa{left:236.186667pt;}
.x16{left:261.666667pt;}
.x3a{left:263.106667pt;}
.x32{left:269.666667pt;}
.x11{left:279.586667pt;}
.x13{left:286.626667pt;}
.x24{left:292.386667pt;}
.x5{left:305.506667pt;}
.x12{left:306.786667pt;}
.x18{left:308.066667pt;}
.x6{left:324.386667pt;}
.x3b{left:325.986667pt;}
.xb{left:334.146667pt;}
.x38{left:338.146667pt;}
.x27{left:342.946667pt;}
.x3{left:406.466667pt;}
.x3c{left:433.346667pt;}
.x7{left:482.473333pt;}
.x3d{left:483.786667pt;}
.x8{left:488.573333pt;}
.x33{left:506.506667pt;}
.x3e{left:534.186667pt;}
.x25{left:541.386667pt;}
.x35{left:575.626667pt;}
}




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