
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cc6625003e0563a67b6661ef.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_941e1a5d65c3d69f271ff492.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_4ba61acc792fa44254f53583.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_5fe75677f487391db30bb9c5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_10b35b1a5de5151fea62b59c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_056cc7e31138a79ffac666f1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_614d165245c26fdacdd917e0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_a0cb44fa46767b0773737177.woff')format("woff");}.ff9{font-family:ff9;line-height:1.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-12.240000px;}
.v5{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.v7{vertical-align:45.360000px;}
.v6{vertical-align:49.680000px;}
.v8{vertical-align:52.560000px;}
.ls13{letter-spacing:-0.243600px;}
.ls15{letter-spacing:-0.232800px;}
.lsc{letter-spacing:-0.186600px;}
.ls12{letter-spacing:-0.178800px;}
.ls10{letter-spacing:-0.160800px;}
.ls26{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls16{letter-spacing:-0.125400px;}
.ls17{letter-spacing:-0.121200px;}
.ls29{letter-spacing:-0.093000px;}
.ls7{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls20{letter-spacing:-0.063600px;}
.lsa{letter-spacing:-0.057000px;}
.lsf{letter-spacing:-0.039000px;}
.lsd{letter-spacing:-0.015000px;}
.ls21{letter-spacing:-0.014760px;}
.ls14{letter-spacing:-0.011400px;}
.ls5{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.006840px;}
.ls1c{letter-spacing:0.045360px;}
.ls1b{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls9{letter-spacing:0.110400px;}
.ls11{letter-spacing:0.116400px;}
.ls28{letter-spacing:0.121800px;}
.ls4{letter-spacing:0.127200px;}
.ls3{letter-spacing:0.134760px;}
.ls6{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.173400px;}
.ls1f{letter-spacing:0.180000px;}
.lse{letter-spacing:0.199200px;}
.ls19{letter-spacing:0.206640px;}
.ls27{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:4.295880px;}
.ls23{letter-spacing:4.773600px;}
.ls25{letter-spacing:47.726640px;}
.ls1e{letter-spacing:64.646640px;}
.ls24{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.564000px;}
.ws3{word-spacing:-18.396600px;}
.ws12{word-spacing:-14.493600px;}
.ws16{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.425600px;}
.ws14{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.353600px;}
.ws20{word-spacing:-13.348200px;}
.wsa{word-spacing:-13.342800px;}
.ws15{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.215000px;}
.ws18{word-spacing:-13.211640px;}
.ws6{word-spacing:-13.211400px;}
.ws8{word-spacing:-13.187400px;}
.ws17{word-spacing:-13.162800px;}
.ws21{word-spacing:-13.133400px;}
.wsf{word-spacing:-13.101000px;}
.ws1f{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.065600px;}
.wsb{word-spacing:-13.047600px;}
.ws4{word-spacing:-13.039800px;}
.wse{word-spacing:-12.993600px;}
.wsc{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws1a{word-spacing:-9.266400px;}
.ws13{word-spacing:0.000000px;}
.ws11{word-spacing:4.304880px;}
.ws1c{word-spacing:4.586400px;}
.ws19{word-spacing:9.632880px;}
.ws1e{word-spacing:10.956600px;}
.ws1d{word-spacing:115.026120px;}
.ws1b{word-spacing:194.346120px;}
._14{margin-left:-6.314400px;}
._b{margin-left:-3.387120px;}
._a{margin-left:-2.312640px;}
._0{margin-left:-1.110000px;}
._2{width:1.138692px;}
._d{width:2.152262px;}
._6{width:3.228120px;}
._7{width:4.950120px;}
._4{width:6.051240px;}
._9{width:7.250520px;}
._8{width:8.279760px;}
._10{width:10.073640px;}
._11{width:11.401188px;}
._1{width:12.450120px;}
._3{width:14.235097px;}
._5{width:15.330240px;}
._c{width:16.713600px;}
._1e{width:17.885520px;}
._e{width:18.937800px;}
._15{width:20.561040px;}
._19{width:22.184280px;}
._f{width:26.031960px;}
._22{width:27.715320px;}
._1a{width:32.825520px;}
._1b{width:34.204800px;}
._17{width:37.815480px;}
._16{width:38.957760px;}
._1d{width:40.225320px;}
._25{width:41.232240px;}
._18{width:42.504840px;}
._23{width:43.767360px;}
._24{width:44.845080px;}
._26{width:46.593000px;}
._1c{width:55.428240px;}
._1f{width:57.053880px;}
._20{width:58.617000px;}
._13{width:71.312938px;}
._21{width:77.915520px;}
._12{width:81.535320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yec{bottom:7.830000px;}
.ye9{bottom:7.920000px;}
.yed{bottom:12.330000px;}
.yf2{bottom:25.380000px;}
.yef{bottom:25.470000px;}
.yeb{bottom:29.970000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ycd{bottom:124.050000px;}
.y89{bottom:127.470000px;}
.yf9{bottom:127.560000px;}
.ye5{bottom:136.110000px;}
.y6d{bottom:138.270000px;}
.yb2{bottom:139.980000px;}
.ycc{bottom:141.600000px;}
.y27{bottom:142.050000px;}
.y88{bottom:145.110000px;}
.y11d{bottom:147.540000px;}
.y145{bottom:147.720000px;}
.ye4{bottom:153.660000px;}
.y6c{bottom:155.910000px;}
.yb1{bottom:157.530000px;}
.y26{bottom:159.600000px;}
.y87{bottom:162.660000px;}
.y45{bottom:163.740000px;}
.y144{bottom:165.270000px;}
.ye3{bottom:171.300000px;}
.y6b{bottom:173.460000px;}
.y11c{bottom:174.450000px;}
.yb0{bottom:175.170000px;}
.ycb{bottom:177.150000px;}
.y25{bottom:177.240000px;}
.y86{bottom:180.300000px;}
.y44{bottom:181.380000px;}
.y143{bottom:182.910000px;}
.y6a{bottom:191.100000px;}
.yaf{bottom:192.720000px;}
.yca{bottom:194.790000px;}
.y85{bottom:197.850000px;}
.yf8{bottom:198.300000px;}
.y43{bottom:198.930000px;}
.ye2{bottom:206.850000px;}
.y69{bottom:208.650000px;}
.y142{bottom:209.460000px;}
.y11b{bottom:211.440000px;}
.yc9{bottom:212.340000px;}
.y24{bottom:212.790000px;}
.ye1{bottom:224.400000px;}
.y68{bottom:226.200000px;}
.y141{bottom:227.100000px;}
.yae{bottom:228.360000px;}
.y11a{bottom:229.080000px;}
.yc8{bottom:229.980000px;}
.y23{bottom:230.340000px;}
.yf7{bottom:230.520000px;}
.y84{bottom:233.400000px;}
.y42{bottom:234.480000px;}
.ye0{bottom:242.040000px;}
.y140{bottom:244.650000px;}
.yad{bottom:245.910000px;}
.y119{bottom:246.630000px;}
.yc7{bottom:247.530000px;}
.y22{bottom:247.980000px;}
.y83{bottom:251.040000px;}
.y41{bottom:252.120000px;}
.ydf{bottom:259.590000px;}
.y67{bottom:261.840000px;}
.yac{bottom:263.460000px;}
.y118{bottom:264.180000px;}
.yc6{bottom:265.080000px;}
.y21{bottom:265.530000px;}
.y82{bottom:268.590000px;}
.y40{bottom:269.670000px;}
.y13f{bottom:271.200000px;}
.yde{bottom:277.230000px;}
.y66{bottom:279.390000px;}
.yab{bottom:281.100000px;}
.yc5{bottom:282.720000px;}
.y3f{bottom:287.310000px;}
.y13e{bottom:288.840000px;}
.y117{bottom:291.090000px;}
.ydd{bottom:294.780000px;}
.y65{bottom:296.940000px;}
.yaa{bottom:298.650000px;}
.y20{bottom:301.170000px;}
.y81{bottom:304.230000px;}
.y3e{bottom:304.860000px;}
.y13d{bottom:306.390000px;}
.y64{bottom:314.580000px;}
.yc4{bottom:318.270000px;}
.y1f{bottom:318.720000px;}
.y80{bottom:321.780000px;}
.y3d{bottom:322.410000px;}
.y116{bottom:328.440000px;}
.ydc{bottom:330.330000px;}
.y63{bottom:332.130000px;}
.y13c{bottom:332.940000px;}
.ya9{bottom:334.290000px;}
.yc3{bottom:335.910000px;}
.y1e{bottom:336.270000px;}
.y7f{bottom:339.330000px;}
.ydb{bottom:347.970000px;}
.y62{bottom:349.770000px;}
.y13b{bottom:350.580000px;}
.ya8{bottom:351.840000px;}
.yc2{bottom:353.460000px;}
.y1d{bottom:353.910000px;}
.y7e{bottom:356.970000px;}
.y3c{bottom:358.050000px;}
.yda{bottom:365.520000px;}
.y61{bottom:367.320000px;}
.y13a{bottom:368.130000px;}
.ya7{bottom:369.390000px;}
.yc1{bottom:371.010000px;}
.y1c{bottom:371.460000px;}
.y7d{bottom:374.520000px;}
.y115{bottom:376.770000px;}
.yd9{bottom:383.160000px;}
.y60{bottom:384.870000px;}
.ya6{bottom:387.030000px;}
.yc0{bottom:388.650000px;}
.y1b{bottom:389.100000px;}
.y3b{bottom:390.270000px;}
.y7c{bottom:392.160000px;}
.y114{bottom:394.320000px;}
.y139{bottom:394.770000px;}
.y5f{bottom:402.510000px;}
.ybf{bottom:406.200000px;}
.y1a{bottom:406.650000px;}
.y138{bottom:412.320000px;}
.yd8{bottom:418.710000px;}
.ya5{bottom:422.310000px;}
.y7b{bottom:427.710000px;}
.y5e{bottom:429.060000px;}
.y113{bottom:429.870000px;}
.ya4{bottom:432.390000px;}
.y19{bottom:433.560000px;}
.yd7{bottom:436.260000px;}
.y137{bottom:438.870000px;}
.ybe{bottom:441.750000px;}
.y112{bottom:447.510000px;}
.yd6{bottom:453.900000px;}
.y136{bottom:456.510000px;}
.y7a{bottom:463.260000px;}
.y5d{bottom:464.700000px;}
.y111{bottom:465.060000px;}
.yd5{bottom:471.480000px;}
.ybd{bottom:474.000000px;}
.y135{bottom:474.090000px;}
.ya3{bottom:477.330000px;}
.y79{bottom:480.930000px;}
.y18{bottom:481.830000px;}
.y5c{bottom:482.280000px;}
.y110{bottom:482.730000px;}
.yd4{bottom:489.030000px;}
.ya2{bottom:494.970000px;}
.y78{bottom:498.480000px;}
.y17{bottom:499.470000px;}
.y5b{bottom:499.830000px;}
.y10f{bottom:500.280000px;}
.y134{bottom:500.730000px;}
.y16{bottom:517.380000px;}
.y5a{bottom:517.470000px;}
.y10e{bottom:517.830000px;}
.y133{bottom:518.280000px;}
.yd3{bottom:524.670000px;}
.ya1{bottom:530.520000px;}
.y77{bottom:534.030000px;}
.y59{bottom:535.020000px;}
.y132{bottom:535.830000px;}
.ya0{bottom:548.160000px;}
.y76{bottom:551.670000px;}
.y58{bottom:552.660000px;}
.y10d{bottom:553.470000px;}
.y15{bottom:554.370000px;}
.yd2{bottom:556.890000px;}
.y131{bottom:562.470000px;}
.y9f{bottom:565.710000px;}
.y75{bottom:569.220000px;}
.y57{bottom:570.210000px;}
.y10c{bottom:571.020000px;}
.y14{bottom:571.920000px;}
.y130{bottom:580.020000px;}
.y9e{bottom:583.260000px;}
.y74{bottom:586.860000px;}
.y56{bottom:587.760000px;}
.y13{bottom:589.560000px;}
.y12f{bottom:597.660000px;}
.y9d{bottom:600.900000px;}
.y55{bottom:605.400000px;}
.y10b{bottom:606.660000px;}
.y12{bottom:607.110000px;}
.y9c{bottom:618.450000px;}
.y73{bottom:622.410000px;}
.y54{bottom:622.950000px;}
.y10a{bottom:624.210000px;}
.y11{bottom:624.750000px;}
.y155{bottom:637.260000px;}
.y72{bottom:639.960000px;}
.y109{bottom:641.760000px;}
.y10{bottom:642.300000px;}
.y9b{bottom:650.760000px;}
.y154{bottom:654.810000px;}
.y71{bottom:657.600000px;}
.y53{bottom:658.590000px;}
.y108{bottom:659.400000px;}
.yf{bottom:659.850000px;}
.y99{bottom:663.180000px;}
.y153{bottom:672.360000px;}
.y52{bottom:676.140000px;}
.y107{bottom:676.950000px;}
.ye{bottom:677.490000px;}
.y9a{bottom:678.390000px;}
.y12e{bottom:685.950000px;}
.y152{bottom:690.000000px;}
.y70{bottom:693.150000px;}
.yd{bottom:695.040000px;}
.y12d{bottom:703.590000px;}
.y98{bottom:707.190000px;}
.y51{bottom:711.690000px;}
.y106{bottom:712.590000px;}
.yc{bottom:712.680000px;}
.y151{bottom:716.550000px;}
.y12c{bottom:721.140000px;}
.y97{bottom:724.740000px;}
.y6f{bottom:725.370000px;}
.yf6{bottom:728.880000px;}
.y50{bottom:729.330000px;}
.y105{bottom:730.140000px;}
.yb{bottom:730.230000px;}
.y150{bottom:734.190000px;}
.yf5{bottom:746.520000px;}
.y4f{bottom:746.880000px;}
.y104{bottom:747.690000px;}
.ya{bottom:757.140000px;}
.y96{bottom:760.380000px;}
.y14f{bottom:760.740000px;}
.yf4{bottom:764.070000px;}
.y4e{bottom:764.520000px;}
.y103{bottom:765.330000px;}
.y95{bottom:777.930000px;}
.y14e{bottom:778.290000px;}
.yf3{bottom:781.620000px;}
.y102{bottom:782.880000px;}
.y4d{bottom:791.070000px;}
.y94{bottom:795.480000px;}
.y14d{bottom:795.930000px;}
.y3a{bottom:800.880000px;}
.y9{bottom:805.380000px;}
.y12b{bottom:809.520000px;}
.y101{bottom:809.790000px;}
.y93{bottom:813.120000px;}
.yf1{bottom:814.650000px;}
.y39{bottom:818.520000px;}
.y14c{bottom:822.480000px;}
.y4c{bottom:826.980000px;}
.y12a{bottom:827.070000px;}
.y38{bottom:836.070000px;}
.y14b{bottom:840.030000px;}
.y8{bottom:841.200000px;}
.y129{bottom:844.620000px;}
.y92{bottom:845.340000px;}
.ybc{bottom:848.670000px;}
.y37{bottom:853.620000px;}
.y90{bottom:857.760000px;}
.y100{bottom:858.030000px;}
.yf0{bottom:859.560000px;}
.ybb{bottom:866.220000px;}
.y14a{bottom:866.670000px;}
.y36{bottom:871.260000px;}
.y91{bottom:872.970000px;}
.y4b{bottom:875.220000px;}
.yff{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.yba{bottom:883.860000px;}
.y149{bottom:884.220000px;}
.y35{bottom:888.810000px;}
.y4a{bottom:892.860000px;}
.yfe{bottom:893.220000px;}
.yb9{bottom:901.410000px;}
.y8f{bottom:901.860000px;}
.yd1{bottom:902.220000px;}
.yee{bottom:904.470000px;}
.y34{bottom:906.450000px;}
.y148{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y128{bottom:915.450000px;}
.yb8{bottom:918.960000px;}
.y8e{bottom:919.410000px;}
.yd0{bottom:919.860000px;}
.y33{bottom:924.000000px;}
.y49{bottom:928.410000px;}
.yfd{bottom:928.860000px;}
.y127{bottom:933.000000px;}
.y8d{bottom:936.960000px;}
.ycf{bottom:937.410000px;}
.y48{bottom:945.960000px;}
.yfc{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yea{bottom:949.380000px;}
.y32{bottom:950.910000px;}
.yb7{bottom:954.600000px;}
.yce{bottom:954.960000px;}
.y126{bottom:959.550000px;}
.y47{bottom:963.600000px;}
.yfb{bottom:963.960000px;}
.yb6{bottom:972.150000px;}
.y8c{bottom:972.600000px;}
.y125{bottom:977.190000px;}
.yfa{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.yb5{bottom:989.790000px;}
.y8b{bottom:990.150000px;}
.ye8{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.y124{bottom:1003.740000px;}
.y8a{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.yb4{bottom:1016.370000px;}
.y30{bottom:1016.820000px;}
.y123{bottom:1021.320000px;}
.y2f{bottom:1034.370000px;}
.ye7{bottom:1047.510000px;}
.y122{bottom:1047.960000px;}
.y2e{bottom:1051.920000px;}
.y147{bottom:1060.920000px;}
.y121{bottom:1065.510000px;}
.y6e{bottom:1069.560000px;}
.y46{bottom:1069.920000px;}
.ye6{bottom:1074.420000px;}
.y146{bottom:1078.560000px;}
.y120{bottom:1083.150000px;}
.yb3{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.y11f{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y2b{bottom:1122.750000px;}
.y11e{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h12{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h15{height:44.100000px;}
.h14{height:44.190000px;}
.h13{height:48.690000px;}
.h6{height:50.902383px;}
.he{height:52.238672px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.hb{height:61.793886px;}
.h9{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.hd{height:74.562891px;}
.h11{height:114.882891px;}
.h10{height:119.922891px;}
.hf{height:124.242891px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:242.850000px;}
.w4{width:512.130000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x1{left:68.040000px;}
.x6{left:95.039987px;}
.x19{left:111.239987px;}
.x7{left:122.039987px;}
.x18{left:141.839987px;}
.x2{left:202.799987px;}
.x14{left:204.959987px;}
.x5{left:237.809987px;}
.x9{left:251.129987px;}
.xa{left:306.209987px;}
.x12{left:308.819987px;}
.x16{left:312.330000px;}
.xb{left:352.469987px;}
.xd{left:377.579987px;}
.xf{left:388.829987px;}
.xe{left:440.579987px;}
.x10{left:449.579987px;}
.xc{left:462.269987px;}
.x4{left:652.559987px;}
.x13{left:660.389987px;}
.x11{left:696.389987px;}
.x8{left:715.559987px;}
.x3{left:792.059987px;}
.x17{left:808.889987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-10.880000pt;}
.v5{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.v7{vertical-align:40.320000pt;}
.v6{vertical-align:44.160000pt;}
.v8{vertical-align:46.720000pt;}
.ls13{letter-spacing:-0.216533pt;}
.ls15{letter-spacing:-0.206933pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls12{letter-spacing:-0.158933pt;}
.ls10{letter-spacing:-0.142933pt;}
.ls26{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls16{letter-spacing:-0.111467pt;}
.ls17{letter-spacing:-0.107733pt;}
.ls29{letter-spacing:-0.082667pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls20{letter-spacing:-0.056533pt;}
.lsa{letter-spacing:-0.050667pt;}
.lsf{letter-spacing:-0.034667pt;}
.lsd{letter-spacing:-0.013333pt;}
.ls21{letter-spacing:-0.013120pt;}
.ls14{letter-spacing:-0.010133pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.006080pt;}
.ls1c{letter-spacing:0.040320pt;}
.ls1b{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls9{letter-spacing:0.098133pt;}
.ls11{letter-spacing:0.103467pt;}
.ls28{letter-spacing:0.108267pt;}
.ls4{letter-spacing:0.113067pt;}
.ls3{letter-spacing:0.119787pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.154133pt;}
.ls1f{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.177067pt;}
.ls19{letter-spacing:0.183680pt;}
.ls27{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:3.818560pt;}
.ls23{letter-spacing:4.243200pt;}
.ls25{letter-spacing:42.423680pt;}
.ls1e{letter-spacing:57.463680pt;}
.ls24{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.501333pt;}
.ws3{word-spacing:-16.352533pt;}
.ws12{word-spacing:-12.883200pt;}
.ws16{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.933867pt;}
.ws14{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.869867pt;}
.ws20{word-spacing:-11.865067pt;}
.wsa{word-spacing:-11.860267pt;}
.ws15{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.746667pt;}
.ws18{word-spacing:-11.743680pt;}
.ws6{word-spacing:-11.743467pt;}
.ws8{word-spacing:-11.722133pt;}
.ws17{word-spacing:-11.700267pt;}
.ws21{word-spacing:-11.674133pt;}
.wsf{word-spacing:-11.645333pt;}
.ws1f{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.613867pt;}
.wsb{word-spacing:-11.597867pt;}
.ws4{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.549867pt;}
.wsc{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws1a{word-spacing:-8.236800pt;}
.ws13{word-spacing:0.000000pt;}
.ws11{word-spacing:3.826560pt;}
.ws1c{word-spacing:4.076800pt;}
.ws19{word-spacing:8.562560pt;}
.ws1e{word-spacing:9.739200pt;}
.ws1d{word-spacing:102.245440pt;}
.ws1b{word-spacing:172.752107pt;}
._14{margin-left:-5.612800pt;}
._b{margin-left:-3.010773pt;}
._a{margin-left:-2.055680pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.012170pt;}
._d{width:1.913122pt;}
._6{width:2.869440pt;}
._7{width:4.400107pt;}
._4{width:5.378880pt;}
._9{width:6.444907pt;}
._8{width:7.359787pt;}
._10{width:8.954347pt;}
._11{width:10.134390pt;}
._1{width:11.066773pt;}
._3{width:12.653419pt;}
._5{width:13.626880pt;}
._c{width:14.856534pt;}
._1e{width:15.898240pt;}
._e{width:16.833600pt;}
._15{width:18.276480pt;}
._19{width:19.719360pt;}
._f{width:23.139520pt;}
._22{width:24.635840pt;}
._1a{width:29.178240pt;}
._1b{width:30.404267pt;}
._17{width:33.613760pt;}
._16{width:34.629120pt;}
._1d{width:35.755840pt;}
._25{width:36.650880pt;}
._18{width:37.782080pt;}
._23{width:38.904320pt;}
._24{width:39.862293pt;}
._26{width:41.416000pt;}
._1c{width:49.269547pt;}
._1f{width:50.714560pt;}
._20{width:52.104000pt;}
._13{width:63.389278pt;}
._21{width:69.258240pt;}
._12{width:72.475840pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:6.960000pt;}
.ye9{bottom:7.040000pt;}
.yed{bottom:10.960000pt;}
.yf2{bottom:22.560000pt;}
.yef{bottom:22.640000pt;}
.yeb{bottom:26.640000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ycd{bottom:110.266667pt;}
.y89{bottom:113.306667pt;}
.yf9{bottom:113.386667pt;}
.ye5{bottom:120.986667pt;}
.y6d{bottom:122.906667pt;}
.yb2{bottom:124.426667pt;}
.ycc{bottom:125.866667pt;}
.y27{bottom:126.266667pt;}
.y88{bottom:128.986667pt;}
.y11d{bottom:131.146667pt;}
.y145{bottom:131.306667pt;}
.ye4{bottom:136.586667pt;}
.y6c{bottom:138.586667pt;}
.yb1{bottom:140.026667pt;}
.y26{bottom:141.866667pt;}
.y87{bottom:144.586667pt;}
.y45{bottom:145.546667pt;}
.y144{bottom:146.906667pt;}
.ye3{bottom:152.266667pt;}
.y6b{bottom:154.186667pt;}
.y11c{bottom:155.066667pt;}
.yb0{bottom:155.706667pt;}
.ycb{bottom:157.466667pt;}
.y25{bottom:157.546667pt;}
.y86{bottom:160.266667pt;}
.y44{bottom:161.226667pt;}
.y143{bottom:162.586667pt;}
.y6a{bottom:169.866667pt;}
.yaf{bottom:171.306667pt;}
.yca{bottom:173.146667pt;}
.y85{bottom:175.866667pt;}
.yf8{bottom:176.266667pt;}
.y43{bottom:176.826667pt;}
.ye2{bottom:183.866667pt;}
.y69{bottom:185.466667pt;}
.y142{bottom:186.186667pt;}
.y11b{bottom:187.946667pt;}
.yc9{bottom:188.746667pt;}
.y24{bottom:189.146667pt;}
.ye1{bottom:199.466667pt;}
.y68{bottom:201.066667pt;}
.y141{bottom:201.866667pt;}
.yae{bottom:202.986667pt;}
.y11a{bottom:203.626667pt;}
.yc8{bottom:204.426667pt;}
.y23{bottom:204.746667pt;}
.yf7{bottom:204.906667pt;}
.y84{bottom:207.466667pt;}
.y42{bottom:208.426667pt;}
.ye0{bottom:215.146667pt;}
.y140{bottom:217.466667pt;}
.yad{bottom:218.586667pt;}
.y119{bottom:219.226667pt;}
.yc7{bottom:220.026667pt;}
.y22{bottom:220.426667pt;}
.y83{bottom:223.146667pt;}
.y41{bottom:224.106667pt;}
.ydf{bottom:230.746667pt;}
.y67{bottom:232.746667pt;}
.yac{bottom:234.186667pt;}
.y118{bottom:234.826667pt;}
.yc6{bottom:235.626667pt;}
.y21{bottom:236.026667pt;}
.y82{bottom:238.746667pt;}
.y40{bottom:239.706667pt;}
.y13f{bottom:241.066667pt;}
.yde{bottom:246.426667pt;}
.y66{bottom:248.346667pt;}
.yab{bottom:249.866667pt;}
.yc5{bottom:251.306667pt;}
.y3f{bottom:255.386667pt;}
.y13e{bottom:256.746667pt;}
.y117{bottom:258.746667pt;}
.ydd{bottom:262.026667pt;}
.y65{bottom:263.946667pt;}
.yaa{bottom:265.466667pt;}
.y20{bottom:267.706667pt;}
.y81{bottom:270.426667pt;}
.y3e{bottom:270.986667pt;}
.y13d{bottom:272.346667pt;}
.y64{bottom:279.626667pt;}
.yc4{bottom:282.906667pt;}
.y1f{bottom:283.306667pt;}
.y80{bottom:286.026667pt;}
.y3d{bottom:286.586667pt;}
.y116{bottom:291.946667pt;}
.ydc{bottom:293.626667pt;}
.y63{bottom:295.226667pt;}
.y13c{bottom:295.946667pt;}
.ya9{bottom:297.146667pt;}
.yc3{bottom:298.586667pt;}
.y1e{bottom:298.906667pt;}
.y7f{bottom:301.626667pt;}
.ydb{bottom:309.306667pt;}
.y62{bottom:310.906667pt;}
.y13b{bottom:311.626667pt;}
.ya8{bottom:312.746667pt;}
.yc2{bottom:314.186667pt;}
.y1d{bottom:314.586667pt;}
.y7e{bottom:317.306667pt;}
.y3c{bottom:318.266667pt;}
.yda{bottom:324.906667pt;}
.y61{bottom:326.506667pt;}
.y13a{bottom:327.226667pt;}
.ya7{bottom:328.346667pt;}
.yc1{bottom:329.786667pt;}
.y1c{bottom:330.186667pt;}
.y7d{bottom:332.906667pt;}
.y115{bottom:334.906667pt;}
.yd9{bottom:340.586667pt;}
.y60{bottom:342.106667pt;}
.ya6{bottom:344.026667pt;}
.yc0{bottom:345.466667pt;}
.y1b{bottom:345.866667pt;}
.y3b{bottom:346.906667pt;}
.y7c{bottom:348.586667pt;}
.y114{bottom:350.506667pt;}
.y139{bottom:350.906667pt;}
.y5f{bottom:357.786667pt;}
.ybf{bottom:361.066667pt;}
.y1a{bottom:361.466667pt;}
.y138{bottom:366.506667pt;}
.yd8{bottom:372.186667pt;}
.ya5{bottom:375.386667pt;}
.y7b{bottom:380.186667pt;}
.y5e{bottom:381.386667pt;}
.y113{bottom:382.106667pt;}
.ya4{bottom:384.346667pt;}
.y19{bottom:385.386667pt;}
.yd7{bottom:387.786667pt;}
.y137{bottom:390.106667pt;}
.ybe{bottom:392.666667pt;}
.y112{bottom:397.786667pt;}
.yd6{bottom:403.466667pt;}
.y136{bottom:405.786667pt;}
.y7a{bottom:411.786667pt;}
.y5d{bottom:413.066667pt;}
.y111{bottom:413.386667pt;}
.yd5{bottom:419.093333pt;}
.ybd{bottom:421.333333pt;}
.y135{bottom:421.413333pt;}
.ya3{bottom:424.293333pt;}
.y79{bottom:427.493333pt;}
.y18{bottom:428.293333pt;}
.y5c{bottom:428.693333pt;}
.y110{bottom:429.093333pt;}
.yd4{bottom:434.693333pt;}
.ya2{bottom:439.973333pt;}
.y78{bottom:443.093333pt;}
.y17{bottom:443.973333pt;}
.y5b{bottom:444.293333pt;}
.y10f{bottom:444.693333pt;}
.y134{bottom:445.093333pt;}
.y16{bottom:459.893333pt;}
.y5a{bottom:459.973333pt;}
.y10e{bottom:460.293333pt;}
.y133{bottom:460.693333pt;}
.yd3{bottom:466.373333pt;}
.ya1{bottom:471.573333pt;}
.y77{bottom:474.693333pt;}
.y59{bottom:475.573333pt;}
.y132{bottom:476.293333pt;}
.ya0{bottom:487.253333pt;}
.y76{bottom:490.373333pt;}
.y58{bottom:491.253333pt;}
.y10d{bottom:491.973333pt;}
.y15{bottom:492.773333pt;}
.yd2{bottom:495.013333pt;}
.y131{bottom:499.973333pt;}
.y9f{bottom:502.853333pt;}
.y75{bottom:505.973333pt;}
.y57{bottom:506.853333pt;}
.y10c{bottom:507.573333pt;}
.y14{bottom:508.373333pt;}
.y130{bottom:515.573333pt;}
.y9e{bottom:518.453333pt;}
.y74{bottom:521.653333pt;}
.y56{bottom:522.453333pt;}
.y13{bottom:524.053333pt;}
.y12f{bottom:531.253333pt;}
.y9d{bottom:534.133333pt;}
.y55{bottom:538.133333pt;}
.y10b{bottom:539.253333pt;}
.y12{bottom:539.653333pt;}
.y9c{bottom:549.733333pt;}
.y73{bottom:553.253333pt;}
.y54{bottom:553.733333pt;}
.y10a{bottom:554.853333pt;}
.y11{bottom:555.333333pt;}
.y155{bottom:566.453333pt;}
.y72{bottom:568.853333pt;}
.y109{bottom:570.453333pt;}
.y10{bottom:570.933333pt;}
.y9b{bottom:578.453333pt;}
.y154{bottom:582.053333pt;}
.y71{bottom:584.533333pt;}
.y53{bottom:585.413333pt;}
.y108{bottom:586.133333pt;}
.yf{bottom:586.533333pt;}
.y99{bottom:589.493333pt;}
.y153{bottom:597.653333pt;}
.y52{bottom:601.013333pt;}
.y107{bottom:601.733333pt;}
.ye{bottom:602.213333pt;}
.y9a{bottom:603.013333pt;}
.y12e{bottom:609.733333pt;}
.y152{bottom:613.333333pt;}
.y70{bottom:616.133333pt;}
.yd{bottom:617.813333pt;}
.y12d{bottom:625.413333pt;}
.y98{bottom:628.613333pt;}
.y51{bottom:632.613333pt;}
.y106{bottom:633.413333pt;}
.yc{bottom:633.493333pt;}
.y151{bottom:636.933333pt;}
.y12c{bottom:641.013333pt;}
.y97{bottom:644.213333pt;}
.y6f{bottom:644.773333pt;}
.yf6{bottom:647.893333pt;}
.y50{bottom:648.293333pt;}
.y105{bottom:649.013333pt;}
.yb{bottom:649.093333pt;}
.y150{bottom:652.613333pt;}
.yf5{bottom:663.573333pt;}
.y4f{bottom:663.893333pt;}
.y104{bottom:664.613333pt;}
.ya{bottom:673.013333pt;}
.y96{bottom:675.893333pt;}
.y14f{bottom:676.213333pt;}
.yf4{bottom:679.173333pt;}
.y4e{bottom:679.573333pt;}
.y103{bottom:680.293333pt;}
.y95{bottom:691.493333pt;}
.y14e{bottom:691.813333pt;}
.yf3{bottom:694.773333pt;}
.y102{bottom:695.893333pt;}
.y4d{bottom:703.173333pt;}
.y94{bottom:707.093333pt;}
.y14d{bottom:707.493333pt;}
.y3a{bottom:711.893333pt;}
.y9{bottom:715.893333pt;}
.y12b{bottom:719.573333pt;}
.y101{bottom:719.813333pt;}
.y93{bottom:722.773333pt;}
.yf1{bottom:724.133333pt;}
.y39{bottom:727.573333pt;}
.y14c{bottom:731.093333pt;}
.y4c{bottom:735.093333pt;}
.y12a{bottom:735.173333pt;}
.y38{bottom:743.173333pt;}
.y14b{bottom:746.693333pt;}
.y8{bottom:747.733333pt;}
.y129{bottom:750.773333pt;}
.y92{bottom:751.413333pt;}
.ybc{bottom:754.373333pt;}
.y37{bottom:758.773333pt;}
.y90{bottom:762.453333pt;}
.y100{bottom:762.693333pt;}
.yf0{bottom:764.053333pt;}
.ybb{bottom:769.973333pt;}
.y14a{bottom:770.373333pt;}
.y36{bottom:774.453333pt;}
.y91{bottom:775.973333pt;}
.y4b{bottom:777.973333pt;}
.yff{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.yba{bottom:785.653333pt;}
.y149{bottom:785.973333pt;}
.y35{bottom:790.053333pt;}
.y4a{bottom:793.653333pt;}
.yfe{bottom:793.973333pt;}
.yb9{bottom:801.253333pt;}
.y8f{bottom:801.653333pt;}
.yd1{bottom:801.973333pt;}
.yee{bottom:803.973333pt;}
.y34{bottom:805.733333pt;}
.y148{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y128{bottom:813.733333pt;}
.yb8{bottom:816.853333pt;}
.y8e{bottom:817.253333pt;}
.yd0{bottom:817.653333pt;}
.y33{bottom:821.333333pt;}
.y49{bottom:825.253333pt;}
.yfd{bottom:825.653333pt;}
.y127{bottom:829.333333pt;}
.y8d{bottom:832.853333pt;}
.ycf{bottom:833.253333pt;}
.y48{bottom:840.853333pt;}
.yfc{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yea{bottom:843.893333pt;}
.y32{bottom:845.253333pt;}
.yb7{bottom:848.533333pt;}
.yce{bottom:848.853333pt;}
.y126{bottom:852.933333pt;}
.y47{bottom:856.533333pt;}
.yfb{bottom:856.853333pt;}
.yb6{bottom:864.133333pt;}
.y8c{bottom:864.533333pt;}
.y125{bottom:868.613333pt;}
.yfa{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.yb5{bottom:879.813333pt;}
.y8b{bottom:880.133333pt;}
.ye8{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.y124{bottom:892.213333pt;}
.y8a{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.yb4{bottom:903.440000pt;}
.y30{bottom:903.840000pt;}
.y123{bottom:907.840000pt;}
.y2f{bottom:919.440000pt;}
.ye7{bottom:931.120000pt;}
.y122{bottom:931.520000pt;}
.y2e{bottom:935.040000pt;}
.y147{bottom:943.040000pt;}
.y121{bottom:947.120000pt;}
.y6e{bottom:950.720000pt;}
.y46{bottom:951.040000pt;}
.ye6{bottom:955.040000pt;}
.y146{bottom:958.720000pt;}
.y120{bottom:962.800000pt;}
.yb3{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.y11f{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y2b{bottom:998.000000pt;}
.y11e{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h12{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h15{height:39.200000pt;}
.h14{height:39.280000pt;}
.h13{height:43.280000pt;}
.h6{height:45.246562pt;}
.he{height:46.434375pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.hb{height:54.927899pt;}
.h9{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.hd{height:66.278125pt;}
.h11{height:102.118125pt;}
.h10{height:106.598125pt;}
.hf{height:110.438125pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:215.866667pt;}
.w4{width:455.226667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x1{left:60.480000pt;}
.x6{left:84.479988pt;}
.x19{left:98.879988pt;}
.x7{left:108.479988pt;}
.x18{left:126.079988pt;}
.x2{left:180.266655pt;}
.x14{left:182.186655pt;}
.x5{left:211.386655pt;}
.x9{left:223.226655pt;}
.xa{left:272.186655pt;}
.x12{left:274.506655pt;}
.x16{left:277.626667pt;}
.xb{left:313.306655pt;}
.xd{left:335.626655pt;}
.xf{left:345.626655pt;}
.xe{left:391.626655pt;}
.x10{left:399.626655pt;}
.xc{left:410.906655pt;}
.x4{left:580.053322pt;}
.x13{left:587.013322pt;}
.x11{left:619.013322pt;}
.x8{left:636.053322pt;}
.x3{left:704.053322pt;}
.x17{left:719.013322pt;}
}




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