
    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_f31eb02aa397116bff96e888.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.150879;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_3c2082d7b5893d23cde8c3ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.755371;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_7b14b7ac0ba238aa1c4853b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.145508;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_50da04a372324d09ad931351.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_653e79483d5a6512399fcdc8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.150879;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_fafd30f089d50c249ba94abd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.150879;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_133991fe808c51c9a7dbfd97.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_2897a6dcba61e2626a90979d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894531;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_1fce2cd67074e59ac24a7190.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.785156;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_d34c0a2f304b1a9a2db9b4f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.785156;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_78963494908173e0efce68b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.150879;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_a6c990449ae3f572788d5af7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8b7e340c06a70967ef1caa59.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.915527;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;}
.m2{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-ms-transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);-webkit-transform:matrix(0.249390,0.000000,-0.079805,0.236920,0,0);}
.m1{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);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-12.029364px;}
.lsa{letter-spacing:-12.000000px;}
.ls7{letter-spacing:-6.000000px;}
.ls3{letter-spacing:-3.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:3.000000px;}
.ls9{letter-spacing:4.857600px;}
.ls0{letter-spacing:6.000000px;}
.ls8{letter-spacing:9.022023px;}
.ls4{letter-spacing:12.000000px;}
.lsb{letter-spacing:14.295000px;}
.ls5{letter-spacing:16.380000px;}
.lsc{letter-spacing:30.468000px;}
.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;}
}
.ws0{word-spacing:-39.606000px;}
.wsa{word-spacing:-26.127779px;}
.ws5{word-spacing:-25.545000px;}
.wsc{word-spacing:-21.000000px;}
.ws6{word-spacing:-17.105756px;}
.wsb{word-spacing:-17.064000px;}
.wse{word-spacing:-13.651200px;}
.ws3{word-spacing:-13.506000px;}
.ws1{word-spacing:-9.933000px;}
.ws2{word-spacing:-5.076392px;}
.wsf{word-spacing:-5.064000px;}
.ws4{word-spacing:0.000000px;}
.ws7{word-spacing:1.284000px;}
.ws10{word-spacing:6.696000px;}
.ws9{word-spacing:7.614000px;}
.wsd{word-spacing:9.148331px;}
.ws8{word-spacing:15.360000px;}
._21{margin-left:-17.117227px;}
._29{margin-left:-14.971894px;}
._27{margin-left:-13.698420px;}
._28{margin-left:-10.192106px;}
._1f{margin-left:-8.985935px;}
._24{margin-left:-7.729670px;}
._10{margin-left:-6.675000px;}
._19{margin-left:-4.787687px;}
._16{margin-left:-3.611310px;}
._7{margin-left:-1.932000px;}
._9{width:1.916055px;}
._a{width:2.970000px;}
._8{width:4.389000px;}
._b{width:5.874000px;}
._14{width:7.091310px;}
._5{width:8.173953px;}
._0{width:9.418992px;}
._3{width:10.664031px;}
._12{width:12.600000px;}
._c{width:14.017737px;}
._2{width:15.265263px;}
._17{width:16.961120px;}
._1a{width:18.028103px;}
._f{width:19.548000px;}
._1e{width:21.021000px;}
._6{width:22.302441px;}
._18{width:23.547480px;}
._4{width:25.333841px;}
._d{width:26.757969px;}
._20{width:28.085835px;}
._e{width:29.160000px;}
._22{width:30.355565px;}
._15{width:31.536000px;}
._11{width:32.862000px;}
._2a{width:33.886997px;}
._23{width:35.040000px;}
._13{width:36.450000px;}
._26{width:38.135374px;}
._25{width:41.209972px;}
._1d{width:43.911224px;}
._1{width:46.120582px;}
._1b{width:56.671035px;}
._1c{width:114.120000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:27.000000px;}
.fs10{font-size:28.800000px;}
.fs2{font-size:33.000000px;}
.fsc{font-size:36.000000px;}
.fs8{font-size:39.000000px;}
.fsd{font-size:42.000000px;}
.fse{font-size:43.200000px;}
.fs4{font-size:43.305711px;}
.fsa{font-size:45.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:54.132138px;}
.fsf{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:75.000000px;}
.fsb{font-size:102.249595px;}
.fs1{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:156.930000px;}
.y161{bottom:163.080000px;}
.yd{bottom:164.130000px;}
.y17d{bottom:167.130000px;}
.yae{bottom:168.930000px;}
.y94{bottom:169.530000px;}
.y41{bottom:171.330000px;}
.ye3{bottom:171.780000px;}
.yc8{bottom:173.580000px;}
.y23{bottom:177.780000px;}
.y5d{bottom:180.330000px;}
.y12f{bottom:181.530000px;}
.yfe{bottom:182.130000px;}
.y77{bottom:183.630000px;}
.y11a{bottom:185.430000px;}
.y17c{bottom:187.530000px;}
.y93{bottom:188.730000px;}
.yad{bottom:189.780000px;}
.y40{bottom:192.330000px;}
.yc7{bottom:194.130000px;}
.y22{bottom:198.330000px;}
.y5c{bottom:201.330000px;}
.y12e{bottom:202.380000px;}
.yfd{bottom:203.130000px;}
.y160{bottom:204.180000px;}
.y76{bottom:204.480000px;}
.y119{bottom:205.980000px;}
.y17b{bottom:208.080000px;}
.y17a{bottom:208.125000px;}
.yac{bottom:210.330000px;}
.y92{bottom:210.630000px;}
.y3f{bottom:212.730000px;}
.yc6{bottom:214.230000px;}
.y21{bottom:218.880000px;}
.y5b{bottom:221.130000px;}
.y12d{bottom:222.480000px;}
.yfc{bottom:223.230000px;}
.y15f{bottom:224.730000px;}
.y118{bottom:226.530000px;}
.y179{bottom:228.930000px;}
.yab{bottom:230.730000px;}
.y91{bottom:231.180000px;}
.ye2{bottom:233.280000px;}
.y3e{bottom:233.730000px;}
.yc5{bottom:234.780000px;}
.y20{bottom:239.430000px;}
.y5a{bottom:241.530000px;}
.yfb{bottom:243.330000px;}
.y15e{bottom:244.830000px;}
.y117{bottom:247.380000px;}
.y178{bottom:249.480000px;}
.y90{bottom:251.730000px;}
.ye1{bottom:253.830000px;}
.y3d{bottom:254.130000px;}
.yc4{bottom:254.880000px;}
.y1f{bottom:259.980000px;}
.y59{bottom:261.780000px;}
.y12c{bottom:263.580000px;}
.yfa{bottom:263.880000px;}
.y15d{bottom:265.380000px;}
.y116{bottom:267.480000px;}
.y177{bottom:270.330000px;}
.y8f{bottom:271.830000px;}
.ye0{bottom:274.380000px;}
.y3c{bottom:275.130000px;}
.yc3{bottom:275.430000px;}
.y1e{bottom:280.080000px;}
.y58{bottom:281.880000px;}
.y12b{bottom:284.130000px;}
.yf9{bottom:284.430000px;}
.y146{bottom:285.930000px;}
.y15c{bottom:286.230000px;}
.y115{bottom:288.030000px;}
.y176{bottom:290.580000px;}
.y8e{bottom:292.230000px;}
.yaa{bottom:292.380000px;}
.ydf{bottom:294.480000px;}
.y3b{bottom:295.530000px;}
.yc2{bottom:295.680000px;}
.y1d{bottom:300.330000px;}
.y57{bottom:302.430000px;}
.y12a{bottom:304.230000px;}
.yf8{bottom:304.980000px;}
.y145{bottom:306.030000px;}
.y15b{bottom:306.330000px;}
.y114{bottom:307.830000px;}
.y175{bottom:311.130000px;}
.y8d{bottom:312.480000px;}
.ya9{bottom:312.930000px;}
.yde{bottom:315.030000px;}
.yc1{bottom:315.780000px;}
.y3a{bottom:316.080000px;}
.y1c{bottom:320.730000px;}
.y56{bottom:322.530000px;}
.y129{bottom:324.780000px;}
.yf7{bottom:326.130000px;}
.y15a{bottom:326.580000px;}
.y113{bottom:328.380000px;}
.y74{bottom:330.030000px;}
.y75{bottom:330.180000px;}
.y174{bottom:331.230000px;}
.y8c{bottom:332.730000px;}
.ya8{bottom:333.780000px;}
.yc0{bottom:335.880000px;}
.ydd{bottom:336.030000px;}
.y39{bottom:336.930000px;}
.y1b{bottom:341.280000px;}
.y55{bottom:343.080000px;}
.yf6{bottom:345.480000px;}
.y128{bottom:345.630000px;}
.y144{bottom:346.380000px;}
.y159{bottom:347.130000px;}
.y112{bottom:348.930000px;}
.y73{bottom:349.530000px;}
.y173{bottom:351.330000px;}
.y8b{bottom:353.580000px;}
.ya7{bottom:353.880000px;}
.ybf{bottom:356.430000px;}
.y38{bottom:357.480000px;}
.y1a{bottom:361.530000px;}
.y54{bottom:362.880000px;}
.yf5{bottom:365.730000px;}
.y127{bottom:366.180000px;}
.y158{bottom:367.230000px;}
.y72{bottom:369.030000px;}
.y172{bottom:371.880000px;}
.y8a{bottom:373.680000px;}
.ya6{bottom:374.430000px;}
.ybe{bottom:376.530000px;}
.ydc{bottom:376.830000px;}
.y37{bottom:378.330000px;}
.y19{bottom:381.930000px;}
.y53{bottom:383.130000px;}
.yf4{bottom:385.980000px;}
.y143{bottom:386.730000px;}
.y157{bottom:387.330000px;}
.y111{bottom:389.130000px;}
.y71{bottom:389.880000px;}
.y171{bottom:392.430000px;}
.y89{bottom:394.230000px;}
.ya5{bottom:394.530000px;}
.ybd{bottom:397.080000px;}
.ydb{bottom:397.530000px;}
.y36{bottom:398.580000px;}
.y52{bottom:403.530000px;}
.y126{bottom:406.080000px;}
.yf3{bottom:406.530000px;}
.y142{bottom:406.830000px;}
.y156{bottom:407.580000px;}
.y110{bottom:410.130000px;}
.y70{bottom:410.730000px;}
.y170{bottom:412.980000px;}
.y14{bottom:413.730000px;}
.yc{bottom:414.030000px;}
.y88{bottom:414.780000px;}
.ya4{bottom:415.080000px;}
.ybc{bottom:417.630000px;}
.yda{bottom:418.230000px;}
.y35{bottom:418.680000px;}
.y51{bottom:423.780000px;}
.yf2{bottom:426.330000px;}
.y141{bottom:427.380000px;}
.y155{bottom:428.130000px;}
.y10f{bottom:430.530000px;}
.y6f{bottom:430.980000px;}
.y16f{bottom:433.830000px;}
.y87{bottom:434.880000px;}
.ya3{bottom:435.930000px;}
.ybb{bottom:437.730000px;}
.yd9{bottom:438.480000px;}
.y34{bottom:439.230000px;}
.y50{bottom:444.330000px;}
.yb{bottom:444.930000px;}
.y125{bottom:446.730000px;}
.yf1{bottom:447.180000px;}
.y140{bottom:447.930000px;}
.y154{bottom:448.530000px;}
.y10e{bottom:451.080000px;}
.y6e{bottom:451.530000px;}
.y16e{bottom:454.380000px;}
.y86{bottom:455.130000px;}
.ya2{bottom:456.180000px;}
.yba{bottom:458.280000px;}
.yd8{bottom:458.730000px;}
.y33{bottom:459.780000px;}
.y4f{bottom:464.430000px;}
.y124{bottom:466.530000px;}
.yf0{bottom:466.980000px;}
.y13f{bottom:468.030000px;}
.y153{bottom:468.330000px;}
.ya{bottom:469.530000px;}
.y6d{bottom:471.330000px;}
.y16d{bottom:474.480000px;}
.y85{bottom:475.230000px;}
.ya1{bottom:476.730000px;}
.yb9{bottom:478.530000px;}
.yd7{bottom:478.830000px;}
.y32{bottom:479.880000px;}
.y4e{bottom:484.530000px;}
.y123{bottom:486.780000px;}
.yef{bottom:487.080000px;}
.y13e{bottom:488.130000px;}
.y152{bottom:490.380000px;}
.y10d{bottom:491.430000px;}
.y6c{bottom:493.530000px;}
.y16c{bottom:494.730000px;}
.y84{bottom:495.780000px;}
.ya0{bottom:496.830000px;}
.yb8{bottom:498.630000px;}
.yd6{bottom:499.380000px;}
.y31{bottom:500.130000px;}
.y13{bottom:503.280000px;}
.y8{bottom:503.640000px;}
.y9{bottom:503.730000px;}
.y4d{bottom:505.080000px;}
.y122{bottom:506.880000px;}
.yee{bottom:507.330000px;}
.y13d{bottom:508.830000px;}
.y151{bottom:509.730000px;}
.y10c{bottom:511.530000px;}
.y6b{bottom:512.280000px;}
.y6a{bottom:512.310000px;}
.y16b{bottom:515.130000px;}
.y83{bottom:515.880000px;}
.y9f{bottom:517.830000px;}
.yb7{bottom:519.180000px;}
.yd5{bottom:519.930000px;}
.y30{bottom:521.280000px;}
.y4c{bottom:525.630000px;}
.y121{bottom:527.430000px;}
.yed{bottom:527.730000px;}
.y13c{bottom:528.930000px;}
.y150{bottom:529.980000px;}
.y10b{bottom:531.780000px;}
.y69{bottom:532.830000px;}
.y82{bottom:535.680000px;}
.y24{bottom:536.130000px;}
.y9e{bottom:537.930000px;}
.yb6{bottom:538.980000px;}
.yd4{bottom:540.330000px;}
.y2f{bottom:540.780000px;}
.y4b{bottom:545.730000px;}
.y7{bottom:547.530000px;}
.y13b{bottom:549.030000px;}
.y18{bottom:550.080000px;}
.y14f{bottom:550.530000px;}
.y10a{bottom:552.330000px;}
.y68{bottom:553.380000px;}
.y81{bottom:555.930000px;}
.y16a{bottom:556.530000px;}
.y9d{bottom:558.030000px;}
.yb5{bottom:559.080000px;}
.yd3{bottom:560.580000px;}
.y2e{bottom:561.930000px;}
.y4a{bottom:565.980000px;}
.yec{bottom:567.780000px;}
.y13a{bottom:569.580000px;}
.y6{bottom:570.330000px;}
.y17{bottom:570.630000px;}
.y14e{bottom:570.930000px;}
.y109{bottom:573.180000px;}
.y67{bottom:573.480000px;}
.y80{bottom:576.330000px;}
.y169{bottom:576.780000px;}
.y9c{bottom:578.580000px;}
.yb4{bottom:579.330000px;}
.yd2{bottom:580.680000px;}
.y2d{bottom:582.180000px;}
.y49{bottom:586.530000px;}
.yeb{bottom:588.330000px;}
.y139{bottom:589.680000px;}
.y14d{bottom:591.930000px;}
.y108{bottom:593.280000px;}
.y66{bottom:594.030000px;}
.y7f{bottom:596.880000px;}
.y168{bottom:597.330000px;}
.y5{bottom:598.680000px;}
.y9b{bottom:599.130000px;}
.yb3{bottom:599.430000px;}
.yd1{bottom:601.530000px;}
.y2c{bottom:602.730000px;}
.y48{bottom:606.930000px;}
.y16{bottom:608.430000px;}
.y120{bottom:608.730000px;}
.y138{bottom:610.230000px;}
.y14c{bottom:612.030000px;}
.y107{bottom:613.530000px;}
.y65{bottom:614.580000px;}
.y7e{bottom:616.680000px;}
.y167{bottom:617.730000px;}
.y9a{bottom:619.530000px;}
.yb2{bottom:619.980000px;}
.yd0{bottom:622.080000px;}
.y2b{bottom:623.580000px;}
.y4{bottom:624.330000px;}
.y47{bottom:627.180000px;}
.y15{bottom:628.530000px;}
.yea{bottom:628.830000px;}
.y11f{bottom:628.980000px;}
.y137{bottom:631.530000px;}
.y14b{bottom:632.130000px;}
.y106{bottom:633.630000px;}
.y64{bottom:635.130000px;}
.y7d{bottom:637.980000px;}
.y166{bottom:638.730000px;}
.y99{bottom:640.080000px;}
.ycf{bottom:642.330000px;}
.y2a{bottom:644.130000px;}
.y46{bottom:647.280000px;}
.ye9{bottom:649.080000px;}
.y11e{bottom:649.530000px;}
.y136{bottom:650.880000px;}
.y135{bottom:650.925000px;}
.y14a{bottom:652.380000px;}
.y105{bottom:654.180000px;}
.y63{bottom:655.530000px;}
.y7c{bottom:658.080000px;}
.y165{bottom:659.130000px;}
.y98{bottom:660.630000px;}
.yce{bottom:662.730000px;}
.y29{bottom:664.530000px;}
.y3{bottom:666.780000px;}
.y12{bottom:667.080000px;}
.y45{bottom:668.130000px;}
.ye8{bottom:669.330000px;}
.y11d{bottom:669.630000px;}
.y134{bottom:671.730000px;}
.y149{bottom:673.230000px;}
.y104{bottom:674.730000px;}
.y62{bottom:676.080000px;}
.y7b{bottom:678.630000px;}
.y164{bottom:680.130000px;}
.y97{bottom:681.180000px;}
.yb1{bottom:681.480000px;}
.ycd{bottom:683.280000px;}
.y28{bottom:685.080000px;}
.y44{bottom:688.380000px;}
.ye7{bottom:690.180000px;}
.y133{bottom:691.980000px;}
.y148{bottom:693.780000px;}
.y103{bottom:694.830000px;}
.y61{bottom:696.630000px;}
.y7a{bottom:698.730000px;}
.y163{bottom:700.230000px;}
.yb0{bottom:700.980000px;}
.y96{bottom:701.730000px;}
.y11{bottom:702.030000px;}
.y2{bottom:702.780000px;}
.ycc{bottom:703.830000px;}
.y27{bottom:705.930000px;}
.y43{bottom:709.230000px;}
.ye6{bottom:710.280000px;}
.y132{bottom:712.080000px;}
.y147{bottom:713.880000px;}
.y102{bottom:715.380000px;}
.y60{bottom:717.480000px;}
.y79{bottom:719.280000px;}
.y162{bottom:720.780000px;}
.yaf{bottom:721.530000px;}
.y95{bottom:722.130000px;}
.ycb{bottom:724.380000px;}
.y26{bottom:727.230000px;}
.y42{bottom:730.080000px;}
.ye5{bottom:730.530000px;}
.y11c{bottom:730.830000px;}
.y131{bottom:732.930000px;}
.y101{bottom:735.930000px;}
.y5f{bottom:737.280000px;}
.y78{bottom:738.030000px;}
.yca{bottom:743.430000px;}
.y25{bottom:744.480000px;}
.y11b{bottom:749.580000px;}
.ye4{bottom:750.330000px;}
.y130{bottom:750.930000px;}
.y100{bottom:754.530000px;}
.y5e{bottom:755.730000px;}
.yff{bottom:758.130000px;}
.y10{bottom:776.880000px;}
.y1{bottom:777.630000px;}
.yf{bottom:798.480000px;}
.ye{bottom:813.630000px;}
.h5{height:26.406738px;}
.h3{height:30.905273px;}
.hd{height:33.837891px;}
.h8{height:38.143066px;}
.he{height:41.497559px;}
.ha{height:42.143555px;}
.h7{height:43.886719px;}
.h4{height:50.756836px;}
.h1{height:50.881038px;}
.h6{height:55.554199px;}
.hb{height:58.681641px;}
.h9{height:64.549805px;}
.hc{height:78.684258px;}
.h2{height:102.219727px;}
.h0{height:882.750000px;}
.w3{width:626.250000px;}
.w2{width:626.400000px;}
.w0{width:635.775000px;}
.w1{width:636.000000px;}
.x0{left:0.000000px;}
.x10{left:95.700000px;}
.x33{left:100.350000px;}
.x24{left:101.550000px;}
.x22{left:102.600000px;}
.x21{left:103.650000px;}
.x11{left:114.450000px;}
.x3d{left:115.950000px;}
.x3b{left:117.000000px;}
.x3a{left:118.050000px;}
.x23{left:121.050000px;}
.x63{left:132.450000px;}
.x62{left:133.950000px;}
.x3c{left:135.000000px;}
.x47{left:136.350000px;}
.x5a{left:137.550000px;}
.x59{left:138.600000px;}
.x58{left:140.100000px;}
.x56{left:141.450000px;}
.x55{left:142.500000px;}
.x54{left:144.000000px;}
.x1d{left:148.950000px;}
.x1f{left:150.450000px;}
.x50{left:153.000000px;}
.x16{left:155.550000px;}
.xe{left:157.050000px;}
.x66{left:162.000000px;}
.x65{left:163.050000px;}
.x64{left:164.100000px;}
.x4a{left:165.300000px;}
.x1e{left:166.650000px;}
.x20{left:167.700000px;}
.x61{left:170.700000px;}
.x18{left:174.300000px;}
.x43{left:183.300000px;}
.x34{left:184.950000px;}
.x52{left:186.750000px;}
.x2f{left:188.250000px;}
.x2b{left:189.750000px;}
.x2a{left:190.800000px;}
.x27{left:191.850000px;}
.x4{left:192.900000px;}
.x26{left:193.950000px;}
.x36{left:195.150000px;}
.xf{left:200.100000px;}
.x15{left:201.150000px;}
.x45{left:203.100000px;}
.x48{left:204.900000px;}
.x31{left:205.950000px;}
.x2e{left:207.000000px;}
.x29{left:209.100000px;}
.xc{left:212.400000px;}
.x8{left:213.450000px;}
.x13{left:226.800000px;}
.x67{left:228.150000px;}
.x5{left:233.700000px;}
.x2{left:237.150000px;}
.xa{left:243.966000px;}
.x32{left:248.850000px;}
.xb{left:251.700000px;}
.x6{left:254.100000px;}
.x3{left:261.300000px;}
.x14{left:263.850000px;}
.x1{left:265.350000px;}
.x5e{left:267.150000px;}
.x46{left:276.150000px;}
.x12{left:279.750000px;}
.xd{left:280.800000px;}
.x4c{left:281.850000px;}
.x53{left:282.900000px;}
.x1c{left:295.200000px;}
.x7{left:297.450000px;}
.x41{left:303.450000px;}
.x9{left:304.950000px;}
.x5b{left:308.850000px;}
.x3f{left:325.050000px;}
.x37{left:326.100000px;}
.x51{left:331.950000px;}
.x4f{left:336.900000px;}
.x25{left:339.150000px;}
.x3e{left:350.250000px;}
.x1b{left:354.600000px;}
.x40{left:372.150000px;}
.x68{left:379.350000px;}
.x19{left:389.550000px;}
.x1a{left:394.200000px;}
.x4b{left:406.500000px;}
.x30{left:416.850000px;}
.x28{left:420.450000px;}
.x44{left:422.700000px;}
.x4d{left:424.500000px;}
.x57{left:427.350000px;}
.x2c{left:463.650000px;}
.x4e{left:473.850000px;}
.x49{left:475.200000px;}
.x5c{left:480.900000px;}
.x5f{left:487.050000px;}
.x17{left:495.450000px;}
.x35{left:500.100000px;}
.x5d{left:511.500000px;}
.x60{left:512.700000px;}
.x38{left:513.750000px;}
.x39{left:518.400000px;}
.x42{left:527.850000px;}
.x2d{left:532.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-10.692768pt;}
.lsa{letter-spacing:-10.666667pt;}
.ls7{letter-spacing:-5.333333pt;}
.ls3{letter-spacing:-2.666667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:2.666667pt;}
.ls9{letter-spacing:4.317867pt;}
.ls0{letter-spacing:5.333333pt;}
.ls8{letter-spacing:8.019576pt;}
.ls4{letter-spacing:10.666667pt;}
.lsb{letter-spacing:12.706667pt;}
.ls5{letter-spacing:14.560000pt;}
.lsc{letter-spacing:27.082667pt;}
.ws0{word-spacing:-35.205333pt;}
.wsa{word-spacing:-23.224692pt;}
.ws5{word-spacing:-22.706667pt;}
.wsc{word-spacing:-18.666667pt;}
.ws6{word-spacing:-15.205116pt;}
.wsb{word-spacing:-15.168000pt;}
.wse{word-spacing:-12.134400pt;}
.ws3{word-spacing:-12.005333pt;}
.ws1{word-spacing:-8.829333pt;}
.ws2{word-spacing:-4.512348pt;}
.wsf{word-spacing:-4.501333pt;}
.ws4{word-spacing:0.000000pt;}
.ws7{word-spacing:1.141333pt;}
.ws10{word-spacing:5.952000pt;}
.ws9{word-spacing:6.768000pt;}
.wsd{word-spacing:8.131850pt;}
.ws8{word-spacing:13.653333pt;}
._21{margin-left:-15.215312pt;}
._29{margin-left:-13.308350pt;}
._27{margin-left:-12.176374pt;}
._28{margin-left:-9.059650pt;}
._1f{margin-left:-7.987498pt;}
._24{margin-left:-6.870818pt;}
._10{margin-left:-5.933333pt;}
._19{margin-left:-4.255722pt;}
._16{margin-left:-3.210053pt;}
._7{margin-left:-1.717333pt;}
._9{width:1.703160pt;}
._a{width:2.640000pt;}
._8{width:3.901333pt;}
._b{width:5.221333pt;}
._14{width:6.303387pt;}
._5{width:7.265736pt;}
._0{width:8.372437pt;}
._3{width:9.479139pt;}
._12{width:11.200000pt;}
._c{width:12.460211pt;}
._2{width:13.569123pt;}
._17{width:15.076551pt;}
._1a{width:16.024981pt;}
._f{width:17.376000pt;}
._1e{width:18.685333pt;}
._6{width:19.824392pt;}
._18{width:20.931093pt;}
._4{width:22.518970pt;}
._d{width:23.784861pt;}
._20{width:24.965187pt;}
._e{width:25.920000pt;}
._22{width:26.982724pt;}
._15{width:28.032000pt;}
._11{width:29.210667pt;}
._2a{width:30.121775pt;}
._23{width:31.146667pt;}
._13{width:32.400000pt;}
._26{width:33.898110pt;}
._25{width:36.631086pt;}
._1d{width:39.032199pt;}
._1{width:40.996073pt;}
._1b{width:50.374253pt;}
._1c{width:101.440000pt;}
.fs5{font-size:24.000000pt;}
.fs10{font-size:25.600000pt;}
.fs2{font-size:29.333333pt;}
.fsc{font-size:32.000000pt;}
.fs8{font-size:34.666667pt;}
.fsd{font-size:37.333333pt;}
.fse{font-size:38.400000pt;}
.fs4{font-size:38.493965pt;}
.fsa{font-size:40.000000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:48.117456pt;}
.fsf{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:66.666667pt;}
.fsb{font-size:90.888529pt;}
.fs1{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:139.493333pt;}
.y161{bottom:144.960000pt;}
.yd{bottom:145.893333pt;}
.y17d{bottom:148.560000pt;}
.yae{bottom:150.160000pt;}
.y94{bottom:150.693333pt;}
.y41{bottom:152.293333pt;}
.ye3{bottom:152.693333pt;}
.yc8{bottom:154.293333pt;}
.y23{bottom:158.026667pt;}
.y5d{bottom:160.293333pt;}
.y12f{bottom:161.360000pt;}
.yfe{bottom:161.893333pt;}
.y77{bottom:163.226667pt;}
.y11a{bottom:164.826667pt;}
.y17c{bottom:166.693333pt;}
.y93{bottom:167.760000pt;}
.yad{bottom:168.693333pt;}
.y40{bottom:170.960000pt;}
.yc7{bottom:172.560000pt;}
.y22{bottom:176.293333pt;}
.y5c{bottom:178.960000pt;}
.y12e{bottom:179.893333pt;}
.yfd{bottom:180.560000pt;}
.y160{bottom:181.493333pt;}
.y76{bottom:181.760000pt;}
.y119{bottom:183.093333pt;}
.y17b{bottom:184.960000pt;}
.y17a{bottom:185.000000pt;}
.yac{bottom:186.960000pt;}
.y92{bottom:187.226667pt;}
.y3f{bottom:189.093333pt;}
.yc6{bottom:190.426667pt;}
.y21{bottom:194.560000pt;}
.y5b{bottom:196.560000pt;}
.y12d{bottom:197.760000pt;}
.yfc{bottom:198.426667pt;}
.y15f{bottom:199.760000pt;}
.y118{bottom:201.360000pt;}
.y179{bottom:203.493333pt;}
.yab{bottom:205.093333pt;}
.y91{bottom:205.493333pt;}
.ye2{bottom:207.360000pt;}
.y3e{bottom:207.760000pt;}
.yc5{bottom:208.693333pt;}
.y20{bottom:212.826667pt;}
.y5a{bottom:214.693333pt;}
.yfb{bottom:216.293333pt;}
.y15e{bottom:217.626667pt;}
.y117{bottom:219.893333pt;}
.y178{bottom:221.760000pt;}
.y90{bottom:223.760000pt;}
.ye1{bottom:225.626667pt;}
.y3d{bottom:225.893333pt;}
.yc4{bottom:226.560000pt;}
.y1f{bottom:231.093333pt;}
.y59{bottom:232.693333pt;}
.y12c{bottom:234.293333pt;}
.yfa{bottom:234.560000pt;}
.y15d{bottom:235.893333pt;}
.y116{bottom:237.760000pt;}
.y177{bottom:240.293333pt;}
.y8f{bottom:241.626667pt;}
.ye0{bottom:243.893333pt;}
.y3c{bottom:244.560000pt;}
.yc3{bottom:244.826667pt;}
.y1e{bottom:248.960000pt;}
.y58{bottom:250.560000pt;}
.y12b{bottom:252.560000pt;}
.yf9{bottom:252.826667pt;}
.y146{bottom:254.160000pt;}
.y15c{bottom:254.426667pt;}
.y115{bottom:256.026667pt;}
.y176{bottom:258.293333pt;}
.y8e{bottom:259.760000pt;}
.yaa{bottom:259.893333pt;}
.ydf{bottom:261.760000pt;}
.y3b{bottom:262.693333pt;}
.yc2{bottom:262.826667pt;}
.y1d{bottom:266.960000pt;}
.y57{bottom:268.826667pt;}
.y12a{bottom:270.426667pt;}
.yf8{bottom:271.093333pt;}
.y145{bottom:272.026667pt;}
.y15b{bottom:272.293333pt;}
.y114{bottom:273.626667pt;}
.y175{bottom:276.560000pt;}
.y8d{bottom:277.760000pt;}
.ya9{bottom:278.160000pt;}
.yde{bottom:280.026667pt;}
.yc1{bottom:280.693333pt;}
.y3a{bottom:280.960000pt;}
.y1c{bottom:285.093333pt;}
.y56{bottom:286.693333pt;}
.y129{bottom:288.693333pt;}
.yf7{bottom:289.893333pt;}
.y15a{bottom:290.293333pt;}
.y113{bottom:291.893333pt;}
.y74{bottom:293.360000pt;}
.y75{bottom:293.493333pt;}
.y174{bottom:294.426667pt;}
.y8c{bottom:295.760000pt;}
.ya8{bottom:296.693333pt;}
.yc0{bottom:298.560000pt;}
.ydd{bottom:298.693333pt;}
.y39{bottom:299.493333pt;}
.y1b{bottom:303.360000pt;}
.y55{bottom:304.960000pt;}
.yf6{bottom:307.093333pt;}
.y128{bottom:307.226667pt;}
.y144{bottom:307.893333pt;}
.y159{bottom:308.560000pt;}
.y112{bottom:310.160000pt;}
.y73{bottom:310.693333pt;}
.y173{bottom:312.293333pt;}
.y8b{bottom:314.293333pt;}
.ya7{bottom:314.560000pt;}
.ybf{bottom:316.826667pt;}
.y38{bottom:317.760000pt;}
.y1a{bottom:321.360000pt;}
.y54{bottom:322.560000pt;}
.yf5{bottom:325.093333pt;}
.y127{bottom:325.493333pt;}
.y158{bottom:326.426667pt;}
.y72{bottom:328.026667pt;}
.y172{bottom:330.560000pt;}
.y8a{bottom:332.160000pt;}
.ya6{bottom:332.826667pt;}
.ybe{bottom:334.693333pt;}
.ydc{bottom:334.960000pt;}
.y37{bottom:336.293333pt;}
.y19{bottom:339.493333pt;}
.y53{bottom:340.560000pt;}
.yf4{bottom:343.093333pt;}
.y143{bottom:343.760000pt;}
.y157{bottom:344.293333pt;}
.y111{bottom:345.893333pt;}
.y71{bottom:346.560000pt;}
.y171{bottom:348.826667pt;}
.y89{bottom:350.426667pt;}
.ya5{bottom:350.693333pt;}
.ybd{bottom:352.960000pt;}
.ydb{bottom:353.360000pt;}
.y36{bottom:354.293333pt;}
.y52{bottom:358.693333pt;}
.y126{bottom:360.960000pt;}
.yf3{bottom:361.360000pt;}
.y142{bottom:361.626667pt;}
.y156{bottom:362.293333pt;}
.y110{bottom:364.560000pt;}
.y70{bottom:365.093333pt;}
.y170{bottom:367.093333pt;}
.y14{bottom:367.760000pt;}
.yc{bottom:368.026667pt;}
.y88{bottom:368.693333pt;}
.ya4{bottom:368.960000pt;}
.ybc{bottom:371.226667pt;}
.yda{bottom:371.760000pt;}
.y35{bottom:372.160000pt;}
.y51{bottom:376.693333pt;}
.yf2{bottom:378.960000pt;}
.y141{bottom:379.893333pt;}
.y155{bottom:380.560000pt;}
.y10f{bottom:382.693333pt;}
.y6f{bottom:383.093333pt;}
.y16f{bottom:385.626667pt;}
.y87{bottom:386.560000pt;}
.ya3{bottom:387.493333pt;}
.ybb{bottom:389.093333pt;}
.yd9{bottom:389.760000pt;}
.y34{bottom:390.426667pt;}
.y50{bottom:394.960000pt;}
.yb{bottom:395.493333pt;}
.y125{bottom:397.093333pt;}
.yf1{bottom:397.493333pt;}
.y140{bottom:398.160000pt;}
.y154{bottom:398.693333pt;}
.y10e{bottom:400.960000pt;}
.y6e{bottom:401.360000pt;}
.y16e{bottom:403.893333pt;}
.y86{bottom:404.560000pt;}
.ya2{bottom:405.493333pt;}
.yba{bottom:407.360000pt;}
.yd8{bottom:407.760000pt;}
.y33{bottom:408.693333pt;}
.y4f{bottom:412.826667pt;}
.y124{bottom:414.693333pt;}
.yf0{bottom:415.093333pt;}
.y13f{bottom:416.026667pt;}
.y153{bottom:416.293333pt;}
.ya{bottom:417.360000pt;}
.y6d{bottom:418.960000pt;}
.y16d{bottom:421.760000pt;}
.y85{bottom:422.426667pt;}
.ya1{bottom:423.760000pt;}
.yb9{bottom:425.360000pt;}
.yd7{bottom:425.626667pt;}
.y32{bottom:426.560000pt;}
.y4e{bottom:430.693333pt;}
.y123{bottom:432.693333pt;}
.yef{bottom:432.960000pt;}
.y13e{bottom:433.893333pt;}
.y152{bottom:435.893333pt;}
.y10d{bottom:436.826667pt;}
.y6c{bottom:438.693333pt;}
.y16c{bottom:439.760000pt;}
.y84{bottom:440.693333pt;}
.ya0{bottom:441.626667pt;}
.yb8{bottom:443.226667pt;}
.yd6{bottom:443.893333pt;}
.y31{bottom:444.560000pt;}
.y13{bottom:447.360000pt;}
.y8{bottom:447.680000pt;}
.y9{bottom:447.760000pt;}
.y4d{bottom:448.960000pt;}
.y122{bottom:450.560000pt;}
.yee{bottom:450.960000pt;}
.y13d{bottom:452.293333pt;}
.y151{bottom:453.093333pt;}
.y10c{bottom:454.693333pt;}
.y6b{bottom:455.360000pt;}
.y6a{bottom:455.386667pt;}
.y16b{bottom:457.893333pt;}
.y83{bottom:458.560000pt;}
.y9f{bottom:460.293333pt;}
.yb7{bottom:461.493333pt;}
.yd5{bottom:462.160000pt;}
.y30{bottom:463.360000pt;}
.y4c{bottom:467.226667pt;}
.y121{bottom:468.826667pt;}
.yed{bottom:469.093333pt;}
.y13c{bottom:470.160000pt;}
.y150{bottom:471.093333pt;}
.y10b{bottom:472.693333pt;}
.y69{bottom:473.626667pt;}
.y82{bottom:476.160000pt;}
.y24{bottom:476.560000pt;}
.y9e{bottom:478.160000pt;}
.yb6{bottom:479.093333pt;}
.yd4{bottom:480.293333pt;}
.y2f{bottom:480.693333pt;}
.y4b{bottom:485.093333pt;}
.y7{bottom:486.693333pt;}
.y13b{bottom:488.026667pt;}
.y18{bottom:488.960000pt;}
.y14f{bottom:489.360000pt;}
.y10a{bottom:490.960000pt;}
.y68{bottom:491.893333pt;}
.y81{bottom:494.160000pt;}
.y16a{bottom:494.693333pt;}
.y9d{bottom:496.026667pt;}
.yb5{bottom:496.960000pt;}
.yd3{bottom:498.293333pt;}
.y2e{bottom:499.493333pt;}
.y4a{bottom:503.093333pt;}
.yec{bottom:504.693333pt;}
.y13a{bottom:506.293333pt;}
.y6{bottom:506.960000pt;}
.y17{bottom:507.226667pt;}
.y14e{bottom:507.493333pt;}
.y109{bottom:509.493333pt;}
.y67{bottom:509.760000pt;}
.y80{bottom:512.293333pt;}
.y169{bottom:512.693333pt;}
.y9c{bottom:514.293333pt;}
.yb4{bottom:514.960000pt;}
.yd2{bottom:516.160000pt;}
.y2d{bottom:517.493333pt;}
.y49{bottom:521.360000pt;}
.yeb{bottom:522.960000pt;}
.y139{bottom:524.160000pt;}
.y14d{bottom:526.160000pt;}
.y108{bottom:527.360000pt;}
.y66{bottom:528.026667pt;}
.y7f{bottom:530.560000pt;}
.y168{bottom:530.960000pt;}
.y5{bottom:532.160000pt;}
.y9b{bottom:532.560000pt;}
.yb3{bottom:532.826667pt;}
.yd1{bottom:534.693333pt;}
.y2c{bottom:535.760000pt;}
.y48{bottom:539.493333pt;}
.y16{bottom:540.826667pt;}
.y120{bottom:541.093333pt;}
.y138{bottom:542.426667pt;}
.y14c{bottom:544.026667pt;}
.y107{bottom:545.360000pt;}
.y65{bottom:546.293333pt;}
.y7e{bottom:548.160000pt;}
.y167{bottom:549.093333pt;}
.y9a{bottom:550.693333pt;}
.yb2{bottom:551.093333pt;}
.yd0{bottom:552.960000pt;}
.y2b{bottom:554.293333pt;}
.y4{bottom:554.960000pt;}
.y47{bottom:557.493333pt;}
.y15{bottom:558.693333pt;}
.yea{bottom:558.960000pt;}
.y11f{bottom:559.093333pt;}
.y137{bottom:561.360000pt;}
.y14b{bottom:561.893333pt;}
.y106{bottom:563.226667pt;}
.y64{bottom:564.560000pt;}
.y7d{bottom:567.093333pt;}
.y166{bottom:567.760000pt;}
.y99{bottom:568.960000pt;}
.ycf{bottom:570.960000pt;}
.y2a{bottom:572.560000pt;}
.y46{bottom:575.360000pt;}
.ye9{bottom:576.960000pt;}
.y11e{bottom:577.360000pt;}
.y136{bottom:578.560000pt;}
.y135{bottom:578.600000pt;}
.y14a{bottom:579.893333pt;}
.y105{bottom:581.493333pt;}
.y63{bottom:582.693333pt;}
.y7c{bottom:584.960000pt;}
.y165{bottom:585.893333pt;}
.y98{bottom:587.226667pt;}
.yce{bottom:589.093333pt;}
.y29{bottom:590.693333pt;}
.y3{bottom:592.693333pt;}
.y12{bottom:592.960000pt;}
.y45{bottom:593.893333pt;}
.ye8{bottom:594.960000pt;}
.y11d{bottom:595.226667pt;}
.y134{bottom:597.093333pt;}
.y149{bottom:598.426667pt;}
.y104{bottom:599.760000pt;}
.y62{bottom:600.960000pt;}
.y7b{bottom:603.226667pt;}
.y164{bottom:604.560000pt;}
.y97{bottom:605.493333pt;}
.yb1{bottom:605.760000pt;}
.ycd{bottom:607.360000pt;}
.y28{bottom:608.960000pt;}
.y44{bottom:611.893333pt;}
.ye7{bottom:613.493333pt;}
.y133{bottom:615.093333pt;}
.y148{bottom:616.693333pt;}
.y103{bottom:617.626667pt;}
.y61{bottom:619.226667pt;}
.y7a{bottom:621.093333pt;}
.y163{bottom:622.426667pt;}
.yb0{bottom:623.093333pt;}
.y96{bottom:623.760000pt;}
.y11{bottom:624.026667pt;}
.y2{bottom:624.693333pt;}
.ycc{bottom:625.626667pt;}
.y27{bottom:627.493333pt;}
.y43{bottom:630.426667pt;}
.ye6{bottom:631.360000pt;}
.y132{bottom:632.960000pt;}
.y147{bottom:634.560000pt;}
.y102{bottom:635.893333pt;}
.y60{bottom:637.760000pt;}
.y79{bottom:639.360000pt;}
.y162{bottom:640.693333pt;}
.yaf{bottom:641.360000pt;}
.y95{bottom:641.893333pt;}
.ycb{bottom:643.893333pt;}
.y26{bottom:646.426667pt;}
.y42{bottom:648.960000pt;}
.ye5{bottom:649.360000pt;}
.y11c{bottom:649.626667pt;}
.y131{bottom:651.493333pt;}
.y101{bottom:654.160000pt;}
.y5f{bottom:655.360000pt;}
.y78{bottom:656.026667pt;}
.yca{bottom:660.826667pt;}
.y25{bottom:661.760000pt;}
.y11b{bottom:666.293333pt;}
.ye4{bottom:666.960000pt;}
.y130{bottom:667.493333pt;}
.y100{bottom:670.693333pt;}
.y5e{bottom:671.760000pt;}
.yff{bottom:673.893333pt;}
.y10{bottom:690.560000pt;}
.y1{bottom:691.226667pt;}
.yf{bottom:709.760000pt;}
.ye{bottom:723.226667pt;}
.h5{height:23.472656pt;}
.h3{height:27.471354pt;}
.hd{height:30.078125pt;}
.h8{height:33.904948pt;}
.he{height:36.886719pt;}
.ha{height:37.460938pt;}
.h7{height:39.010417pt;}
.h4{height:45.117188pt;}
.h1{height:45.227590pt;}
.h6{height:49.381510pt;}
.hb{height:52.161458pt;}
.h9{height:57.377604pt;}
.hc{height:69.941563pt;}
.h2{height:90.861979pt;}
.h0{height:784.666667pt;}
.w3{width:556.666667pt;}
.w2{width:556.800000pt;}
.w0{width:565.133333pt;}
.w1{width:565.333333pt;}
.x0{left:0.000000pt;}
.x10{left:85.066667pt;}
.x33{left:89.200000pt;}
.x24{left:90.266667pt;}
.x22{left:91.200000pt;}
.x21{left:92.133333pt;}
.x11{left:101.733333pt;}
.x3d{left:103.066667pt;}
.x3b{left:104.000000pt;}
.x3a{left:104.933333pt;}
.x23{left:107.600000pt;}
.x63{left:117.733333pt;}
.x62{left:119.066667pt;}
.x3c{left:120.000000pt;}
.x47{left:121.200000pt;}
.x5a{left:122.266667pt;}
.x59{left:123.200000pt;}
.x58{left:124.533333pt;}
.x56{left:125.733333pt;}
.x55{left:126.666667pt;}
.x54{left:128.000000pt;}
.x1d{left:132.400000pt;}
.x1f{left:133.733333pt;}
.x50{left:136.000000pt;}
.x16{left:138.266667pt;}
.xe{left:139.600000pt;}
.x66{left:144.000000pt;}
.x65{left:144.933333pt;}
.x64{left:145.866667pt;}
.x4a{left:146.933333pt;}
.x1e{left:148.133333pt;}
.x20{left:149.066667pt;}
.x61{left:151.733333pt;}
.x18{left:154.933333pt;}
.x43{left:162.933333pt;}
.x34{left:164.400000pt;}
.x52{left:166.000000pt;}
.x2f{left:167.333333pt;}
.x2b{left:168.666667pt;}
.x2a{left:169.600000pt;}
.x27{left:170.533333pt;}
.x4{left:171.466667pt;}
.x26{left:172.400000pt;}
.x36{left:173.466667pt;}
.xf{left:177.866667pt;}
.x15{left:178.800000pt;}
.x45{left:180.533333pt;}
.x48{left:182.133333pt;}
.x31{left:183.066667pt;}
.x2e{left:184.000000pt;}
.x29{left:185.866667pt;}
.xc{left:188.800000pt;}
.x8{left:189.733333pt;}
.x13{left:201.600000pt;}
.x67{left:202.800000pt;}
.x5{left:207.733333pt;}
.x2{left:210.800000pt;}
.xa{left:216.858667pt;}
.x32{left:221.200000pt;}
.xb{left:223.733333pt;}
.x6{left:225.866667pt;}
.x3{left:232.266667pt;}
.x14{left:234.533333pt;}
.x1{left:235.866667pt;}
.x5e{left:237.466667pt;}
.x46{left:245.466667pt;}
.x12{left:248.666667pt;}
.xd{left:249.600000pt;}
.x4c{left:250.533333pt;}
.x53{left:251.466667pt;}
.x1c{left:262.400000pt;}
.x7{left:264.400000pt;}
.x41{left:269.733333pt;}
.x9{left:271.066667pt;}
.x5b{left:274.533333pt;}
.x3f{left:288.933333pt;}
.x37{left:289.866667pt;}
.x51{left:295.066667pt;}
.x4f{left:299.466667pt;}
.x25{left:301.466667pt;}
.x3e{left:311.333333pt;}
.x1b{left:315.200000pt;}
.x40{left:330.800000pt;}
.x68{left:337.200000pt;}
.x19{left:346.266667pt;}
.x1a{left:350.400000pt;}
.x4b{left:361.333333pt;}
.x30{left:370.533333pt;}
.x28{left:373.733333pt;}
.x44{left:375.733333pt;}
.x4d{left:377.333333pt;}
.x57{left:379.866667pt;}
.x2c{left:412.133333pt;}
.x4e{left:421.200000pt;}
.x49{left:422.400000pt;}
.x5c{left:427.466667pt;}
.x5f{left:432.933333pt;}
.x17{left:440.400000pt;}
.x35{left:444.533333pt;}
.x5d{left:454.666667pt;}
.x60{left:455.733333pt;}
.x38{left:456.666667pt;}
.x39{left:460.800000pt;}
.x42{left:469.200000pt;}
.x2d{left:472.933333pt;}
}




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