
    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_af5398ec35293cb140d32078.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_afe7047672ff3183d1abc68e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003418;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_05945e84cd7eae8de226bea3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_24a50f84f54010c426ea1be4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fe17c7c8e98afffcd98d2bf3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_4d24bc2286929c260ec31440.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_1eafe227ba99307299267669.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_321f9007a7934f27ee7d1bb4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.106934;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_ea77e443676860881f343c93.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b444fa8036396dc2cbe9b70b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.115234;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-82.800000px;}
.v2{vertical-align:-80.040000px;}
.v1{vertical-align:-71.280000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.696000px;}
.ls14{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.216600px;}
.ls9{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.102000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.022320px;}
.ls2{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.358560px;}
.lse{letter-spacing:0.666720px;}
.ls13{letter-spacing:0.864000px;}
.ls18{letter-spacing:11.664000px;}
.ls19{letter-spacing:25.344000px;}
.ls15{letter-spacing:54.144000px;}
.ls17{letter-spacing:54.864000px;}
.ls1a{letter-spacing:185.904000px;}
.ls11{letter-spacing:996.060000px;}
.lsa{letter-spacing:1011.180000px;}
.lsd{letter-spacing:1022.700000px;}
.ls3{letter-spacing:2259.240000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-72.000000px;}
.ws4{word-spacing:-21.641760px;}
.wsa{word-spacing:-20.304000px;}
.wse{word-spacing:-20.232000px;}
.ws7{word-spacing:-20.016000px;}
.ws10{word-spacing:-19.872000px;}
.ws8{word-spacing:-19.800000px;}
.ws11{word-spacing:-19.584000px;}
.wsf{word-spacing:-16.653312px;}
.ws5{word-spacing:-16.613280px;}
.ws1{word-spacing:-10.924560px;}
.ws0{word-spacing:-10.902240px;}
.ws3{word-spacing:-10.685640px;}
.ws2{word-spacing:-10.206240px;}
.ws6{word-spacing:0.000000px;}
.wsd{word-spacing:205.808640px;}
.wsc{word-spacing:223.273920px;}
.wsb{word-spacing:392.575440px;}
._25{margin-left:-6.305280px;}
._14{margin-left:-5.184000px;}
._c{margin-left:-4.032000px;}
._d{margin-left:-2.846880px;}
._0{margin-left:-1.113120px;}
._1{width:1.481280px;}
._8{width:3.384000px;}
._7{width:4.392000px;}
._11{width:6.336000px;}
._15{width:7.344000px;}
._b{width:8.784000px;}
._a{width:9.864000px;}
._e{width:11.016000px;}
._f{width:12.672000px;}
._10{width:13.968000px;}
._12{width:15.624000px;}
._3{width:16.665120px;}
._2{width:17.712000px;}
._16{width:18.952800px;}
._13{width:22.032000px;}
._5{width:23.328000px;}
._4{width:25.200000px;}
._6{width:26.625120px;}
._1f{width:27.648000px;}
._9{width:28.656000px;}
._19{width:30.240000px;}
._17{width:31.824000px;}
._1b{width:34.246560px;}
._28{width:37.080000px;}
._21{width:39.666240px;}
._20{width:40.824000px;}
._22{width:50.112000px;}
._1c{width:53.424000px;}
._18{width:54.864000px;}
._24{width:83.409120px;}
._23{width:84.960000px;}
._27{width:184.641120px;}
._26{width:186.192000px;}
._1e{width:195.768000px;}
._1d{width:197.424000px;}
._1a{width:554.388000px;}
.fc8{color:rgb(68,114,196);}
.fc7{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(31,73,125);}
.fc9{color:rgb(34,34,34);}
.fc5{color:rgb(17,17,17);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.yd{bottom:-9.756045px;}
.y0{bottom:0.000000px;}
.ye{bottom:1.980000px;}
.y6f{bottom:3.780000px;}
.yf2{bottom:4.680000px;}
.yf6{bottom:4.860000px;}
.yc{bottom:5.040000px;}
.yf3{bottom:5.580000px;}
.yf7{bottom:5.760000px;}
.y4{bottom:6.090000px;}
.yc9{bottom:7.920000px;}
.y5{bottom:8.676000px;}
.yf{bottom:10.836000px;}
.yf1{bottom:11.160000px;}
.yf5{bottom:11.340000px;}
.y7c{bottom:14.040000px;}
.y78{bottom:14.220000px;}
.yb{bottom:16.380000px;}
.y79{bottom:24.480000px;}
.y90{bottom:24.525000px;}
.ya{bottom:39.780000px;}
.yc4{bottom:40.530000px;}
.yc2{bottom:42.870000px;}
.y8e{bottom:45.180000px;}
.ye2{bottom:52.170000px;}
.y9{bottom:54.540000px;}
.y2{bottom:57.816000px;}
.ye4{bottom:65.130000px;}
.y8{bottom:69.120000px;}
.yc5{bottom:69.945000px;}
.ybe{bottom:70.560000px;}
.yef{bottom:74.055000px;}
.yca{bottom:77.250000px;}
.ye1{bottom:77.760000px;}
.y7{bottom:83.700000px;}
.ye7{bottom:94.530000px;}
.ye5{bottom:95.295000px;}
.y6{bottom:98.460000px;}
.yc6{bottom:99.360000px;}
.yee{bottom:99.645000px;}
.ye0{bottom:103.395000px;}
.ybf{bottom:107.100000px;}
.ye8{bottom:117.180000px;}
.ye6{bottom:118.365000px;}
.yed{bottom:125.250000px;}
.yc7{bottom:128.805000px;}
.ydf{bottom:128.985000px;}
.y6d{bottom:131.616000px;}
.y118{bottom:133.236000px;}
.yaf{bottom:133.416000px;}
.y60{bottom:137.736000px;}
.ye9{bottom:140.250000px;}
.ydd{bottom:141.516000px;}
.ybc{bottom:142.056000px;}
.y89{bottom:144.036000px;}
.yc0{bottom:144.750000px;}
.yec{bottom:150.840000px;}
.y3b{bottom:151.590000px;}
.y6c{bottom:152.310000px;}
.y117{bottom:153.930000px;}
.yae{bottom:154.110000px;}
.yc8{bottom:158.220000px;}
.y5f{bottom:158.430000px;}
.ybb{bottom:159.150000px;}
.ydc{bottom:162.210000px;}
.y167{bottom:163.290000px;}
.yea{bottom:163.875000px;}
.y88{bottom:164.730000px;}
.y141{bottom:167.070000px;}
.y3a{bottom:172.290000px;}
.y6b{bottom:173.010000px;}
.yba{bottom:173.190000px;}
.yc3{bottom:174.600000px;}
.y116{bottom:174.630000px;}
.yad{bottom:174.810000px;}
.y5e{bottom:179.130000px;}
.ydb{bottom:182.910000px;}
.yc1{bottom:183.525000px;}
.y166{bottom:183.990000px;}
.y87{bottom:185.430000px;}
.y140{bottom:187.770000px;}
.yeb{bottom:188.025000px;}
.y39{bottom:192.990000px;}
.y6a{bottom:193.710000px;}
.yac{bottom:195.510000px;}
.y115{bottom:196.410000px;}
.y5d{bottom:199.830000px;}
.yda{bottom:203.610000px;}
.y165{bottom:204.690000px;}
.y86{bottom:206.130000px;}
.y13f{bottom:208.470000px;}
.y38{bottom:213.690000px;}
.y69{bottom:214.410000px;}
.yab{bottom:216.210000px;}
.y114{bottom:217.110000px;}
.y5c{bottom:220.530000px;}
.yd9{bottom:224.310000px;}
.y164{bottom:226.650000px;}
.y85{bottom:226.830000px;}
.y13e{bottom:230.250000px;}
.y37{bottom:234.390000px;}
.y68{bottom:236.370000px;}
.yaa{bottom:236.730000px;}
.y113{bottom:239.070000px;}
.y5b{bottom:241.230000px;}
.yd8{bottom:245.010000px;}
.y177{bottom:246.090000px;}
.y163{bottom:247.350000px;}
.y84{bottom:247.530000px;}
.y13d{bottom:250.950000px;}
.y36{bottom:255.090000px;}
.y67{bottom:257.070000px;}
.ya9{bottom:257.430000px;}
.y112{bottom:259.770000px;}
.y5a{bottom:261.930000px;}
.yd7{bottom:265.710000px;}
.y176{bottom:266.790000px;}
.y162{bottom:268.095000px;}
.y83{bottom:268.275000px;}
.y13c{bottom:271.695000px;}
.y35{bottom:275.835000px;}
.ya8{bottom:278.175000px;}
.y66{bottom:279.075000px;}
.y111{bottom:281.775000px;}
.y59{bottom:282.675000px;}
.yd6{bottom:285.915000px;}
.y175{bottom:288.795000px;}
.y82{bottom:288.975000px;}
.y161{bottom:290.055000px;}
.y13b{bottom:293.655000px;}
.y34{bottom:296.535000px;}
.ya7{bottom:298.875000px;}
.y65{bottom:299.775000px;}
.y110{bottom:302.475000px;}
.yd5{bottom:303.015000px;}
.y58{bottom:303.375000px;}
.y174{bottom:309.495000px;}
.y81{bottom:309.675000px;}
.y160{bottom:310.755000px;}
.y13a{bottom:314.355000px;}
.y33{bottom:317.235000px;}
.ya6{bottom:319.575000px;}
.yd4{bottom:320.295000px;}
.y64{bottom:321.735000px;}
.y57{bottom:324.075000px;}
.y10f{bottom:324.435000px;}
.y173{bottom:330.195000px;}
.y80{bottom:330.375000px;}
.y15f{bottom:331.455000px;}
.yd3{bottom:334.335000px;}
.ye3{bottom:336.060000px;}
.y139{bottom:336.315000px;}
.y32{bottom:337.935000px;}
.ya5{bottom:340.275000px;}
.y63{bottom:342.255000px;}
.y56{bottom:344.775000px;}
.y10e{bottom:345.135000px;}
.y7f{bottom:351.075000px;}
.y15e{bottom:352.155000px;}
.y138{bottom:357.015000px;}
.y31{bottom:358.635000px;}
.ya4{bottom:360.975000px;}
.y62{bottom:364.215000px;}
.y55{bottom:365.475000px;}
.y10d{bottom:365.835000px;}
.yb9{bottom:368.355000px;}
.y7e{bottom:371.775000px;}
.y172{bottom:372.855000px;}
.y15d{bottom:374.115000px;}
.y137{bottom:377.715000px;}
.y30{bottom:379.335000px;}
.ya3{bottom:381.675000px;}
.y61{bottom:384.915000px;}
.y54{bottom:386.175000px;}
.y10c{bottom:386.535000px;}
.yb8{bottom:389.055000px;}
.y7d{bottom:391.935000px;}
.y171{bottom:393.555000px;}
.y15c{bottom:394.815000px;}
.y136{bottom:399.675000px;}
.y2f{bottom:400.035000px;}
.ya2{bottom:402.375000px;}
.y7b{bottom:406.695000px;}
.y53{bottom:406.875000px;}
.y10b{bottom:407.235000px;}
.yb7{bottom:409.755000px;}
.y17f{bottom:414.255000px;}
.y15b{bottom:415.515000px;}
.y135{bottom:420.375000px;}
.y2e{bottom:420.735000px;}
.ya1{bottom:423.075000px;}
.y52{bottom:427.575000px;}
.y10a{bottom:427.935000px;}
.yb6{bottom:430.455000px;}
.y15a{bottom:436.215000px;}
.y170{bottom:437.295000px;}
.y2d{bottom:441.435000px;}
.y134{bottom:442.155000px;}
.ya0{bottom:443.775000px;}
.y51{bottom:448.275000px;}
.y109{bottom:448.635000px;}
.y7a{bottom:448.815000px;}
.yb5{bottom:451.155000px;}
.y17e{bottom:456.915000px;}
.y159{bottom:457.995000px;}
.y2c{bottom:462.135000px;}
.y133{bottom:462.855000px;}
.y9f{bottom:464.475000px;}
.y50{bottom:468.975000px;}
.y108{bottom:469.335000px;}
.yb4{bottom:471.855000px;}
.y17d{bottom:477.615000px;}
.y158{bottom:478.695000px;}
.y2b{bottom:482.835000px;}
.y132{bottom:483.555000px;}
.y9e{bottom:485.175000px;}
.y4f{bottom:489.675000px;}
.y107{bottom:490.035000px;}
.y77{bottom:490.935000px;}
.yb3{bottom:492.555000px;}
.y17c{bottom:498.315000px;}
.y157{bottom:499.395000px;}
.y16f{bottom:500.655000px;}
.y2a{bottom:503.535000px;}
.y131{bottom:505.515000px;}
.y9d{bottom:507.135000px;}
.y4e{bottom:510.375000px;}
.y106{bottom:510.735000px;}
.yb2{bottom:512.715000px;}
.y156{bottom:520.095000px;}
.y16e{bottom:521.355000px;}
.y29{bottom:524.235000px;}
.y130{bottom:526.215000px;}
.y9c{bottom:529.095000px;}
.yb1{bottom:529.815000px;}
.y4d{bottom:531.075000px;}
.y105{bottom:531.435000px;}
.y76{bottom:533.085000px;}
.y17b{bottom:540.825000px;}
.y155{bottom:542.085000px;}
.yb0{bottom:543.885000px;}
.ybd{bottom:544.860000px;}
.y28{bottom:544.965000px;}
.y12f{bottom:546.945000px;}
.y9b{bottom:551.085000px;}
.y4c{bottom:551.805000px;}
.y104{bottom:552.165000px;}
.y75{bottom:557.925000px;}
.y17a{bottom:561.525000px;}
.y154{bottom:562.785000px;}
.y16d{bottom:564.045000px;}
.y27{bottom:565.665000px;}
.y12e{bottom:568.905000px;}
.y4b{bottom:572.505000px;}
.y9a{bottom:572.865000px;}
.y74{bottom:575.565000px;}
.y153{bottom:583.485000px;}
.y16c{bottom:584.745000px;}
.y26{bottom:586.365000px;}
.y12d{bottom:589.605000px;}
.y4a{bottom:593.205000px;}
.y103{bottom:593.385000px;}
.y99{bottom:594.825000px;}
.yd2{bottom:595.185000px;}
.y73{bottom:595.725000px;}
.y152{bottom:604.185000px;}
.y16b{bottom:605.445000px;}
.y25{bottom:607.065000px;}
.y12c{bottom:610.305000px;}
.y72{bottom:610.485000px;}
.y49{bottom:613.905000px;}
.y102{bottom:614.085000px;}
.y98{bottom:615.525000px;}
.yd1{bottom:615.885000px;}
.y151{bottom:626.145000px;}
.y24{bottom:627.225000px;}
.y71{bottom:631.905000px;}
.y12b{bottom:632.085000px;}
.y48{bottom:634.605000px;}
.y101{bottom:634.785000px;}
.y97{bottom:636.225000px;}
.yd0{bottom:636.585000px;}
.y23{bottom:644.325000px;}
.y150{bottom:646.845000px;}
.y16a{bottom:647.925000px;}
.y12a{bottom:652.785000px;}
.y70{bottom:653.505000px;}
.y47{bottom:655.305000px;}
.y100{bottom:655.485000px;}
.y96{bottom:656.925000px;}
.ycf{bottom:657.285000px;}
.y22{bottom:661.605000px;}
.y179{bottom:667.545000px;}
.y14f{bottom:668.625000px;}
.y129{bottom:674.745000px;}
.y6e{bottom:674.925000px;}
.y46{bottom:676.005000px;}
.yff{bottom:676.185000px;}
.y95{bottom:677.625000px;}
.yce{bottom:677.985000px;}
.y21{bottom:678.885000px;}
.y14e{bottom:689.325000px;}
.y128{bottom:695.445000px;}
.y20{bottom:696.165000px;}
.y45{bottom:696.705000px;}
.yfe{bottom:696.885000px;}
.ycd{bottom:698.145000px;}
.y94{bottom:698.325000px;}
.y14d{bottom:710.025000px;}
.y169{bottom:711.285000px;}
.y1f{bottom:713.445000px;}
.ycc{bottom:715.245000px;}
.y127{bottom:716.145000px;}
.yfd{bottom:717.045000px;}
.y44{bottom:717.405000px;}
.y93{bottom:719.025000px;}
.ycb{bottom:729.285000px;}
.yde{bottom:729.900000px;}
.y1e{bottom:730.545000px;}
.yfc{bottom:731.805000px;}
.y14c{bottom:731.985000px;}
.y126{bottom:736.845000px;}
.y43{bottom:738.105000px;}
.y92{bottom:739.185000px;}
.y1d{bottom:747.825000px;}
.y14b{bottom:752.685000px;}
.y91{bottom:753.945000px;}
.y125{bottom:757.545000px;}
.y42{bottom:758.805000px;}
.y1c{bottom:765.105000px;}
.yfb{bottom:773.205000px;}
.y14a{bottom:773.385000px;}
.y168{bottom:774.645000px;}
.y8f{bottom:775.365000px;}
.y124{bottom:778.245000px;}
.y41{bottom:779.505000px;}
.y1b{bottom:782.385000px;}
.y149{bottom:795.345000px;}
.y123{bottom:798.990000px;}
.y1a{bottom:799.710000px;}
.y40{bottom:800.250000px;}
.yfa{bottom:814.650000px;}
.y148{bottom:816.090000px;}
.y19{bottom:816.990000px;}
.y8d{bottom:817.530000px;}
.y122{bottom:819.690000px;}
.y3f{bottom:820.950000px;}
.y18{bottom:834.090000px;}
.y178{bottom:836.790000px;}
.y147{bottom:838.050000px;}
.y121{bottom:840.390000px;}
.y3e{bottom:841.650000px;}
.y17{bottom:851.370000px;}
.yf9{bottom:856.050000px;}
.y146{bottom:858.750000px;}
.y120{bottom:861.090000px;}
.y3d{bottom:862.350000px;}
.y16{bottom:868.650000px;}
.y145{bottom:879.450000px;}
.y8c{bottom:880.350000px;}
.y11f{bottom:881.790000px;}
.y3c{bottom:883.050000px;}
.yf8{bottom:897.450000px;}
.y144{bottom:901.230000px;}
.y11e{bottom:902.490000px;}
.y15{bottom:903.750000px;}
.y143{bottom:921.930000px;}
.y8b{bottom:922.650000px;}
.y11d{bottom:923.190000px;}
.y14{bottom:924.450000px;}
.yf4{bottom:939.570000px;}
.y142{bottom:942.630000px;}
.y11c{bottom:943.890000px;}
.y8a{bottom:944.070000px;}
.y13{bottom:945.150000px;}
.yf0{bottom:962.970000px;}
.y11b{bottom:964.590000px;}
.y12{bottom:965.850000px;}
.y11a{bottom:985.290000px;}
.y11{bottom:986.550000px;}
.y119{bottom:1005.990000px;}
.y10{bottom:1007.250000px;}
.y1{bottom:1028.130000px;}
.y3{bottom:1054.620000px;}
.h2{height:17.460000px;}
.hd{height:20.700000px;}
.h17{height:22.500000px;}
.h5{height:39.783867px;}
.he{height:41.400000px;}
.h10{height:41.436000px;}
.h7{height:47.980898px;}
.h6{height:49.394180px;}
.h13{height:53.573906px;}
.h3{height:53.709961px;}
.h1{height:59.439023px;}
.hf{height:62.100000px;}
.hc{height:62.327813px;}
.h15{height:62.478000px;}
.h8{height:74.004654px;}
.hb{height:75.093750px;}
.ha{height:107.419911px;}
.h4{height:109.800000px;}
.h9{height:128.376000px;}
.h12{height:190.080000px;}
.h14{height:190.800000px;}
.h11{height:230.940000px;}
.h16{height:234.720000px;}
.h0{height:1188.000000px;}
.w12{width:12.780000px;}
.w13{width:21.420000px;}
.w4{width:30.060000px;}
.w1a{width:53.640000px;}
.w19{width:53.676000px;}
.w1b{width:57.960000px;}
.w1c{width:60.156000px;}
.w10{width:74.160000px;}
.w16{width:79.740000px;}
.w6{width:80.316000px;}
.w15{width:81.576000px;}
.w17{width:85.176000px;}
.w18{width:95.940000px;}
.w7{width:141.696000px;}
.w5{width:161.280000px;}
.wa{width:182.550000px;}
.wb{width:182.730000px;}
.w14{width:225.435000px;}
.w9{width:262.650000px;}
.w8{width:305.355000px;}
.w11{width:329.655000px;}
.wc{width:537.480000px;}
.wd{width:548.460000px;}
.w3{width:554.145000px;}
.we{width:570.420000px;}
.wf{width:582.840000px;}
.w2{width:914.760000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:1.440015px;}
.x54{left:5.220000px;}
.x60{left:6.480000px;}
.x59{left:10.800000px;}
.x52{left:14.370000px;}
.x32{left:16.740000px;}
.x51{left:18.615000px;}
.x39{left:21.240000px;}
.xe{left:23.220000px;}
.x50{left:28.290000px;}
.x20{left:30.090000px;}
.x37{left:31.860000px;}
.x7{left:33.300000px;}
.x1e{left:35.130000px;}
.x36{left:38.160000px;}
.x43{left:41.325000px;}
.x2f{left:45.180000px;}
.x1c{left:48.600000px;}
.x21{left:53.280000px;}
.x23{left:55.800000px;}
.x22{left:59.040000px;}
.x2d{left:61.560000px;}
.x8{left:62.865000px;}
.x2b{left:64.080000px;}
.x34{left:66.774000px;}
.x2e{left:68.220000px;}
.x38{left:69.654000px;}
.x4{left:73.259985px;}
.x28{left:75.780000px;}
.x40{left:77.940000px;}
.x9{left:80.325000px;}
.x44{left:81.750000px;}
.x35{left:86.220000px;}
.x2c{left:87.480000px;}
.x3f{left:88.530000px;}
.x56{left:91.305000px;}
.x1{left:95.795986px;}
.x2a{left:105.660000px;}
.x6{left:115.785000px;}
.x18{left:121.355986px;}
.x19{left:122.795986px;}
.xa{left:136.125000px;}
.x1a{left:149.795986px;}
.x4c{left:172.800000px;}
.x4a{left:178.560000px;}
.x27{left:180.030000px;}
.x42{left:189.720000px;}
.x41{left:193.350000px;}
.x3e{left:195.300000px;}
.x47{left:200.369986px;}
.x2{left:201.449986px;}
.x5{left:207.390000px;}
.x55{left:209.370000px;}
.x1b{left:272.055000px;}
.xc{left:275.115000px;}
.x30{left:279.795000px;}
.x49{left:281.054986px;}
.x26{left:285.554986px;}
.x3b{left:286.814986px;}
.x3d{left:289.334986px;}
.x5b{left:290.955000px;}
.x4d{left:299.985000px;}
.x4e{left:315.570000px;}
.xb{left:318.495000px;}
.x4f{left:323.175000px;}
.x5c{left:370.695000px;}
.x24{left:401.834986px;}
.x1d{left:434.055000px;}
.x5d{left:455.865000px;}
.x31{left:463.065000px;}
.x25{left:464.504986px;}
.x29{left:486.105000px;}
.x45{left:487.590000px;}
.x4b{left:490.395000px;}
.x53{left:503.970000px;}
.x1f{left:515.085000px;}
.x57{left:539.025000px;}
.x58{left:551.805000px;}
.x10{left:553.784986px;}
.x5a{left:573.225000px;}
.x16{left:598.784986px;}
.x5e{left:626.910000px;}
.x14{left:640.409986px;}
.x33{left:646.530000px;}
.x13{left:660.029986px;}
.x15{left:661.649986px;}
.xf{left:666.329986px;}
.x17{left:672.809986px;}
.x5f{left:680.550000px;}
.x11{left:705.389986px;}
.x3a{left:733.289986px;}
.x3c{left:739.049986px;}
.x46{left:750.209986px;}
.x48{left:755.789986px;}
.xd{left:802.260000px;}
.x12{left:833.219986px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v2{vertical-align:-71.146667pt;}
.v1{vertical-align:-63.360000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.618667pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.192533pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.090667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.019840pt;}
.ls2{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.318720pt;}
.lse{letter-spacing:0.592640pt;}
.ls13{letter-spacing:0.768000pt;}
.ls18{letter-spacing:10.368000pt;}
.ls19{letter-spacing:22.528000pt;}
.ls15{letter-spacing:48.128000pt;}
.ls17{letter-spacing:48.768000pt;}
.ls1a{letter-spacing:165.248000pt;}
.ls11{letter-spacing:885.386667pt;}
.lsa{letter-spacing:898.826667pt;}
.lsd{letter-spacing:909.066667pt;}
.ls3{letter-spacing:2008.213333pt;}
.ws9{word-spacing:-64.000000pt;}
.ws4{word-spacing:-19.237120pt;}
.wsa{word-spacing:-18.048000pt;}
.wse{word-spacing:-17.984000pt;}
.ws7{word-spacing:-17.792000pt;}
.ws10{word-spacing:-17.664000pt;}
.ws8{word-spacing:-17.600000pt;}
.ws11{word-spacing:-17.408000pt;}
.wsf{word-spacing:-14.802944pt;}
.ws5{word-spacing:-14.767360pt;}
.ws1{word-spacing:-9.710720pt;}
.ws0{word-spacing:-9.690880pt;}
.ws3{word-spacing:-9.498347pt;}
.ws2{word-spacing:-9.072213pt;}
.ws6{word-spacing:0.000000pt;}
.wsd{word-spacing:182.941013pt;}
.wsc{word-spacing:198.465707pt;}
.wsb{word-spacing:348.955947pt;}
._25{margin-left:-5.604693pt;}
._14{margin-left:-4.608000pt;}
._c{margin-left:-3.584000pt;}
._d{margin-left:-2.530560pt;}
._0{margin-left:-0.989440pt;}
._1{width:1.316693pt;}
._8{width:3.008000pt;}
._7{width:3.904000pt;}
._11{width:5.632000pt;}
._15{width:6.528000pt;}
._b{width:7.808000pt;}
._a{width:8.768000pt;}
._e{width:9.792000pt;}
._f{width:11.264000pt;}
._10{width:12.416000pt;}
._12{width:13.888000pt;}
._3{width:14.813440pt;}
._2{width:15.744000pt;}
._16{width:16.846933pt;}
._13{width:19.584000pt;}
._5{width:20.736000pt;}
._4{width:22.400000pt;}
._6{width:23.666773pt;}
._1f{width:24.576000pt;}
._9{width:25.472000pt;}
._19{width:26.880000pt;}
._17{width:28.288000pt;}
._1b{width:30.441387pt;}
._28{width:32.960000pt;}
._21{width:35.258880pt;}
._20{width:36.288000pt;}
._22{width:44.544000pt;}
._1c{width:47.488000pt;}
._18{width:48.768000pt;}
._24{width:74.141440pt;}
._23{width:75.520000pt;}
._27{width:164.125440pt;}
._26{width:165.504000pt;}
._1e{width:174.016000pt;}
._1d{width:175.488000pt;}
._1a{width:492.789333pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.yd{bottom:-8.672040pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:1.760000pt;}
.y6f{bottom:3.360000pt;}
.yf2{bottom:4.160000pt;}
.yf6{bottom:4.320000pt;}
.yc{bottom:4.480000pt;}
.yf3{bottom:4.960000pt;}
.yf7{bottom:5.120000pt;}
.y4{bottom:5.413333pt;}
.yc9{bottom:7.040000pt;}
.y5{bottom:7.712000pt;}
.yf{bottom:9.632000pt;}
.yf1{bottom:9.920000pt;}
.yf5{bottom:10.080000pt;}
.y7c{bottom:12.480000pt;}
.y78{bottom:12.640000pt;}
.yb{bottom:14.560000pt;}
.y79{bottom:21.760000pt;}
.y90{bottom:21.800000pt;}
.ya{bottom:35.360000pt;}
.yc4{bottom:36.026667pt;}
.yc2{bottom:38.106667pt;}
.y8e{bottom:40.160000pt;}
.ye2{bottom:46.373333pt;}
.y9{bottom:48.480000pt;}
.y2{bottom:51.392000pt;}
.ye4{bottom:57.893333pt;}
.y8{bottom:61.440000pt;}
.yc5{bottom:62.173333pt;}
.ybe{bottom:62.720000pt;}
.yef{bottom:65.826667pt;}
.yca{bottom:68.666667pt;}
.ye1{bottom:69.120000pt;}
.y7{bottom:74.400000pt;}
.ye7{bottom:84.026667pt;}
.ye5{bottom:84.706667pt;}
.y6{bottom:87.520000pt;}
.yc6{bottom:88.320000pt;}
.yee{bottom:88.573333pt;}
.ye0{bottom:91.906667pt;}
.ybf{bottom:95.200000pt;}
.ye8{bottom:104.160000pt;}
.ye6{bottom:105.213333pt;}
.yed{bottom:111.333333pt;}
.yc7{bottom:114.493333pt;}
.ydf{bottom:114.653333pt;}
.y6d{bottom:116.992000pt;}
.y118{bottom:118.432000pt;}
.yaf{bottom:118.592000pt;}
.y60{bottom:122.432000pt;}
.ye9{bottom:124.666667pt;}
.ydd{bottom:125.792000pt;}
.ybc{bottom:126.272000pt;}
.y89{bottom:128.032000pt;}
.yc0{bottom:128.666667pt;}
.yec{bottom:134.080000pt;}
.y3b{bottom:134.746667pt;}
.y6c{bottom:135.386667pt;}
.y117{bottom:136.826667pt;}
.yae{bottom:136.986667pt;}
.yc8{bottom:140.640000pt;}
.y5f{bottom:140.826667pt;}
.ybb{bottom:141.466667pt;}
.ydc{bottom:144.186667pt;}
.y167{bottom:145.146667pt;}
.yea{bottom:145.666667pt;}
.y88{bottom:146.426667pt;}
.y141{bottom:148.506667pt;}
.y3a{bottom:153.146667pt;}
.y6b{bottom:153.786667pt;}
.yba{bottom:153.946667pt;}
.yc3{bottom:155.200000pt;}
.y116{bottom:155.226667pt;}
.yad{bottom:155.386667pt;}
.y5e{bottom:159.226667pt;}
.ydb{bottom:162.586667pt;}
.yc1{bottom:163.133333pt;}
.y166{bottom:163.546667pt;}
.y87{bottom:164.826667pt;}
.y140{bottom:166.906667pt;}
.yeb{bottom:167.133333pt;}
.y39{bottom:171.546667pt;}
.y6a{bottom:172.186667pt;}
.yac{bottom:173.786667pt;}
.y115{bottom:174.586667pt;}
.y5d{bottom:177.626667pt;}
.yda{bottom:180.986667pt;}
.y165{bottom:181.946667pt;}
.y86{bottom:183.226667pt;}
.y13f{bottom:185.306667pt;}
.y38{bottom:189.946667pt;}
.y69{bottom:190.586667pt;}
.yab{bottom:192.186667pt;}
.y114{bottom:192.986667pt;}
.y5c{bottom:196.026667pt;}
.yd9{bottom:199.386667pt;}
.y164{bottom:201.466667pt;}
.y85{bottom:201.626667pt;}
.y13e{bottom:204.666667pt;}
.y37{bottom:208.346667pt;}
.y68{bottom:210.106667pt;}
.yaa{bottom:210.426667pt;}
.y113{bottom:212.506667pt;}
.y5b{bottom:214.426667pt;}
.yd8{bottom:217.786667pt;}
.y177{bottom:218.746667pt;}
.y163{bottom:219.866667pt;}
.y84{bottom:220.026667pt;}
.y13d{bottom:223.066667pt;}
.y36{bottom:226.746667pt;}
.y67{bottom:228.506667pt;}
.ya9{bottom:228.826667pt;}
.y112{bottom:230.906667pt;}
.y5a{bottom:232.826667pt;}
.yd7{bottom:236.186667pt;}
.y176{bottom:237.146667pt;}
.y162{bottom:238.306667pt;}
.y83{bottom:238.466667pt;}
.y13c{bottom:241.506667pt;}
.y35{bottom:245.186667pt;}
.ya8{bottom:247.266667pt;}
.y66{bottom:248.066667pt;}
.y111{bottom:250.466667pt;}
.y59{bottom:251.266667pt;}
.yd6{bottom:254.146667pt;}
.y175{bottom:256.706667pt;}
.y82{bottom:256.866667pt;}
.y161{bottom:257.826667pt;}
.y13b{bottom:261.026667pt;}
.y34{bottom:263.586667pt;}
.ya7{bottom:265.666667pt;}
.y65{bottom:266.466667pt;}
.y110{bottom:268.866667pt;}
.yd5{bottom:269.346667pt;}
.y58{bottom:269.666667pt;}
.y174{bottom:275.106667pt;}
.y81{bottom:275.266667pt;}
.y160{bottom:276.226667pt;}
.y13a{bottom:279.426667pt;}
.y33{bottom:281.986667pt;}
.ya6{bottom:284.066667pt;}
.yd4{bottom:284.706667pt;}
.y64{bottom:285.986667pt;}
.y57{bottom:288.066667pt;}
.y10f{bottom:288.386667pt;}
.y173{bottom:293.506667pt;}
.y80{bottom:293.666667pt;}
.y15f{bottom:294.626667pt;}
.yd3{bottom:297.186667pt;}
.ye3{bottom:298.720000pt;}
.y139{bottom:298.946667pt;}
.y32{bottom:300.386667pt;}
.ya5{bottom:302.466667pt;}
.y63{bottom:304.226667pt;}
.y56{bottom:306.466667pt;}
.y10e{bottom:306.786667pt;}
.y7f{bottom:312.066667pt;}
.y15e{bottom:313.026667pt;}
.y138{bottom:317.346667pt;}
.y31{bottom:318.786667pt;}
.ya4{bottom:320.866667pt;}
.y62{bottom:323.746667pt;}
.y55{bottom:324.866667pt;}
.y10d{bottom:325.186667pt;}
.yb9{bottom:327.426667pt;}
.y7e{bottom:330.466667pt;}
.y172{bottom:331.426667pt;}
.y15d{bottom:332.546667pt;}
.y137{bottom:335.746667pt;}
.y30{bottom:337.186667pt;}
.ya3{bottom:339.266667pt;}
.y61{bottom:342.146667pt;}
.y54{bottom:343.266667pt;}
.y10c{bottom:343.586667pt;}
.yb8{bottom:345.826667pt;}
.y7d{bottom:348.386667pt;}
.y171{bottom:349.826667pt;}
.y15c{bottom:350.946667pt;}
.y136{bottom:355.266667pt;}
.y2f{bottom:355.586667pt;}
.ya2{bottom:357.666667pt;}
.y7b{bottom:361.506667pt;}
.y53{bottom:361.666667pt;}
.y10b{bottom:361.986667pt;}
.yb7{bottom:364.226667pt;}
.y17f{bottom:368.226667pt;}
.y15b{bottom:369.346667pt;}
.y135{bottom:373.666667pt;}
.y2e{bottom:373.986667pt;}
.ya1{bottom:376.066667pt;}
.y52{bottom:380.066667pt;}
.y10a{bottom:380.386667pt;}
.yb6{bottom:382.626667pt;}
.y15a{bottom:387.746667pt;}
.y170{bottom:388.706667pt;}
.y2d{bottom:392.386667pt;}
.y134{bottom:393.026667pt;}
.ya0{bottom:394.466667pt;}
.y51{bottom:398.466667pt;}
.y109{bottom:398.786667pt;}
.y7a{bottom:398.946667pt;}
.yb5{bottom:401.026667pt;}
.y17e{bottom:406.146667pt;}
.y159{bottom:407.106667pt;}
.y2c{bottom:410.786667pt;}
.y133{bottom:411.426667pt;}
.y9f{bottom:412.866667pt;}
.y50{bottom:416.866667pt;}
.y108{bottom:417.186667pt;}
.yb4{bottom:419.426667pt;}
.y17d{bottom:424.546667pt;}
.y158{bottom:425.506667pt;}
.y2b{bottom:429.186667pt;}
.y132{bottom:429.826667pt;}
.y9e{bottom:431.266667pt;}
.y4f{bottom:435.266667pt;}
.y107{bottom:435.586667pt;}
.y77{bottom:436.386667pt;}
.yb3{bottom:437.826667pt;}
.y17c{bottom:442.946667pt;}
.y157{bottom:443.906667pt;}
.y16f{bottom:445.026667pt;}
.y2a{bottom:447.586667pt;}
.y131{bottom:449.346667pt;}
.y9d{bottom:450.786667pt;}
.y4e{bottom:453.666667pt;}
.y106{bottom:453.986667pt;}
.yb2{bottom:455.746667pt;}
.y156{bottom:462.306667pt;}
.y16e{bottom:463.426667pt;}
.y29{bottom:465.986667pt;}
.y130{bottom:467.746667pt;}
.y9c{bottom:470.306667pt;}
.yb1{bottom:470.946667pt;}
.y4d{bottom:472.066667pt;}
.y105{bottom:472.386667pt;}
.y76{bottom:473.853333pt;}
.y17b{bottom:480.733333pt;}
.y155{bottom:481.853333pt;}
.yb0{bottom:483.453333pt;}
.ybd{bottom:484.320000pt;}
.y28{bottom:484.413333pt;}
.y12f{bottom:486.173333pt;}
.y9b{bottom:489.853333pt;}
.y4c{bottom:490.493333pt;}
.y104{bottom:490.813333pt;}
.y75{bottom:495.933333pt;}
.y17a{bottom:499.133333pt;}
.y154{bottom:500.253333pt;}
.y16d{bottom:501.373333pt;}
.y27{bottom:502.813333pt;}
.y12e{bottom:505.693333pt;}
.y4b{bottom:508.893333pt;}
.y9a{bottom:509.213333pt;}
.y74{bottom:511.613333pt;}
.y153{bottom:518.653333pt;}
.y16c{bottom:519.773333pt;}
.y26{bottom:521.213333pt;}
.y12d{bottom:524.093333pt;}
.y4a{bottom:527.293333pt;}
.y103{bottom:527.453333pt;}
.y99{bottom:528.733333pt;}
.yd2{bottom:529.053333pt;}
.y73{bottom:529.533333pt;}
.y152{bottom:537.053333pt;}
.y16b{bottom:538.173333pt;}
.y25{bottom:539.613333pt;}
.y12c{bottom:542.493333pt;}
.y72{bottom:542.653333pt;}
.y49{bottom:545.693333pt;}
.y102{bottom:545.853333pt;}
.y98{bottom:547.133333pt;}
.yd1{bottom:547.453333pt;}
.y151{bottom:556.573333pt;}
.y24{bottom:557.533333pt;}
.y71{bottom:561.693333pt;}
.y12b{bottom:561.853333pt;}
.y48{bottom:564.093333pt;}
.y101{bottom:564.253333pt;}
.y97{bottom:565.533333pt;}
.yd0{bottom:565.853333pt;}
.y23{bottom:572.733333pt;}
.y150{bottom:574.973333pt;}
.y16a{bottom:575.933333pt;}
.y12a{bottom:580.253333pt;}
.y70{bottom:580.893333pt;}
.y47{bottom:582.493333pt;}
.y100{bottom:582.653333pt;}
.y96{bottom:583.933333pt;}
.ycf{bottom:584.253333pt;}
.y22{bottom:588.093333pt;}
.y179{bottom:593.373333pt;}
.y14f{bottom:594.333333pt;}
.y129{bottom:599.773333pt;}
.y6e{bottom:599.933333pt;}
.y46{bottom:600.893333pt;}
.yff{bottom:601.053333pt;}
.y95{bottom:602.333333pt;}
.yce{bottom:602.653333pt;}
.y21{bottom:603.453333pt;}
.y14e{bottom:612.733333pt;}
.y128{bottom:618.173333pt;}
.y20{bottom:618.813333pt;}
.y45{bottom:619.293333pt;}
.yfe{bottom:619.453333pt;}
.ycd{bottom:620.573333pt;}
.y94{bottom:620.733333pt;}
.y14d{bottom:631.133333pt;}
.y169{bottom:632.253333pt;}
.y1f{bottom:634.173333pt;}
.ycc{bottom:635.773333pt;}
.y127{bottom:636.573333pt;}
.yfd{bottom:637.373333pt;}
.y44{bottom:637.693333pt;}
.y93{bottom:639.133333pt;}
.ycb{bottom:648.253333pt;}
.yde{bottom:648.800000pt;}
.y1e{bottom:649.373333pt;}
.yfc{bottom:650.493333pt;}
.y14c{bottom:650.653333pt;}
.y126{bottom:654.973333pt;}
.y43{bottom:656.093333pt;}
.y92{bottom:657.053333pt;}
.y1d{bottom:664.733333pt;}
.y14b{bottom:669.053333pt;}
.y91{bottom:670.173333pt;}
.y125{bottom:673.373333pt;}
.y42{bottom:674.493333pt;}
.y1c{bottom:680.093333pt;}
.yfb{bottom:687.293333pt;}
.y14a{bottom:687.453333pt;}
.y168{bottom:688.573333pt;}
.y8f{bottom:689.213333pt;}
.y124{bottom:691.773333pt;}
.y41{bottom:692.893333pt;}
.y1b{bottom:695.453333pt;}
.y149{bottom:706.973333pt;}
.y123{bottom:710.213333pt;}
.y1a{bottom:710.853333pt;}
.y40{bottom:711.333333pt;}
.yfa{bottom:724.133333pt;}
.y148{bottom:725.413333pt;}
.y19{bottom:726.213333pt;}
.y8d{bottom:726.693333pt;}
.y122{bottom:728.613333pt;}
.y3f{bottom:729.733333pt;}
.y18{bottom:741.413333pt;}
.y178{bottom:743.813333pt;}
.y147{bottom:744.933333pt;}
.y121{bottom:747.013333pt;}
.y3e{bottom:748.133333pt;}
.y17{bottom:756.773333pt;}
.yf9{bottom:760.933333pt;}
.y146{bottom:763.333333pt;}
.y120{bottom:765.413333pt;}
.y3d{bottom:766.533333pt;}
.y16{bottom:772.133333pt;}
.y145{bottom:781.733333pt;}
.y8c{bottom:782.533333pt;}
.y11f{bottom:783.813333pt;}
.y3c{bottom:784.933333pt;}
.yf8{bottom:797.733333pt;}
.y144{bottom:801.093333pt;}
.y11e{bottom:802.213333pt;}
.y15{bottom:803.333333pt;}
.y143{bottom:819.493333pt;}
.y8b{bottom:820.133333pt;}
.y11d{bottom:820.613333pt;}
.y14{bottom:821.733333pt;}
.yf4{bottom:835.173333pt;}
.y142{bottom:837.893333pt;}
.y11c{bottom:839.013333pt;}
.y8a{bottom:839.173333pt;}
.y13{bottom:840.133333pt;}
.yf0{bottom:855.973333pt;}
.y11b{bottom:857.413333pt;}
.y12{bottom:858.533333pt;}
.y11a{bottom:875.813333pt;}
.y11{bottom:876.933333pt;}
.y119{bottom:894.213333pt;}
.y10{bottom:895.333333pt;}
.y1{bottom:913.893333pt;}
.y3{bottom:937.440000pt;}
.h2{height:15.520000pt;}
.hd{height:18.400000pt;}
.h17{height:20.000000pt;}
.h5{height:35.363437pt;}
.he{height:36.800000pt;}
.h10{height:36.832000pt;}
.h7{height:42.649687pt;}
.h6{height:43.905937pt;}
.h13{height:47.621250pt;}
.h3{height:47.742188pt;}
.h1{height:52.834688pt;}
.hf{height:55.200000pt;}
.hc{height:55.402500pt;}
.h15{height:55.536000pt;}
.h8{height:65.781915pt;}
.hb{height:66.750000pt;}
.ha{height:95.484365pt;}
.h4{height:97.600000pt;}
.h9{height:114.112000pt;}
.h12{height:168.960000pt;}
.h14{height:169.600000pt;}
.h11{height:205.280000pt;}
.h16{height:208.640000pt;}
.h0{height:1056.000000pt;}
.w12{width:11.360000pt;}
.w13{width:19.040000pt;}
.w4{width:26.720000pt;}
.w1a{width:47.680000pt;}
.w19{width:47.712000pt;}
.w1b{width:51.520000pt;}
.w1c{width:53.472000pt;}
.w10{width:65.920000pt;}
.w16{width:70.880000pt;}
.w6{width:71.392000pt;}
.w15{width:72.512000pt;}
.w17{width:75.712000pt;}
.w18{width:85.280000pt;}
.w7{width:125.952000pt;}
.w5{width:143.360000pt;}
.wa{width:162.266667pt;}
.wb{width:162.426667pt;}
.w14{width:200.386667pt;}
.w9{width:233.466667pt;}
.w8{width:271.426667pt;}
.w11{width:293.026667pt;}
.wc{width:477.760000pt;}
.wd{width:487.520000pt;}
.w3{width:492.573333pt;}
.we{width:507.040000pt;}
.wf{width:518.080000pt;}
.w2{width:813.120000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280013pt;}
.x54{left:4.640000pt;}
.x60{left:5.760000pt;}
.x59{left:9.600000pt;}
.x52{left:12.773333pt;}
.x32{left:14.880000pt;}
.x51{left:16.546667pt;}
.x39{left:18.880000pt;}
.xe{left:20.640000pt;}
.x50{left:25.146667pt;}
.x20{left:26.746667pt;}
.x37{left:28.320000pt;}
.x7{left:29.600000pt;}
.x1e{left:31.226667pt;}
.x36{left:33.920000pt;}
.x43{left:36.733333pt;}
.x2f{left:40.160000pt;}
.x1c{left:43.200000pt;}
.x21{left:47.360000pt;}
.x23{left:49.600000pt;}
.x22{left:52.480000pt;}
.x2d{left:54.720000pt;}
.x8{left:55.880000pt;}
.x2b{left:56.960000pt;}
.x34{left:59.354667pt;}
.x2e{left:60.640000pt;}
.x38{left:61.914667pt;}
.x4{left:65.119987pt;}
.x28{left:67.360000pt;}
.x40{left:69.280000pt;}
.x9{left:71.400000pt;}
.x44{left:72.666667pt;}
.x35{left:76.640000pt;}
.x2c{left:77.760000pt;}
.x3f{left:78.693333pt;}
.x56{left:81.160000pt;}
.x1{left:85.151988pt;}
.x2a{left:93.920000pt;}
.x6{left:102.920000pt;}
.x18{left:107.871988pt;}
.x19{left:109.151988pt;}
.xa{left:121.000000pt;}
.x1a{left:133.151988pt;}
.x4c{left:153.600000pt;}
.x4a{left:158.720000pt;}
.x27{left:160.026667pt;}
.x42{left:168.640000pt;}
.x41{left:171.866667pt;}
.x3e{left:173.600000pt;}
.x47{left:178.106655pt;}
.x2{left:179.066655pt;}
.x5{left:184.346667pt;}
.x55{left:186.106667pt;}
.x1b{left:241.826667pt;}
.xc{left:244.546667pt;}
.x30{left:248.706667pt;}
.x49{left:249.826655pt;}
.x26{left:253.826655pt;}
.x3b{left:254.946655pt;}
.x3d{left:257.186655pt;}
.x5b{left:258.626667pt;}
.x4d{left:266.653333pt;}
.x4e{left:280.506667pt;}
.xb{left:283.106667pt;}
.x4f{left:287.266667pt;}
.x5c{left:329.506667pt;}
.x24{left:357.186655pt;}
.x1d{left:385.826667pt;}
.x5d{left:405.213333pt;}
.x31{left:411.613333pt;}
.x25{left:412.893321pt;}
.x29{left:432.093333pt;}
.x45{left:433.413333pt;}
.x4b{left:435.906667pt;}
.x53{left:447.973333pt;}
.x1f{left:457.853333pt;}
.x57{left:479.133333pt;}
.x58{left:490.493333pt;}
.x10{left:492.253321pt;}
.x5a{left:509.533333pt;}
.x16{left:532.253321pt;}
.x5e{left:557.253333pt;}
.x14{left:569.253321pt;}
.x33{left:574.693333pt;}
.x13{left:586.693321pt;}
.x15{left:588.133321pt;}
.xf{left:592.293321pt;}
.x17{left:598.053321pt;}
.x5f{left:604.933333pt;}
.x11{left:627.013321pt;}
.x3a{left:651.813321pt;}
.x3c{left:656.933321pt;}
.x46{left:666.853321pt;}
.x48{left:671.813321pt;}
.xd{left:713.120000pt;}
.x12{left:740.639988pt;}
}




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