
    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_b946140649d7c1527a172faa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1d1900f396de162b5dd15d54.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_58d98c048cfd6a054654ec6e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1eeca7767c3e99a8b1f0f9c5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9a69f0583f00db744acd75fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b7a3dad8b1000e6b346c5dac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_219aa4a739f2e6463570033a.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_9412bb4c583141deabb68731.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_01ce8cbd34e42b9a86a59126.woff2')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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.220800px;}
.ls15{letter-spacing:-0.219000px;}
.ls3{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.027360px;}
.lsb{letter-spacing:0.051840px;}
.ls1{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.166800px;}
.ls19{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.208200px;}
.ls9{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.334080px;}
.lsa{letter-spacing:0.334200px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.374400px;}
.lsc{letter-spacing:0.432000px;}
.ls1a{letter-spacing:0.540000px;}
.lsd{letter-spacing:0.633600px;}
.ls16{letter-spacing:1.049760px;}
.ls6{letter-spacing:1.440000px;}
.ls18{letter-spacing:60.841920px;}
.lse{letter-spacing:176.568000px;}
.ls8{letter-spacing:193.968000px;}
.ls11{letter-spacing:371.508000px;}
.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;}
}
.ws16{word-spacing:-391.524000px;}
.ws15{word-spacing:-72.000000px;}
.wsf{word-spacing:-52.848000px;}
.wsc{word-spacing:-20.056032px;}
.wsb{word-spacing:-20.016000px;}
.ws0{word-spacing:-18.000000px;}
.ws18{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.174200px;}
.ws13{word-spacing:-16.006800px;}
.wsa{word-spacing:-15.891840px;}
.ws8{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.621000px;}
.ws6{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.247360px;}
.ws19{word-spacing:-14.220000px;}
.ws1b{word-spacing:-13.999200px;}
.ws1a{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.410720px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
.ws11{word-spacing:135.384000px;}
.ws12{word-spacing:135.636000px;}
.wsd{word-spacing:152.784000px;}
.wse{word-spacing:153.216000px;}
.ws14{word-spacing:306.264000px;}
._24{margin-left:-602.508000px;}
._23{margin-left:-582.576000px;}
._22{margin-left:-371.448000px;}
._1f{margin-left:-355.968000px;}
._1e{margin-left:-335.916000px;}
._1d{margin-left:-316.116000px;}
._21{margin-left:-7.272000px;}
._1c{margin-left:-4.749600px;}
._5{margin-left:-3.685440px;}
._4{margin-left:-2.390400px;}
._0{margin-left:-1.324800px;}
._2{width:1.653600px;}
._1a{width:2.855520px;}
._14{width:4.740720px;}
._15{width:5.896560px;}
._17{width:7.167360px;}
._6{width:8.505600px;}
._7{width:9.800640px;}
._13{width:11.294640px;}
._18{width:12.453120px;}
._1b{width:13.777920px;}
._3{width:15.192000px;}
._1{width:16.200000px;}
._12{width:17.464560px;}
._16{width:19.123200px;}
._19{width:20.269440px;}
._11{width:22.350240px;}
._9{width:25.294080px;}
._8{width:26.832240px;}
._e{width:33.306000px;}
._c{width:45.018960px;}
._d{width:46.144800px;}
._a{width:60.198000px;}
._b{width:61.712400px;}
._10{width:76.669920px;}
._f{width:77.927040px;}
._20{width:366.048000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fsc{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fsb{font-size:59.904000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs1{font-size:95.760000px;}
.fs9{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.240000px;}
.y9d{bottom:3.420000px;}
.y118{bottom:5.760000px;}
.yf0{bottom:5.790000px;}
.yc1{bottom:6.405000px;}
.yec{bottom:9.825000px;}
.yf4{bottom:12.420000px;}
.y9b{bottom:12.960000px;}
.y10{bottom:14.400000px;}
.y116{bottom:20.775000px;}
.y17{bottom:21.240000px;}
.yf3{bottom:21.420000px;}
.y10b{bottom:21.600000px;}
.yd5{bottom:22.290000px;}
.ydf{bottom:22.320000px;}
.y33{bottom:29.520000px;}
.ye3{bottom:33.270000px;}
.ybf{bottom:35.460000px;}
.y16{bottom:38.550000px;}
.y110{bottom:42.225000px;}
.y32{bottom:46.800000px;}
.yd4{bottom:47.445000px;}
.yde{bottom:47.490000px;}
.yea{bottom:50.145000px;}
.y15{bottom:55.830000px;}
.yb6{bottom:56.910000px;}
.y31{bottom:64.080000px;}
.ycc{bottom:68.910000px;}
.yd7{bottom:68.940000px;}
.ye4{bottom:71.610000px;}
.y14{bottom:73.110000px;}
.y30{bottom:81.180000px;}
.yb7{bottom:87.330000px;}
.y13{bottom:90.390000px;}
.y111{bottom:93.855000px;}
.y18{bottom:95.430000px;}
.ycd{bottom:97.845000px;}
.y2f{bottom:98.460000px;}
.yd8{bottom:101.985000px;}
.y12{bottom:105.330000px;}
.yef{bottom:109.410000px;}
.ye5{bottom:109.905000px;}
.yeb{bottom:110.370000px;}
.y2e{bottom:115.740000px;}
.yb8{bottom:117.795000px;}
.yce{bottom:126.795000px;}
.y2d{bottom:133.020000px;}
.yd9{bottom:135.075000px;}
.y117{bottom:136.590000px;}
.y112{bottom:145.515000px;}
.yb9{bottom:148.245000px;}
.y2c{bottom:150.345000px;}
.y15c{bottom:154.620000px;}
.ycf{bottom:155.730000px;}
.yc0{bottom:156.810000px;}
.y129{bottom:157.140000px;}
.ycb{bottom:159.870000px;}
.y75{bottom:160.050000px;}
.yb4{bottom:163.830000px;}
.y2b{bottom:167.625000px;}
.yda{bottom:168.150000px;}
.ye2{bottom:168.870000px;}
.y41{bottom:170.850000px;}
.y15b{bottom:171.030000px;}
.y128{bottom:175.350000px;}
.yca{bottom:177.870000px;}
.y74{bottom:178.230000px;}
.yba{bottom:178.665000px;}
.yb3{bottom:181.830000px;}
.y10e{bottom:182.370000px;}
.y119{bottom:183.855000px;}
.yd0{bottom:184.680000px;}
.y2a{bottom:184.725000px;}
.ye6{bottom:186.555000px;}
.y8f{bottom:187.050000px;}
.y15a{bottom:187.410000px;}
.y40{bottom:189.750000px;}
.ye1{bottom:195.870000px;}
.yc9{bottom:196.050000px;}
.y73{bottom:196.230000px;}
.y113{bottom:197.175000px;}
.yb2{bottom:200.010000px;}
.ydb{bottom:201.240000px;}
.y29{bottom:202.005000px;}
.y127{bottom:202.350000px;}
.y8e{bottom:205.230000px;}
.y159{bottom:208.290000px;}
.y3f{bottom:208.650000px;}
.ybb{bottom:209.130000px;}
.yd1{bottom:213.630000px;}
.yc8{bottom:214.050000px;}
.y72{bottom:214.410000px;}
.yb1{bottom:218.190000px;}
.y28{bottom:219.285000px;}
.y126{bottom:220.530000px;}
.ye0{bottom:223.050000px;}
.y8d{bottom:223.410000px;}
.y158{bottom:224.670000px;}
.ye7{bottom:224.850000px;}
.y71{bottom:232.410000px;}
.ydc{bottom:234.330000px;}
.y125{bottom:235.290000px;}
.y3e{bottom:236.550000px;}
.y27{bottom:236.565000px;}
.ybc{bottom:239.580000px;}
.yc7{bottom:241.230000px;}
.y8c{bottom:241.410000px;}
.yd2{bottom:242.565000px;}
.yb0{bottom:245.190000px;}
.y157{bottom:245.550000px;}
.y3b{bottom:245.565000px;}
.y10d{bottom:245.730000px;}
.y114{bottom:248.835000px;}
.y70{bottom:250.590000px;}
.y26{bottom:253.845000px;}
.y3d{bottom:255.270000px;}
.yc6{bottom:259.410000px;}
.y156{bottom:261.930000px;}
.y3a{bottom:262.845000px;}
.ye8{bottom:263.190000px;}
.yaf{bottom:263.370000px;}
.ydd{bottom:267.375000px;}
.y10c{bottom:268.230000px;}
.y8b{bottom:268.590000px;}
.y6f{bottom:268.770000px;}
.ybd{bottom:270.000000px;}
.y25{bottom:270.945000px;}
.y19{bottom:271.470000px;}
.yd3{bottom:271.515000px;}
.yc5{bottom:277.410000px;}
.y155{bottom:278.310000px;}
.y39{bottom:280.125000px;}
.yee{bottom:280.980000px;}
.yae{bottom:281.550000px;}
.y6e{bottom:286.770000px;}
.y24{bottom:288.225000px;}
.y10a{bottom:290.910000px;}
.y8a{bottom:296.670000px;}
.y38{bottom:297.405000px;}
.y154{bottom:299.190000px;}
.yad{bottom:299.550000px;}
.ybe{bottom:300.450000px;}
.y115{bottom:300.495000px;}
.ye9{bottom:301.500000px;}
.yc4{bottom:304.590000px;}
.y23{bottom:305.505000px;}
.yed{bottom:306.285000px;}
.y6d{bottom:313.950000px;}
.y37{bottom:314.685000px;}
.y153{bottom:315.570000px;}
.yac{bottom:317.730000px;}
.y22{bottom:322.785000px;}
.y89{bottom:324.390000px;}
.yc3{bottom:328.350000px;}
.yd6{bottom:328.500000px;}
.y36{bottom:331.785000px;}
.y109{bottom:332.310000px;}
.yab{bottom:335.730000px;}
.y152{bottom:336.450000px;}
.y3c{bottom:337.005000px;}
.y21{bottom:340.065000px;}
.y6c{bottom:341.850000px;}
.y88{bottom:342.570000px;}
.y35{bottom:346.725000px;}
.y151{bottom:352.830000px;}
.y108{bottom:356.970000px;}
.y20{bottom:357.345000px;}
.y6b{bottom:360.030000px;}
.yaa{bottom:360.210000px;}
.y87{bottom:360.750000px;}
.y150{bottom:369.210000px;}
.y1f{bottom:374.445000px;}
.y6a{bottom:378.030000px;}
.ya9{bottom:378.390000px;}
.y86{bottom:378.750000px;}
.y107{bottom:383.970000px;}
.y14f{bottom:390.090000px;}
.y1e{bottom:391.755000px;}
.y69{bottom:396.210000px;}
.ya8{bottom:396.390000px;}
.y106{bottom:398.730000px;}
.y10f{bottom:400.140000px;}
.y85{bottom:405.930000px;}
.y14e{bottom:406.515000px;}
.y1d{bottom:409.035000px;}
.y68{bottom:414.435000px;}
.ya7{bottom:414.615000px;}
.y14d{bottom:422.895000px;}
.y1c{bottom:426.315000px;}
.y67{bottom:432.435000px;}
.ya6{bottom:432.795000px;}
.y84{bottom:433.875000px;}
.y1b{bottom:443.595000px;}
.y14c{bottom:443.775000px;}
.ya5{bottom:450.795000px;}
.y83{bottom:457.635000px;}
.y1a{bottom:458.535000px;}
.y66{bottom:459.615000px;}
.y14b{bottom:460.155000px;}
.ya4{bottom:468.975000px;}
.y14a{bottom:476.535000px;}
.ya3{bottom:486.975000px;}
.y65{bottom:487.515000px;}
.y149{bottom:497.415000px;}
.ya2{bottom:505.155000px;}
.y64{bottom:505.695000px;}
.y148{bottom:513.795000px;}
.ya1{bottom:523.335000px;}
.y63{bottom:523.875000px;}
.y147{bottom:534.675000px;}
.ya0{bottom:541.335000px;}
.y62{bottom:551.055000px;}
.y146{bottom:555.555000px;}
.y9f{bottom:559.515000px;}
.y124{bottom:571.575000px;}
.y145{bottom:571.935000px;}
.y9e{bottom:577.695000px;}
.y61{bottom:578.955000px;}
.y144{bottom:588.495000px;}
.y123{bottom:589.755000px;}
.y9a{bottom:596.415000px;}
.y60{bottom:606.855000px;}
.y122{bottom:607.935000px;}
.y143{bottom:609.375000px;}
.y9c{bottom:615.315000px;}
.y11{bottom:624.675000px;}
.y142{bottom:625.755000px;}
.y5f{bottom:626.115000px;}
.y141{bottom:642.135000px;}
.y121{bottom:644.115000px;}
.y5e{bottom:645.015000px;}
.y99{bottom:646.635000px;}
.y140{bottom:658.545000px;}
.y177{bottom:660.525000px;}
.y120{bottom:662.325000px;}
.y5d{bottom:664.125000px;}
.yc2{bottom:664.665000px;}
.y98{bottom:673.665000px;}
.y13f{bottom:679.425000px;}
.y11f{bottom:680.325000px;}
.y176{bottom:684.825000px;}
.y5c{bottom:687.345000px;}
.y97{bottom:688.425000px;}
.yb5{bottom:688.680000px;}
.y13e{bottom:695.805000px;}
.y11e{bottom:698.505000px;}
.y175{bottom:701.205000px;}
.y5b{bottom:706.425000px;}
.y13d{bottom:712.185000px;}
.y11d{bottom:716.685000px;}
.y174{bottom:717.585000px;}
.y5a{bottom:725.505000px;}
.y105{bottom:732.885000px;}
.y13c{bottom:733.065000px;}
.y11c{bottom:734.685000px;}
.yf{bottom:736.485000px;}
.y173{bottom:738.465000px;}
.y59{bottom:744.405000px;}
.y13b{bottom:749.445000px;}
.y104{bottom:751.065000px;}
.y172{bottom:754.845000px;}
.y11b{bottom:761.685000px;}
.y58{bottom:763.485000px;}
.y13a{bottom:765.825000px;}
.y103{bottom:769.245000px;}
.y171{bottom:775.725000px;}
.ye{bottom:780.945000px;}
.y57{bottom:782.385000px;}
.y11a{bottom:785.445000px;}
.y139{bottom:786.705000px;}
.y102{bottom:787.245000px;}
.y170{bottom:792.105000px;}
.yd{bottom:798.045000px;}
.y56{bottom:801.465000px;}
.y138{bottom:803.085000px;}
.y101{bottom:805.425000px;}
.y16f{bottom:808.485000px;}
.yc{bottom:815.325000px;}
.y100{bottom:823.425000px;}
.y137{bottom:823.965000px;}
.y55{bottom:824.685000px;}
.y16e{bottom:829.365000px;}
.yb{bottom:832.785000px;}
.y136{bottom:840.345000px;}
.yff{bottom:841.605000px;}
.y54{bottom:843.765000px;}
.y16d{bottom:845.745000px;}
.ya{bottom:856.185000px;}
.y135{bottom:856.725000px;}
.yfe{bottom:859.785000px;}
.y16c{bottom:862.125000px;}
.y53{bottom:862.845000px;}
.y9{bottom:874.185000px;}
.yfd{bottom:877.785000px;}
.y52{bottom:881.745000px;}
.y134{bottom:882.465000px;}
.y16b{bottom:883.005000px;}
.y82{bottom:887.325000px;}
.yfc{bottom:895.965000px;}
.y16a{bottom:899.385000px;}
.y51{bottom:900.870000px;}
.y81{bottom:905.550000px;}
.y8{bottom:905.730000px;}
.y133{bottom:910.590000px;}
.yfb{bottom:914.190000px;}
.y169{bottom:915.810000px;}
.y50{bottom:919.770000px;}
.y80{bottom:923.730000px;}
.y168{bottom:936.690000px;}
.y132{bottom:938.490000px;}
.y4f{bottom:938.670000px;}
.yfa{bottom:941.190000px;}
.y7f{bottom:941.910000px;}
.y7{bottom:944.430000px;}
.y167{bottom:953.070000px;}
.y4e{bottom:957.750000px;}
.y6{bottom:965.130000px;}
.yf9{bottom:965.670000px;}
.y131{bottom:966.390000px;}
.y7e{bottom:969.090000px;}
.y166{bottom:969.450000px;}
.y4d{bottom:980.970000px;}
.yf8{bottom:983.850000px;}
.y130{bottom:984.570000px;}
.y165{bottom:990.330000px;}
.y7d{bottom:996.810000px;}
.y4c{bottom:1000.230000px;}
.yf7{bottom:1001.850000px;}
.y5{bottom:1003.830000px;}
.y164{bottom:1006.710000px;}
.y12f{bottom:1011.750000px;}
.y7c{bottom:1014.990000px;}
.y4b{bottom:1019.130000px;}
.yf6{bottom:1020.030000px;}
.y96{bottom:1024.890000px;}
.y163{bottom:1027.590000px;}
.y7b{bottom:1033.170000px;}
.y4a{bottom:1038.030000px;}
.y4{bottom:1038.570000px;}
.y12e{bottom:1039.650000px;}
.y95{bottom:1043.070000px;}
.y162{bottom:1043.970000px;}
.y7a{bottom:1051.350000px;}
.yf5{bottom:1056.210000px;}
.y49{bottom:1057.110000px;}
.y12d{bottom:1057.830000px;}
.y94{bottom:1061.070000px;}
.y161{bottom:1064.850000px;}
.y79{bottom:1069.350000px;}
.yf2{bottom:1074.390000px;}
.y48{bottom:1076.010000px;}
.y12c{bottom:1076.910000px;}
.y93{bottom:1079.250000px;}
.y160{bottom:1081.230000px;}
.y78{bottom:1087.530000px;}
.y47{bottom:1095.090000px;}
.y92{bottom:1097.430000px;}
.y15f{bottom:1097.610000px;}
.y77{bottom:1105.530000px;}
.yf1{bottom:1111.290000px;}
.y46{bottom:1113.990000px;}
.y12b{bottom:1114.350000px;}
.y91{bottom:1115.430000px;}
.y15e{bottom:1118.490000px;}
.y12a{bottom:1132.530000px;}
.y76{bottom:1132.710000px;}
.y45{bottom:1132.890000px;}
.y90{bottom:1133.610000px;}
.y15d{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y44{bottom:1169.460000px;}
.y43{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y42{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hc{height:17.657227px;}
.h17{height:18.000000px;}
.h16{height:18.180000px;}
.h18{height:18.216000px;}
.h21{height:36.180000px;}
.h15{height:37.080000px;}
.h9{height:40.320000px;}
.h5{height:41.304375px;}
.hf{height:49.255313px;}
.h26{height:50.992031px;}
.h1c{height:52.628906px;}
.h25{height:55.824609px;}
.h23{height:56.801250px;}
.hd{height:58.621992px;}
.h7{height:58.651172px;}
.h10{height:59.019609px;}
.h8{height:60.226875px;}
.h1e{height:62.153438px;}
.h6{height:62.184375px;}
.h1f{height:62.327813px;}
.h20{height:62.478000px;}
.h14{height:63.855000px;}
.h2{height:65.010937px;}
.h24{height:66.082500px;}
.ha{height:66.757500px;}
.h12{height:70.664062px;}
.h4{height:72.562500px;}
.h1a{height:75.093750px;}
.h1b{height:75.243937px;}
.h3{height:96.508125px;}
.hb{height:109.476000px;}
.h13{height:153.341016px;}
.h19{height:323.820000px;}
.h1d{height:324.000000px;}
.h22{height:329.400000px;}
.h11{height:351.030000px;}
.he{height:462.675000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w12{width:128.196000px;}
.wd{width:132.156000px;}
.w6{width:147.096000px;}
.w11{width:151.020000px;}
.w8{width:155.370000px;}
.we{width:162.030000px;}
.wf{width:165.270000px;}
.w10{width:219.810000px;}
.w9{width:232.230000px;}
.w3{width:237.810000px;}
.wc{width:316.110000px;}
.w7{width:387.615000px;}
.w5{width:407.055000px;}
.w13{width:481.140000px;}
.wb{width:540.000000px;}
.wa{width:561.600000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x45{left:3.420000px;}
.x47{left:5.400000px;}
.x7{left:8.100000px;}
.x49{left:16.020000px;}
.x17{left:17.640000px;}
.x32{left:19.230000px;}
.x23{left:20.775000px;}
.x4d{left:23.040000px;}
.x30{left:24.375000px;}
.x4a{left:27.000000px;}
.x2e{left:28.365000px;}
.x39{left:32.970000px;}
.x2f{left:34.380000px;}
.x46{left:35.634000px;}
.x21{left:42.510000px;}
.x15{left:44.640000px;}
.x3b{left:48.270000px;}
.x20{left:52.530000px;}
.x2a{left:54.030000px;}
.x18{left:55.980000px;}
.x1a{left:59.940000px;}
.x4b{left:61.560000px;}
.x4c{left:62.640000px;}
.x1c{left:63.900000px;}
.x31{left:64.905000px;}
.x3c{left:67.185000px;}
.x3d{left:71.145000px;}
.x1f{left:72.540000px;}
.x29{left:74.055000px;}
.x3e{left:78.345000px;}
.x48{left:87.480000px;}
.x34{left:92.055000px;}
.x22{left:93.060000px;}
.x19{left:94.500000px;}
.x1b{left:98.460000px;}
.x5{left:108.035987px;}
.x1d{left:113.580000px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.x55{left:135.035987px;}
.x37{left:141.516000px;}
.xc{left:160.949987px;}
.x56{left:162.029987px;}
.x1e{left:165.240000px;}
.x28{left:176.580000px;}
.x13{left:179.310000px;}
.xa{left:185.430000px;}
.x50{left:194.550000px;}
.x4e{left:205.740000px;}
.xf{left:207.209987px;}
.x26{left:209.009987px;}
.x35{left:218.490000px;}
.x33{left:223.890000px;}
.x2d{left:228.240000px;}
.x12{left:246.989987px;}
.x40{left:265.709987px;}
.x11{left:274.349987px;}
.x42{left:279.795000px;}
.x24{left:284.010000px;}
.x53{left:289.154987px;}
.x2b{left:296.490000px;}
.x36{left:302.474987px;}
.x3{left:314.354987px;}
.x14{left:326.415000px;}
.x41{left:330.194987px;}
.x27{left:359.174987px;}
.x8{left:360.615000px;}
.xd{left:375.374987px;}
.x9{left:378.255000px;}
.x51{left:423.720000px;}
.x4f{left:442.290000px;}
.x38{left:457.635000px;}
.x16{left:481.785000px;}
.x43{left:499.605000px;}
.x2c{left:515.310000px;}
.x3a{left:589.785000px;}
.x44{left:650.625000px;}
.x52{left:671.009987px;}
.x54{left:676.589987px;}
.x3f{left:687.389987px;}
.x25{left:716.729987px;}
.x10{left:727.889987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.xe{left:771.089987px;}
.x4{left:781.349987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.196267pt;}
.ls15{letter-spacing:-0.194667pt;}
.ls3{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.024320pt;}
.lsb{letter-spacing:0.046080pt;}
.ls1{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.148267pt;}
.ls19{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.185067pt;}
.ls9{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.296960pt;}
.lsa{letter-spacing:0.297067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.332800pt;}
.lsc{letter-spacing:0.384000pt;}
.ls1a{letter-spacing:0.480000pt;}
.lsd{letter-spacing:0.563200pt;}
.ls16{letter-spacing:0.933120pt;}
.ls6{letter-spacing:1.280000pt;}
.ls18{letter-spacing:54.081707pt;}
.lse{letter-spacing:156.949333pt;}
.ls8{letter-spacing:172.416000pt;}
.ls11{letter-spacing:330.229333pt;}
.ws16{word-spacing:-348.021333pt;}
.ws15{word-spacing:-64.000000pt;}
.wsf{word-spacing:-46.976000pt;}
.wsc{word-spacing:-17.827584pt;}
.wsb{word-spacing:-17.792000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws18{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.377067pt;}
.ws13{word-spacing:-14.228267pt;}
.wsa{word-spacing:-14.126080pt;}
.ws8{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.885333pt;}
.ws6{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.664320pt;}
.ws19{word-spacing:-12.640000pt;}
.ws1b{word-spacing:-12.443733pt;}
.ws1a{word-spacing:-12.320000pt;}
.ws10{word-spacing:-11.920640pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
.ws11{word-spacing:120.341333pt;}
.ws12{word-spacing:120.565333pt;}
.wsd{word-spacing:135.808000pt;}
.wse{word-spacing:136.192000pt;}
.ws14{word-spacing:272.234667pt;}
._24{margin-left:-535.562667pt;}
._23{margin-left:-517.845333pt;}
._22{margin-left:-330.176000pt;}
._1f{margin-left:-316.416000pt;}
._1e{margin-left:-298.592000pt;}
._1d{margin-left:-280.992000pt;}
._21{margin-left:-6.464000pt;}
._1c{margin-left:-4.221867pt;}
._5{margin-left:-3.275947pt;}
._4{margin-left:-2.124800pt;}
._0{margin-left:-1.177600pt;}
._2{width:1.469867pt;}
._1a{width:2.538240pt;}
._14{width:4.213973pt;}
._15{width:5.241387pt;}
._17{width:6.370987pt;}
._6{width:7.560533pt;}
._7{width:8.711680pt;}
._13{width:10.039680pt;}
._18{width:11.069440pt;}
._1b{width:12.247040pt;}
._3{width:13.504000pt;}
._1{width:14.400000pt;}
._12{width:15.524053pt;}
._16{width:16.998400pt;}
._19{width:18.017280pt;}
._11{width:19.866880pt;}
._9{width:22.483627pt;}
._8{width:23.850880pt;}
._e{width:29.605333pt;}
._c{width:40.016853pt;}
._d{width:41.017600pt;}
._a{width:53.509333pt;}
._b{width:54.855467pt;}
._10{width:68.151040pt;}
._f{width:69.268480pt;}
._20{width:325.376000pt;}
.fs7{font-size:16.000000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fsc{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fsb{font-size:53.248000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs1{font-size:85.120000pt;}
.fs9{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.880000pt;}
.y9d{bottom:3.040000pt;}
.y118{bottom:5.120000pt;}
.yf0{bottom:5.146667pt;}
.yc1{bottom:5.693333pt;}
.yec{bottom:8.733333pt;}
.yf4{bottom:11.040000pt;}
.y9b{bottom:11.520000pt;}
.y10{bottom:12.800000pt;}
.y116{bottom:18.466667pt;}
.y17{bottom:18.880000pt;}
.yf3{bottom:19.040000pt;}
.y10b{bottom:19.200000pt;}
.yd5{bottom:19.813333pt;}
.ydf{bottom:19.840000pt;}
.y33{bottom:26.240000pt;}
.ye3{bottom:29.573333pt;}
.ybf{bottom:31.520000pt;}
.y16{bottom:34.266667pt;}
.y110{bottom:37.533333pt;}
.y32{bottom:41.600000pt;}
.yd4{bottom:42.173333pt;}
.yde{bottom:42.213333pt;}
.yea{bottom:44.573333pt;}
.y15{bottom:49.626667pt;}
.yb6{bottom:50.586667pt;}
.y31{bottom:56.960000pt;}
.ycc{bottom:61.253333pt;}
.yd7{bottom:61.280000pt;}
.ye4{bottom:63.653333pt;}
.y14{bottom:64.986667pt;}
.y30{bottom:72.160000pt;}
.yb7{bottom:77.626667pt;}
.y13{bottom:80.346667pt;}
.y111{bottom:83.426667pt;}
.y18{bottom:84.826667pt;}
.ycd{bottom:86.973333pt;}
.y2f{bottom:87.520000pt;}
.yd8{bottom:90.653333pt;}
.y12{bottom:93.626667pt;}
.yef{bottom:97.253333pt;}
.ye5{bottom:97.693333pt;}
.yeb{bottom:98.106667pt;}
.y2e{bottom:102.880000pt;}
.yb8{bottom:104.706667pt;}
.yce{bottom:112.706667pt;}
.y2d{bottom:118.240000pt;}
.yd9{bottom:120.066667pt;}
.y117{bottom:121.413333pt;}
.y112{bottom:129.346667pt;}
.yb9{bottom:131.773333pt;}
.y2c{bottom:133.640000pt;}
.y15c{bottom:137.440000pt;}
.ycf{bottom:138.426667pt;}
.yc0{bottom:139.386667pt;}
.y129{bottom:139.680000pt;}
.ycb{bottom:142.106667pt;}
.y75{bottom:142.266667pt;}
.yb4{bottom:145.626667pt;}
.y2b{bottom:149.000000pt;}
.yda{bottom:149.466667pt;}
.ye2{bottom:150.106667pt;}
.y41{bottom:151.866667pt;}
.y15b{bottom:152.026667pt;}
.y128{bottom:155.866667pt;}
.yca{bottom:158.106667pt;}
.y74{bottom:158.426667pt;}
.yba{bottom:158.813333pt;}
.yb3{bottom:161.626667pt;}
.y10e{bottom:162.106667pt;}
.y119{bottom:163.426667pt;}
.yd0{bottom:164.160000pt;}
.y2a{bottom:164.200000pt;}
.ye6{bottom:165.826667pt;}
.y8f{bottom:166.266667pt;}
.y15a{bottom:166.586667pt;}
.y40{bottom:168.666667pt;}
.ye1{bottom:174.106667pt;}
.yc9{bottom:174.266667pt;}
.y73{bottom:174.426667pt;}
.y113{bottom:175.266667pt;}
.yb2{bottom:177.786667pt;}
.ydb{bottom:178.880000pt;}
.y29{bottom:179.560000pt;}
.y127{bottom:179.866667pt;}
.y8e{bottom:182.426667pt;}
.y159{bottom:185.146667pt;}
.y3f{bottom:185.466667pt;}
.ybb{bottom:185.893333pt;}
.yd1{bottom:189.893333pt;}
.yc8{bottom:190.266667pt;}
.y72{bottom:190.586667pt;}
.yb1{bottom:193.946667pt;}
.y28{bottom:194.920000pt;}
.y126{bottom:196.026667pt;}
.ye0{bottom:198.266667pt;}
.y8d{bottom:198.586667pt;}
.y158{bottom:199.706667pt;}
.ye7{bottom:199.866667pt;}
.y71{bottom:206.586667pt;}
.ydc{bottom:208.293333pt;}
.y125{bottom:209.146667pt;}
.y3e{bottom:210.266667pt;}
.y27{bottom:210.280000pt;}
.ybc{bottom:212.960000pt;}
.yc7{bottom:214.426667pt;}
.y8c{bottom:214.586667pt;}
.yd2{bottom:215.613333pt;}
.yb0{bottom:217.946667pt;}
.y157{bottom:218.266667pt;}
.y3b{bottom:218.280000pt;}
.y10d{bottom:218.426667pt;}
.y114{bottom:221.186667pt;}
.y70{bottom:222.746667pt;}
.y26{bottom:225.640000pt;}
.y3d{bottom:226.906667pt;}
.yc6{bottom:230.586667pt;}
.y156{bottom:232.826667pt;}
.y3a{bottom:233.640000pt;}
.ye8{bottom:233.946667pt;}
.yaf{bottom:234.106667pt;}
.ydd{bottom:237.666667pt;}
.y10c{bottom:238.426667pt;}
.y8b{bottom:238.746667pt;}
.y6f{bottom:238.906667pt;}
.ybd{bottom:240.000000pt;}
.y25{bottom:240.840000pt;}
.y19{bottom:241.306667pt;}
.yd3{bottom:241.346667pt;}
.yc5{bottom:246.586667pt;}
.y155{bottom:247.386667pt;}
.y39{bottom:249.000000pt;}
.yee{bottom:249.760000pt;}
.yae{bottom:250.266667pt;}
.y6e{bottom:254.906667pt;}
.y24{bottom:256.200000pt;}
.y10a{bottom:258.586667pt;}
.y8a{bottom:263.706667pt;}
.y38{bottom:264.360000pt;}
.y154{bottom:265.946667pt;}
.yad{bottom:266.266667pt;}
.ybe{bottom:267.066667pt;}
.y115{bottom:267.106667pt;}
.ye9{bottom:268.000000pt;}
.yc4{bottom:270.746667pt;}
.y23{bottom:271.560000pt;}
.yed{bottom:272.253333pt;}
.y6d{bottom:279.066667pt;}
.y37{bottom:279.720000pt;}
.y153{bottom:280.506667pt;}
.yac{bottom:282.426667pt;}
.y22{bottom:286.920000pt;}
.y89{bottom:288.346667pt;}
.yc3{bottom:291.866667pt;}
.yd6{bottom:292.000000pt;}
.y36{bottom:294.920000pt;}
.y109{bottom:295.386667pt;}
.yab{bottom:298.426667pt;}
.y152{bottom:299.066667pt;}
.y3c{bottom:299.560000pt;}
.y21{bottom:302.280000pt;}
.y6c{bottom:303.866667pt;}
.y88{bottom:304.506667pt;}
.y35{bottom:308.200000pt;}
.y151{bottom:313.626667pt;}
.y108{bottom:317.306667pt;}
.y20{bottom:317.640000pt;}
.y6b{bottom:320.026667pt;}
.yaa{bottom:320.186667pt;}
.y87{bottom:320.666667pt;}
.y150{bottom:328.186667pt;}
.y1f{bottom:332.840000pt;}
.y6a{bottom:336.026667pt;}
.ya9{bottom:336.346667pt;}
.y86{bottom:336.666667pt;}
.y107{bottom:341.306667pt;}
.y14f{bottom:346.746667pt;}
.y1e{bottom:348.226667pt;}
.y69{bottom:352.186667pt;}
.ya8{bottom:352.346667pt;}
.y106{bottom:354.426667pt;}
.y10f{bottom:355.680000pt;}
.y85{bottom:360.826667pt;}
.y14e{bottom:361.346667pt;}
.y1d{bottom:363.586667pt;}
.y68{bottom:368.386667pt;}
.ya7{bottom:368.546667pt;}
.y14d{bottom:375.906667pt;}
.y1c{bottom:378.946667pt;}
.y67{bottom:384.386667pt;}
.ya6{bottom:384.706667pt;}
.y84{bottom:385.666667pt;}
.y1b{bottom:394.306667pt;}
.y14c{bottom:394.466667pt;}
.ya5{bottom:400.706667pt;}
.y83{bottom:406.786667pt;}
.y1a{bottom:407.586667pt;}
.y66{bottom:408.546667pt;}
.y14b{bottom:409.026667pt;}
.ya4{bottom:416.866667pt;}
.y14a{bottom:423.586667pt;}
.ya3{bottom:432.866667pt;}
.y65{bottom:433.346667pt;}
.y149{bottom:442.146667pt;}
.ya2{bottom:449.026667pt;}
.y64{bottom:449.506667pt;}
.y148{bottom:456.706667pt;}
.ya1{bottom:465.186667pt;}
.y63{bottom:465.666667pt;}
.y147{bottom:475.266667pt;}
.ya0{bottom:481.186667pt;}
.y62{bottom:489.826667pt;}
.y146{bottom:493.826667pt;}
.y9f{bottom:497.346667pt;}
.y124{bottom:508.066667pt;}
.y145{bottom:508.386667pt;}
.y9e{bottom:513.506667pt;}
.y61{bottom:514.626667pt;}
.y144{bottom:523.106667pt;}
.y123{bottom:524.226667pt;}
.y9a{bottom:530.146667pt;}
.y60{bottom:539.426667pt;}
.y122{bottom:540.386667pt;}
.y143{bottom:541.666667pt;}
.y9c{bottom:546.946667pt;}
.y11{bottom:555.266667pt;}
.y142{bottom:556.226667pt;}
.y5f{bottom:556.546667pt;}
.y141{bottom:570.786667pt;}
.y121{bottom:572.546667pt;}
.y5e{bottom:573.346667pt;}
.y99{bottom:574.786667pt;}
.y140{bottom:585.373333pt;}
.y177{bottom:587.133333pt;}
.y120{bottom:588.733333pt;}
.y5d{bottom:590.333333pt;}
.yc2{bottom:590.813333pt;}
.y98{bottom:598.813333pt;}
.y13f{bottom:603.933333pt;}
.y11f{bottom:604.733333pt;}
.y176{bottom:608.733333pt;}
.y5c{bottom:610.973333pt;}
.y97{bottom:611.933333pt;}
.yb5{bottom:612.160000pt;}
.y13e{bottom:618.493333pt;}
.y11e{bottom:620.893333pt;}
.y175{bottom:623.293333pt;}
.y5b{bottom:627.933333pt;}
.y13d{bottom:633.053333pt;}
.y11d{bottom:637.053333pt;}
.y174{bottom:637.853333pt;}
.y5a{bottom:644.893333pt;}
.y105{bottom:651.453333pt;}
.y13c{bottom:651.613333pt;}
.y11c{bottom:653.053333pt;}
.yf{bottom:654.653333pt;}
.y173{bottom:656.413333pt;}
.y59{bottom:661.693333pt;}
.y13b{bottom:666.173333pt;}
.y104{bottom:667.613333pt;}
.y172{bottom:670.973333pt;}
.y11b{bottom:677.053333pt;}
.y58{bottom:678.653333pt;}
.y13a{bottom:680.733333pt;}
.y103{bottom:683.773333pt;}
.y171{bottom:689.533333pt;}
.ye{bottom:694.173333pt;}
.y57{bottom:695.453333pt;}
.y11a{bottom:698.173333pt;}
.y139{bottom:699.293333pt;}
.y102{bottom:699.773333pt;}
.y170{bottom:704.093333pt;}
.yd{bottom:709.373333pt;}
.y56{bottom:712.413333pt;}
.y138{bottom:713.853333pt;}
.y101{bottom:715.933333pt;}
.y16f{bottom:718.653333pt;}
.yc{bottom:724.733333pt;}
.y100{bottom:731.933333pt;}
.y137{bottom:732.413333pt;}
.y55{bottom:733.053333pt;}
.y16e{bottom:737.213333pt;}
.yb{bottom:740.253333pt;}
.y136{bottom:746.973333pt;}
.yff{bottom:748.093333pt;}
.y54{bottom:750.013333pt;}
.y16d{bottom:751.773333pt;}
.ya{bottom:761.053333pt;}
.y135{bottom:761.533333pt;}
.yfe{bottom:764.253333pt;}
.y16c{bottom:766.333333pt;}
.y53{bottom:766.973333pt;}
.y9{bottom:777.053333pt;}
.yfd{bottom:780.253333pt;}
.y52{bottom:783.773333pt;}
.y134{bottom:784.413333pt;}
.y16b{bottom:784.893333pt;}
.y82{bottom:788.733333pt;}
.yfc{bottom:796.413333pt;}
.y16a{bottom:799.453333pt;}
.y51{bottom:800.773333pt;}
.y81{bottom:804.933333pt;}
.y8{bottom:805.093333pt;}
.y133{bottom:809.413333pt;}
.yfb{bottom:812.613333pt;}
.y169{bottom:814.053333pt;}
.y50{bottom:817.573333pt;}
.y80{bottom:821.093333pt;}
.y168{bottom:832.613333pt;}
.y132{bottom:834.213333pt;}
.y4f{bottom:834.373333pt;}
.yfa{bottom:836.613333pt;}
.y7f{bottom:837.253333pt;}
.y7{bottom:839.493333pt;}
.y167{bottom:847.173333pt;}
.y4e{bottom:851.333333pt;}
.y6{bottom:857.893333pt;}
.yf9{bottom:858.373333pt;}
.y131{bottom:859.013333pt;}
.y7e{bottom:861.413333pt;}
.y166{bottom:861.733333pt;}
.y4d{bottom:871.973333pt;}
.yf8{bottom:874.533333pt;}
.y130{bottom:875.173333pt;}
.y165{bottom:880.293333pt;}
.y7d{bottom:886.053333pt;}
.y4c{bottom:889.093333pt;}
.yf7{bottom:890.533333pt;}
.y5{bottom:892.293333pt;}
.y164{bottom:894.853333pt;}
.y12f{bottom:899.333333pt;}
.y7c{bottom:902.213333pt;}
.y4b{bottom:905.893333pt;}
.yf6{bottom:906.693333pt;}
.y96{bottom:911.013333pt;}
.y163{bottom:913.413333pt;}
.y7b{bottom:918.373333pt;}
.y4a{bottom:922.693333pt;}
.y4{bottom:923.173333pt;}
.y12e{bottom:924.133333pt;}
.y95{bottom:927.173333pt;}
.y162{bottom:927.973333pt;}
.y7a{bottom:934.533333pt;}
.yf5{bottom:938.853333pt;}
.y49{bottom:939.653333pt;}
.y12d{bottom:940.293333pt;}
.y94{bottom:943.173333pt;}
.y161{bottom:946.533333pt;}
.y79{bottom:950.533333pt;}
.yf2{bottom:955.013333pt;}
.y48{bottom:956.453333pt;}
.y12c{bottom:957.253333pt;}
.y93{bottom:959.333333pt;}
.y160{bottom:961.093333pt;}
.y78{bottom:966.693333pt;}
.y47{bottom:973.413333pt;}
.y92{bottom:975.493333pt;}
.y15f{bottom:975.653333pt;}
.y77{bottom:982.693333pt;}
.yf1{bottom:987.813333pt;}
.y46{bottom:990.213333pt;}
.y12b{bottom:990.533333pt;}
.y91{bottom:991.493333pt;}
.y15e{bottom:994.213333pt;}
.y12a{bottom:1006.693333pt;}
.y76{bottom:1006.853333pt;}
.y45{bottom:1007.013333pt;}
.y90{bottom:1007.653333pt;}
.y15d{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y44{bottom:1039.520000pt;}
.y43{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y42{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hc{height:15.695312pt;}
.h17{height:16.000000pt;}
.h16{height:16.160000pt;}
.h18{height:16.192000pt;}
.h21{height:32.160000pt;}
.h15{height:32.960000pt;}
.h9{height:35.840000pt;}
.h5{height:36.715000pt;}
.hf{height:43.782500pt;}
.h26{height:45.326250pt;}
.h1c{height:46.781250pt;}
.h25{height:49.621875pt;}
.h23{height:50.490000pt;}
.hd{height:52.108438pt;}
.h7{height:52.134375pt;}
.h10{height:52.461875pt;}
.h8{height:53.535000pt;}
.h1e{height:55.247500pt;}
.h6{height:55.275000pt;}
.h1f{height:55.402500pt;}
.h20{height:55.536000pt;}
.h14{height:56.760000pt;}
.h2{height:57.787500pt;}
.h24{height:58.740000pt;}
.ha{height:59.340000pt;}
.h12{height:62.812500pt;}
.h4{height:64.500000pt;}
.h1a{height:66.750000pt;}
.h1b{height:66.883500pt;}
.h3{height:85.785000pt;}
.hb{height:97.312000pt;}
.h13{height:136.303125pt;}
.h19{height:287.840000pt;}
.h1d{height:288.000000pt;}
.h22{height:292.800000pt;}
.h11{height:312.026667pt;}
.he{height:411.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w12{width:113.952000pt;}
.wd{width:117.472000pt;}
.w6{width:130.752000pt;}
.w11{width:134.240000pt;}
.w8{width:138.106667pt;}
.we{width:144.026667pt;}
.wf{width:146.906667pt;}
.w10{width:195.386667pt;}
.w9{width:206.426667pt;}
.w3{width:211.386667pt;}
.wc{width:280.986667pt;}
.w7{width:344.546667pt;}
.w5{width:361.826667pt;}
.w13{width:427.680000pt;}
.wb{width:480.000000pt;}
.wa{width:499.200000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x45{left:3.040000pt;}
.x47{left:4.800000pt;}
.x7{left:7.200000pt;}
.x49{left:14.240000pt;}
.x17{left:15.680000pt;}
.x32{left:17.093333pt;}
.x23{left:18.466667pt;}
.x4d{left:20.480000pt;}
.x30{left:21.666667pt;}
.x4a{left:24.000000pt;}
.x2e{left:25.213333pt;}
.x39{left:29.306667pt;}
.x2f{left:30.560000pt;}
.x46{left:31.674667pt;}
.x21{left:37.786667pt;}
.x15{left:39.680000pt;}
.x3b{left:42.906667pt;}
.x20{left:46.693333pt;}
.x2a{left:48.026667pt;}
.x18{left:49.760000pt;}
.x1a{left:53.280000pt;}
.x4b{left:54.720000pt;}
.x4c{left:55.680000pt;}
.x1c{left:56.800000pt;}
.x31{left:57.693333pt;}
.x3c{left:59.720000pt;}
.x3d{left:63.240000pt;}
.x1f{left:64.480000pt;}
.x29{left:65.826667pt;}
.x3e{left:69.640000pt;}
.x48{left:77.760000pt;}
.x34{left:81.826667pt;}
.x22{left:82.720000pt;}
.x19{left:84.000000pt;}
.x1b{left:87.520000pt;}
.x5{left:96.031988pt;}
.x1d{left:100.960000pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.x55{left:120.031988pt;}
.x37{left:125.792000pt;}
.xc{left:143.066655pt;}
.x56{left:144.026655pt;}
.x1e{left:146.880000pt;}
.x28{left:156.960000pt;}
.x13{left:159.386667pt;}
.xa{left:164.826667pt;}
.x50{left:172.933333pt;}
.x4e{left:182.880000pt;}
.xf{left:184.186655pt;}
.x26{left:185.786655pt;}
.x35{left:194.213333pt;}
.x33{left:199.013333pt;}
.x2d{left:202.880000pt;}
.x12{left:219.546655pt;}
.x40{left:236.186655pt;}
.x11{left:243.866655pt;}
.x42{left:248.706667pt;}
.x24{left:252.453333pt;}
.x53{left:257.026655pt;}
.x2b{left:263.546667pt;}
.x36{left:268.866655pt;}
.x3{left:279.426655pt;}
.x14{left:290.146667pt;}
.x41{left:293.506655pt;}
.x27{left:319.266655pt;}
.x8{left:320.546667pt;}
.xd{left:333.666655pt;}
.x9{left:336.226667pt;}
.x51{left:376.640000pt;}
.x4f{left:393.146667pt;}
.x38{left:406.786667pt;}
.x16{left:428.253333pt;}
.x43{left:444.093333pt;}
.x2c{left:458.053333pt;}
.x3a{left:524.253333pt;}
.x44{left:578.333333pt;}
.x52{left:596.453322pt;}
.x54{left:601.413322pt;}
.x3f{left:611.013322pt;}
.x25{left:637.093322pt;}
.x10{left:647.013322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.xe{left:685.413322pt;}
.x4{left:694.533322pt;}
}




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