
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_ad4348e8dd7125d08ad41910.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_f0629c4ecf147c263c469d37.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_0fb1daae9c396a2fd8bab035.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_acd4cd458eb4c0a04e2abbff.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cad2cbc668162de6a22e544c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_267c33d84d5474a5ad051de4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f43ea69fdffb9703e0aedada.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f307aa7149e5e5b128785321.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_1fc5079290c1fc19afcb4455.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.920410;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_12b7c6326618b68cb2647fa0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_991fedc46b40a1535c42ae90.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v3{vertical-align:-38.880000px;}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v1{vertical-align:38.880000px;}
.ls3{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.750000px;}
.lsc{letter-spacing:-0.684000px;}
.lsf{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.350400px;}
.ls11{letter-spacing:-0.341400px;}
.ls14{letter-spacing:-0.331800px;}
.ls6{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.158400px;}
.ls13{letter-spacing:-0.028080px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls5{letter-spacing:0.037440px;}
.ls16{letter-spacing:0.091920px;}
.ls1d{letter-spacing:0.256200px;}
.lsd{letter-spacing:0.274800px;}
.ls15{letter-spacing:0.321600px;}
.lsb{letter-spacing:0.341400px;}
.ls4{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.540000px;}
.lse{letter-spacing:1.080000px;}
.ls9{letter-spacing:4.140000px;}
.ls1b{letter-spacing:4.860000px;}
.ls7{letter-spacing:6.300000px;}
.ls1c{letter-spacing:8.100000px;}
.ls24{letter-spacing:8.460000px;}
.ls19{letter-spacing:8.820000px;}
.ls22{letter-spacing:13.500000px;}
.ls23{letter-spacing:13.860000px;}
.ls21{letter-spacing:18.180000px;}
.ls25{letter-spacing:19.980000px;}
.ls1e{letter-spacing:20.100000px;}
.ls1a{letter-spacing:21.060000px;}
.ls18{letter-spacing:30.780000px;}
.ls20{letter-spacing:32.940000px;}
.ls1f{letter-spacing:33.300000px;}
.ls26{letter-spacing:43.716000px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws3{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.401400px;}
.wsf{word-spacing:-21.381600px;}
.ws4{word-spacing:-21.097440px;}
.ws2{word-spacing:-21.060000px;}
.wse{word-spacing:-21.031920px;}
.wsc{word-spacing:-20.901600px;}
.ws11{word-spacing:-20.880000px;}
.wsb{word-spacing:-20.718600px;}
.wsd{word-spacing:-20.709600px;}
.ws9{word-spacing:-20.700000px;}
.ws8{word-spacing:-20.376000px;}
.ws13{word-spacing:-20.310000px;}
.wsa{word-spacing:-20.160000px;}
.ws1{word-spacing:-18.000000px;}
.ws10{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws12{word-spacing:-0.322440px;}
.ws0{word-spacing:-0.066240px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._12{margin-left:-9.749040px;}
._37{margin-left:-7.422720px;}
._c{margin-left:-4.242960px;}
._f{margin-left:-2.496240px;}
._1{margin-left:-1.126080px;}
._3{width:1.307280px;}
._9{width:2.382480px;}
._8{width:3.538080px;}
._26{width:4.885920px;}
._1c{width:6.096240px;}
._1b{width:7.160400px;}
._1d{width:8.301360px;}
._10{width:9.519120px;}
._11{width:10.530720px;}
._6{width:11.771040px;}
._2c{width:12.810240px;}
._d{width:13.815360px;}
._e{width:14.994720px;}
._16{width:16.119120px;}
._15{width:17.131680px;}
._23{width:18.754560px;}
._1e{width:19.911600px;}
._2b{width:22.070880px;}
._2a{width:23.167200px;}
._30{width:24.682320px;}
._27{width:26.386320px;}
._29{width:27.398160px;}
._b{width:28.480080px;}
._7{width:29.936160px;}
._18{width:31.505760px;}
._33{width:33.137280px;}
._25{width:34.302960px;}
._19{width:35.802000px;}
._a{width:36.981360px;}
._32{width:38.268480px;}
._24{width:39.302160px;}
._31{width:40.320240px;}
._36{width:41.454240px;}
._35{width:42.767760px;}
._14{width:43.780560px;}
._13{width:44.910480px;}
._17{width:46.436640px;}
._28{width:48.269520px;}
._1a{width:51.480240px;}
._22{width:54.075360px;}
._21{width:55.530480px;}
._34{width:58.294080px;}
._5{width:59.580000px;}
._2e{width:93.453120px;}
._1f{width:98.139600px;}
._20{width:99.181440px;}
._4{width:110.700000px;}
._2d{width:131.613840px;}
._2f{width:223.881840px;}
._2{width:638.842080px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y91{bottom:-122.760000px;}
.y9c{bottom:-116.130000px;}
.ya8{bottom:-104.760000px;}
.y78{bottom:-102.465000px;}
.y90{bottom:-86.580000px;}
.y79{bottom:-66.240000px;}
.ya4{bottom:-65.190000px;}
.y9b{bottom:-64.974000px;}
.ya7{bottom:-53.640000px;}
.y77{bottom:-51.120000px;}
.y84{bottom:-50.760000px;}
.y8f{bottom:-50.400000px;}
.y7d{bottom:-34.920000px;}
.ya9{bottom:-32.400000px;}
.y75{bottom:-29.880000px;}
.y85{bottom:-29.520000px;}
.y92{bottom:-29.160000px;}
.y99{bottom:-28.800000px;}
.y8c{bottom:-28.080000px;}
.ya0{bottom:-26.100000px;}
.y81{bottom:-25.740000px;}
.ya6{bottom:-17.460000px;}
.y76{bottom:-14.940000px;}
.y83{bottom:-14.580000px;}
.y8e{bottom:-14.220000px;}
.ya3{bottom:-14.034000px;}
.y98{bottom:-13.860000px;}
.y9a{bottom:-13.680000px;}
.y8b{bottom:-13.140000px;}
.y80{bottom:-10.620000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y95{bottom:13.860000px;}
.y88{bottom:14.220000px;}
.y7c{bottom:16.245000px;}
.ya5{bottom:18.936000px;}
.y74{bottom:21.240000px;}
.y82{bottom:21.825000px;}
.y8d{bottom:22.140000px;}
.ya2{bottom:22.320000px;}
.y97{bottom:22.500000px;}
.y8a{bottom:23.040000px;}
.y9f{bottom:25.056000px;}
.y7f{bottom:25.560000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y4e{bottom:32.040000px;}
.y5c{bottom:32.070000px;}
.yb6{bottom:32.076000px;}
.y66{bottom:32.214000px;}
.y53{bottom:32.220000px;}
.yd5{bottom:32.250000px;}
.y55{bottom:32.265000px;}
.y4d{bottom:47.160000px;}
.ydd{bottom:50.220000px;}
.ydb{bottom:57.780000px;}
.ye2{bottom:57.816000px;}
.yd0{bottom:58.140000px;}
.y9e{bottom:61.410000px;}
.y94{bottom:65.160000px;}
.y87{bottom:65.340000px;}
.y7b{bottom:67.545000px;}
.yc5{bottom:68.220000px;}
.y64{bottom:68.400000px;}
.yb8{bottom:68.430000px;}
.yde{bottom:68.445000px;}
.y117{bottom:82.440000px;}
.y4c{bottom:83.340000px;}
.yd4{bottom:83.370000px;}
.ye0{bottom:84.600000px;}
.y49{bottom:86.220000px;}
.yaa{bottom:93.240000px;}
.yb5{bottom:95.400000px;}
.yce{bottom:97.560000px;}
.y21{bottom:101.160000px;}
.y39{bottom:107.460000px;}
.yda{bottom:108.900000px;}
.ye1{bottom:108.930000px;}
.y67{bottom:110.700000px;}
.y9d{bottom:113.400000px;}
.yfe{bottom:114.660000px;}
.y116{bottom:118.620000px;}
.y48{bottom:122.400000px;}
.y61{bottom:130.536000px;}
.ycd{bottom:133.776000px;}
.yd8{bottom:134.460000px;}
.yd3{bottom:134.670000px;}
.y20{bottom:137.376000px;}
.y38{bottom:143.676000px;}
.ya1{bottom:152.490000px;}
.y115{bottom:155.010000px;}
.y47{bottom:158.610000px;}
.yd9{bottom:160.200000px;}
.yfd{bottom:165.990000px;}
.ycc{bottom:169.950000px;}
.yb4{bottom:179.490000px;}
.y65{bottom:182.550000px;}
.yd7{bottom:185.760000px;}
.yd2{bottom:185.790000px;}
.y11d{bottom:188.310000px;}
.y1f{bottom:188.670000px;}
.y51{bottom:188.865000px;}
.y114{bottom:191.190000px;}
.y37{bottom:194.790000px;}
.y93{bottom:194.970000px;}
.ycb{bottom:206.310000px;}
.y62{bottom:208.614000px;}
.yb3{bottom:215.670000px;}
.yfc{bottom:217.110000px;}
.y1e{bottom:224.850000px;}
.y113{bottom:227.370000px;}
.y36{bottom:231.150000px;}
.y96{bottom:237.630000px;}
.ydf{bottom:239.070000px;}
.y5a{bottom:239.970000px;}
.y50{bottom:240.165000px;}
.yfb{bottom:253.290000px;}
.yca{bottom:257.430000px;}
.y1d{bottom:261.030000px;}
.y112{bottom:263.550000px;}
.yb2{bottom:266.970000px;}
.y35{bottom:267.330000px;}
.y63{bottom:270.750000px;}
.yc9{bottom:277.590000px;}
.y86{bottom:280.290000px;}
.y46{bottom:282.270000px;}
.yfa{bottom:289.650000px;}
.y1c{bottom:297.210000px;}
.y111{bottom:299.910000px;}
.y34{bottom:303.510000px;}
.y11c{bottom:312.330000px;}
.y45{bottom:318.450000px;}
.y89{bottom:322.590000px;}
.yf9{bottom:325.830000px;}
.ydc{bottom:327.270000px;}
.yc8{bottom:329.970000px;}
.y1b{bottom:333.570000px;}
.y110{bottom:336.090000px;}
.y11b{bottom:348.510000px;}
.y33{bottom:354.810000px;}
.y60{bottom:358.950000px;}
.yf8{bottom:362.010000px;}
.y7a{bottom:365.790000px;}
.y10f{bottom:372.270000px;}
.yc7{bottom:382.395000px;}
.y1a{bottom:384.735000px;}
.y32{bottom:391.035000px;}
.yf7{bottom:398.235000px;}
.y7e{bottom:407.775000px;}
.y10e{bottom:408.495000px;}
.y59{bottom:411.015000px;}
.yd6{bottom:415.515000px;}
.y19{bottom:420.915000px;}
.y31{bottom:427.215000px;}
.yf6{bottom:434.415000px;}
.yc6{bottom:434.775000px;}
.y44{bottom:442.155000px;}
.y10d{bottom:444.855000px;}
.y73{bottom:453.495000px;}
.y18{bottom:457.275000px;}
.y5f{bottom:462.855000px;}
.y30{bottom:463.395000px;}
.yf5{bottom:470.775000px;}
.y43{bottom:478.515000px;}
.y10c{bottom:481.035000px;}
.yc4{bottom:487.155000px;}
.y17{bottom:493.455000px;}
.y2f{bottom:499.755000px;}
.yf4{bottom:506.955000px;}
.y11a{bottom:508.395000px;}
.y42{bottom:514.695000px;}
.y5e{bottom:514.875000px;}
.y10b{bottom:517.215000px;}
.y72{bottom:526.755000px;}
.y16{bottom:529.635000px;}
.yb1{bottom:535.935000px;}
.yf3{bottom:543.135000px;}
.y2e{bottom:550.875000px;}
.y10a{bottom:553.395000px;}
.y119{bottom:559.695000px;}
.y15{bottom:565.815000px;}
.y5d{bottom:566.895000px;}
.yb0{bottom:572.115000px;}
.y71{bottom:578.055000px;}
.yf2{bottom:579.315000px;}
.y2d{bottom:587.055000px;}
.y109{bottom:589.755000px;}
.y14{bottom:602.175000px;}
.yc3{bottom:607.395000px;}
.y118{bottom:610.815000px;}
.yf1{bottom:615.675000px;}
.y5b{bottom:618.915000px;}
.yd1{bottom:621.075000px;}
.y2c{bottom:623.415000px;}
.y108{bottom:625.935000px;}
.y70{bottom:629.175000px;}
.y13{bottom:638.385000px;}
.yf0{bottom:651.885000px;}
.y41{bottom:653.325000px;}
.yc2{bottom:658.725000px;}
.y2b{bottom:659.625000px;}
.y107{bottom:662.145000px;}
.y58{bottom:670.785000px;}
.y6f{bottom:680.865000px;}
.yef{bottom:688.065000px;}
.y12{bottom:689.505000px;}
.y2a{bottom:695.805000px;}
.y106{bottom:698.325000px;}
.yc1{bottom:710.205000px;}
.yaf{bottom:710.745000px;}
.y6e{bottom:717.045000px;}
.y4f{bottom:722.805000px;}
.yee{bottom:724.245000px;}
.y11{bottom:725.865000px;}
.y105{bottom:734.505000px;}
.yc0{bottom:746.565000px;}
.y29{bottom:747.105000px;}
.y6d{bottom:753.225000px;}
.yed{bottom:760.605000px;}
.y10{bottom:762.045000px;}
.y104{bottom:770.865000px;}
.y57{bottom:774.825000px;}
.ybf{bottom:782.745000px;}
.y28{bottom:783.285000px;}
.y6c{bottom:789.405000px;}
.yec{bottom:796.785000px;}
.y40{bottom:798.225000px;}
.y103{bottom:807.045000px;}
.yf{bottom:813.165000px;}
.ybe{bottom:818.925000px;}
.y6b{bottom:825.765000px;}
.y56{bottom:826.845000px;}
.yeb{bottom:832.965000px;}
.y27{bottom:834.405000px;}
.y102{bottom:843.225000px;}
.ye{bottom:849.525000px;}
.yae{bottom:864.465000px;}
.yea{bottom:869.145000px;}
.ybd{bottom:870.225000px;}
.y26{bottom:870.765000px;}
.y6a{bottom:876.885000px;}
.y54{bottom:878.685000px;}
.y101{bottom:879.405000px;}
.yd{bottom:885.750000px;}
.ybc{bottom:890.430000px;}
.yad{bottom:900.690000px;}
.ye9{bottom:905.550000px;}
.y25{bottom:906.990000px;}
.y100{bottom:915.810000px;}
.yc{bottom:921.930000px;}
.y69{bottom:928.230000px;}
.y52{bottom:930.750000px;}
.y3f{bottom:937.050000px;}
.ye8{bottom:941.730000px;}
.ybb{bottom:942.810000px;}
.yff{bottom:951.990000px;}
.yb{bottom:958.110000px;}
.y3e{bottom:973.230000px;}
.y68{bottom:979.350000px;}
.y4b{bottom:982.770000px;}
.yac{bottom:988.170000px;}
.ye7{bottom:992.850000px;}
.y24{bottom:994.470000px;}
.yba{bottom:995.190000px;}
.ya{bottom:1009.050000px;}
.y3d{bottom:1009.410000px;}
.yab{bottom:1024.350000px;}
.ye6{bottom:1029.210000px;}
.y23{bottom:1030.650000px;}
.y9{bottom:1045.590000px;}
.yb9{bottom:1047.390000px;}
.y3c{bottom:1060.710000px;}
.ye5{bottom:1065.390000px;}
.ycf{bottom:1066.470000px;}
.y8{bottom:1081.770000px;}
.y3b{bottom:1096.890000px;}
.yb7{bottom:1099.770000px;}
.ye4{bottom:1116.510000px;}
.y4a{bottom:1117.770000px;}
.y7{bottom:1118.130000px;}
.y3a{bottom:1133.070000px;}
.ye3{bottom:1136.490000px;}
.y6{bottom:1168.920000px;}
.y22{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.h1f{height:38.016000px;}
.h14{height:40.320000px;}
.h17{height:40.896000px;}
.h1a{height:41.220000px;}
.h1e{height:41.400000px;}
.h1c{height:41.580000px;}
.h19{height:42.120000px;}
.h16{height:44.640000px;}
.hf{height:51.120000px;}
.h11{height:51.156000px;}
.hd{height:51.300000px;}
.he{height:51.336000px;}
.h9{height:59.066719px;}
.h7{height:59.601445px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h1d{height:80.496000px;}
.h8{height:82.635820px;}
.h6{height:82.676953px;}
.h1b{height:84.240000px;}
.h18{height:84.420000px;}
.h5{height:84.898125px;}
.h27{height:86.585445px;}
.h15{height:86.616000px;}
.h21{height:87.300000px;}
.h13{height:87.480000px;}
.h20{height:87.516000px;}
.ha{height:91.878047px;}
.h25{height:92.058047px;}
.hb{height:102.420000px;}
.h22{height:103.140000px;}
.h26{height:153.750000px;}
.h24{height:204.840000px;}
.h23{height:204.870000px;}
.h12{height:227.700000px;}
.h10{height:259.050000px;}
.hc{height:259.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:39.780000px;}
.w16{width:41.616000px;}
.w2{width:49.536000px;}
.w14{width:54.396000px;}
.wd{width:56.160000px;}
.w13{width:58.140000px;}
.w11{width:62.316000px;}
.w7{width:62.856000px;}
.w12{width:63.360000px;}
.w19{width:71.136000px;}
.wc{width:73.296000px;}
.wb{width:84.060000px;}
.w4{width:84.420000px;}
.w22{width:86.436000px;}
.we{width:90.540000px;}
.w18{width:97.380000px;}
.w9{width:106.956000px;}
.w6{width:112.140000px;}
.wa{width:114.156000px;}
.w1c{width:117.756000px;}
.w15{width:118.260000px;}
.w1a{width:130.716000px;}
.w21{width:135.936000px;}
.w1b{width:138.960000px;}
.w20{width:140.220000px;}
.w1d{width:146.016000px;}
.wf{width:154.440000px;}
.w8{width:158.400000px;}
.w3{width:180.030000px;}
.w5{width:216.975000px;}
.w1e{width:338.475000px;}
.w1f{width:364.395000px;}
.w10{width:542.625000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:2.340000px;}
.x31{left:6.300000px;}
.x12{left:7.740000px;}
.x32{left:9.720000px;}
.x33{left:12.420000px;}
.x4c{left:15.120000px;}
.x58{left:16.410000px;}
.x28{left:17.460000px;}
.x3b{left:18.720000px;}
.x4{left:20.550000px;}
.x54{left:23.760000px;}
.x2f{left:25.200000px;}
.x2b{left:27.000000px;}
.x2a{left:28.080000px;}
.x3c{left:29.340000px;}
.x42{left:30.816000px;}
.x25{left:33.705000px;}
.x30{left:34.740000px;}
.x29{left:35.820000px;}
.x40{left:37.440000px;}
.x18{left:39.420000px;}
.x2d{left:41.625000px;}
.x27{left:43.560000px;}
.x2c{left:45.360000px;}
.x2e{left:46.440000px;}
.x10{left:48.240000px;}
.x53{left:50.940000px;}
.x26{left:52.065000px;}
.x47{left:54.360000px;}
.x19{left:56.556000px;}
.x48{left:59.760000px;}
.x56{left:67.905000px;}
.x20{left:68.940000px;}
.x55{left:70.200000px;}
.x24{left:72.360000px;}
.x1c{left:80.325000px;}
.x1e{left:83.910000px;}
.x41{left:88.200000px;}
.x1{left:95.796000px;}
.x1a{left:103.356000px;}
.x2{left:111.636000px;}
.x4a{left:127.260000px;}
.x52{left:131.400000px;}
.xb{left:136.296000px;}
.x5c{left:138.276000px;}
.x51{left:141.840000px;}
.x50{left:147.060000px;}
.xa{left:148.896000px;}
.xf{left:151.410000px;}
.xc{left:159.690000px;}
.x37{left:166.725000px;}
.x35{left:173.730000px;}
.x17{left:175.530000px;}
.x4f{left:182.205000px;}
.x8{left:203.070000px;}
.x59{left:213.150000px;}
.x4e{left:218.739000px;}
.x5{left:252.210000px;}
.xe{left:263.370000px;}
.x43{left:292.215000px;}
.x5b{left:293.655000px;}
.x7{left:305.355000px;}
.x38{left:315.255000px;}
.x11{left:332.175000px;}
.x5a{left:345.855000px;}
.x1d{left:370.875000px;}
.x39{left:379.695000px;}
.x6{left:387.075000px;}
.x57{left:411.555000px;}
.x36{left:414.615000px;}
.x13{left:417.315000px;}
.x44{left:432.255000px;}
.x3{left:438.915000px;}
.x49{left:449.925000px;}
.x9{left:462.525000px;}
.x1f{left:486.105000px;}
.x3a{left:494.205000px;}
.x45{left:564.045000px;}
.x21{left:571.245000px;}
.x4b{left:591.045000px;}
.x3d{left:613.545000px;}
.x14{left:635.010000px;}
.x22{left:645.630000px;}
.x3e{left:656.250000px;}
.x46{left:682.890000px;}
.x3f{left:697.110000px;}
.x23{left:702.870000px;}
.x4d{left:727.890000px;}
.x16{left:741.930000px;}
.xd{left:747.150000px;}
.x34{left:755.970000px;}
.x15{left:829.440000px;}
@media print{
.v3{vertical-align:-34.560000pt;}
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v1{vertical-align:34.560000pt;}
.ls3{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.666667pt;}
.lsc{letter-spacing:-0.608000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.311467pt;}
.ls11{letter-spacing:-0.303467pt;}
.ls14{letter-spacing:-0.294933pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.140800pt;}
.ls13{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls5{letter-spacing:0.033280pt;}
.ls16{letter-spacing:0.081707pt;}
.ls1d{letter-spacing:0.227733pt;}
.lsd{letter-spacing:0.244267pt;}
.ls15{letter-spacing:0.285867pt;}
.lsb{letter-spacing:0.303467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.960000pt;}
.ls9{letter-spacing:3.680000pt;}
.ls1b{letter-spacing:4.320000pt;}
.ls7{letter-spacing:5.600000pt;}
.ls1c{letter-spacing:7.200000pt;}
.ls24{letter-spacing:7.520000pt;}
.ls19{letter-spacing:7.840000pt;}
.ls22{letter-spacing:12.000000pt;}
.ls23{letter-spacing:12.320000pt;}
.ls21{letter-spacing:16.160000pt;}
.ls25{letter-spacing:17.760000pt;}
.ls1e{letter-spacing:17.866667pt;}
.ls1a{letter-spacing:18.720000pt;}
.ls18{letter-spacing:27.360000pt;}
.ls20{letter-spacing:29.280000pt;}
.ls1f{letter-spacing:29.600000pt;}
.ls26{letter-spacing:38.858667pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws3{word-spacing:-19.040000pt;}
.ws7{word-spacing:-19.023467pt;}
.wsf{word-spacing:-19.005867pt;}
.ws4{word-spacing:-18.753280pt;}
.ws2{word-spacing:-18.720000pt;}
.wse{word-spacing:-18.695040pt;}
.wsc{word-spacing:-18.579200pt;}
.ws11{word-spacing:-18.560000pt;}
.wsb{word-spacing:-18.416533pt;}
.wsd{word-spacing:-18.408533pt;}
.ws9{word-spacing:-18.400000pt;}
.ws8{word-spacing:-18.112000pt;}
.ws13{word-spacing:-18.053333pt;}
.wsa{word-spacing:-17.920000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws10{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws12{word-spacing:-0.286613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._12{margin-left:-8.665813pt;}
._37{margin-left:-6.597973pt;}
._c{margin-left:-3.771520pt;}
._f{margin-left:-2.218880pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.162027pt;}
._9{width:2.117760pt;}
._8{width:3.144960pt;}
._26{width:4.343040pt;}
._1c{width:5.418880pt;}
._1b{width:6.364800pt;}
._1d{width:7.378987pt;}
._10{width:8.461440pt;}
._11{width:9.360640pt;}
._6{width:10.463147pt;}
._2c{width:11.386880pt;}
._d{width:12.280320pt;}
._e{width:13.328640pt;}
._16{width:14.328107pt;}
._15{width:15.228160pt;}
._23{width:16.670720pt;}
._1e{width:17.699200pt;}
._2b{width:19.618560pt;}
._2a{width:20.593067pt;}
._30{width:21.939840pt;}
._27{width:23.454507pt;}
._29{width:24.353920pt;}
._b{width:25.315627pt;}
._7{width:26.609920pt;}
._18{width:28.005120pt;}
._33{width:29.455360pt;}
._25{width:30.491520pt;}
._19{width:31.824000pt;}
._a{width:32.872320pt;}
._32{width:34.016427pt;}
._24{width:34.935253pt;}
._31{width:35.840213pt;}
._36{width:36.848213pt;}
._35{width:38.015787pt;}
._14{width:38.916053pt;}
._13{width:39.920427pt;}
._17{width:41.277013pt;}
._28{width:42.906240pt;}
._1a{width:45.760213pt;}
._22{width:48.066987pt;}
._21{width:49.360427pt;}
._34{width:51.816960pt;}
._5{width:52.960000pt;}
._2e{width:83.069440pt;}
._1f{width:87.235200pt;}
._20{width:88.161280pt;}
._4{width:98.400000pt;}
._2d{width:116.990080pt;}
._2f{width:199.006080pt;}
._2{width:567.859627pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y91{bottom:-109.120000pt;}
.y9c{bottom:-103.226667pt;}
.ya8{bottom:-93.120000pt;}
.y78{bottom:-91.080000pt;}
.y90{bottom:-76.960000pt;}
.y79{bottom:-58.880000pt;}
.ya4{bottom:-57.946667pt;}
.y9b{bottom:-57.754667pt;}
.ya7{bottom:-47.680000pt;}
.y77{bottom:-45.440000pt;}
.y84{bottom:-45.120000pt;}
.y8f{bottom:-44.800000pt;}
.y7d{bottom:-31.040000pt;}
.ya9{bottom:-28.800000pt;}
.y75{bottom:-26.560000pt;}
.y85{bottom:-26.240000pt;}
.y92{bottom:-25.920000pt;}
.y99{bottom:-25.600000pt;}
.y8c{bottom:-24.960000pt;}
.ya0{bottom:-23.200000pt;}
.y81{bottom:-22.880000pt;}
.ya6{bottom:-15.520000pt;}
.y76{bottom:-13.280000pt;}
.y83{bottom:-12.960000pt;}
.y8e{bottom:-12.640000pt;}
.ya3{bottom:-12.474667pt;}
.y98{bottom:-12.320000pt;}
.y9a{bottom:-12.160000pt;}
.y8b{bottom:-11.680000pt;}
.y80{bottom:-9.440000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y95{bottom:12.320000pt;}
.y88{bottom:12.640000pt;}
.y7c{bottom:14.440000pt;}
.ya5{bottom:16.832000pt;}
.y74{bottom:18.880000pt;}
.y82{bottom:19.400000pt;}
.y8d{bottom:19.680000pt;}
.ya2{bottom:19.840000pt;}
.y97{bottom:20.000000pt;}
.y8a{bottom:20.480000pt;}
.y9f{bottom:22.272000pt;}
.y7f{bottom:22.720000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y4e{bottom:28.480000pt;}
.y5c{bottom:28.506667pt;}
.yb6{bottom:28.512000pt;}
.y66{bottom:28.634667pt;}
.y53{bottom:28.640000pt;}
.yd5{bottom:28.666667pt;}
.y55{bottom:28.680000pt;}
.y4d{bottom:41.920000pt;}
.ydd{bottom:44.640000pt;}
.ydb{bottom:51.360000pt;}
.ye2{bottom:51.392000pt;}
.yd0{bottom:51.680000pt;}
.y9e{bottom:54.586667pt;}
.y94{bottom:57.920000pt;}
.y87{bottom:58.080000pt;}
.y7b{bottom:60.040000pt;}
.yc5{bottom:60.640000pt;}
.y64{bottom:60.800000pt;}
.yb8{bottom:60.826667pt;}
.yde{bottom:60.840000pt;}
.y117{bottom:73.280000pt;}
.y4c{bottom:74.080000pt;}
.yd4{bottom:74.106667pt;}
.ye0{bottom:75.200000pt;}
.y49{bottom:76.640000pt;}
.yaa{bottom:82.880000pt;}
.yb5{bottom:84.800000pt;}
.yce{bottom:86.720000pt;}
.y21{bottom:89.920000pt;}
.y39{bottom:95.520000pt;}
.yda{bottom:96.800000pt;}
.ye1{bottom:96.826667pt;}
.y67{bottom:98.400000pt;}
.y9d{bottom:100.800000pt;}
.yfe{bottom:101.920000pt;}
.y116{bottom:105.440000pt;}
.y48{bottom:108.800000pt;}
.y61{bottom:116.032000pt;}
.ycd{bottom:118.912000pt;}
.yd8{bottom:119.520000pt;}
.yd3{bottom:119.706667pt;}
.y20{bottom:122.112000pt;}
.y38{bottom:127.712000pt;}
.ya1{bottom:135.546667pt;}
.y115{bottom:137.786667pt;}
.y47{bottom:140.986667pt;}
.yd9{bottom:142.400000pt;}
.yfd{bottom:147.546667pt;}
.ycc{bottom:151.066667pt;}
.yb4{bottom:159.546667pt;}
.y65{bottom:162.266667pt;}
.yd7{bottom:165.120000pt;}
.yd2{bottom:165.146667pt;}
.y11d{bottom:167.386667pt;}
.y1f{bottom:167.706667pt;}
.y51{bottom:167.880000pt;}
.y114{bottom:169.946667pt;}
.y37{bottom:173.146667pt;}
.y93{bottom:173.306667pt;}
.ycb{bottom:183.386667pt;}
.y62{bottom:185.434667pt;}
.yb3{bottom:191.706667pt;}
.yfc{bottom:192.986667pt;}
.y1e{bottom:199.866667pt;}
.y113{bottom:202.106667pt;}
.y36{bottom:205.466667pt;}
.y96{bottom:211.226667pt;}
.ydf{bottom:212.506667pt;}
.y5a{bottom:213.306667pt;}
.y50{bottom:213.480000pt;}
.yfb{bottom:225.146667pt;}
.yca{bottom:228.826667pt;}
.y1d{bottom:232.026667pt;}
.y112{bottom:234.266667pt;}
.yb2{bottom:237.306667pt;}
.y35{bottom:237.626667pt;}
.y63{bottom:240.666667pt;}
.yc9{bottom:246.746667pt;}
.y86{bottom:249.146667pt;}
.y46{bottom:250.906667pt;}
.yfa{bottom:257.466667pt;}
.y1c{bottom:264.186667pt;}
.y111{bottom:266.586667pt;}
.y34{bottom:269.786667pt;}
.y11c{bottom:277.626667pt;}
.y45{bottom:283.066667pt;}
.y89{bottom:286.746667pt;}
.yf9{bottom:289.626667pt;}
.ydc{bottom:290.906667pt;}
.yc8{bottom:293.306667pt;}
.y1b{bottom:296.506667pt;}
.y110{bottom:298.746667pt;}
.y11b{bottom:309.786667pt;}
.y33{bottom:315.386667pt;}
.y60{bottom:319.066667pt;}
.yf8{bottom:321.786667pt;}
.y7a{bottom:325.146667pt;}
.y10f{bottom:330.906667pt;}
.yc7{bottom:339.906667pt;}
.y1a{bottom:341.986667pt;}
.y32{bottom:347.586667pt;}
.yf7{bottom:353.986667pt;}
.y7e{bottom:362.466667pt;}
.y10e{bottom:363.106667pt;}
.y59{bottom:365.346667pt;}
.yd6{bottom:369.346667pt;}
.y19{bottom:374.146667pt;}
.y31{bottom:379.746667pt;}
.yf6{bottom:386.146667pt;}
.yc6{bottom:386.466667pt;}
.y44{bottom:393.026667pt;}
.y10d{bottom:395.426667pt;}
.y73{bottom:403.106667pt;}
.y18{bottom:406.466667pt;}
.y5f{bottom:411.426667pt;}
.y30{bottom:411.906667pt;}
.yf5{bottom:418.466667pt;}
.y43{bottom:425.346667pt;}
.y10c{bottom:427.586667pt;}
.yc4{bottom:433.026667pt;}
.y17{bottom:438.626667pt;}
.y2f{bottom:444.226667pt;}
.yf4{bottom:450.626667pt;}
.y11a{bottom:451.906667pt;}
.y42{bottom:457.506667pt;}
.y5e{bottom:457.666667pt;}
.y10b{bottom:459.746667pt;}
.y72{bottom:468.226667pt;}
.y16{bottom:470.786667pt;}
.yb1{bottom:476.386667pt;}
.yf3{bottom:482.786667pt;}
.y2e{bottom:489.666667pt;}
.y10a{bottom:491.906667pt;}
.y119{bottom:497.506667pt;}
.y15{bottom:502.946667pt;}
.y5d{bottom:503.906667pt;}
.yb0{bottom:508.546667pt;}
.y71{bottom:513.826667pt;}
.yf2{bottom:514.946667pt;}
.y2d{bottom:521.826667pt;}
.y109{bottom:524.226667pt;}
.y14{bottom:535.266667pt;}
.yc3{bottom:539.906667pt;}
.y118{bottom:542.946667pt;}
.yf1{bottom:547.266667pt;}
.y5b{bottom:550.146667pt;}
.yd1{bottom:552.066667pt;}
.y2c{bottom:554.146667pt;}
.y108{bottom:556.386667pt;}
.y70{bottom:559.266667pt;}
.y13{bottom:567.453333pt;}
.yf0{bottom:579.453333pt;}
.y41{bottom:580.733333pt;}
.yc2{bottom:585.533333pt;}
.y2b{bottom:586.333333pt;}
.y107{bottom:588.573333pt;}
.y58{bottom:596.253333pt;}
.y6f{bottom:605.213333pt;}
.yef{bottom:611.613333pt;}
.y12{bottom:612.893333pt;}
.y2a{bottom:618.493333pt;}
.y106{bottom:620.733333pt;}
.yc1{bottom:631.293333pt;}
.yaf{bottom:631.773333pt;}
.y6e{bottom:637.373333pt;}
.y4f{bottom:642.493333pt;}
.yee{bottom:643.773333pt;}
.y11{bottom:645.213333pt;}
.y105{bottom:652.893333pt;}
.yc0{bottom:663.613333pt;}
.y29{bottom:664.093333pt;}
.y6d{bottom:669.533333pt;}
.yed{bottom:676.093333pt;}
.y10{bottom:677.373333pt;}
.y104{bottom:685.213333pt;}
.y57{bottom:688.733333pt;}
.ybf{bottom:695.773333pt;}
.y28{bottom:696.253333pt;}
.y6c{bottom:701.693333pt;}
.yec{bottom:708.253333pt;}
.y40{bottom:709.533333pt;}
.y103{bottom:717.373333pt;}
.yf{bottom:722.813333pt;}
.ybe{bottom:727.933333pt;}
.y6b{bottom:734.013333pt;}
.y56{bottom:734.973333pt;}
.yeb{bottom:740.413333pt;}
.y27{bottom:741.693333pt;}
.y102{bottom:749.533333pt;}
.ye{bottom:755.133333pt;}
.yae{bottom:768.413333pt;}
.yea{bottom:772.573333pt;}
.ybd{bottom:773.533333pt;}
.y26{bottom:774.013333pt;}
.y6a{bottom:779.453333pt;}
.y54{bottom:781.053333pt;}
.y101{bottom:781.693333pt;}
.yd{bottom:787.333333pt;}
.ybc{bottom:791.493333pt;}
.yad{bottom:800.613333pt;}
.ye9{bottom:804.933333pt;}
.y25{bottom:806.213333pt;}
.y100{bottom:814.053333pt;}
.yc{bottom:819.493333pt;}
.y69{bottom:825.093333pt;}
.y52{bottom:827.333333pt;}
.y3f{bottom:832.933333pt;}
.ye8{bottom:837.093333pt;}
.ybb{bottom:838.053333pt;}
.yff{bottom:846.213333pt;}
.yb{bottom:851.653333pt;}
.y3e{bottom:865.093333pt;}
.y68{bottom:870.533333pt;}
.y4b{bottom:873.573333pt;}
.yac{bottom:878.373333pt;}
.ye7{bottom:882.533333pt;}
.y24{bottom:883.973333pt;}
.yba{bottom:884.613333pt;}
.ya{bottom:896.933333pt;}
.y3d{bottom:897.253333pt;}
.yab{bottom:910.533333pt;}
.ye6{bottom:914.853333pt;}
.y23{bottom:916.133333pt;}
.y9{bottom:929.413333pt;}
.yb9{bottom:931.013333pt;}
.y3c{bottom:942.853333pt;}
.ye5{bottom:947.013333pt;}
.ycf{bottom:947.973333pt;}
.y8{bottom:961.573333pt;}
.y3b{bottom:975.013333pt;}
.yb7{bottom:977.573333pt;}
.ye4{bottom:992.453333pt;}
.y4a{bottom:993.573333pt;}
.y7{bottom:993.893333pt;}
.y3a{bottom:1007.173333pt;}
.ye3{bottom:1010.213333pt;}
.y6{bottom:1039.040000pt;}
.y22{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.h1f{height:33.792000pt;}
.h14{height:35.840000pt;}
.h17{height:36.352000pt;}
.h1a{height:36.640000pt;}
.h1e{height:36.800000pt;}
.h1c{height:36.960000pt;}
.h19{height:37.440000pt;}
.h16{height:39.680000pt;}
.hf{height:45.440000pt;}
.h11{height:45.472000pt;}
.hd{height:45.600000pt;}
.he{height:45.632000pt;}
.h9{height:52.503750pt;}
.h7{height:52.979062pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h1d{height:71.552000pt;}
.h8{height:73.454062pt;}
.h6{height:73.490625pt;}
.h1b{height:74.880000pt;}
.h18{height:75.040000pt;}
.h5{height:75.465000pt;}
.h27{height:76.964840pt;}
.h15{height:76.992000pt;}
.h21{height:77.600000pt;}
.h13{height:77.760000pt;}
.h20{height:77.792000pt;}
.ha{height:81.669375pt;}
.h25{height:81.829375pt;}
.hb{height:91.040000pt;}
.h22{height:91.680000pt;}
.h26{height:136.666667pt;}
.h24{height:182.080000pt;}
.h23{height:182.106667pt;}
.h12{height:202.400000pt;}
.h10{height:230.266667pt;}
.hc{height:230.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:35.360000pt;}
.w16{width:36.992000pt;}
.w2{width:44.032000pt;}
.w14{width:48.352000pt;}
.wd{width:49.920000pt;}
.w13{width:51.680000pt;}
.w11{width:55.392000pt;}
.w7{width:55.872000pt;}
.w12{width:56.320000pt;}
.w19{width:63.232000pt;}
.wc{width:65.152000pt;}
.wb{width:74.720000pt;}
.w4{width:75.040000pt;}
.w22{width:76.832000pt;}
.we{width:80.480000pt;}
.w18{width:86.560000pt;}
.w9{width:95.072000pt;}
.w6{width:99.680000pt;}
.wa{width:101.472000pt;}
.w1c{width:104.672000pt;}
.w15{width:105.120000pt;}
.w1a{width:116.192000pt;}
.w21{width:120.832000pt;}
.w1b{width:123.520000pt;}
.w20{width:124.640000pt;}
.w1d{width:129.792000pt;}
.wf{width:137.280000pt;}
.w8{width:140.800000pt;}
.w3{width:160.026667pt;}
.w5{width:192.866667pt;}
.w1e{width:300.866667pt;}
.w1f{width:323.906667pt;}
.w10{width:482.333333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:2.080000pt;}
.x31{left:5.600000pt;}
.x12{left:6.880000pt;}
.x32{left:8.640000pt;}
.x33{left:11.040000pt;}
.x4c{left:13.440000pt;}
.x58{left:14.586667pt;}
.x28{left:15.520000pt;}
.x3b{left:16.640000pt;}
.x4{left:18.266667pt;}
.x54{left:21.120000pt;}
.x2f{left:22.400000pt;}
.x2b{left:24.000000pt;}
.x2a{left:24.960000pt;}
.x3c{left:26.080000pt;}
.x42{left:27.392000pt;}
.x25{left:29.960000pt;}
.x30{left:30.880000pt;}
.x29{left:31.840000pt;}
.x40{left:33.280000pt;}
.x18{left:35.040000pt;}
.x2d{left:37.000000pt;}
.x27{left:38.720000pt;}
.x2c{left:40.320000pt;}
.x2e{left:41.280000pt;}
.x10{left:42.880000pt;}
.x53{left:45.280000pt;}
.x26{left:46.280000pt;}
.x47{left:48.320000pt;}
.x19{left:50.272000pt;}
.x48{left:53.120000pt;}
.x56{left:60.360000pt;}
.x20{left:61.280000pt;}
.x55{left:62.400000pt;}
.x24{left:64.320000pt;}
.x1c{left:71.400000pt;}
.x1e{left:74.586667pt;}
.x41{left:78.400000pt;}
.x1{left:85.152000pt;}
.x1a{left:91.872000pt;}
.x2{left:99.232000pt;}
.x4a{left:113.120000pt;}
.x52{left:116.800000pt;}
.xb{left:121.152000pt;}
.x5c{left:122.912000pt;}
.x51{left:126.080000pt;}
.x50{left:130.720000pt;}
.xa{left:132.352000pt;}
.xf{left:134.586667pt;}
.xc{left:141.946667pt;}
.x37{left:148.200000pt;}
.x35{left:154.426667pt;}
.x17{left:156.026667pt;}
.x4f{left:161.960000pt;}
.x8{left:180.506667pt;}
.x59{left:189.466667pt;}
.x4e{left:194.434667pt;}
.x5{left:224.186667pt;}
.xe{left:234.106667pt;}
.x43{left:259.746667pt;}
.x5b{left:261.026667pt;}
.x7{left:271.426667pt;}
.x38{left:280.226667pt;}
.x11{left:295.266667pt;}
.x5a{left:307.426667pt;}
.x1d{left:329.666667pt;}
.x39{left:337.506667pt;}
.x6{left:344.066667pt;}
.x57{left:365.826667pt;}
.x36{left:368.546667pt;}
.x13{left:370.946667pt;}
.x44{left:384.226667pt;}
.x3{left:390.146667pt;}
.x49{left:399.933333pt;}
.x9{left:411.133333pt;}
.x1f{left:432.093333pt;}
.x3a{left:439.293333pt;}
.x45{left:501.373333pt;}
.x21{left:507.773333pt;}
.x4b{left:525.373333pt;}
.x3d{left:545.373333pt;}
.x14{left:564.453333pt;}
.x22{left:573.893333pt;}
.x3e{left:583.333333pt;}
.x46{left:607.013333pt;}
.x3f{left:619.653333pt;}
.x23{left:624.773333pt;}
.x4d{left:647.013333pt;}
.x16{left:659.493333pt;}
.xd{left:664.133333pt;}
.x34{left:671.973333pt;}
.x15{left:737.280000pt;}
}




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