
    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_d7911fdfaf9615f7b62b4ce8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_529729e01c65752e44e4a548.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_d476a953bbda6d498567ad5d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_845e25be66b5a4de7548a671.woff')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_0004355c5b7a3f89248e5dab.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_790b0d7d7f8ca06587fe8301.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4ff05c360cadad4e3c76bff6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_583ebcd88522e67a4b07bb77.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_16122678d27ad6e5a45c59cb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls1a{letter-spacing:-7.620000px;}
.ls17{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.341400px;}
.lsd{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.080000px;}
.ls4{letter-spacing:2.160000px;}
.ls6{letter-spacing:12.840000px;}
.ls1{letter-spacing:13.140000px;}
.ls0{letter-spacing:14.580000px;}
.lse{letter-spacing:21.221280px;}
.ls19{letter-spacing:33.984000px;}
.ls13{letter-spacing:44.784000px;}
.ls12{letter-spacing:48.360000px;}
.ls18{letter-spacing:54.840000px;}
.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;}
}
.ws13{word-spacing:-72.000000px;}
.ws2{word-spacing:-30.840000px;}
.wse{word-spacing:-21.420000px;}
.ws5{word-spacing:-20.718600px;}
.ws14{word-spacing:-18.144000px;}
.ws12{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.wsa{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.833200px;}
.ws11{word-spacing:-13.824000px;}
.ws7{word-spacing:-13.140000px;}
.ws6{word-spacing:-12.060000px;}
.ws15{word-spacing:-10.380000px;}
.ws9{word-spacing:-9.720000px;}
.ws1{word-spacing:-5.256000px;}
.ws0{word-spacing:-4.824000px;}
.ws10{word-spacing:-0.072000px;}
.wsd{word-spacing:0.000000px;}
._2f{margin-left:-747.509952px;}
._28{margin-left:-7.143360px;}
._2a{margin-left:-5.832000px;}
._23{margin-left:-4.536000px;}
._10{margin-left:-3.456000px;}
._4{margin-left:-1.656000px;}
._3{width:1.080000px;}
._8{width:2.343840px;}
._9{width:3.437520px;}
._d{width:4.710480px;}
._1a{width:5.751600px;}
._11{width:6.768000px;}
._12{width:8.508000px;}
._16{width:9.768000px;}
._0{width:11.232000px;}
._2{width:12.828000px;}
._1{width:14.052000px;}
._21{width:15.408000px;}
._22{width:16.680000px;}
._a{width:19.920000px;}
._c{width:21.072000px;}
._b{width:22.128000px;}
._13{width:23.616000px;}
._14{width:25.284000px;}
._1f{width:26.352000px;}
._20{width:27.576000px;}
._24{width:28.584000px;}
._25{width:29.592000px;}
._29{width:30.816000px;}
._1d{width:31.824000px;}
._1e{width:32.832000px;}
._26{width:34.344000px;}
._1c{width:36.216000px;}
._e{width:37.224000px;}
._f{width:38.448000px;}
._19{width:40.164000px;}
._18{width:41.328000px;}
._17{width:42.336000px;}
._30{width:44.136000px;}
._31{width:73.584000px;}
._2e{width:120.000000px;}
._2d{width:133.224000px;}
._2c{width:232.800000px;}
._2b{width:246.144000px;}
._6{width:370.826400px;}
._5{width:394.368000px;}
._7{width:695.820000px;}
._15{width:782.076000px;}
._27{width:846.156000px;}
._1b{width:1557.744000px;}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs1{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:72.144000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:3.240000px;}
.yb4{bottom:3.600000px;}
.yba{bottom:3.780000px;}
.yb0{bottom:12.240000px;}
.ye9{bottom:14.370000px;}
.y138{bottom:16.455000px;}
.y120{bottom:16.485000px;}
.yf0{bottom:16.530000px;}
.y100{bottom:16.560000px;}
.y131{bottom:16.590000px;}
.y124{bottom:45.615000px;}
.y10a{bottom:45.645000px;}
.y5{bottom:55.980000px;}
.y13c{bottom:57.570000px;}
.y118{bottom:60.150000px;}
.y12f{bottom:60.375000px;}
.y104{bottom:60.480000px;}
.y135{bottom:60.510000px;}
.yed{bottom:61.050000px;}
.ye5{bottom:68.145000px;}
.yec{bottom:69.660000px;}
.y11d{bottom:79.200000px;}
.ye6{bottom:80.535000px;}
.y12e{bottom:81.150000px;}
.yfd{bottom:81.210000px;}
.y134{bottom:81.540000px;}
.y117{bottom:93.780000px;}
.y103{bottom:94.500000px;}
.y13b{bottom:100.080000px;}
.y193{bottom:116.136000px;}
.ya1{bottom:117.576000px;}
.y9f{bottom:119.916000px;}
.y123{bottom:121.065000px;}
.y109{bottom:135.615000px;}
.y14d{bottom:137.376000px;}
.y192{bottom:142.956000px;}
.ya0{bottom:144.576000px;}
.y99{bottom:144.756000px;}
.yf9{bottom:146.736000px;}
.y9e{bottom:146.916000px;}
.y153{bottom:147.096000px;}
.yfc{bottom:150.915000px;}
.ye2{bottom:151.950000px;}
.y2c{bottom:157.530000px;}
.y114{bottom:157.890000px;}
.ydc{bottom:158.610000px;}
.y73{bottom:158.790000px;}
.y12b{bottom:161.130000px;}
.y14c{bottom:164.190000px;}
.yf8{bottom:165.630000px;}
.y191{bottom:169.950000px;}
.ye1{bottom:170.850000px;}
.y98{bottom:171.390000px;}
.y9d{bottom:173.730000px;}
.y113{bottom:176.790000px;}
.y10b{bottom:177.480000px;}
.y2b{bottom:178.230000px;}
.y12a{bottom:185.070000px;}
.y139{bottom:185.400000px;}
.ydb{bottom:185.430000px;}
.y72{bottom:185.790000px;}
.yf7{bottom:189.570000px;}
.y125{bottom:189.975000px;}
.y107{bottom:190.620000px;}
.y14b{bottom:191.190000px;}
.y133{bottom:193.170000px;}
.ye0{bottom:194.970000px;}
.yea{bottom:195.480000px;}
.yeb{bottom:195.990000px;}
.y190{bottom:196.770000px;}
.y11c{bottom:197.385000px;}
.y97{bottom:198.390000px;}
.y2a{bottom:198.930000px;}
.y9c{bottom:200.730000px;}
.ye4{bottom:202.245000px;}
.y121{bottom:202.500000px;}
.y4f{bottom:202.710000px;}
.y116{bottom:202.890000px;}
.y12d{bottom:203.940000px;}
.y105{bottom:204.870000px;}
.yee{bottom:208.770000px;}
.y13d{bottom:208.830000px;}
.ye7{bottom:210.495000px;}
.y13a{bottom:210.525000px;}
.y122{bottom:210.570000px;}
.y108{bottom:211.110000px;}
.y119{bottom:211.140000px;}
.y11e{bottom:211.755000px;}
.yda{bottom:212.430000px;}
.y71{bottom:212.610000px;}
.y102{bottom:213.225000px;}
.y136{bottom:214.170000px;}
.y14a{bottom:218.010000px;}
.y29{bottom:219.630000px;}
.y18f{bottom:223.770000px;}
.yfe{bottom:224.310000px;}
.y96{bottom:225.210000px;}
.yfb{bottom:227.310000px;}
.y9b{bottom:227.550000px;}
.y4e{bottom:229.710000px;}
.y173{bottom:231.690000px;}
.y70{bottom:239.610000px;}
.y28{bottom:240.330000px;}
.yd9{bottom:240.510000px;}
.y149{bottom:245.010000px;}
.y11f{bottom:247.830000px;}
.y18e{bottom:250.590000px;}
.y11a{bottom:251.745000px;}
.y95{bottom:252.210000px;}
.ye8{bottom:253.770000px;}
.y126{bottom:253.875000px;}
.y10c{bottom:254.490000px;}
.y152{bottom:254.550000px;}
.y130{bottom:255.780000px;}
.yff{bottom:256.320000px;}
.y4d{bottom:256.530000px;}
.y106{bottom:256.935000px;}
.y13e{bottom:257.475000px;}
.y137{bottom:258.015000px;}
.y172{bottom:258.510000px;}
.y27{bottom:261.030000px;}
.yef{bottom:261.690000px;}
.y6f{bottom:266.430000px;}
.yd8{bottom:267.510000px;}
.y148{bottom:271.830000px;}
.y18d{bottom:277.590000px;}
.y94{bottom:279.030000px;}
.y151{bottom:281.370000px;}
.y26{bottom:281.730000px;}
.y4c{bottom:283.530000px;}
.y171{bottom:285.510000px;}
.y6e{bottom:293.430000px;}
.y9a{bottom:293.610000px;}
.yd7{bottom:294.330000px;}
.y147{bottom:298.830000px;}
.y25{bottom:302.430000px;}
.y18c{bottom:304.410000px;}
.y93{bottom:305.850000px;}
.y150{bottom:308.370000px;}
.y4b{bottom:310.350000px;}
.y170{bottom:313.590000px;}
.y6d{bottom:320.250000px;}
.yd6{bottom:321.330000px;}
.y24{bottom:323.130000px;}
.y146{bottom:325.650000px;}
.y18b{bottom:331.410000px;}
.y92{bottom:332.850000px;}
.yad{bottom:335.010000px;}
.y14f{bottom:335.190000px;}
.y4a{bottom:337.350000px;}
.y16f{bottom:340.590000px;}
.y23{bottom:343.830000px;}
.y6c{bottom:347.250000px;}
.yd5{bottom:349.410000px;}
.y145{bottom:352.650000px;}
.y18a{bottom:358.230000px;}
.y91{bottom:359.670000px;}
.yac{bottom:362.190000px;}
.y49{bottom:364.170000px;}
.y22{bottom:364.575000px;}
.y16e{bottom:368.715000px;}
.y6b{bottom:374.115000px;}
.yd4{bottom:376.455000px;}
.y144{bottom:379.515000px;}
.y21{bottom:385.275000px;}
.y90{bottom:386.715000px;}
.yab{bottom:389.055000px;}
.y48{bottom:391.215000px;}
.y16d{bottom:395.715000px;}
.y6a{bottom:401.115000px;}
.yd3{bottom:403.275000px;}
.y20{bottom:405.975000px;}
.y143{bottom:406.515000px;}
.y189{bottom:412.095000px;}
.y8f{bottom:413.535000px;}
.yaa{bottom:416.055000px;}
.y47{bottom:418.035000px;}
.y16c{bottom:423.975000px;}
.y1f{bottom:426.675000px;}
.y69{bottom:427.935000px;}
.yd2{bottom:430.275000px;}
.y142{bottom:433.335000px;}
.y188{bottom:439.095000px;}
.y8e{bottom:440.535000px;}
.ya9{bottom:442.875000px;}
.y46{bottom:445.035000px;}
.y1e{bottom:447.375000px;}
.y16b{bottom:450.795000px;}
.y68{bottom:454.935000px;}
.yd1{bottom:457.275000px;}
.y141{bottom:460.335000px;}
.y187{bottom:465.915000px;}
.y8d{bottom:467.355000px;}
.y1d{bottom:468.075000px;}
.ya8{bottom:469.875000px;}
.y45{bottom:471.855000px;}
.y16a{bottom:479.055000px;}
.y67{bottom:481.755000px;}
.y129{bottom:483.915000px;}
.yd0{bottom:485.355000px;}
.yf6{bottom:486.075000px;}
.y140{bottom:489.675000px;}
.y186{bottom:492.915000px;}
.y8c{bottom:494.355000px;}
.ya7{bottom:496.695000px;}
.y112{bottom:497.415000px;}
.ydf{bottom:498.135000px;}
.y44{bottom:498.855000px;}
.y128{bottom:502.815000px;}
.yf5{bottom:505.155000px;}
.y169{bottom:505.875000px;}
.y66{bottom:508.755000px;}
.ycf{bottom:512.355000px;}
.y13f{bottom:513.615000px;}
.y111{bottom:516.315000px;}
.yde{bottom:517.215000px;}
.y185{bottom:519.735000px;}
.y8b{bottom:521.175000px;}
.ya6{bottom:523.695000px;}
.y43{bottom:525.675000px;}
.y127{bottom:526.755000px;}
.y132{bottom:528.840000px;}
.yf4{bottom:529.095000px;}
.y101{bottom:529.920000px;}
.y168{bottom:532.875000px;}
.y1c{bottom:533.055000px;}
.y65{bottom:535.575000px;}
.yce{bottom:539.175000px;}
.y110{bottom:540.435000px;}
.ydd{bottom:541.155000px;}
.y11b{bottom:541.260000px;}
.ye3{bottom:542.880000px;}
.y184{bottom:546.735000px;}
.y8a{bottom:548.175000px;}
.y1b{bottom:550.335000px;}
.ya5{bottom:550.515000px;}
.y42{bottom:552.675000px;}
.y167{bottom:559.695000px;}
.y64{bottom:562.575000px;}
.y14e{bottom:562.755000px;}
.ycd{bottom:565.995000px;}
.y1a{bottom:572.835000px;}
.y183{bottom:573.555000px;}
.y89{bottom:574.995000px;}
.ya4{bottom:577.515000px;}
.y41{bottom:579.495000px;}
.y19{bottom:584.895000px;}
.y166{bottom:586.695000px;}
.y63{bottom:589.395000px;}
.ycc{bottom:592.995000px;}
.y182{bottom:600.555000px;}
.y88{bottom:601.995000px;}
.ya3{bottom:604.335000px;}
.y40{bottom:606.495000px;}
.y18{bottom:607.215000px;}
.y165{bottom:613.515000px;}
.y62{bottom:616.215000px;}
.ycb{bottom:621.255000px;}
.y17{bottom:624.525000px;}
.y87{bottom:628.845000px;}
.y3f{bottom:633.345000px;}
.y164{bottom:640.545000px;}
.y16{bottom:641.805000px;}
.y61{bottom:643.245000px;}
.yca{bottom:648.105000px;}
.y86{bottom:655.845000px;}
.y15{bottom:659.085000px;}
.y3e{bottom:660.345000px;}
.y181{bottom:666.645000px;}
.y163{bottom:667.365000px;}
.y60{bottom:670.065000px;}
.ya2{bottom:670.425000px;}
.yc9{bottom:675.105000px;}
.y14{bottom:676.365000px;}
.y85{bottom:682.665000px;}
.y3d{bottom:687.165000px;}
.y13{bottom:688.245000px;}
.yc8{bottom:692.205000px;}
.y162{bottom:694.365000px;}
.y5f{bottom:697.065000px;}
.y84{bottom:709.665000px;}
.yc7{bottom:710.205000px;}
.y12{bottom:710.745000px;}
.y3c{bottom:714.165000px;}
.y161{bottom:721.185000px;}
.y5e{bottom:723.885000px;}
.y11{bottom:728.025000px;}
.yc6{bottom:728.205000px;}
.y83{bottom:736.485000px;}
.y3b{bottom:740.985000px;}
.y10{bottom:745.305000px;}
.yc5{bottom:746.205000px;}
.y160{bottom:748.185000px;}
.y5d{bottom:750.885000px;}
.y180{bottom:759.525000px;}
.yf{bottom:762.585000px;}
.y82{bottom:763.485000px;}
.yc4{bottom:764.205000px;}
.y3a{bottom:767.985000px;}
.ye{bottom:774.645000px;}
.y15f{bottom:775.005000px;}
.y5c{bottom:777.705000px;}
.yc3{bottom:782.205000px;}
.y17f{bottom:786.525000px;}
.y81{bottom:790.305000px;}
.y39{bottom:794.805000px;}
.yd{bottom:796.965000px;}
.yc2{bottom:800.205000px;}
.y15e{bottom:802.005000px;}
.y5b{bottom:804.705000px;}
.y17e{bottom:813.345000px;}
.yc{bottom:814.245000px;}
.y80{bottom:817.305000px;}
.yc1{bottom:818.205000px;}
.y38{bottom:821.805000px;}
.yf3{bottom:827.925000px;}
.y15d{bottom:828.825000px;}
.y10f{bottom:830.085000px;}
.y5a{bottom:831.525000px;}
.yb{bottom:836.025000px;}
.yc0{bottom:836.205000px;}
.y17d{bottom:840.345000px;}
.y7f{bottom:844.125000px;}
.yf2{bottom:846.825000px;}
.y10e{bottom:849.165000px;}
.ybf{bottom:854.205000px;}
.y15c{bottom:855.825000px;}
.ya{bottom:856.725000px;}
.y59{bottom:858.525000px;}
.y17c{bottom:867.165000px;}
.yf1{bottom:870.945000px;}
.y7e{bottom:871.125000px;}
.ybe{bottom:872.205000px;}
.yfa{bottom:872.280000px;}
.y12c{bottom:872.820000px;}
.y10d{bottom:873.105000px;}
.y115{bottom:874.080000px;}
.y9{bottom:877.425000px;}
.y15b{bottom:882.690000px;}
.y58{bottom:885.390000px;}
.y37{bottom:887.910000px;}
.ybd{bottom:890.250000px;}
.y17b{bottom:894.210000px;}
.y7d{bottom:897.990000px;}
.y8{bottom:898.170000px;}
.ybc{bottom:908.250000px;}
.y15a{bottom:909.690000px;}
.y57{bottom:912.390000px;}
.y17a{bottom:921.030000px;}
.y7c{bottom:924.990000px;}
.ybb{bottom:926.250000px;}
.y159{bottom:936.510000px;}
.y56{bottom:939.210000px;}
.yb9{bottom:944.250000px;}
.y179{bottom:948.030000px;}
.y7b{bottom:951.810000px;}
.yb8{bottom:962.250000px;}
.y158{bottom:963.330000px;}
.y55{bottom:966.210000px;}
.y36{bottom:974.850000px;}
.y7a{bottom:978.810000px;}
.yb7{bottom:980.250000px;}
.y157{bottom:990.330000px;}
.y54{bottom:993.030000px;}
.y35{bottom:995.550000px;}
.yb6{bottom:998.250000px;}
.y7{bottom:1000.050000px;}
.y178{bottom:1001.850000px;}
.y79{bottom:1005.630000px;}
.y34{bottom:1016.250000px;}
.y156{bottom:1017.150000px;}
.y53{bottom:1020.030000px;}
.y6{bottom:1024.350000px;}
.y177{bottom:1029.930000px;}
.y78{bottom:1032.630000px;}
.yb5{bottom:1034.250000px;}
.y33{bottom:1036.950000px;}
.y155{bottom:1044.150000px;}
.y52{bottom:1046.850000px;}
.yb3{bottom:1052.250000px;}
.y176{bottom:1056.930000px;}
.y32{bottom:1057.650000px;}
.y77{bottom:1059.450000px;}
.yaf{bottom:1070.250000px;}
.y154{bottom:1070.970000px;}
.y31{bottom:1078.350000px;}
.y175{bottom:1085.010000px;}
.y76{bottom:1086.450000px;}
.yb1{bottom:1088.250000px;}
.y30{bottom:1099.050000px;}
.y174{bottom:1112.010000px;}
.y51{bottom:1112.910000px;}
.y75{bottom:1113.270000px;}
.y2f{bottom:1119.750000px;}
.y4{bottom:1129.290000px;}
.y50{bottom:1137.210000px;}
.yae{bottom:1140.090000px;}
.y74{bottom:1140.270000px;}
.y2e{bottom:1140.450000px;}
.y3{bottom:1152.000000px;}
.y2{bottom:1172.880000px;}
.y2d{bottom:1193.400000px;}
.y1{bottom:1193.580000px;}
.hf{height:17.100000px;}
.h10{height:17.280000px;}
.h11{height:17.316000px;}
.h7{height:34.114922px;}
.hd{height:35.100000px;}
.he{height:40.501406px;}
.h9{height:42.295781px;}
.h3{height:42.327773px;}
.h1a{height:44.893125px;}
.h14{height:47.381836px;}
.h15{height:47.508187px;}
.hb{height:48.796875px;}
.hc{height:49.992188px;}
.h8{height:52.435898px;}
.h4{height:57.092344px;}
.h12{height:58.121719px;}
.ha{height:60.300703px;}
.h2{height:63.175781px;}
.h1f{height:63.302133px;}
.h5{height:69.687773px;}
.h6{height:69.867773px;}
.h1b{height:275.940000px;}
.h13{height:281.880000px;}
.h19{height:282.600000px;}
.h1c{height:283.860000px;}
.h17{height:284.400000px;}
.h18{height:284.940000px;}
.h1e{height:285.480000px;}
.h1d{height:286.020000px;}
.h16{height:289.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:119.376000px;}
.w8{width:121.140000px;}
.w6{width:121.176000px;}
.w5{width:136.080000px;}
.w3{width:179.670000px;}
.w4{width:498.855000px;}
.w10{width:630.360000px;}
.wf{width:643.140000px;}
.w9{width:645.480000px;}
.wa{width:651.780000px;}
.we{width:653.040000px;}
.wb{width:679.320000px;}
.wd{width:680.400000px;}
.wc{width:680.580000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:8.100000px;}
.x16{left:10.980000px;}
.x1a{left:14.580000px;}
.x22{left:53.814000px;}
.x20{left:55.650000px;}
.x24{left:56.910000px;}
.x1f{left:62.820000px;}
.x23{left:64.440000px;}
.x2d{left:67.170000px;}
.x55{left:79.665000px;}
.x21{left:82.254000px;}
.x1e{left:86.034000px;}
.x56{left:98.025000px;}
.x4f{left:104.475000px;}
.x2{left:106.235987px;}
.x1{left:107.855987px;}
.x33{left:108.870000px;}
.x4a{left:118.980000px;}
.x2e{left:120.060000px;}
.x29{left:123.480000px;}
.x4e{left:124.560000px;}
.x50{left:130.320000px;}
.xc{left:133.955987px;}
.x9{left:147.815987px;}
.x2c{left:148.965000px;}
.xa{left:149.975987px;}
.xe{left:152.849987px;}
.x5{left:155.189987px;}
.xd{left:157.169987px;}
.x18{left:159.690000px;}
.x39{left:165.810000px;}
.x11{left:167.429987px;}
.x13{left:171.209987px;}
.x42{left:172.260000px;}
.x26{left:186.329987px;}
.x6{left:191.009987px;}
.x7{left:193.709987px;}
.xf{left:201.989987px;}
.x2b{left:227.235000px;}
.x54{left:230.655000px;}
.x3{left:233.669987px;}
.x32{left:236.310000px;}
.x3f{left:237.960000px;}
.x53{left:241.050000px;}
.x38{left:243.255000px;}
.x12{left:245.189987px;}
.x31{left:246.450000px;}
.x4d{left:248.685000px;}
.x3d{left:251.490000px;}
.xb{left:258.509987px;}
.x3c{left:261.360000px;}
.x41{left:262.770000px;}
.x45{left:275.070000px;}
.x14{left:285.554987px;}
.x17{left:287.175000px;}
.x8{left:296.894987px;}
.x4{left:299.414987px;}
.x46{left:307.050000px;}
.x3e{left:349.020000px;}
.x36{left:350.205000px;}
.x10{left:351.614987px;}
.x15{left:371.054987px;}
.x51{left:373.065000px;}
.x2a{left:385.275000px;}
.x4b{left:389.730000px;}
.x30{left:391.110000px;}
.x3a{left:393.270000px;}
.x52{left:396.390000px;}
.x4c{left:398.160000px;}
.x2f{left:399.750000px;}
.x43{left:400.935000px;}
.x40{left:403.095000px;}
.x44{left:408.960000px;}
.x3b{left:418.395000px;}
.x19{left:423.615000px;}
.x37{left:426.135000px;}
.x25{left:446.474987px;}
.x1b{left:545.145000px;}
.x1d{left:664.890000px;}
.x57{left:733.289987px;}
.x49{left:762.629987px;}
.x48{left:768.209987px;}
.x27{left:769.289987px;}
.x28{left:772.709987px;}
.x47{left:773.789987px;}
.x34{left:785.849987px;}
.x35{left:788.009987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1a{letter-spacing:-6.773333pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.303467pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.920000pt;}
.ls6{letter-spacing:11.413333pt;}
.ls1{letter-spacing:11.680000pt;}
.ls0{letter-spacing:12.960000pt;}
.lse{letter-spacing:18.863360pt;}
.ls19{letter-spacing:30.208000pt;}
.ls13{letter-spacing:39.808000pt;}
.ls12{letter-spacing:42.986667pt;}
.ls18{letter-spacing:48.746667pt;}
.ws13{word-spacing:-64.000000pt;}
.ws2{word-spacing:-27.413333pt;}
.wse{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.416533pt;}
.ws14{word-spacing:-16.128000pt;}
.ws12{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.185067pt;}
.ws11{word-spacing:-12.288000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws6{word-spacing:-10.720000pt;}
.ws15{word-spacing:-9.226667pt;}
.ws9{word-spacing:-8.640000pt;}
.ws1{word-spacing:-4.672000pt;}
.ws0{word-spacing:-4.288000pt;}
.ws10{word-spacing:-0.064000pt;}
.wsd{word-spacing:0.000000pt;}
._2f{margin-left:-664.453291pt;}
._28{margin-left:-6.349653pt;}
._2a{margin-left:-5.184000pt;}
._23{margin-left:-4.032000pt;}
._10{margin-left:-3.072000pt;}
._4{margin-left:-1.472000pt;}
._3{width:0.960000pt;}
._8{width:2.083413pt;}
._9{width:3.055573pt;}
._d{width:4.187093pt;}
._1a{width:5.112533pt;}
._11{width:6.016000pt;}
._12{width:7.562667pt;}
._16{width:8.682667pt;}
._0{width:9.984000pt;}
._2{width:11.402667pt;}
._1{width:12.490667pt;}
._21{width:13.696000pt;}
._22{width:14.826667pt;}
._a{width:17.706667pt;}
._c{width:18.730667pt;}
._b{width:19.669333pt;}
._13{width:20.992000pt;}
._14{width:22.474667pt;}
._1f{width:23.424000pt;}
._20{width:24.512000pt;}
._24{width:25.408000pt;}
._25{width:26.304000pt;}
._29{width:27.392000pt;}
._1d{width:28.288000pt;}
._1e{width:29.184000pt;}
._26{width:30.528000pt;}
._1c{width:32.192000pt;}
._e{width:33.088000pt;}
._f{width:34.176000pt;}
._19{width:35.701333pt;}
._18{width:36.736000pt;}
._17{width:37.632000pt;}
._30{width:39.232000pt;}
._31{width:65.408000pt;}
._2e{width:106.666667pt;}
._2d{width:118.421333pt;}
._2c{width:206.933333pt;}
._2b{width:218.794667pt;}
._6{width:329.623467pt;}
._5{width:350.549333pt;}
._7{width:618.506667pt;}
._15{width:695.178667pt;}
._27{width:752.138667pt;}
._1b{width:1384.661333pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs1{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:64.128000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:2.880000pt;}
.yb4{bottom:3.200000pt;}
.yba{bottom:3.360000pt;}
.yb0{bottom:10.880000pt;}
.ye9{bottom:12.773333pt;}
.y138{bottom:14.626667pt;}
.y120{bottom:14.653333pt;}
.yf0{bottom:14.693333pt;}
.y100{bottom:14.720000pt;}
.y131{bottom:14.746667pt;}
.y124{bottom:40.546667pt;}
.y10a{bottom:40.573333pt;}
.y5{bottom:49.760000pt;}
.y13c{bottom:51.173333pt;}
.y118{bottom:53.466667pt;}
.y12f{bottom:53.666667pt;}
.y104{bottom:53.760000pt;}
.y135{bottom:53.786667pt;}
.yed{bottom:54.266667pt;}
.ye5{bottom:60.573333pt;}
.yec{bottom:61.920000pt;}
.y11d{bottom:70.400000pt;}
.ye6{bottom:71.586667pt;}
.y12e{bottom:72.133333pt;}
.yfd{bottom:72.186667pt;}
.y134{bottom:72.480000pt;}
.y117{bottom:83.360000pt;}
.y103{bottom:84.000000pt;}
.y13b{bottom:88.960000pt;}
.y193{bottom:103.232000pt;}
.ya1{bottom:104.512000pt;}
.y9f{bottom:106.592000pt;}
.y123{bottom:107.613333pt;}
.y109{bottom:120.546667pt;}
.y14d{bottom:122.112000pt;}
.y192{bottom:127.072000pt;}
.ya0{bottom:128.512000pt;}
.y99{bottom:128.672000pt;}
.yf9{bottom:130.432000pt;}
.y9e{bottom:130.592000pt;}
.y153{bottom:130.752000pt;}
.yfc{bottom:134.146667pt;}
.ye2{bottom:135.066667pt;}
.y2c{bottom:140.026667pt;}
.y114{bottom:140.346667pt;}
.ydc{bottom:140.986667pt;}
.y73{bottom:141.146667pt;}
.y12b{bottom:143.226667pt;}
.y14c{bottom:145.946667pt;}
.yf8{bottom:147.226667pt;}
.y191{bottom:151.066667pt;}
.ye1{bottom:151.866667pt;}
.y98{bottom:152.346667pt;}
.y9d{bottom:154.426667pt;}
.y113{bottom:157.146667pt;}
.y10b{bottom:157.760000pt;}
.y2b{bottom:158.426667pt;}
.y12a{bottom:164.506667pt;}
.y139{bottom:164.800000pt;}
.ydb{bottom:164.826667pt;}
.y72{bottom:165.146667pt;}
.yf7{bottom:168.506667pt;}
.y125{bottom:168.866667pt;}
.y107{bottom:169.440000pt;}
.y14b{bottom:169.946667pt;}
.y133{bottom:171.706667pt;}
.ye0{bottom:173.306667pt;}
.yea{bottom:173.760000pt;}
.yeb{bottom:174.213333pt;}
.y190{bottom:174.906667pt;}
.y11c{bottom:175.453333pt;}
.y97{bottom:176.346667pt;}
.y2a{bottom:176.826667pt;}
.y9c{bottom:178.426667pt;}
.ye4{bottom:179.773333pt;}
.y121{bottom:180.000000pt;}
.y4f{bottom:180.186667pt;}
.y116{bottom:180.346667pt;}
.y12d{bottom:181.280000pt;}
.y105{bottom:182.106667pt;}
.yee{bottom:185.573333pt;}
.y13d{bottom:185.626667pt;}
.ye7{bottom:187.106667pt;}
.y13a{bottom:187.133333pt;}
.y122{bottom:187.173333pt;}
.y108{bottom:187.653333pt;}
.y119{bottom:187.680000pt;}
.y11e{bottom:188.226667pt;}
.yda{bottom:188.826667pt;}
.y71{bottom:188.986667pt;}
.y102{bottom:189.533333pt;}
.y136{bottom:190.373333pt;}
.y14a{bottom:193.786667pt;}
.y29{bottom:195.226667pt;}
.y18f{bottom:198.906667pt;}
.yfe{bottom:199.386667pt;}
.y96{bottom:200.186667pt;}
.yfb{bottom:202.053333pt;}
.y9b{bottom:202.266667pt;}
.y4e{bottom:204.186667pt;}
.y173{bottom:205.946667pt;}
.y70{bottom:212.986667pt;}
.y28{bottom:213.626667pt;}
.yd9{bottom:213.786667pt;}
.y149{bottom:217.786667pt;}
.y11f{bottom:220.293333pt;}
.y18e{bottom:222.746667pt;}
.y11a{bottom:223.773333pt;}
.y95{bottom:224.186667pt;}
.ye8{bottom:225.573333pt;}
.y126{bottom:225.666667pt;}
.y10c{bottom:226.213333pt;}
.y152{bottom:226.266667pt;}
.y130{bottom:227.360000pt;}
.yff{bottom:227.840000pt;}
.y4d{bottom:228.026667pt;}
.y106{bottom:228.386667pt;}
.y13e{bottom:228.866667pt;}
.y137{bottom:229.346667pt;}
.y172{bottom:229.786667pt;}
.y27{bottom:232.026667pt;}
.yef{bottom:232.613333pt;}
.y6f{bottom:236.826667pt;}
.yd8{bottom:237.786667pt;}
.y148{bottom:241.626667pt;}
.y18d{bottom:246.746667pt;}
.y94{bottom:248.026667pt;}
.y151{bottom:250.106667pt;}
.y26{bottom:250.426667pt;}
.y4c{bottom:252.026667pt;}
.y171{bottom:253.786667pt;}
.y6e{bottom:260.826667pt;}
.y9a{bottom:260.986667pt;}
.yd7{bottom:261.626667pt;}
.y147{bottom:265.626667pt;}
.y25{bottom:268.826667pt;}
.y18c{bottom:270.586667pt;}
.y93{bottom:271.866667pt;}
.y150{bottom:274.106667pt;}
.y4b{bottom:275.866667pt;}
.y170{bottom:278.746667pt;}
.y6d{bottom:284.666667pt;}
.yd6{bottom:285.626667pt;}
.y24{bottom:287.226667pt;}
.y146{bottom:289.466667pt;}
.y18b{bottom:294.586667pt;}
.y92{bottom:295.866667pt;}
.yad{bottom:297.786667pt;}
.y14f{bottom:297.946667pt;}
.y4a{bottom:299.866667pt;}
.y16f{bottom:302.746667pt;}
.y23{bottom:305.626667pt;}
.y6c{bottom:308.666667pt;}
.yd5{bottom:310.586667pt;}
.y145{bottom:313.466667pt;}
.y18a{bottom:318.426667pt;}
.y91{bottom:319.706667pt;}
.yac{bottom:321.946667pt;}
.y49{bottom:323.706667pt;}
.y22{bottom:324.066667pt;}
.y16e{bottom:327.746667pt;}
.y6b{bottom:332.546667pt;}
.yd4{bottom:334.626667pt;}
.y144{bottom:337.346667pt;}
.y21{bottom:342.466667pt;}
.y90{bottom:343.746667pt;}
.yab{bottom:345.826667pt;}
.y48{bottom:347.746667pt;}
.y16d{bottom:351.746667pt;}
.y6a{bottom:356.546667pt;}
.yd3{bottom:358.466667pt;}
.y20{bottom:360.866667pt;}
.y143{bottom:361.346667pt;}
.y189{bottom:366.306667pt;}
.y8f{bottom:367.586667pt;}
.yaa{bottom:369.826667pt;}
.y47{bottom:371.586667pt;}
.y16c{bottom:376.866667pt;}
.y1f{bottom:379.266667pt;}
.y69{bottom:380.386667pt;}
.yd2{bottom:382.466667pt;}
.y142{bottom:385.186667pt;}
.y188{bottom:390.306667pt;}
.y8e{bottom:391.586667pt;}
.ya9{bottom:393.666667pt;}
.y46{bottom:395.586667pt;}
.y1e{bottom:397.666667pt;}
.y16b{bottom:400.706667pt;}
.y68{bottom:404.386667pt;}
.yd1{bottom:406.466667pt;}
.y141{bottom:409.186667pt;}
.y187{bottom:414.146667pt;}
.y8d{bottom:415.426667pt;}
.y1d{bottom:416.066667pt;}
.ya8{bottom:417.666667pt;}
.y45{bottom:419.426667pt;}
.y16a{bottom:425.826667pt;}
.y67{bottom:428.226667pt;}
.y129{bottom:430.146667pt;}
.yd0{bottom:431.426667pt;}
.yf6{bottom:432.066667pt;}
.y140{bottom:435.266667pt;}
.y186{bottom:438.146667pt;}
.y8c{bottom:439.426667pt;}
.ya7{bottom:441.506667pt;}
.y112{bottom:442.146667pt;}
.ydf{bottom:442.786667pt;}
.y44{bottom:443.426667pt;}
.y128{bottom:446.946667pt;}
.yf5{bottom:449.026667pt;}
.y169{bottom:449.666667pt;}
.y66{bottom:452.226667pt;}
.ycf{bottom:455.426667pt;}
.y13f{bottom:456.546667pt;}
.y111{bottom:458.946667pt;}
.yde{bottom:459.746667pt;}
.y185{bottom:461.986667pt;}
.y8b{bottom:463.266667pt;}
.ya6{bottom:465.506667pt;}
.y43{bottom:467.266667pt;}
.y127{bottom:468.226667pt;}
.y132{bottom:470.080000pt;}
.yf4{bottom:470.306667pt;}
.y101{bottom:471.040000pt;}
.y168{bottom:473.666667pt;}
.y1c{bottom:473.826667pt;}
.y65{bottom:476.066667pt;}
.yce{bottom:479.266667pt;}
.y110{bottom:480.386667pt;}
.ydd{bottom:481.026667pt;}
.y11b{bottom:481.120000pt;}
.ye3{bottom:482.560000pt;}
.y184{bottom:485.986667pt;}
.y8a{bottom:487.266667pt;}
.y1b{bottom:489.186667pt;}
.ya5{bottom:489.346667pt;}
.y42{bottom:491.266667pt;}
.y167{bottom:497.506667pt;}
.y64{bottom:500.066667pt;}
.y14e{bottom:500.226667pt;}
.ycd{bottom:503.106667pt;}
.y1a{bottom:509.186667pt;}
.y183{bottom:509.826667pt;}
.y89{bottom:511.106667pt;}
.ya4{bottom:513.346667pt;}
.y41{bottom:515.106667pt;}
.y19{bottom:519.906667pt;}
.y166{bottom:521.506667pt;}
.y63{bottom:523.906667pt;}
.ycc{bottom:527.106667pt;}
.y182{bottom:533.826667pt;}
.y88{bottom:535.106667pt;}
.ya3{bottom:537.186667pt;}
.y40{bottom:539.106667pt;}
.y18{bottom:539.746667pt;}
.y165{bottom:545.346667pt;}
.y62{bottom:547.746667pt;}
.ycb{bottom:552.226667pt;}
.y17{bottom:555.133333pt;}
.y87{bottom:558.973333pt;}
.y3f{bottom:562.973333pt;}
.y164{bottom:569.373333pt;}
.y16{bottom:570.493333pt;}
.y61{bottom:571.773333pt;}
.yca{bottom:576.093333pt;}
.y86{bottom:582.973333pt;}
.y15{bottom:585.853333pt;}
.y3e{bottom:586.973333pt;}
.y181{bottom:592.573333pt;}
.y163{bottom:593.213333pt;}
.y60{bottom:595.613333pt;}
.ya2{bottom:595.933333pt;}
.yc9{bottom:600.093333pt;}
.y14{bottom:601.213333pt;}
.y85{bottom:606.813333pt;}
.y3d{bottom:610.813333pt;}
.y13{bottom:611.773333pt;}
.yc8{bottom:615.293333pt;}
.y162{bottom:617.213333pt;}
.y5f{bottom:619.613333pt;}
.y84{bottom:630.813333pt;}
.yc7{bottom:631.293333pt;}
.y12{bottom:631.773333pt;}
.y3c{bottom:634.813333pt;}
.y161{bottom:641.053333pt;}
.y5e{bottom:643.453333pt;}
.y11{bottom:647.133333pt;}
.yc6{bottom:647.293333pt;}
.y83{bottom:654.653333pt;}
.y3b{bottom:658.653333pt;}
.y10{bottom:662.493333pt;}
.yc5{bottom:663.293333pt;}
.y160{bottom:665.053333pt;}
.y5d{bottom:667.453333pt;}
.y180{bottom:675.133333pt;}
.yf{bottom:677.853333pt;}
.y82{bottom:678.653333pt;}
.yc4{bottom:679.293333pt;}
.y3a{bottom:682.653333pt;}
.ye{bottom:688.573333pt;}
.y15f{bottom:688.893333pt;}
.y5c{bottom:691.293333pt;}
.yc3{bottom:695.293333pt;}
.y17f{bottom:699.133333pt;}
.y81{bottom:702.493333pt;}
.y39{bottom:706.493333pt;}
.yd{bottom:708.413333pt;}
.yc2{bottom:711.293333pt;}
.y15e{bottom:712.893333pt;}
.y5b{bottom:715.293333pt;}
.y17e{bottom:722.973333pt;}
.yc{bottom:723.773333pt;}
.y80{bottom:726.493333pt;}
.yc1{bottom:727.293333pt;}
.y38{bottom:730.493333pt;}
.yf3{bottom:735.933333pt;}
.y15d{bottom:736.733333pt;}
.y10f{bottom:737.853333pt;}
.y5a{bottom:739.133333pt;}
.yb{bottom:743.133333pt;}
.yc0{bottom:743.293333pt;}
.y17d{bottom:746.973333pt;}
.y7f{bottom:750.333333pt;}
.yf2{bottom:752.733333pt;}
.y10e{bottom:754.813333pt;}
.ybf{bottom:759.293333pt;}
.y15c{bottom:760.733333pt;}
.ya{bottom:761.533333pt;}
.y59{bottom:763.133333pt;}
.y17c{bottom:770.813333pt;}
.yf1{bottom:774.173333pt;}
.y7e{bottom:774.333333pt;}
.ybe{bottom:775.293333pt;}
.yfa{bottom:775.360000pt;}
.y12c{bottom:775.840000pt;}
.y10d{bottom:776.093333pt;}
.y115{bottom:776.960000pt;}
.y9{bottom:779.933333pt;}
.y15b{bottom:784.613333pt;}
.y58{bottom:787.013333pt;}
.y37{bottom:789.253333pt;}
.ybd{bottom:791.333333pt;}
.y17b{bottom:794.853333pt;}
.y7d{bottom:798.213333pt;}
.y8{bottom:798.373333pt;}
.ybc{bottom:807.333333pt;}
.y15a{bottom:808.613333pt;}
.y57{bottom:811.013333pt;}
.y17a{bottom:818.693333pt;}
.y7c{bottom:822.213333pt;}
.ybb{bottom:823.333333pt;}
.y159{bottom:832.453333pt;}
.y56{bottom:834.853333pt;}
.yb9{bottom:839.333333pt;}
.y179{bottom:842.693333pt;}
.y7b{bottom:846.053333pt;}
.yb8{bottom:855.333333pt;}
.y158{bottom:856.293333pt;}
.y55{bottom:858.853333pt;}
.y36{bottom:866.533333pt;}
.y7a{bottom:870.053333pt;}
.yb7{bottom:871.333333pt;}
.y157{bottom:880.293333pt;}
.y54{bottom:882.693333pt;}
.y35{bottom:884.933333pt;}
.yb6{bottom:887.333333pt;}
.y7{bottom:888.933333pt;}
.y178{bottom:890.533333pt;}
.y79{bottom:893.893333pt;}
.y34{bottom:903.333333pt;}
.y156{bottom:904.133333pt;}
.y53{bottom:906.693333pt;}
.y6{bottom:910.533333pt;}
.y177{bottom:915.493333pt;}
.y78{bottom:917.893333pt;}
.yb5{bottom:919.333333pt;}
.y33{bottom:921.733333pt;}
.y155{bottom:928.133333pt;}
.y52{bottom:930.533333pt;}
.yb3{bottom:935.333333pt;}
.y176{bottom:939.493333pt;}
.y32{bottom:940.133333pt;}
.y77{bottom:941.733333pt;}
.yaf{bottom:951.333333pt;}
.y154{bottom:951.973333pt;}
.y31{bottom:958.533333pt;}
.y175{bottom:964.453333pt;}
.y76{bottom:965.733333pt;}
.yb1{bottom:967.333333pt;}
.y30{bottom:976.933333pt;}
.y174{bottom:988.453333pt;}
.y51{bottom:989.253333pt;}
.y75{bottom:989.573333pt;}
.y2f{bottom:995.333333pt;}
.y4{bottom:1003.813333pt;}
.y50{bottom:1010.853333pt;}
.yae{bottom:1013.413333pt;}
.y74{bottom:1013.573333pt;}
.y2e{bottom:1013.733333pt;}
.y3{bottom:1024.000000pt;}
.y2{bottom:1042.560000pt;}
.y2d{bottom:1060.800000pt;}
.y1{bottom:1060.960000pt;}
.hf{height:15.200000pt;}
.h10{height:15.360000pt;}
.h11{height:15.392000pt;}
.h7{height:30.324375pt;}
.hd{height:31.200000pt;}
.he{height:36.001250pt;}
.h9{height:37.596250pt;}
.h3{height:37.624687pt;}
.h1a{height:39.905000pt;}
.h14{height:42.117188pt;}
.h15{height:42.229500pt;}
.hb{height:43.375000pt;}
.hc{height:44.437500pt;}
.h8{height:46.609688pt;}
.h4{height:50.748750pt;}
.h12{height:51.663750pt;}
.ha{height:53.600625pt;}
.h2{height:56.156250pt;}
.h1f{height:56.268562pt;}
.h5{height:61.944687pt;}
.h6{height:62.104687pt;}
.h1b{height:245.280000pt;}
.h13{height:250.560000pt;}
.h19{height:251.200000pt;}
.h1c{height:252.320000pt;}
.h17{height:252.800000pt;}
.h18{height:253.280000pt;}
.h1e{height:253.760000pt;}
.h1d{height:254.240000pt;}
.h16{height:257.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:106.112000pt;}
.w8{width:107.680000pt;}
.w6{width:107.712000pt;}
.w5{width:120.960000pt;}
.w3{width:159.706667pt;}
.w4{width:443.426667pt;}
.w10{width:560.320000pt;}
.wf{width:571.680000pt;}
.w9{width:573.760000pt;}
.wa{width:579.360000pt;}
.we{width:580.480000pt;}
.wb{width:603.840000pt;}
.wd{width:604.800000pt;}
.wc{width:604.960000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.200000pt;}
.x16{left:9.760000pt;}
.x1a{left:12.960000pt;}
.x22{left:47.834667pt;}
.x20{left:49.466667pt;}
.x24{left:50.586667pt;}
.x1f{left:55.840000pt;}
.x23{left:57.280000pt;}
.x2d{left:59.706667pt;}
.x55{left:70.813333pt;}
.x21{left:73.114667pt;}
.x1e{left:76.474667pt;}
.x56{left:87.133333pt;}
.x4f{left:92.866667pt;}
.x2{left:94.431988pt;}
.x1{left:95.871988pt;}
.x33{left:96.773333pt;}
.x4a{left:105.760000pt;}
.x2e{left:106.720000pt;}
.x29{left:109.760000pt;}
.x4e{left:110.720000pt;}
.x50{left:115.840000pt;}
.xc{left:119.071988pt;}
.x9{left:131.391988pt;}
.x2c{left:132.413333pt;}
.xa{left:133.311988pt;}
.xe{left:135.866655pt;}
.x5{left:137.946655pt;}
.xd{left:139.706655pt;}
.x18{left:141.946667pt;}
.x39{left:147.386667pt;}
.x11{left:148.826655pt;}
.x13{left:152.186655pt;}
.x42{left:153.120000pt;}
.x26{left:165.626655pt;}
.x6{left:169.786655pt;}
.x7{left:172.186655pt;}
.xf{left:179.546655pt;}
.x2b{left:201.986667pt;}
.x54{left:205.026667pt;}
.x3{left:207.706655pt;}
.x32{left:210.053333pt;}
.x3f{left:211.520000pt;}
.x53{left:214.266667pt;}
.x38{left:216.226667pt;}
.x12{left:217.946655pt;}
.x31{left:219.066667pt;}
.x4d{left:221.053333pt;}
.x3d{left:223.546667pt;}
.xb{left:229.786655pt;}
.x3c{left:232.320000pt;}
.x41{left:233.573333pt;}
.x45{left:244.506667pt;}
.x14{left:253.826655pt;}
.x17{left:255.266667pt;}
.x8{left:263.906655pt;}
.x4{left:266.146655pt;}
.x46{left:272.933333pt;}
.x3e{left:310.240000pt;}
.x36{left:311.293333pt;}
.x10{left:312.546655pt;}
.x15{left:329.826655pt;}
.x51{left:331.613333pt;}
.x2a{left:342.466667pt;}
.x4b{left:346.426667pt;}
.x30{left:347.653333pt;}
.x3a{left:349.573333pt;}
.x52{left:352.346667pt;}
.x4c{left:353.920000pt;}
.x2f{left:355.333333pt;}
.x43{left:356.386667pt;}
.x40{left:358.306667pt;}
.x44{left:363.520000pt;}
.x3b{left:371.906667pt;}
.x19{left:376.546667pt;}
.x37{left:378.786667pt;}
.x25{left:396.866655pt;}
.x1b{left:484.573333pt;}
.x1d{left:591.013333pt;}
.x57{left:651.813322pt;}
.x49{left:677.893322pt;}
.x48{left:682.853322pt;}
.x27{left:683.813322pt;}
.x28{left:686.853322pt;}
.x47{left:687.813322pt;}
.x34{left:698.533322pt;}
.x35{left:700.453322pt;}
}




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