
    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_50fa0d17806dc9a9d21cdfb0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_59377dade58c83a63984c42d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d3ae3029fdfc06baa94d9e74.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f2851f856e20efa86a059b07.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_af428987c282b9869a3c7fce.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_6012c6ceac179fe2f71ca6ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773926;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);}
.v3{vertical-align:-69.120000px;}
.v4{vertical-align:-65.520000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls13{letter-spacing:-0.774000px;}
.ls7{letter-spacing:-0.540000px;}
.lsf{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.269400px;}
.ls26{letter-spacing:-0.223800px;}
.ls28{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.206400px;}
.ls1d{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls20{letter-spacing:-0.045360px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.033840px;}
.ls14{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.181200px;}
.ls1b{letter-spacing:0.181440px;}
.ls1e{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.206640px;}
.ls6{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.306600px;}
.ls18{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.540000px;}
.ls12{letter-spacing:1.620000px;}
.ls17{letter-spacing:6.660000px;}
.lsc{letter-spacing:7.380000px;}
.ls10{letter-spacing:8.100000px;}
.ls19{letter-spacing:10.260000px;}
.ls23{letter-spacing:10.980000px;}
.ls22{letter-spacing:11.880000px;}
.ls25{letter-spacing:14.760000px;}
.ls21{letter-spacing:64.980000px;}
.ls3{letter-spacing:66.162720px;}
.ls24{letter-spacing:67.860000px;}
.ls16{letter-spacing:201.036000px;}
.lsd{letter-spacing:260.076000px;}
.lsb{letter-spacing:296.076000px;}
.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;}
}
.ws14{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.246600px;}
.ws9{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.146400px;}
.wse{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.733600px;}
.ws0{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.479800px;}
.wsf{word-spacing:-14.166000px;}
.ws5{word-spacing:-13.860000px;}
.ws19{word-spacing:-13.608000px;}
.ws1a{word-spacing:-13.284000px;}
.wsb{word-spacing:-12.420000px;}
.ws15{word-spacing:-12.241200px;}
.wsa{word-spacing:-12.060000px;}
.ws17{word-spacing:-12.014640px;}
.ws18{word-spacing:-11.836200px;}
.wsc{word-spacing:-11.790600px;}
.ws16{word-spacing:-11.700000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:-7.560000px;}
.ws6{word-spacing:0.000000px;}
._11{margin-left:-7.020000px;}
._14{margin-left:-4.594080px;}
._10{margin-left:-3.525840px;}
._f{margin-left:-2.151360px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._8{width:3.942000px;}
._d{width:5.057280px;}
._4{width:6.840000px;}
._7{width:8.026560px;}
._c{width:9.285840px;}
._5{width:10.638000px;}
._6{width:12.064080px;}
._15{width:13.236720px;}
._24{width:14.989200px;}
._b{width:16.010880px;}
._a{width:17.178960px;}
._9{width:18.360000px;}
._e{width:19.484880px;}
._1c{width:20.617200px;}
._1b{width:24.163440px;}
._1a{width:25.240800px;}
._1f{width:26.873280px;}
._1d{width:30.136080px;}
._20{width:33.506640px;}
._23{width:35.708160px;}
._21{width:36.793440px;}
._1e{width:50.119920px;}
._25{width:51.694560px;}
._26{width:52.860000px;}
._29{width:57.186000px;}
._22{width:59.828160px;}
._27{width:65.443920px;}
._28{width:68.346000px;}
._19{width:94.388400px;}
._18{width:203.215680px;}
._16{width:509.086560px;}
._12{width:736.380000px;}
._17{width:865.686720px;}
._13{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y88{bottom:2.520000px;}
.y97{bottom:2.565000px;}
.y28{bottom:3.060000px;}
.y11{bottom:3.240000px;}
.y115{bottom:3.780000px;}
.y1a8{bottom:4.500000px;}
.y1ae{bottom:4.680000px;}
.y30{bottom:9.000000px;}
.y36{bottom:12.060000px;}
.yca{bottom:16.200000px;}
.y27{bottom:18.540000px;}
.y16{bottom:20.520000px;}
.y112{bottom:20.565000px;}
.y113{bottom:21.105000px;}
.y35{bottom:29.340000px;}
.yc6{bottom:31.680000px;}
.y1a6{bottom:33.300000px;}
.y26{bottom:34.020000px;}
.y15{bottom:37.620000px;}
.y11b{bottom:37.800000px;}
.y34{bottom:46.620000px;}
.y1a5{bottom:48.780000px;}
.y25{bottom:49.500000px;}
.y14{bottom:54.900000px;}
.y11a{bottom:55.080000px;}
.y33{bottom:63.900000px;}
.y1a4{bottom:64.260000px;}
.y24{bottom:65.160000px;}
.y2f{bottom:65.880000px;}
.y119{bottom:72.360000px;}
.y1a3{bottom:79.920000px;}
.y23{bottom:80.640000px;}
.y13{bottom:81.180000px;}
.y5{bottom:88.200000px;}
.y32{bottom:90.180000px;}
.y1b4{bottom:95.265000px;}
.y1a2{bottom:95.400000px;}
.y22{bottom:96.120000px;}
.y4b{bottom:105.480000px;}
.y2e{bottom:106.950000px;}
.y1ac{bottom:110.700000px;}
.y1a1{bottom:110.880000px;}
.y1b3{bottom:110.925000px;}
.y21{bottom:111.600000px;}
.y142{bottom:112.140000px;}
.ycd{bottom:118.440000px;}
.y4a{bottom:122.580000px;}
.y2d{bottom:124.230000px;}
.y49{bottom:125.820000px;}
.y141{bottom:126.000000px;}
.y1a0{bottom:126.360000px;}
.y1b2{bottom:126.405000px;}
.y20{bottom:127.260000px;}
.y105{bottom:128.880000px;}
.ycc{bottom:135.756000px;}
.y140{bottom:139.716000px;}
.y2c{bottom:141.330000px;}
.y1ab{bottom:141.840000px;}
.y1b1{bottom:141.885000px;}
.y19f{bottom:142.020000px;}
.y1f{bottom:142.740000px;}
.y48{bottom:143.136000px;}
.y104{bottom:146.196000px;}
.yc9{bottom:150.510000px;}
.y13f{bottom:153.570000px;}
.y1aa{bottom:157.320000px;}
.y1b0{bottom:157.365000px;}
.y19e{bottom:157.500000px;}
.y1e{bottom:158.220000px;}
.y2b{bottom:158.610000px;}
.y47{bottom:160.410000px;}
.y85{bottom:162.750000px;}
.y103{bottom:163.470000px;}
.ycb{bottom:164.190000px;}
.y189{bottom:165.450000px;}
.y13e{bottom:167.430000px;}
.y1d{bottom:173.700000px;}
.y2a{bottom:175.890000px;}
.y46{bottom:177.690000px;}
.yc5{bottom:178.770000px;}
.y188{bottom:179.130000px;}
.y84{bottom:179.850000px;}
.y102{bottom:180.750000px;}
.y13d{bottom:181.110000px;}
.y1c{bottom:189.180000px;}
.y187{bottom:192.990000px;}
.yc8{bottom:193.350000px;}
.y45{bottom:194.970000px;}
.y83{bottom:197.130000px;}
.y101{bottom:197.850000px;}
.y29{bottom:202.170000px;}
.y1b{bottom:204.840000px;}
.y186{bottom:206.850000px;}
.yc7{bottom:207.930000px;}
.y13c{bottom:208.830000px;}
.y44{bottom:212.250000px;}
.y82{bottom:214.410000px;}
.y100{bottom:215.130000px;}
.y1a{bottom:220.320000px;}
.y185{bottom:220.530000px;}
.y13b{bottom:222.510000px;}
.y43{bottom:229.350000px;}
.y81{bottom:231.690000px;}
.yff{bottom:232.410000px;}
.y184{bottom:234.390000px;}
.y13a{bottom:236.370000px;}
.yc4{bottom:242.130000px;}
.y42{bottom:246.630000px;}
.y183{bottom:248.250000px;}
.y80{bottom:248.970000px;}
.yfe{bottom:249.690000px;}
.y139{bottom:250.230000px;}
.yc3{bottom:255.990000px;}
.y1b6{bottom:261.030000px;}
.y182{bottom:261.930000px;}
.y41{bottom:263.910000px;}
.y7f{bottom:266.250000px;}
.yfd{bottom:266.970000px;}
.yc2{bottom:268.050000px;}
.y181{bottom:275.790000px;}
.y138{bottom:277.770000px;}
.y1b5{bottom:278.310000px;}
.y40{bottom:281.190000px;}
.yc1{bottom:281.910000px;}
.y7e{bottom:283.350000px;}
.yfc{bottom:284.250000px;}
.y180{bottom:289.650000px;}
.y137{bottom:291.630000px;}
.y1af{bottom:292.350000px;}
.yc0{bottom:295.590000px;}
.y3f{bottom:298.470000px;}
.y7d{bottom:300.630000px;}
.yfb{bottom:301.350000px;}
.y17f{bottom:303.330000px;}
.y136{bottom:305.310000px;}
.y18{bottom:307.110000px;}
.ybf{bottom:309.450000px;}
.y3e{bottom:315.750000px;}
.y17e{bottom:317.190000px;}
.y7c{bottom:317.910000px;}
.yfa{bottom:318.630000px;}
.y135{bottom:319.170000px;}
.ybe{bottom:323.310000px;}
.y17d{bottom:331.050000px;}
.y3d{bottom:332.850000px;}
.y134{bottom:333.030000px;}
.y7b{bottom:335.190000px;}
.yf9{bottom:335.910000px;}
.ybd{bottom:336.990000px;}
.y17c{bottom:344.730000px;}
.y133{bottom:346.710000px;}
.y3c{bottom:350.130000px;}
.ybc{bottom:350.850000px;}
.y7a{bottom:352.470000px;}
.yf8{bottom:353.190000px;}
.y17b{bottom:358.590000px;}
.y132{bottom:360.570000px;}
.ybb{bottom:364.710000px;}
.y3b{bottom:367.410000px;}
.y79{bottom:369.750000px;}
.yf7{bottom:370.470000px;}
.y17a{bottom:372.450000px;}
.y131{bottom:374.430000px;}
.yba{bottom:378.390000px;}
.y3a{bottom:384.690000px;}
.y179{bottom:386.130000px;}
.y78{bottom:386.850000px;}
.yf6{bottom:387.795000px;}
.y130{bottom:388.155000px;}
.yb9{bottom:392.295000px;}
.y178{bottom:400.035000px;}
.y39{bottom:402.015000px;}
.y77{bottom:404.175000px;}
.yf5{bottom:404.895000px;}
.yb8{bottom:406.155000px;}
.y177{bottom:413.895000px;}
.y12f{bottom:415.875000px;}
.y38{bottom:419.115000px;}
.yb7{bottom:419.835000px;}
.y76{bottom:421.455000px;}
.yf4{bottom:422.175000px;}
.y176{bottom:427.575000px;}
.y12e{bottom:429.555000px;}
.yb6{bottom:433.695000px;}
.y37{bottom:436.395000px;}
.y75{bottom:438.735000px;}
.yf3{bottom:439.455000px;}
.y175{bottom:441.435000px;}
.y12d{bottom:443.415000px;}
.yb5{bottom:447.555000px;}
.y31{bottom:452.775000px;}
.y174{bottom:455.295000px;}
.y74{bottom:456.015000px;}
.yf2{bottom:456.735000px;}
.y12c{bottom:457.275000px;}
.yb4{bottom:461.235000px;}
.y1ad{bottom:463.395000px;}
.y173{bottom:468.975000px;}
.y12b{bottom:471.675000px;}
.y73{bottom:473.115000px;}
.yf1{bottom:474.015000px;}
.yb3{bottom:475.095000px;}
.y1a9{bottom:480.675000px;}
.y172{bottom:482.835000px;}
.y12a{bottom:488.235000px;}
.yb2{bottom:488.775000px;}
.y72{bottom:490.395000px;}
.yf0{bottom:491.115000px;}
.y171{bottom:496.695000px;}
.y129{bottom:502.095000px;}
.yb1{bottom:502.635000px;}
.y71{bottom:507.675000px;}
.yef{bottom:508.395000px;}
.y170{bottom:510.375000px;}
.yb0{bottom:516.495000px;}
.y16f{bottom:524.235000px;}
.y70{bottom:524.955000px;}
.yee{bottom:525.675000px;}
.yaf{bottom:530.175000px;}
.y128{bottom:533.775000px;}
.y16e{bottom:538.095000px;}
.y6f{bottom:542.235000px;}
.yed{bottom:542.955000px;}
.yae{bottom:544.035000px;}
.y127{bottom:550.335000px;}
.y16d{bottom:551.775000px;}
.yad{bottom:557.895000px;}
.y6e{bottom:559.515000px;}
.yec{bottom:560.235000px;}
.y126{bottom:564.195000px;}
.y16c{bottom:565.635000px;}
.y17{bottom:566.715000px;}
.yac{bottom:571.575000px;}
.y6d{bottom:576.615000px;}
.yeb{bottom:577.515000px;}
.y125{bottom:578.595000px;}
.y16b{bottom:579.495000px;}
.yab{bottom:585.435000px;}
.y16a{bottom:593.175000px;}
.y6c{bottom:593.895000px;}
.yea{bottom:594.615000px;}
.y124{bottom:595.875000px;}
.yaa{bottom:599.295000px;}
.y169{bottom:607.035000px;}
.y6b{bottom:611.175000px;}
.ye9{bottom:611.895000px;}
.ya9{bottom:612.975000px;}
.y123{bottom:613.155000px;}
.y168{bottom:620.895000px;}
.ya8{bottom:626.835000px;}
.y6a{bottom:628.455000px;}
.ye8{bottom:629.175000px;}
.y122{bottom:630.435000px;}
.y167{bottom:634.575000px;}
.ya7{bottom:641.445000px;}
.y69{bottom:645.765000px;}
.ye7{bottom:646.485000px;}
.y121{bottom:647.745000px;}
.y166{bottom:648.465000px;}
.y1a7{bottom:651.705000px;}
.y19{bottom:654.945000px;}
.ya6{bottom:659.265000px;}
.y165{bottom:662.325000px;}
.y68{bottom:663.045000px;}
.ye6{bottom:663.765000px;}
.y120{bottom:664.845000px;}
.y19d{bottom:668.805000px;}
.y164{bottom:676.005000px;}
.y67{bottom:680.145000px;}
.ye5{bottom:681.045000px;}
.y11f{bottom:682.125000px;}
.y163{bottom:689.865000px;}
.ya5{bottom:693.645000px;}
.y66{bottom:697.425000px;}
.ye4{bottom:698.145000px;}
.y11e{bottom:699.405000px;}
.y162{bottom:703.725000px;}
.ya4{bottom:710.925000px;}
.y65{bottom:714.705000px;}
.ye3{bottom:715.425000px;}
.y11d{bottom:715.965000px;}
.y161{bottom:717.405000px;}
.ya3{bottom:725.685000px;}
.y11c{bottom:729.825000px;}
.y160{bottom:731.265000px;}
.y64{bottom:731.985000px;}
.ye2{bottom:732.705000px;}
.ya2{bottom:739.545000px;}
.y118{bottom:740.985000px;}
.y15f{bottom:745.125000px;}
.y63{bottom:749.265000px;}
.ye1{bottom:749.985000px;}
.ya1{bottom:753.405000px;}
.y15e{bottom:758.805000px;}
.y62{bottom:766.545000px;}
.ya0{bottom:767.085000px;}
.ye0{bottom:767.265000px;}
.y15d{bottom:772.665000px;}
.y9f{bottom:780.945000px;}
.y61{bottom:783.645000px;}
.ydf{bottom:784.545000px;}
.y15c{bottom:786.525000px;}
.y12{bottom:792.645000px;}
.y9e{bottom:794.805000px;}
.y15b{bottom:800.205000px;}
.y60{bottom:800.925000px;}
.yde{bottom:801.645000px;}
.y9d{bottom:808.485000px;}
.y15a{bottom:814.065000px;}
.y5f{bottom:818.205000px;}
.ydd{bottom:818.925000px;}
.y9c{bottom:822.345000px;}
.y159{bottom:827.745000px;}
.y117{bottom:830.445000px;}
.y5e{bottom:835.485000px;}
.y9b{bottom:836.025000px;}
.ydc{bottom:836.205000px;}
.y158{bottom:841.605000px;}
.y19c{bottom:843.045000px;}
.y116{bottom:845.205000px;}
.y9a{bottom:849.885000px;}
.y5d{bottom:852.765000px;}
.ydb{bottom:853.485000px;}
.y157{bottom:855.465000px;}
.y19b{bottom:860.325000px;}
.y114{bottom:862.485000px;}
.y99{bottom:863.745000px;}
.y156{bottom:869.145000px;}
.y5c{bottom:869.865000px;}
.yda{bottom:870.765000px;}
.y98{bottom:877.425000px;}
.y19a{bottom:877.605000px;}
.y111{bottom:879.765000px;}
.y155{bottom:883.005000px;}
.y5b{bottom:887.145000px;}
.yd9{bottom:887.865000px;}
.y96{bottom:891.285000px;}
.y199{bottom:894.930000px;}
.y154{bottom:896.910000px;}
.y10{bottom:897.630000px;}
.y5a{bottom:904.470000px;}
.y95{bottom:905.190000px;}
.y153{bottom:910.590000px;}
.y198{bottom:911.490000px;}
.y110{bottom:915.090000px;}
.y94{bottom:919.770000px;}
.y59{bottom:921.750000px;}
.yd8{bottom:922.470000px;}
.y152{bottom:924.450000px;}
.y197{bottom:925.170000px;}
.yf{bottom:929.310000px;}
.y10f{bottom:936.330000px;}
.y151{bottom:938.310000px;}
.y58{bottom:939.030000px;}
.yd7{bottom:939.750000px;}
.ye{bottom:946.590000px;}
.y150{bottom:951.990000px;}
.y196{bottom:952.890000px;}
.y10e{bottom:953.610000px;}
.y93{bottom:954.690000px;}
.y57{bottom:956.310000px;}
.yd6{bottom:957.030000px;}
.y14f{bottom:965.850000px;}
.y195{bottom:966.570000px;}
.yd{bottom:967.650000px;}
.y10d{bottom:970.710000px;}
.y92{bottom:971.970000px;}
.y56{bottom:973.410000px;}
.yd5{bottom:974.310000px;}
.y14e{bottom:979.710000px;}
.y194{bottom:980.430000px;}
.yc{bottom:981.510000px;}
.y91{bottom:986.730000px;}
.y10c{bottom:987.990000px;}
.y55{bottom:990.690000px;}
.yd4{bottom:991.410000px;}
.y14d{bottom:993.390000px;}
.y193{bottom:994.290000px;}
.yb{bottom:995.190000px;}
.y90{bottom:1000.590000px;}
.y10b{bottom:1004.550000px;}
.ya{bottom:1005.270000px;}
.y14c{bottom:1007.250000px;}
.y54{bottom:1007.970000px;}
.yd3{bottom:1008.690000px;}
.y8f{bottom:1014.270000px;}
.y10a{bottom:1018.410000px;}
.y14b{bottom:1021.110000px;}
.y192{bottom:1021.830000px;}
.y9{bottom:1022.550000px;}
.y53{bottom:1025.250000px;}
.yd2{bottom:1025.970000px;}
.y8e{bottom:1028.130000px;}
.y109{bottom:1032.810000px;}
.y14a{bottom:1034.790000px;}
.y191{bottom:1035.690000px;}
.y8{bottom:1039.830000px;}
.y8d{bottom:1041.990000px;}
.y52{bottom:1042.530000px;}
.yd1{bottom:1043.250000px;}
.y149{bottom:1048.650000px;}
.y190{bottom:1049.370000px;}
.y108{bottom:1050.090000px;}
.y8c{bottom:1055.670000px;}
.y7{bottom:1059.090000px;}
.y51{bottom:1059.810000px;}
.yd0{bottom:1060.530000px;}
.y148{bottom:1062.510000px;}
.y18f{bottom:1063.230000px;}
.y107{bottom:1066.650000px;}
.y8b{bottom:1069.530000px;}
.y147{bottom:1076.190000px;}
.y50{bottom:1076.910000px;}
.y18e{bottom:1077.090000px;}
.ycf{bottom:1077.810000px;}
.y106{bottom:1080.510000px;}
.y8a{bottom:1083.390000px;}
.y6{bottom:1086.630000px;}
.y146{bottom:1090.050000px;}
.y18d{bottom:1090.770000px;}
.y4f{bottom:1094.190000px;}
.yce{bottom:1094.910000px;}
.y89{bottom:1097.070000px;}
.y145{bottom:1103.910000px;}
.y18c{bottom:1104.630000px;}
.y4e{bottom:1111.470000px;}
.y87{bottom:1111.650000px;}
.y4{bottom:1112.190000px;}
.y144{bottom:1117.590000px;}
.y18b{bottom:1118.490000px;}
.y4d{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y143{bottom:1131.450000px;}
.y18a{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y86{bottom:1160.640000px;}
.y4c{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h17{height:13.680000px;}
.h19{height:13.680150px;}
.h15{height:13.860000px;}
.h18{height:13.896000px;}
.h13{height:17.100000px;}
.h14{height:17.280000px;}
.h7{height:26.280000px;}
.h1b{height:27.540000px;}
.h6{height:29.678906px;}
.h1d{height:34.596000px;}
.h1a{height:42.840000px;}
.h20{height:47.321367px;}
.h16{height:47.344922px;}
.hd{height:48.410156px;}
.h1f{height:48.616875px;}
.h10{height:52.971680px;}
.hc{height:52.998047px;}
.h1c{height:53.573906px;}
.h22{height:54.421875px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h12{height:62.211094px;}
.h8{height:70.664062px;}
.h1e{height:86.220000px;}
.hf{height:87.516000px;}
.h5{height:96.508125px;}
.h9{height:104.256000px;}
.h11{height:113.220000px;}
.h21{height:171.000000px;}
.h23{height:171.030000px;}
.he{height:225.210000px;}
.hb{height:241.950000px;}
.ha{height:330.195000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.240000px;}
.w8{width:29.880000px;}
.w7{width:30.060000px;}
.w17{width:34.200000px;}
.w15{width:34.236000px;}
.w20{width:35.100000px;}
.w1b{width:35.280000px;}
.w1f{width:35.316000px;}
.w1c{width:35.640000px;}
.w21{width:36.036000px;}
.w1d{width:36.180000px;}
.w22{width:36.360000px;}
.w23{width:36.540000px;}
.w1e{width:36.720000px;}
.w16{width:37.260000px;}
.w19{width:40.140000px;}
.w12{width:52.200000px;}
.wa{width:66.780000px;}
.wf{width:66.960000px;}
.w14{width:71.460000px;}
.w13{width:71.496000px;}
.wb{width:73.260000px;}
.wd{width:73.296000px;}
.w18{width:107.460000px;}
.w11{width:142.956000px;}
.w27{width:144.360000px;}
.w10{width:147.600000px;}
.w1a{width:158.070000px;}
.w9{width:181.290000px;}
.w26{width:198.570000px;}
.w3{width:209.010000px;}
.w24{width:214.770000px;}
.w25{width:244.290000px;}
.we{width:308.235000px;}
.wc{width:324.975000px;}
.w5{width:433.155000px;}
.w28{width:514.725000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.xc{left:10.620000px;}
.x2d{left:14.040000px;}
.x2f{left:16.380000px;}
.x18{left:21.420000px;}
.x19{left:24.480000px;}
.x1a{left:26.100000px;}
.x1d{left:27.360000px;}
.x1e{left:29.160000px;}
.x23{left:30.600000px;}
.x1b{left:33.480000px;}
.x1c{left:36.540000px;}
.x2b{left:42.150000px;}
.x15{left:54.900000px;}
.x43{left:72.174000px;}
.xe{left:106.740000px;}
.x26{left:120.825000px;}
.x9{left:125.496000px;}
.x1{left:127.655987px;}
.x20{left:129.105000px;}
.x41{left:136.254000px;}
.x2{left:139.175987px;}
.x3{left:156.989987px;}
.x40{left:159.689987px;}
.x10{left:181.649987px;}
.x6{left:192.449987px;}
.x11{left:201.449987px;}
.x13{left:214.589987px;}
.x8{left:221.609987px;}
.x7{left:222.869987px;}
.x1f{left:224.670000px;}
.x25{left:232.950000px;}
.x5{left:242.669987px;}
.x42{left:272.010000px;}
.x29{left:285.915000px;}
.x14{left:296.535000px;}
.x33{left:321.375000px;}
.xb{left:334.515000px;}
.x3e{left:343.155000px;}
.xd{left:355.755000px;}
.x34{left:357.015000px;}
.x32{left:393.375000px;}
.xf{left:425.235000px;}
.x24{left:429.194987px;}
.x2a{left:433.515000px;}
.x4{left:457.274987px;}
.x35{left:466.095000px;}
.x30{left:467.745000px;}
.x16{left:477.825000px;}
.x36{left:501.405000px;}
.x2e{left:505.005000px;}
.x37{left:536.685000px;}
.x31{left:539.205000px;}
.x27{left:541.185000px;}
.x17{left:544.605000px;}
.x21{left:549.645000px;}
.x38{left:571.965000px;}
.x2c{left:576.465000px;}
.x3f{left:587.445000px;}
.x39{left:607.065000px;}
.x28{left:608.145000px;}
.x22{left:616.425000px;}
.x3a{left:642.345000px;}
.x3b{left:678.390000px;}
.x3c{left:714.750000px;}
.x3d{left:749.850000px;}
.x12{left:756.870000px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v4{vertical-align:-58.240000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls7{letter-spacing:-0.480000pt;}
.lsf{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.239467pt;}
.ls26{letter-spacing:-0.198933pt;}
.ls28{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls1d{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls20{letter-spacing:-0.040320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.030080pt;}
.ls14{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.161067pt;}
.ls1b{letter-spacing:0.161280pt;}
.ls1e{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.183680pt;}
.ls6{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.272533pt;}
.ls18{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls12{letter-spacing:1.440000pt;}
.ls17{letter-spacing:5.920000pt;}
.lsc{letter-spacing:6.560000pt;}
.ls10{letter-spacing:7.200000pt;}
.ls19{letter-spacing:9.120000pt;}
.ls23{letter-spacing:9.760000pt;}
.ls22{letter-spacing:10.560000pt;}
.ls25{letter-spacing:13.120000pt;}
.ls21{letter-spacing:57.760000pt;}
.ls3{letter-spacing:58.811307pt;}
.ls24{letter-spacing:60.320000pt;}
.ls16{letter-spacing:178.698667pt;}
.lsd{letter-spacing:231.178667pt;}
.lsb{letter-spacing:263.178667pt;}
.ws14{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.552533pt;}
.ws9{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.096533pt;}
.ws0{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.870933pt;}
.wsf{word-spacing:-12.592000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws19{word-spacing:-12.096000pt;}
.ws1a{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.040000pt;}
.ws15{word-spacing:-10.881067pt;}
.wsa{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.679680pt;}
.ws18{word-spacing:-10.521067pt;}
.wsc{word-spacing:-10.480533pt;}
.ws16{word-spacing:-10.400000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws6{word-spacing:0.000000pt;}
._11{margin-left:-6.240000pt;}
._14{margin-left:-4.083627pt;}
._10{margin-left:-3.134080pt;}
._f{margin-left:-1.912320pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._8{width:3.504000pt;}
._d{width:4.495360pt;}
._4{width:6.080000pt;}
._7{width:7.134720pt;}
._c{width:8.254080pt;}
._5{width:9.456000pt;}
._6{width:10.723627pt;}
._15{width:11.765973pt;}
._24{width:13.323733pt;}
._b{width:14.231893pt;}
._a{width:15.270187pt;}
._9{width:16.320000pt;}
._e{width:17.319893pt;}
._1c{width:18.326400pt;}
._1b{width:21.478613pt;}
._1a{width:22.436267pt;}
._1f{width:23.887360pt;}
._1d{width:26.787627pt;}
._20{width:29.783680pt;}
._23{width:31.740587pt;}
._21{width:32.705280pt;}
._1e{width:44.551040pt;}
._25{width:45.950720pt;}
._26{width:46.986667pt;}
._29{width:50.832000pt;}
._22{width:53.180587pt;}
._27{width:58.172373pt;}
._28{width:60.752000pt;}
._19{width:83.900800pt;}
._18{width:180.636160pt;}
._16{width:452.521387pt;}
._12{width:654.560000pt;}
._17{width:769.499307pt;}
._13{width:953.866667pt;}
._3{width:979.477333pt;}
.fs3{font-size:26.880000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y88{bottom:2.240000pt;}
.y97{bottom:2.280000pt;}
.y28{bottom:2.720000pt;}
.y11{bottom:2.880000pt;}
.y115{bottom:3.360000pt;}
.y1a8{bottom:4.000000pt;}
.y1ae{bottom:4.160000pt;}
.y30{bottom:8.000000pt;}
.y36{bottom:10.720000pt;}
.yca{bottom:14.400000pt;}
.y27{bottom:16.480000pt;}
.y16{bottom:18.240000pt;}
.y112{bottom:18.280000pt;}
.y113{bottom:18.760000pt;}
.y35{bottom:26.080000pt;}
.yc6{bottom:28.160000pt;}
.y1a6{bottom:29.600000pt;}
.y26{bottom:30.240000pt;}
.y15{bottom:33.440000pt;}
.y11b{bottom:33.600000pt;}
.y34{bottom:41.440000pt;}
.y1a5{bottom:43.360000pt;}
.y25{bottom:44.000000pt;}
.y14{bottom:48.800000pt;}
.y11a{bottom:48.960000pt;}
.y33{bottom:56.800000pt;}
.y1a4{bottom:57.120000pt;}
.y24{bottom:57.920000pt;}
.y2f{bottom:58.560000pt;}
.y119{bottom:64.320000pt;}
.y1a3{bottom:71.040000pt;}
.y23{bottom:71.680000pt;}
.y13{bottom:72.160000pt;}
.y5{bottom:78.400000pt;}
.y32{bottom:80.160000pt;}
.y1b4{bottom:84.680000pt;}
.y1a2{bottom:84.800000pt;}
.y22{bottom:85.440000pt;}
.y4b{bottom:93.760000pt;}
.y2e{bottom:95.066667pt;}
.y1ac{bottom:98.400000pt;}
.y1a1{bottom:98.560000pt;}
.y1b3{bottom:98.600000pt;}
.y21{bottom:99.200000pt;}
.y142{bottom:99.680000pt;}
.ycd{bottom:105.280000pt;}
.y4a{bottom:108.960000pt;}
.y2d{bottom:110.426667pt;}
.y49{bottom:111.840000pt;}
.y141{bottom:112.000000pt;}
.y1a0{bottom:112.320000pt;}
.y1b2{bottom:112.360000pt;}
.y20{bottom:113.120000pt;}
.y105{bottom:114.560000pt;}
.ycc{bottom:120.672000pt;}
.y140{bottom:124.192000pt;}
.y2c{bottom:125.626667pt;}
.y1ab{bottom:126.080000pt;}
.y1b1{bottom:126.120000pt;}
.y19f{bottom:126.240000pt;}
.y1f{bottom:126.880000pt;}
.y48{bottom:127.232000pt;}
.y104{bottom:129.952000pt;}
.yc9{bottom:133.786667pt;}
.y13f{bottom:136.506667pt;}
.y1aa{bottom:139.840000pt;}
.y1b0{bottom:139.880000pt;}
.y19e{bottom:140.000000pt;}
.y1e{bottom:140.640000pt;}
.y2b{bottom:140.986667pt;}
.y47{bottom:142.586667pt;}
.y85{bottom:144.666667pt;}
.y103{bottom:145.306667pt;}
.ycb{bottom:145.946667pt;}
.y189{bottom:147.066667pt;}
.y13e{bottom:148.826667pt;}
.y1d{bottom:154.400000pt;}
.y2a{bottom:156.346667pt;}
.y46{bottom:157.946667pt;}
.yc5{bottom:158.906667pt;}
.y188{bottom:159.226667pt;}
.y84{bottom:159.866667pt;}
.y102{bottom:160.666667pt;}
.y13d{bottom:160.986667pt;}
.y1c{bottom:168.160000pt;}
.y187{bottom:171.546667pt;}
.yc8{bottom:171.866667pt;}
.y45{bottom:173.306667pt;}
.y83{bottom:175.226667pt;}
.y101{bottom:175.866667pt;}
.y29{bottom:179.706667pt;}
.y1b{bottom:182.080000pt;}
.y186{bottom:183.866667pt;}
.yc7{bottom:184.826667pt;}
.y13c{bottom:185.626667pt;}
.y44{bottom:188.666667pt;}
.y82{bottom:190.586667pt;}
.y100{bottom:191.226667pt;}
.y1a{bottom:195.840000pt;}
.y185{bottom:196.026667pt;}
.y13b{bottom:197.786667pt;}
.y43{bottom:203.866667pt;}
.y81{bottom:205.946667pt;}
.yff{bottom:206.586667pt;}
.y184{bottom:208.346667pt;}
.y13a{bottom:210.106667pt;}
.yc4{bottom:215.226667pt;}
.y42{bottom:219.226667pt;}
.y183{bottom:220.666667pt;}
.y80{bottom:221.306667pt;}
.yfe{bottom:221.946667pt;}
.y139{bottom:222.426667pt;}
.yc3{bottom:227.546667pt;}
.y1b6{bottom:232.026667pt;}
.y182{bottom:232.826667pt;}
.y41{bottom:234.586667pt;}
.y7f{bottom:236.666667pt;}
.yfd{bottom:237.306667pt;}
.yc2{bottom:238.266667pt;}
.y181{bottom:245.146667pt;}
.y138{bottom:246.906667pt;}
.y1b5{bottom:247.386667pt;}
.y40{bottom:249.946667pt;}
.yc1{bottom:250.586667pt;}
.y7e{bottom:251.866667pt;}
.yfc{bottom:252.666667pt;}
.y180{bottom:257.466667pt;}
.y137{bottom:259.226667pt;}
.y1af{bottom:259.866667pt;}
.yc0{bottom:262.746667pt;}
.y3f{bottom:265.306667pt;}
.y7d{bottom:267.226667pt;}
.yfb{bottom:267.866667pt;}
.y17f{bottom:269.626667pt;}
.y136{bottom:271.386667pt;}
.y18{bottom:272.986667pt;}
.ybf{bottom:275.066667pt;}
.y3e{bottom:280.666667pt;}
.y17e{bottom:281.946667pt;}
.y7c{bottom:282.586667pt;}
.yfa{bottom:283.226667pt;}
.y135{bottom:283.706667pt;}
.ybe{bottom:287.386667pt;}
.y17d{bottom:294.266667pt;}
.y3d{bottom:295.866667pt;}
.y134{bottom:296.026667pt;}
.y7b{bottom:297.946667pt;}
.yf9{bottom:298.586667pt;}
.ybd{bottom:299.546667pt;}
.y17c{bottom:306.426667pt;}
.y133{bottom:308.186667pt;}
.y3c{bottom:311.226667pt;}
.ybc{bottom:311.866667pt;}
.y7a{bottom:313.306667pt;}
.yf8{bottom:313.946667pt;}
.y17b{bottom:318.746667pt;}
.y132{bottom:320.506667pt;}
.ybb{bottom:324.186667pt;}
.y3b{bottom:326.586667pt;}
.y79{bottom:328.666667pt;}
.yf7{bottom:329.306667pt;}
.y17a{bottom:331.066667pt;}
.y131{bottom:332.826667pt;}
.yba{bottom:336.346667pt;}
.y3a{bottom:341.946667pt;}
.y179{bottom:343.226667pt;}
.y78{bottom:343.866667pt;}
.yf6{bottom:344.706667pt;}
.y130{bottom:345.026667pt;}
.yb9{bottom:348.706667pt;}
.y178{bottom:355.586667pt;}
.y39{bottom:357.346667pt;}
.y77{bottom:359.266667pt;}
.yf5{bottom:359.906667pt;}
.yb8{bottom:361.026667pt;}
.y177{bottom:367.906667pt;}
.y12f{bottom:369.666667pt;}
.y38{bottom:372.546667pt;}
.yb7{bottom:373.186667pt;}
.y76{bottom:374.626667pt;}
.yf4{bottom:375.266667pt;}
.y176{bottom:380.066667pt;}
.y12e{bottom:381.826667pt;}
.yb6{bottom:385.506667pt;}
.y37{bottom:387.906667pt;}
.y75{bottom:389.986667pt;}
.yf3{bottom:390.626667pt;}
.y175{bottom:392.386667pt;}
.y12d{bottom:394.146667pt;}
.yb5{bottom:397.826667pt;}
.y31{bottom:402.466667pt;}
.y174{bottom:404.706667pt;}
.y74{bottom:405.346667pt;}
.yf2{bottom:405.986667pt;}
.y12c{bottom:406.466667pt;}
.yb4{bottom:409.986667pt;}
.y1ad{bottom:411.906667pt;}
.y173{bottom:416.866667pt;}
.y12b{bottom:419.266667pt;}
.y73{bottom:420.546667pt;}
.yf1{bottom:421.346667pt;}
.yb3{bottom:422.306667pt;}
.y1a9{bottom:427.266667pt;}
.y172{bottom:429.186667pt;}
.y12a{bottom:433.986667pt;}
.yb2{bottom:434.466667pt;}
.y72{bottom:435.906667pt;}
.yf0{bottom:436.546667pt;}
.y171{bottom:441.506667pt;}
.y129{bottom:446.306667pt;}
.yb1{bottom:446.786667pt;}
.y71{bottom:451.266667pt;}
.yef{bottom:451.906667pt;}
.y170{bottom:453.666667pt;}
.yb0{bottom:459.106667pt;}
.y16f{bottom:465.986667pt;}
.y70{bottom:466.626667pt;}
.yee{bottom:467.266667pt;}
.yaf{bottom:471.266667pt;}
.y128{bottom:474.466667pt;}
.y16e{bottom:478.306667pt;}
.y6f{bottom:481.986667pt;}
.yed{bottom:482.626667pt;}
.yae{bottom:483.586667pt;}
.y127{bottom:489.186667pt;}
.y16d{bottom:490.466667pt;}
.yad{bottom:495.906667pt;}
.y6e{bottom:497.346667pt;}
.yec{bottom:497.986667pt;}
.y126{bottom:501.506667pt;}
.y16c{bottom:502.786667pt;}
.y17{bottom:503.746667pt;}
.yac{bottom:508.066667pt;}
.y6d{bottom:512.546667pt;}
.yeb{bottom:513.346667pt;}
.y125{bottom:514.306667pt;}
.y16b{bottom:515.106667pt;}
.yab{bottom:520.386667pt;}
.y16a{bottom:527.266667pt;}
.y6c{bottom:527.906667pt;}
.yea{bottom:528.546667pt;}
.y124{bottom:529.666667pt;}
.yaa{bottom:532.706667pt;}
.y169{bottom:539.586667pt;}
.y6b{bottom:543.266667pt;}
.ye9{bottom:543.906667pt;}
.ya9{bottom:544.866667pt;}
.y123{bottom:545.026667pt;}
.y168{bottom:551.906667pt;}
.ya8{bottom:557.186667pt;}
.y6a{bottom:558.626667pt;}
.ye8{bottom:559.266667pt;}
.y122{bottom:560.386667pt;}
.y167{bottom:564.066667pt;}
.ya7{bottom:570.173333pt;}
.y69{bottom:574.013333pt;}
.ye7{bottom:574.653333pt;}
.y121{bottom:575.773333pt;}
.y166{bottom:576.413333pt;}
.y1a7{bottom:579.293333pt;}
.y19{bottom:582.173333pt;}
.ya6{bottom:586.013333pt;}
.y165{bottom:588.733333pt;}
.y68{bottom:589.373333pt;}
.ye6{bottom:590.013333pt;}
.y120{bottom:590.973333pt;}
.y19d{bottom:594.493333pt;}
.y164{bottom:600.893333pt;}
.y67{bottom:604.573333pt;}
.ye5{bottom:605.373333pt;}
.y11f{bottom:606.333333pt;}
.y163{bottom:613.213333pt;}
.ya5{bottom:616.573333pt;}
.y66{bottom:619.933333pt;}
.ye4{bottom:620.573333pt;}
.y11e{bottom:621.693333pt;}
.y162{bottom:625.533333pt;}
.ya4{bottom:631.933333pt;}
.y65{bottom:635.293333pt;}
.ye3{bottom:635.933333pt;}
.y11d{bottom:636.413333pt;}
.y161{bottom:637.693333pt;}
.ya3{bottom:645.053333pt;}
.y11c{bottom:648.733333pt;}
.y160{bottom:650.013333pt;}
.y64{bottom:650.653333pt;}
.ye2{bottom:651.293333pt;}
.ya2{bottom:657.373333pt;}
.y118{bottom:658.653333pt;}
.y15f{bottom:662.333333pt;}
.y63{bottom:666.013333pt;}
.ye1{bottom:666.653333pt;}
.ya1{bottom:669.693333pt;}
.y15e{bottom:674.493333pt;}
.y62{bottom:681.373333pt;}
.ya0{bottom:681.853333pt;}
.ye0{bottom:682.013333pt;}
.y15d{bottom:686.813333pt;}
.y9f{bottom:694.173333pt;}
.y61{bottom:696.573333pt;}
.ydf{bottom:697.373333pt;}
.y15c{bottom:699.133333pt;}
.y12{bottom:704.573333pt;}
.y9e{bottom:706.493333pt;}
.y15b{bottom:711.293333pt;}
.y60{bottom:711.933333pt;}
.yde{bottom:712.573333pt;}
.y9d{bottom:718.653333pt;}
.y15a{bottom:723.613333pt;}
.y5f{bottom:727.293333pt;}
.ydd{bottom:727.933333pt;}
.y9c{bottom:730.973333pt;}
.y159{bottom:735.773333pt;}
.y117{bottom:738.173333pt;}
.y5e{bottom:742.653333pt;}
.y9b{bottom:743.133333pt;}
.ydc{bottom:743.293333pt;}
.y158{bottom:748.093333pt;}
.y19c{bottom:749.373333pt;}
.y116{bottom:751.293333pt;}
.y9a{bottom:755.453333pt;}
.y5d{bottom:758.013333pt;}
.ydb{bottom:758.653333pt;}
.y157{bottom:760.413333pt;}
.y19b{bottom:764.733333pt;}
.y114{bottom:766.653333pt;}
.y99{bottom:767.773333pt;}
.y156{bottom:772.573333pt;}
.y5c{bottom:773.213333pt;}
.yda{bottom:774.013333pt;}
.y98{bottom:779.933333pt;}
.y19a{bottom:780.093333pt;}
.y111{bottom:782.013333pt;}
.y155{bottom:784.893333pt;}
.y5b{bottom:788.573333pt;}
.yd9{bottom:789.213333pt;}
.y96{bottom:792.253333pt;}
.y199{bottom:795.493333pt;}
.y154{bottom:797.253333pt;}
.y10{bottom:797.893333pt;}
.y5a{bottom:803.973333pt;}
.y95{bottom:804.613333pt;}
.y153{bottom:809.413333pt;}
.y198{bottom:810.213333pt;}
.y110{bottom:813.413333pt;}
.y94{bottom:817.573333pt;}
.y59{bottom:819.333333pt;}
.yd8{bottom:819.973333pt;}
.y152{bottom:821.733333pt;}
.y197{bottom:822.373333pt;}
.yf{bottom:826.053333pt;}
.y10f{bottom:832.293333pt;}
.y151{bottom:834.053333pt;}
.y58{bottom:834.693333pt;}
.yd7{bottom:835.333333pt;}
.ye{bottom:841.413333pt;}
.y150{bottom:846.213333pt;}
.y196{bottom:847.013333pt;}
.y10e{bottom:847.653333pt;}
.y93{bottom:848.613333pt;}
.y57{bottom:850.053333pt;}
.yd6{bottom:850.693333pt;}
.y14f{bottom:858.533333pt;}
.y195{bottom:859.173333pt;}
.yd{bottom:860.133333pt;}
.y10d{bottom:862.853333pt;}
.y92{bottom:863.973333pt;}
.y56{bottom:865.253333pt;}
.yd5{bottom:866.053333pt;}
.y14e{bottom:870.853333pt;}
.y194{bottom:871.493333pt;}
.yc{bottom:872.453333pt;}
.y91{bottom:877.093333pt;}
.y10c{bottom:878.213333pt;}
.y55{bottom:880.613333pt;}
.yd4{bottom:881.253333pt;}
.y14d{bottom:883.013333pt;}
.y193{bottom:883.813333pt;}
.yb{bottom:884.613333pt;}
.y90{bottom:889.413333pt;}
.y10b{bottom:892.933333pt;}
.ya{bottom:893.573333pt;}
.y14c{bottom:895.333333pt;}
.y54{bottom:895.973333pt;}
.yd3{bottom:896.613333pt;}
.y8f{bottom:901.573333pt;}
.y10a{bottom:905.253333pt;}
.y14b{bottom:907.653333pt;}
.y192{bottom:908.293333pt;}
.y9{bottom:908.933333pt;}
.y53{bottom:911.333333pt;}
.yd2{bottom:911.973333pt;}
.y8e{bottom:913.893333pt;}
.y109{bottom:918.053333pt;}
.y14a{bottom:919.813333pt;}
.y191{bottom:920.613333pt;}
.y8{bottom:924.293333pt;}
.y8d{bottom:926.213333pt;}
.y52{bottom:926.693333pt;}
.yd1{bottom:927.333333pt;}
.y149{bottom:932.133333pt;}
.y190{bottom:932.773333pt;}
.y108{bottom:933.413333pt;}
.y8c{bottom:938.373333pt;}
.y7{bottom:941.413333pt;}
.y51{bottom:942.053333pt;}
.yd0{bottom:942.693333pt;}
.y148{bottom:944.453333pt;}
.y18f{bottom:945.093333pt;}
.y107{bottom:948.133333pt;}
.y8b{bottom:950.693333pt;}
.y147{bottom:956.613333pt;}
.y50{bottom:957.253333pt;}
.y18e{bottom:957.413333pt;}
.ycf{bottom:958.053333pt;}
.y106{bottom:960.453333pt;}
.y8a{bottom:963.013333pt;}
.y6{bottom:965.893333pt;}
.y146{bottom:968.933333pt;}
.y18d{bottom:969.573333pt;}
.y4f{bottom:972.613333pt;}
.yce{bottom:973.253333pt;}
.y89{bottom:975.173333pt;}
.y145{bottom:981.253333pt;}
.y18c{bottom:981.893333pt;}
.y4e{bottom:987.973333pt;}
.y87{bottom:988.133333pt;}
.y4{bottom:988.613333pt;}
.y144{bottom:993.413333pt;}
.y18b{bottom:994.213333pt;}
.y4d{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y143{bottom:1005.733333pt;}
.y18a{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y86{bottom:1031.680000pt;}
.y4c{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h17{height:12.160000pt;}
.h19{height:12.160133pt;}
.h15{height:12.320000pt;}
.h18{height:12.352000pt;}
.h13{height:15.200000pt;}
.h14{height:15.360000pt;}
.h7{height:23.360000pt;}
.h1b{height:24.480000pt;}
.h6{height:26.381250pt;}
.h1d{height:30.752000pt;}
.h1a{height:38.080000pt;}
.h20{height:42.063437pt;}
.h16{height:42.084375pt;}
.hd{height:43.031250pt;}
.h1f{height:43.215000pt;}
.h10{height:47.085938pt;}
.hc{height:47.109375pt;}
.h1c{height:47.621250pt;}
.h22{height:48.375000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h12{height:55.298750pt;}
.h8{height:62.812500pt;}
.h1e{height:76.640000pt;}
.hf{height:77.792000pt;}
.h5{height:85.785000pt;}
.h9{height:92.672000pt;}
.h11{height:100.640000pt;}
.h21{height:152.000000pt;}
.h23{height:152.026667pt;}
.he{height:200.186667pt;}
.hb{height:215.066667pt;}
.ha{height:293.506667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.880000pt;}
.w8{width:26.560000pt;}
.w7{width:26.720000pt;}
.w17{width:30.400000pt;}
.w15{width:30.432000pt;}
.w20{width:31.200000pt;}
.w1b{width:31.360000pt;}
.w1f{width:31.392000pt;}
.w1c{width:31.680000pt;}
.w21{width:32.032000pt;}
.w1d{width:32.160000pt;}
.w22{width:32.320000pt;}
.w23{width:32.480000pt;}
.w1e{width:32.640000pt;}
.w16{width:33.120000pt;}
.w19{width:35.680000pt;}
.w12{width:46.400000pt;}
.wa{width:59.360000pt;}
.wf{width:59.520000pt;}
.w14{width:63.520000pt;}
.w13{width:63.552000pt;}
.wb{width:65.120000pt;}
.wd{width:65.152000pt;}
.w18{width:95.520000pt;}
.w11{width:127.072000pt;}
.w27{width:128.320000pt;}
.w10{width:131.200000pt;}
.w1a{width:140.506667pt;}
.w9{width:161.146667pt;}
.w26{width:176.506667pt;}
.w3{width:185.786667pt;}
.w24{width:190.906667pt;}
.w25{width:217.146667pt;}
.we{width:273.986667pt;}
.wc{width:288.866667pt;}
.w5{width:385.026667pt;}
.w28{width:457.533333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.xc{left:9.440000pt;}
.x2d{left:12.480000pt;}
.x2f{left:14.560000pt;}
.x18{left:19.040000pt;}
.x19{left:21.760000pt;}
.x1a{left:23.200000pt;}
.x1d{left:24.320000pt;}
.x1e{left:25.920000pt;}
.x23{left:27.200000pt;}
.x1b{left:29.760000pt;}
.x1c{left:32.480000pt;}
.x2b{left:37.466667pt;}
.x15{left:48.800000pt;}
.x43{left:64.154667pt;}
.xe{left:94.880000pt;}
.x26{left:107.400000pt;}
.x9{left:111.552000pt;}
.x1{left:113.471988pt;}
.x20{left:114.760000pt;}
.x41{left:121.114667pt;}
.x2{left:123.711988pt;}
.x3{left:139.546655pt;}
.x40{left:141.946655pt;}
.x10{left:161.466655pt;}
.x6{left:171.066655pt;}
.x11{left:179.066655pt;}
.x13{left:190.746655pt;}
.x8{left:196.986655pt;}
.x7{left:198.106655pt;}
.x1f{left:199.706667pt;}
.x25{left:207.066667pt;}
.x5{left:215.706655pt;}
.x42{left:241.786667pt;}
.x29{left:254.146667pt;}
.x14{left:263.586667pt;}
.x33{left:285.666667pt;}
.xb{left:297.346667pt;}
.x3e{left:305.026667pt;}
.xd{left:316.226667pt;}
.x34{left:317.346667pt;}
.x32{left:349.666667pt;}
.xf{left:377.986667pt;}
.x24{left:381.506655pt;}
.x2a{left:385.346667pt;}
.x4{left:406.466655pt;}
.x35{left:414.306667pt;}
.x30{left:415.773333pt;}
.x16{left:424.733333pt;}
.x36{left:445.693333pt;}
.x2e{left:448.893333pt;}
.x37{left:477.053333pt;}
.x31{left:479.293333pt;}
.x27{left:481.053333pt;}
.x17{left:484.093333pt;}
.x21{left:488.573333pt;}
.x38{left:508.413333pt;}
.x2c{left:512.413333pt;}
.x3f{left:522.173333pt;}
.x39{left:539.613333pt;}
.x28{left:540.573333pt;}
.x22{left:547.933333pt;}
.x3a{left:570.973333pt;}
.x3b{left:603.013333pt;}
.x3c{left:635.333333pt;}
.x3d{left:666.533333pt;}
.x12{left:672.773333pt;}
}




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