
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6ea55f85c193ea3d1644e065.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_25393a43ac1a35a0388423d1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_824dfa16e7e6d53647f3ad54.woff')format("woff");}.ff4{font-family:ff4;line-height:1.061035;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_154165c14e63511dd36e5fae.woff')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_7bb5f777cff04d63390fed25.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b2a33250908934570186de2e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0ec8cbf1dcdd8aff10f5cc52.woff')format("woff");}.ff8{font-family:ff8;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls14{letter-spacing:-0.520800px;}
.ls12{letter-spacing:-0.291600px;}
.ls10{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.157800px;}
.lsa{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.014760px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsd{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.127200px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.lse{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.180600px;}
.ls15{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:47.726640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-60.120000px;}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.407000px;}
.ws9{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.353600px;}
.wsc{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.211640px;}
.ws4{word-spacing:-13.072800px;}
.wse{word-spacing:-13.068600px;}
.wsa{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.934800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._11{margin-left:-3.638999px;}
._10{margin-left:-2.344800px;}
._0{margin-left:-1.110000px;}
._1{width:1.090188px;}
._2{width:2.155727px;}
._9{width:3.375073px;}
._f{width:5.197799px;}
._4{width:6.553200px;}
._7{width:7.635000px;}
._8{width:8.666282px;}
._e{width:9.893755px;}
._3{width:11.482800px;}
._12{width:14.248440px;}
._c{width:15.390600px;}
._d{width:16.659003px;}
._a{width:17.855400px;}
._b{width:18.878401px;}
._5{width:20.320800px;}
._6{width:21.763200px;}
._13{width:22.994882px;}
._28{width:24.018958px;}
._32{width:25.430760px;}
._30{width:26.781240px;}
._34{width:27.840000px;}
._3a{width:29.398680px;}
._42{width:30.480840px;}
._35{width:31.947120px;}
._33{width:33.126120px;}
._19{width:36.192240px;}
._16{width:44.548920px;}
._41{width:45.811440px;}
._36{width:47.770680px;}
._2f{width:49.144320px;}
._2c{width:50.560920px;}
._27{width:51.582960px;}
._3b{width:52.725240px;}
._2b{width:53.927640px;}
._1d{width:56.572920px;}
._1c{width:63.246240px;}
._46{width:68.055840px;}
._40{width:69.739200px;}
._26{width:73.286280px;}
._24{width:75.450600px;}
._20{width:81.318960px;}
._18{width:84.107880px;}
._22{width:98.023440px;}
._31{width:104.187960px;}
._17{width:106.292160px;}
._44{width:112.304160px;}
._2d{width:114.288120px;}
._3d{width:115.731000px;}
._43{width:119.245800px;}
._1a{width:120.420360px;}
._1e{width:132.925320px;}
._1f{width:137.314080px;}
._37{width:147.474360px;}
._14{width:149.758920px;}
._3e{width:153.935040px;}
._2a{width:155.169720px;}
._21{width:162.051240px;}
._29{width:163.346040px;}
._1b{width:202.424040px;}
._3c{width:208.195560px;}
._23{width:222.564240px;}
._3f{width:230.115960px;}
._38{width:247.273560px;}
._39{width:254.307600px;}
._2e{width:267.954840px;}
._15{width:273.546000px;}
._45{width:284.848560px;}
._25{width:291.822480px;}
._47{width:1103.442480px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yae{bottom:7.830000px;}
.ya5{bottom:7.920000px;}
.yb2{bottom:25.380000px;}
.ya4{bottom:25.470000px;}
.y152{bottom:25.500000px;}
.ya9{bottom:43.020000px;}
.yad{bottom:43.050000px;}
.yb1{bottom:60.570000px;}
.yac{bottom:60.600000px;}
.ya8{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.yb0{bottom:78.120000px;}
.ya7{bottom:78.210000px;}
.yab{bottom:78.240000px;}
.y1{bottom:101.640000px;}
.yb9{bottom:112.890000px;}
.y175{bottom:113.250000px;}
.y186{bottom:117.660000px;}
.yf7{bottom:118.200000px;}
.yd0{bottom:122.340000px;}
.y106{bottom:128.100000px;}
.yb8{bottom:130.440000px;}
.y174{bottom:130.800000px;}
.y8c{bottom:130.980000px;}
.y12b{bottom:131.790000px;}
.y185{bottom:135.210000px;}
.yf6{bottom:135.840000px;}
.y14f{bottom:136.200000px;}
.ycf{bottom:139.980000px;}
.y28{bottom:140.610000px;}
.y105{bottom:145.740000px;}
.yb7{bottom:148.080000px;}
.y173{bottom:148.350000px;}
.y8b{bottom:148.530000px;}
.y12a{bottom:149.340000px;}
.y184{bottom:152.850000px;}
.y193{bottom:153.120000px;}
.yf5{bottom:153.390000px;}
.y14e{bottom:153.840000px;}
.yce{bottom:157.530000px;}
.y27{bottom:158.250000px;}
.y104{bottom:163.290000px;}
.yb6{bottom:165.630000px;}
.y172{bottom:165.990000px;}
.y5b{bottom:166.170000px;}
.y129{bottom:166.980000px;}
.y183{bottom:170.400000px;}
.y192{bottom:170.670000px;}
.yf4{bottom:170.940000px;}
.y14d{bottom:171.390000px;}
.ycd{bottom:175.170000px;}
.y26{bottom:175.800000px;}
.yb5{bottom:183.180000px;}
.y171{bottom:183.540000px;}
.y8a{bottom:183.720000px;}
.y128{bottom:184.530000px;}
.y182{bottom:187.950000px;}
.y191{bottom:188.310000px;}
.yf3{bottom:188.580000px;}
.y14c{bottom:188.940000px;}
.ycc{bottom:192.720000px;}
.y25{bottom:193.350000px;}
.y103{bottom:196.320000px;}
.yb4{bottom:200.820000px;}
.y170{bottom:201.180000px;}
.y89{bottom:201.270000px;}
.y5a{bottom:201.720000px;}
.y127{bottom:202.170000px;}
.y181{bottom:205.590000px;}
.yf2{bottom:206.130000px;}
.y14b{bottom:206.580000px;}
.ycb{bottom:210.270000px;}
.y24{bottom:210.990000px;}
.y190{bottom:214.860000px;}
.y88{bottom:218.910000px;}
.y59{bottom:219.270000px;}
.y126{bottom:219.720000px;}
.y180{bottom:223.140000px;}
.yf1{bottom:223.680000px;}
.y14a{bottom:224.130000px;}
.yca{bottom:227.910000px;}
.y23{bottom:228.540000px;}
.y18f{bottom:232.500000px;}
.yb3{bottom:233.760000px;}
.y87{bottom:236.460000px;}
.y16f{bottom:236.730000px;}
.y58{bottom:236.910000px;}
.y125{bottom:237.270000px;}
.y102{bottom:241.230000px;}
.yf0{bottom:241.320000px;}
.y149{bottom:241.680000px;}
.yc9{bottom:245.460000px;}
.y22{bottom:246.090000px;}
.y18e{bottom:250.050000px;}
.y86{bottom:254.100000px;}
.y16e{bottom:254.280000px;}
.y57{bottom:254.460000px;}
.y124{bottom:254.910000px;}
.y17f{bottom:256.080000px;}
.yef{bottom:258.870000px;}
.yfb{bottom:259.320000px;}
.yc8{bottom:263.100000px;}
.y21{bottom:263.730000px;}
.y85{bottom:271.650000px;}
.y16d{bottom:271.920000px;}
.y56{bottom:272.100000px;}
.y123{bottom:272.460000px;}
.y18d{bottom:276.600000px;}
.yfa{bottom:276.870000px;}
.y101{bottom:286.140000px;}
.y84{bottom:289.200000px;}
.y16c{bottom:289.470000px;}
.y55{bottom:289.650000px;}
.y122{bottom:290.100000px;}
.y18c{bottom:294.240000px;}
.yee{bottom:294.510000px;}
.yc7{bottom:298.650000px;}
.y20{bottom:299.280000px;}
.y17e{bottom:301.080000px;}
.y83{bottom:306.840000px;}
.y16b{bottom:307.110000px;}
.y54{bottom:307.200000px;}
.y121{bottom:307.650000px;}
.y18b{bottom:311.790000px;}
.yed{bottom:312.060000px;}
.yc6{bottom:316.200000px;}
.y1f{bottom:316.920000px;}
.y16a{bottom:324.660000px;}
.y53{bottom:324.840000px;}
.yec{bottom:329.610000px;}
.y100{bottom:331.050000px;}
.yaf{bottom:331.500000px;}
.y82{bottom:333.390000px;}
.yc5{bottom:333.840000px;}
.y1e{bottom:334.470000px;}
.y18a{bottom:338.430000px;}
.y169{bottom:342.210000px;}
.y52{bottom:342.390000px;}
.y120{bottom:343.200000px;}
.y17d{bottom:345.990000px;}
.yeb{bottom:347.250000px;}
.y148{bottom:347.610000px;}
.yc4{bottom:351.390000px;}
.y1d{bottom:352.020000px;}
.y189{bottom:355.980000px;}
.yff{bottom:358.410000px;}
.y168{bottom:359.850000px;}
.y11f{bottom:360.840000px;}
.yea{bottom:364.800000px;}
.y147{bottom:365.250000px;}
.y81{bottom:368.940000px;}
.y1c{bottom:369.660000px;}
.y188{bottom:373.530000px;}
.y167{bottom:377.400000px;}
.y51{bottom:377.940000px;}
.y11e{bottom:378.390000px;}
.ye9{bottom:382.440000px;}
.y146{bottom:382.800000px;}
.y80{bottom:386.580000px;}
.y1b{bottom:387.210000px;}
.y17c{bottom:390.900000px;}
.y166{bottom:395.040000px;}
.y50{bottom:395.580000px;}
.y11d{bottom:395.940000px;}
.ye8{bottom:399.990000px;}
.y145{bottom:400.440000px;}
.yfe{bottom:403.320000px;}
.y7f{bottom:404.130000px;}
.y1a{bottom:404.850000px;}
.y165{bottom:412.590000px;}
.y4f{bottom:413.130000px;}
.y11c{bottom:413.580000px;}
.ye7{bottom:417.540000px;}
.y144{bottom:417.990000px;}
.y7e{bottom:421.770000px;}
.y19{bottom:422.400000px;}
.yaa{bottom:429.150000px;}
.yfd{bottom:430.590000px;}
.y4e{bottom:430.770000px;}
.y11b{bottom:431.130000px;}
.ye6{bottom:435.180000px;}
.y143{bottom:435.540000px;}
.y17b{bottom:435.810000px;}
.y7d{bottom:439.320000px;}
.y164{bottom:448.140000px;}
.y4d{bottom:448.320000px;}
.y11a{bottom:448.770000px;}
.y18{bottom:449.310000px;}
.ye5{bottom:452.730000px;}
.y142{bottom:453.180000px;}
.y7c{bottom:456.870000px;}
.y163{bottom:465.780000px;}
.y4c{bottom:465.870000px;}
.y119{bottom:466.320000px;}
.ye4{bottom:470.400000px;}
.y141{bottom:470.760000px;}
.y7b{bottom:474.540000px;}
.yf9{bottom:479.400000px;}
.y17a{bottom:480.750000px;}
.y162{bottom:483.360000px;}
.y4b{bottom:483.540000px;}
.y118{bottom:483.900000px;}
.y140{bottom:488.400000px;}
.y7a{bottom:492.090000px;}
.ye3{bottom:496.950000px;}
.y17{bottom:497.940000px;}
.y161{bottom:500.910000px;}
.y4a{bottom:501.090000px;}
.y117{bottom:501.540000px;}
.y13f{bottom:505.950000px;}
.y79{bottom:509.730000px;}
.yf8{bottom:514.950000px;}
.y160{bottom:518.550000px;}
.y49{bottom:518.730000px;}
.y116{bottom:519.090000px;}
.y13e{bottom:523.500000px;}
.y179{bottom:525.660000px;}
.ya6{bottom:526.830000px;}
.ye2{bottom:532.500000px;}
.y16{bottom:534.930000px;}
.y15f{bottom:536.100000px;}
.y48{bottom:536.280000px;}
.yc3{bottom:536.730000px;}
.y13d{bottom:541.140000px;}
.y78{bottom:545.280000px;}
.ye1{bottom:550.140000px;}
.y15{bottom:552.570000px;}
.y15e{bottom:553.740000px;}
.yc2{bottom:554.280000px;}
.y13c{bottom:558.690000px;}
.y77{bottom:562.830000px;}
.ye0{bottom:567.690000px;}
.y14{bottom:570.120000px;}
.y178{bottom:570.570000px;}
.y15d{bottom:571.290000px;}
.y47{bottom:571.830000px;}
.y76{bottom:580.470000px;}
.ydf{bottom:585.330000px;}
.y13{bottom:587.670000px;}
.y15c{bottom:588.840000px;}
.y46{bottom:589.470000px;}
.y13b{bottom:594.330000px;}
.y75{bottom:598.020000px;}
.yde{bottom:602.880000px;}
.y12{bottom:605.310000px;}
.y15b{bottom:606.480000px;}
.y45{bottom:607.020000px;}
.y115{bottom:607.470000px;}
.y13a{bottom:611.880000px;}
.y177{bottom:615.480000px;}
.y74{bottom:615.660000px;}
.ydd{bottom:620.430000px;}
.y11{bottom:622.860000px;}
.ya3{bottom:624.480000px;}
.y44{bottom:624.660000px;}
.y114{bottom:625.020000px;}
.y139{bottom:629.430000px;}
.y73{bottom:633.210000px;}
.y15a{bottom:633.390000px;}
.ydc{bottom:638.070000px;}
.y10{bottom:640.500000px;}
.y43{bottom:642.210000px;}
.y113{bottom:642.660000px;}
.y138{bottom:647.070000px;}
.y72{bottom:650.760000px;}
.ydb{bottom:655.620000px;}
.yf{bottom:658.050000px;}
.y42{bottom:659.760000px;}
.y112{bottom:660.210000px;}
.y176{bottom:664.260000px;}
.y137{bottom:664.620000px;}
.y71{bottom:668.400000px;}
.y187{bottom:669.120000px;}
.yda{bottom:673.260000px;}
.ye{bottom:675.600000px;}
.y41{bottom:677.400000px;}
.y111{bottom:677.760000px;}
.y159{bottom:679.020000px;}
.y136{bottom:682.260000px;}
.y70{bottom:685.950000px;}
.ya2{bottom:690.810000px;}
.yd{bottom:693.240000px;}
.y40{bottom:694.950000px;}
.y110{bottom:695.400000px;}
.y135{bottom:699.810000px;}
.y6f{bottom:703.590000px;}
.yd9{bottom:708.360000px;}
.yc{bottom:710.790000px;}
.y3f{bottom:712.590000px;}
.y10f{bottom:712.950000px;}
.y134{bottom:717.360000px;}
.y158{bottom:723.930000px;}
.yd8{bottom:726.000000px;}
.ya1{bottom:726.360000px;}
.yb{bottom:728.430000px;}
.y3e{bottom:730.140000px;}
.y10e{bottom:730.590000px;}
.y133{bottom:735.000000px;}
.yd7{bottom:743.550000px;}
.ya0{bottom:744.000000px;}
.yc1{bottom:747.690000px;}
.y10d{bottom:748.140000px;}
.y132{bottom:752.550000px;}
.ya{bottom:755.340000px;}
.y3d{bottom:757.050000px;}
.yd6{bottom:761.190000px;}
.y9f{bottom:761.550000px;}
.yc0{bottom:765.330000px;}
.y6e{bottom:765.690000px;}
.y157{bottom:768.840000px;}
.y131{bottom:770.190000px;}
.y9e{bottom:779.190000px;}
.y6d{bottom:783.330000px;}
.y130{bottom:787.740000px;}
.y9d{bottom:796.740000px;}
.y6c{bottom:800.880000px;}
.y9{bottom:803.580000px;}
.y3c{bottom:805.290000px;}
.y156{bottom:813.750000px;}
.y9c{bottom:814.290000px;}
.y6b{bottom:818.520000px;}
.y3b{bottom:822.930000px;}
.y9b{bottom:831.930000px;}
.y6a{bottom:836.070000px;}
.y8{bottom:839.130000px;}
.y3a{bottom:840.480000px;}
.y9a{bottom:849.480000px;}
.y69{bottom:853.620000px;}
.y10c{bottom:854.070000px;}
.y39{bottom:858.030000px;}
.y12f{bottom:858.480000px;}
.y155{bottom:858.750000px;}
.y99{bottom:867.030000px;}
.y68{bottom:871.260000px;}
.y10b{bottom:871.620000px;}
.y7{bottom:874.950000px;}
.y38{bottom:875.670000px;}
.y12e{bottom:876.030000px;}
.y98{bottom:884.670000px;}
.y67{bottom:888.810000px;}
.y10a{bottom:889.260000px;}
.y37{bottom:893.220000px;}
.y12d{bottom:893.670000px;}
.y97{bottom:902.220000px;}
.y154{bottom:903.660000px;}
.y66{bottom:906.450000px;}
.y109{bottom:906.810000px;}
.y36{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y12c{bottom:911.220000px;}
.yd5{bottom:919.860000px;}
.ybf{bottom:924.000000px;}
.y108{bottom:924.450000px;}
.y35{bottom:928.410000px;}
.y96{bottom:928.860000px;}
.yd4{bottom:937.410000px;}
.ybe{bottom:941.550000px;}
.y65{bottom:942.000000px;}
.yfc{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y153{bottom:948.570000px;}
.yd3{bottom:954.960000px;}
.ybd{bottom:959.190000px;}
.y64{bottom:959.550000px;}
.y34{bottom:963.960000px;}
.y95{bottom:964.410000px;}
.yd2{bottom:972.600000px;}
.ybc{bottom:976.740000px;}
.y63{bottom:977.190000px;}
.y33{bottom:981.600000px;}
.y94{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.yd1{bottom:990.150000px;}
.y196{bottom:990.600000px;}
.y151{bottom:993.480000px;}
.y62{bottom:994.740000px;}
.y32{bottom:999.150000px;}
.y93{bottom:999.600000px;}
.ybb{bottom:1003.290000px;}
.y195{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y61{bottom:1012.320000px;}
.y31{bottom:1016.820000px;}
.y92{bottom:1017.180000px;}
.y194{bottom:1025.820000px;}
.y60{bottom:1029.960000px;}
.y30{bottom:1034.370000px;}
.y91{bottom:1034.820000px;}
.y150{bottom:1038.420000px;}
.yba{bottom:1039.230000px;}
.y5f{bottom:1047.510000px;}
.y2f{bottom:1051.920000px;}
.y90{bottom:1052.370000px;}
.y107{bottom:1056.870000px;}
.y5e{bottom:1065.150000px;}
.y2e{bottom:1069.560000px;}
.y8f{bottom:1069.920000px;}
.y2d{bottom:1087.110000px;}
.y8e{bottom:1087.560000px;}
.y5d{bottom:1091.700000px;}
.y8d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y5c{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h12{height:26.550000px;}
.h11{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h13{height:44.100000px;}
.hc{height:44.190000px;}
.h14{height:44.220000px;}
.h6{height:50.667539px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.h15{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h10{height:96.840000px;}
.he{height:96.930000px;}
.hf{height:96.960000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:137.190000px;}
.w6{width:144.180000px;}
.w5{width:146.910000px;}
.w7{width:162.000000px;}
.w4{width:162.540000px;}
.we{width:179.040000px;}
.wb{width:197.490000px;}
.w8{width:213.690000px;}
.w9{width:234.120000px;}
.wf{width:268.860000px;}
.wc{width:268.950000px;}
.wd{width:287.730000px;}
.w10{width:306.180000px;}
.wa{width:306.360000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.xd{left:111.239987px;}
.x2{left:202.799987px;}
.x5{left:206.670000px;}
.xc{left:248.610000px;}
.xa{left:267.060000px;}
.x9{left:283.260000px;}
.x6{left:369.930000px;}
.x7{left:517.560000px;}
.xb{left:536.730000px;}
.x8{left:662.460000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls14{letter-spacing:-0.462933pt;}
.ls12{letter-spacing:-0.259200pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.140267pt;}
.lsa{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.013120pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsd{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.113067pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.160533pt;}
.ls15{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws7{word-spacing:-53.440000pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.917333pt;}
.ws9{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.869867pt;}
.wsc{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.743680pt;}
.ws4{word-spacing:-11.620267pt;}
.wse{word-spacing:-11.616533pt;}
.wsa{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.497600pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._11{margin-left:-3.234666pt;}
._10{margin-left:-2.084267pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.969056pt;}
._2{width:1.916201pt;}
._9{width:3.000065pt;}
._f{width:4.620266pt;}
._4{width:5.825067pt;}
._7{width:6.786666pt;}
._8{width:7.703362pt;}
._e{width:8.794449pt;}
._3{width:10.206933pt;}
._12{width:12.665280pt;}
._c{width:13.680533pt;}
._d{width:14.808002pt;}
._a{width:15.871466pt;}
._b{width:16.780801pt;}
._5{width:18.062934pt;}
._6{width:19.345066pt;}
._13{width:20.439895pt;}
._28{width:21.350185pt;}
._32{width:22.605120pt;}
._30{width:23.805547pt;}
._34{width:24.746667pt;}
._3a{width:26.132160pt;}
._42{width:27.094080pt;}
._35{width:28.397440pt;}
._33{width:29.445440pt;}
._19{width:32.170880pt;}
._16{width:39.599040pt;}
._41{width:40.721280pt;}
._36{width:42.462827pt;}
._2f{width:43.683840pt;}
._2c{width:44.943040pt;}
._27{width:45.851520pt;}
._3b{width:46.866880pt;}
._2b{width:47.935680pt;}
._1d{width:50.287040pt;}
._1c{width:56.218880pt;}
._46{width:60.494080pt;}
._40{width:61.990400pt;}
._26{width:65.143360pt;}
._24{width:67.067200pt;}
._20{width:72.283520pt;}
._18{width:74.762560pt;}
._22{width:87.131947pt;}
._31{width:92.611520pt;}
._17{width:94.481920pt;}
._44{width:99.825920pt;}
._2d{width:101.589440pt;}
._3d{width:102.872000pt;}
._43{width:105.996267pt;}
._1a{width:107.040320pt;}
._1e{width:118.155840pt;}
._1f{width:122.056960pt;}
._37{width:131.088320pt;}
._14{width:133.119040pt;}
._3e{width:136.831147pt;}
._2a{width:137.928640pt;}
._21{width:144.045547pt;}
._29{width:145.196480pt;}
._1b{width:179.932480pt;}
._3c{width:185.062720pt;}
._23{width:197.834880pt;}
._3f{width:204.547520pt;}
._38{width:219.798720pt;}
._39{width:226.051200pt;}
._2e{width:238.182080pt;}
._15{width:243.152000pt;}
._45{width:253.198720pt;}
._25{width:259.397760pt;}
._47{width:980.837760pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:6.960000pt;}
.ya5{bottom:7.040000pt;}
.yb2{bottom:22.560000pt;}
.ya4{bottom:22.640000pt;}
.y152{bottom:22.666667pt;}
.ya9{bottom:38.240000pt;}
.yad{bottom:38.266667pt;}
.yb1{bottom:53.840000pt;}
.yac{bottom:53.866667pt;}
.ya8{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.yb0{bottom:69.440000pt;}
.ya7{bottom:69.520000pt;}
.yab{bottom:69.546667pt;}
.y1{bottom:90.346667pt;}
.yb9{bottom:100.346667pt;}
.y175{bottom:100.666667pt;}
.y186{bottom:104.586667pt;}
.yf7{bottom:105.066667pt;}
.yd0{bottom:108.746667pt;}
.y106{bottom:113.866667pt;}
.yb8{bottom:115.946667pt;}
.y174{bottom:116.266667pt;}
.y8c{bottom:116.426667pt;}
.y12b{bottom:117.146667pt;}
.y185{bottom:120.186667pt;}
.yf6{bottom:120.746667pt;}
.y14f{bottom:121.066667pt;}
.ycf{bottom:124.426667pt;}
.y28{bottom:124.986667pt;}
.y105{bottom:129.546667pt;}
.yb7{bottom:131.626667pt;}
.y173{bottom:131.866667pt;}
.y8b{bottom:132.026667pt;}
.y12a{bottom:132.746667pt;}
.y184{bottom:135.866667pt;}
.y193{bottom:136.106667pt;}
.yf5{bottom:136.346667pt;}
.y14e{bottom:136.746667pt;}
.yce{bottom:140.026667pt;}
.y27{bottom:140.666667pt;}
.y104{bottom:145.146667pt;}
.yb6{bottom:147.226667pt;}
.y172{bottom:147.546667pt;}
.y5b{bottom:147.706667pt;}
.y129{bottom:148.426667pt;}
.y183{bottom:151.466667pt;}
.y192{bottom:151.706667pt;}
.yf4{bottom:151.946667pt;}
.y14d{bottom:152.346667pt;}
.ycd{bottom:155.706667pt;}
.y26{bottom:156.266667pt;}
.yb5{bottom:162.826667pt;}
.y171{bottom:163.146667pt;}
.y8a{bottom:163.306667pt;}
.y128{bottom:164.026667pt;}
.y182{bottom:167.066667pt;}
.y191{bottom:167.386667pt;}
.yf3{bottom:167.626667pt;}
.y14c{bottom:167.946667pt;}
.ycc{bottom:171.306667pt;}
.y25{bottom:171.866667pt;}
.y103{bottom:174.506667pt;}
.yb4{bottom:178.506667pt;}
.y170{bottom:178.826667pt;}
.y89{bottom:178.906667pt;}
.y5a{bottom:179.306667pt;}
.y127{bottom:179.706667pt;}
.y181{bottom:182.746667pt;}
.yf2{bottom:183.226667pt;}
.y14b{bottom:183.626667pt;}
.ycb{bottom:186.906667pt;}
.y24{bottom:187.546667pt;}
.y190{bottom:190.986667pt;}
.y88{bottom:194.586667pt;}
.y59{bottom:194.906667pt;}
.y126{bottom:195.306667pt;}
.y180{bottom:198.346667pt;}
.yf1{bottom:198.826667pt;}
.y14a{bottom:199.226667pt;}
.yca{bottom:202.586667pt;}
.y23{bottom:203.146667pt;}
.y18f{bottom:206.666667pt;}
.yb3{bottom:207.786667pt;}
.y87{bottom:210.186667pt;}
.y16f{bottom:210.426667pt;}
.y58{bottom:210.586667pt;}
.y125{bottom:210.906667pt;}
.y102{bottom:214.426667pt;}
.yf0{bottom:214.506667pt;}
.y149{bottom:214.826667pt;}
.yc9{bottom:218.186667pt;}
.y22{bottom:218.746667pt;}
.y18e{bottom:222.266667pt;}
.y86{bottom:225.866667pt;}
.y16e{bottom:226.026667pt;}
.y57{bottom:226.186667pt;}
.y124{bottom:226.586667pt;}
.y17f{bottom:227.626667pt;}
.yef{bottom:230.106667pt;}
.yfb{bottom:230.506667pt;}
.yc8{bottom:233.866667pt;}
.y21{bottom:234.426667pt;}
.y85{bottom:241.466667pt;}
.y16d{bottom:241.706667pt;}
.y56{bottom:241.866667pt;}
.y123{bottom:242.186667pt;}
.y18d{bottom:245.866667pt;}
.yfa{bottom:246.106667pt;}
.y101{bottom:254.346667pt;}
.y84{bottom:257.066667pt;}
.y16c{bottom:257.306667pt;}
.y55{bottom:257.466667pt;}
.y122{bottom:257.866667pt;}
.y18c{bottom:261.546667pt;}
.yee{bottom:261.786667pt;}
.yc7{bottom:265.466667pt;}
.y20{bottom:266.026667pt;}
.y17e{bottom:267.626667pt;}
.y83{bottom:272.746667pt;}
.y16b{bottom:272.986667pt;}
.y54{bottom:273.066667pt;}
.y121{bottom:273.466667pt;}
.y18b{bottom:277.146667pt;}
.yed{bottom:277.386667pt;}
.yc6{bottom:281.066667pt;}
.y1f{bottom:281.706667pt;}
.y16a{bottom:288.586667pt;}
.y53{bottom:288.746667pt;}
.yec{bottom:292.986667pt;}
.y100{bottom:294.266667pt;}
.yaf{bottom:294.666667pt;}
.y82{bottom:296.346667pt;}
.yc5{bottom:296.746667pt;}
.y1e{bottom:297.306667pt;}
.y18a{bottom:300.826667pt;}
.y169{bottom:304.186667pt;}
.y52{bottom:304.346667pt;}
.y120{bottom:305.066667pt;}
.y17d{bottom:307.546667pt;}
.yeb{bottom:308.666667pt;}
.y148{bottom:308.986667pt;}
.yc4{bottom:312.346667pt;}
.y1d{bottom:312.906667pt;}
.y189{bottom:316.426667pt;}
.yff{bottom:318.586667pt;}
.y168{bottom:319.866667pt;}
.y11f{bottom:320.746667pt;}
.yea{bottom:324.266667pt;}
.y147{bottom:324.666667pt;}
.y81{bottom:327.946667pt;}
.y1c{bottom:328.586667pt;}
.y188{bottom:332.026667pt;}
.y167{bottom:335.466667pt;}
.y51{bottom:335.946667pt;}
.y11e{bottom:336.346667pt;}
.ye9{bottom:339.946667pt;}
.y146{bottom:340.266667pt;}
.y80{bottom:343.626667pt;}
.y1b{bottom:344.186667pt;}
.y17c{bottom:347.466667pt;}
.y166{bottom:351.146667pt;}
.y50{bottom:351.626667pt;}
.y11d{bottom:351.946667pt;}
.ye8{bottom:355.546667pt;}
.y145{bottom:355.946667pt;}
.yfe{bottom:358.506667pt;}
.y7f{bottom:359.226667pt;}
.y1a{bottom:359.866667pt;}
.y165{bottom:366.746667pt;}
.y4f{bottom:367.226667pt;}
.y11c{bottom:367.626667pt;}
.ye7{bottom:371.146667pt;}
.y144{bottom:371.546667pt;}
.y7e{bottom:374.906667pt;}
.y19{bottom:375.466667pt;}
.yaa{bottom:381.466667pt;}
.yfd{bottom:382.746667pt;}
.y4e{bottom:382.906667pt;}
.y11b{bottom:383.226667pt;}
.ye6{bottom:386.826667pt;}
.y143{bottom:387.146667pt;}
.y17b{bottom:387.386667pt;}
.y7d{bottom:390.506667pt;}
.y164{bottom:398.346667pt;}
.y4d{bottom:398.506667pt;}
.y11a{bottom:398.906667pt;}
.y18{bottom:399.386667pt;}
.ye5{bottom:402.426667pt;}
.y142{bottom:402.826667pt;}
.y7c{bottom:406.106667pt;}
.y163{bottom:414.026667pt;}
.y4c{bottom:414.106667pt;}
.y119{bottom:414.506667pt;}
.ye4{bottom:418.133333pt;}
.y141{bottom:418.453333pt;}
.y7b{bottom:421.813333pt;}
.yf9{bottom:426.133333pt;}
.y17a{bottom:427.333333pt;}
.y162{bottom:429.653333pt;}
.y4b{bottom:429.813333pt;}
.y118{bottom:430.133333pt;}
.y140{bottom:434.133333pt;}
.y7a{bottom:437.413333pt;}
.ye3{bottom:441.733333pt;}
.y17{bottom:442.613333pt;}
.y161{bottom:445.253333pt;}
.y4a{bottom:445.413333pt;}
.y117{bottom:445.813333pt;}
.y13f{bottom:449.733333pt;}
.y79{bottom:453.093333pt;}
.yf8{bottom:457.733333pt;}
.y160{bottom:460.933333pt;}
.y49{bottom:461.093333pt;}
.y116{bottom:461.413333pt;}
.y13e{bottom:465.333333pt;}
.y179{bottom:467.253333pt;}
.ya6{bottom:468.293333pt;}
.ye2{bottom:473.333333pt;}
.y16{bottom:475.493333pt;}
.y15f{bottom:476.533333pt;}
.y48{bottom:476.693333pt;}
.yc3{bottom:477.093333pt;}
.y13d{bottom:481.013333pt;}
.y78{bottom:484.693333pt;}
.ye1{bottom:489.013333pt;}
.y15{bottom:491.173333pt;}
.y15e{bottom:492.213333pt;}
.yc2{bottom:492.693333pt;}
.y13c{bottom:496.613333pt;}
.y77{bottom:500.293333pt;}
.ye0{bottom:504.613333pt;}
.y14{bottom:506.773333pt;}
.y178{bottom:507.173333pt;}
.y15d{bottom:507.813333pt;}
.y47{bottom:508.293333pt;}
.y76{bottom:515.973333pt;}
.ydf{bottom:520.293333pt;}
.y13{bottom:522.373333pt;}
.y15c{bottom:523.413333pt;}
.y46{bottom:523.973333pt;}
.y13b{bottom:528.293333pt;}
.y75{bottom:531.573333pt;}
.yde{bottom:535.893333pt;}
.y12{bottom:538.053333pt;}
.y15b{bottom:539.093333pt;}
.y45{bottom:539.573333pt;}
.y115{bottom:539.973333pt;}
.y13a{bottom:543.893333pt;}
.y177{bottom:547.093333pt;}
.y74{bottom:547.253333pt;}
.ydd{bottom:551.493333pt;}
.y11{bottom:553.653333pt;}
.ya3{bottom:555.093333pt;}
.y44{bottom:555.253333pt;}
.y114{bottom:555.573333pt;}
.y139{bottom:559.493333pt;}
.y73{bottom:562.853333pt;}
.y15a{bottom:563.013333pt;}
.ydc{bottom:567.173333pt;}
.y10{bottom:569.333333pt;}
.y43{bottom:570.853333pt;}
.y113{bottom:571.253333pt;}
.y138{bottom:575.173333pt;}
.y72{bottom:578.453333pt;}
.ydb{bottom:582.773333pt;}
.yf{bottom:584.933333pt;}
.y42{bottom:586.453333pt;}
.y112{bottom:586.853333pt;}
.y176{bottom:590.453333pt;}
.y137{bottom:590.773333pt;}
.y71{bottom:594.133333pt;}
.y187{bottom:594.773333pt;}
.yda{bottom:598.453333pt;}
.ye{bottom:600.533333pt;}
.y41{bottom:602.133333pt;}
.y111{bottom:602.453333pt;}
.y159{bottom:603.573333pt;}
.y136{bottom:606.453333pt;}
.y70{bottom:609.733333pt;}
.ya2{bottom:614.053333pt;}
.yd{bottom:616.213333pt;}
.y40{bottom:617.733333pt;}
.y110{bottom:618.133333pt;}
.y135{bottom:622.053333pt;}
.y6f{bottom:625.413333pt;}
.yd9{bottom:629.653333pt;}
.yc{bottom:631.813333pt;}
.y3f{bottom:633.413333pt;}
.y10f{bottom:633.733333pt;}
.y134{bottom:637.653333pt;}
.y158{bottom:643.493333pt;}
.yd8{bottom:645.333333pt;}
.ya1{bottom:645.653333pt;}
.yb{bottom:647.493333pt;}
.y3e{bottom:649.013333pt;}
.y10e{bottom:649.413333pt;}
.y133{bottom:653.333333pt;}
.yd7{bottom:660.933333pt;}
.ya0{bottom:661.333333pt;}
.yc1{bottom:664.613333pt;}
.y10d{bottom:665.013333pt;}
.y132{bottom:668.933333pt;}
.ya{bottom:671.413333pt;}
.y3d{bottom:672.933333pt;}
.yd6{bottom:676.613333pt;}
.y9f{bottom:676.933333pt;}
.yc0{bottom:680.293333pt;}
.y6e{bottom:680.613333pt;}
.y157{bottom:683.413333pt;}
.y131{bottom:684.613333pt;}
.y9e{bottom:692.613333pt;}
.y6d{bottom:696.293333pt;}
.y130{bottom:700.213333pt;}
.y9d{bottom:708.213333pt;}
.y6c{bottom:711.893333pt;}
.y9{bottom:714.293333pt;}
.y3c{bottom:715.813333pt;}
.y156{bottom:723.333333pt;}
.y9c{bottom:723.813333pt;}
.y6b{bottom:727.573333pt;}
.y3b{bottom:731.493333pt;}
.y9b{bottom:739.493333pt;}
.y6a{bottom:743.173333pt;}
.y8{bottom:745.893333pt;}
.y3a{bottom:747.093333pt;}
.y9a{bottom:755.093333pt;}
.y69{bottom:758.773333pt;}
.y10c{bottom:759.173333pt;}
.y39{bottom:762.693333pt;}
.y12f{bottom:763.093333pt;}
.y155{bottom:763.333333pt;}
.y99{bottom:770.693333pt;}
.y68{bottom:774.453333pt;}
.y10b{bottom:774.773333pt;}
.y7{bottom:777.733333pt;}
.y38{bottom:778.373333pt;}
.y12e{bottom:778.693333pt;}
.y98{bottom:786.373333pt;}
.y67{bottom:790.053333pt;}
.y10a{bottom:790.453333pt;}
.y37{bottom:793.973333pt;}
.y12d{bottom:794.373333pt;}
.y97{bottom:801.973333pt;}
.y154{bottom:803.253333pt;}
.y66{bottom:805.733333pt;}
.y109{bottom:806.053333pt;}
.y36{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y12c{bottom:809.973333pt;}
.yd5{bottom:817.653333pt;}
.ybf{bottom:821.333333pt;}
.y108{bottom:821.733333pt;}
.y35{bottom:825.253333pt;}
.y96{bottom:825.653333pt;}
.yd4{bottom:833.253333pt;}
.ybe{bottom:836.933333pt;}
.y65{bottom:837.333333pt;}
.yfc{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y153{bottom:843.173333pt;}
.yd3{bottom:848.853333pt;}
.ybd{bottom:852.613333pt;}
.y64{bottom:852.933333pt;}
.y34{bottom:856.853333pt;}
.y95{bottom:857.253333pt;}
.yd2{bottom:864.533333pt;}
.ybc{bottom:868.213333pt;}
.y63{bottom:868.613333pt;}
.y33{bottom:872.533333pt;}
.y94{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.yd1{bottom:880.133333pt;}
.y196{bottom:880.533333pt;}
.y151{bottom:883.093333pt;}
.y62{bottom:884.213333pt;}
.y32{bottom:888.133333pt;}
.y93{bottom:888.533333pt;}
.ybb{bottom:891.813333pt;}
.y195{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y61{bottom:899.840000pt;}
.y31{bottom:903.840000pt;}
.y92{bottom:904.160000pt;}
.y194{bottom:911.840000pt;}
.y60{bottom:915.520000pt;}
.y30{bottom:919.440000pt;}
.y91{bottom:919.840000pt;}
.y150{bottom:923.040000pt;}
.yba{bottom:923.760000pt;}
.y5f{bottom:931.120000pt;}
.y2f{bottom:935.040000pt;}
.y90{bottom:935.440000pt;}
.y107{bottom:939.440000pt;}
.y5e{bottom:946.800000pt;}
.y2e{bottom:950.720000pt;}
.y8f{bottom:951.040000pt;}
.y2d{bottom:966.320000pt;}
.y8e{bottom:966.720000pt;}
.y5d{bottom:970.400000pt;}
.y8d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y5c{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h12{height:23.600000pt;}
.h11{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h13{height:39.200000pt;}
.hc{height:39.280000pt;}
.h14{height:39.306667pt;}
.h6{height:45.037812pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.h15{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h10{height:86.080000pt;}
.he{height:86.160000pt;}
.hf{height:86.186667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:121.946667pt;}
.w6{width:128.160000pt;}
.w5{width:130.586667pt;}
.w7{width:144.000000pt;}
.w4{width:144.480000pt;}
.we{width:159.146667pt;}
.wb{width:175.546667pt;}
.w8{width:189.946667pt;}
.w9{width:208.106667pt;}
.wf{width:238.986667pt;}
.wc{width:239.066667pt;}
.wd{width:255.760000pt;}
.w10{width:272.160000pt;}
.wa{width:272.320000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.xd{left:98.879988pt;}
.x2{left:180.266655pt;}
.x5{left:183.706667pt;}
.xc{left:220.986667pt;}
.xa{left:237.386667pt;}
.x9{left:251.786667pt;}
.x6{left:328.826667pt;}
.x7{left:460.053333pt;}
.xb{left:477.093333pt;}
.x8{left:588.853333pt;}
.x3{left:704.053322pt;}
}




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