
    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_a92b6c8fd4282211c1435645.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3386ee9b8389a5d2f44ade1a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b964cac48c1ed9dc05aaf56f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_f86d783948b42745533739fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_811f2a85f2dddc05789123a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_408de2f78f41f1261a2280e8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_592debc7fa0602d8b250c280.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2641857200be4a2b729874d6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.109375;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);}
.vc{vertical-align:-19.440000px;}
.v8{vertical-align:-13.680000px;}
.v2{vertical-align:-10.800000px;}
.ve{vertical-align:-9.360000px;}
.v10{vertical-align:-5.760000px;}
.v9{vertical-align:-2.880000px;}
.v6{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.440000px;}
.va{vertical-align:2.880000px;}
.v4{vertical-align:5.040000px;}
.vd{vertical-align:7.920000px;}
.vf{vertical-align:9.360000px;}
.v3{vertical-align:10.800000px;}
.v11{vertical-align:12.240000px;}
.v7{vertical-align:13.680000px;}
.v1{vertical-align:15.120000px;}
.vb{vertical-align:16.560000px;}
.ls1c{letter-spacing:-0.618000px;}
.lsa{letter-spacing:-0.597600px;}
.ls1f{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.270600px;}
.ls3{letter-spacing:-0.227400px;}
.lsb{letter-spacing:-0.150000px;}
.ls7{letter-spacing:-0.094800px;}
.ls23{letter-spacing:-0.069000px;}
.ls4{letter-spacing:-0.036000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.023040px;}
.ls1e{letter-spacing:0.100800px;}
.ls22{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.223200px;}
.ls10{letter-spacing:0.290880px;}
.ls1b{letter-spacing:0.305280px;}
.ls20{letter-spacing:0.305400px;}
.ls1a{letter-spacing:0.308400px;}
.ls21{letter-spacing:0.328320px;}
.lsd{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.397440px;}
.ls1d{letter-spacing:0.403200px;}
.ls0{letter-spacing:0.547200px;}
.ls15{letter-spacing:1.157760px;}
.ls13{letter-spacing:1.440000px;}
.lse{letter-spacing:4.991040px;}
.ls11{letter-spacing:6.877440px;}
.ls17{letter-spacing:6.989760px;}
.ls12{letter-spacing:7.130880px;}
.lsc{letter-spacing:10.080000px;}
.ls16{letter-spacing:20.488320px;}
.ls14{letter-spacing:24.480000px;}
.ls18{letter-spacing:25.200000px;}
.ls19{letter-spacing:27.665280px;}
.ls9{letter-spacing:59.321280px;}
.ls8{letter-spacing:59.345280px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.wsf{word-spacing:-14.976000px;}
.wse{word-spacing:-14.881200px;}
.ws11{word-spacing:-14.878200px;}
.ws9{word-spacing:-14.595840px;}
.ws2{word-spacing:-14.572800px;}
.ws12{word-spacing:-14.503800px;}
.wsb{word-spacing:-14.422800px;}
.ws3{word-spacing:-14.345400px;}
.ws10{word-spacing:-14.158200px;}
.ws0{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.612800px;}
.ws1{word-spacing:-9.187200px;}
.ws8{word-spacing:-9.092400px;}
.ws6{word-spacing:-7.920000px;}
.ws5{word-spacing:-7.884000px;}
.wsc{word-spacing:-0.066240px;}
.ws7{word-spacing:0.000000px;}
.wsd{word-spacing:453.682080px;}
._2b{margin-left:-177.316320px;}
._2a{margin-left:-133.954560px;}
._26{margin-left:-120.412800px;}
._28{margin-left:-118.974240px;}
._29{margin-left:-114.652800px;}
._25{margin-left:-85.811040px;}
._27{margin-left:-7.920000px;}
._1f{margin-left:-5.119200px;}
._1a{margin-left:-3.844080px;}
._a{margin-left:-2.569680px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._9{width:2.405280px;}
._b{width:3.578160px;}
._17{width:4.608000px;}
._7{width:5.684640px;}
._6{width:6.872400px;}
._13{width:8.280000px;}
._12{width:9.425520px;}
._15{width:10.774800px;}
._8{width:11.832480px;}
._16{width:13.248000px;}
._1d{width:16.364880px;}
._e{width:17.569440px;}
._d{width:18.585360px;}
._21{width:19.679040px;}
._1b{width:20.812800px;}
._c{width:22.589280px;}
._1e{width:23.610960px;}
._10{width:24.800400px;}
._f{width:25.816320px;}
._14{width:27.290880px;}
._1c{width:28.831680px;}
._11{width:30.126480px;}
._24{width:33.384960px;}
._2e{width:36.564480px;}
._2f{width:41.664960px;}
._22{width:42.857280px;}
._23{width:44.201520px;}
._2d{width:45.573120px;}
._18{width:47.034480px;}
._30{width:70.744320px;}
._31{width:72.069120px;}
._0{width:75.000000px;}
._20{width:76.822080px;}
._35{width:80.150400px;}
._36{width:81.591120px;}
._39{width:96.246720px;}
._3a{width:97.323600px;}
._37{width:102.208320px;}
._38{width:150.960960px;}
._3b{width:159.042240px;}
._3{width:181.620000px;}
._4{width:197.349840px;}
._2c{width:201.403200px;}
._5{width:202.852800px;}
._33{width:220.777920px;}
._34{width:222.010320px;}
._32{width:250.784640px;}
._19{width:1056.007200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y52{bottom:5.220000px;}
.y51{bottom:25.920000px;}
.y50{bottom:44.640000px;}
.y4f{bottom:55.260000px;}
.y8{bottom:56.520000px;}
.y4e{bottom:65.700000px;}
.y7{bottom:70.596000px;}
.y4d{bottom:76.320000px;}
.y6{bottom:84.636000px;}
.y4c{bottom:93.960000px;}
.y3e{bottom:111.636000px;}
.y89{bottom:113.796000px;}
.y11a{bottom:114.516000px;}
.ye9{bottom:115.596000px;}
.ybd{bottom:117.576000px;}
.y171{bottom:128.736000px;}
.y3d{bottom:130.896000px;}
.y88{bottom:133.236000px;}
.y141{bottom:134.136000px;}
.y119{bottom:136.836000px;}
.ye8{bottom:137.916000px;}
.y4b{bottom:138.420000px;}
.ybc{bottom:139.896000px;}
.y170{bottom:148.176000px;}
.y3c{bottom:150.330000px;}
.y87{bottom:152.490000px;}
.y140{bottom:153.570000px;}
.y4a{bottom:157.860000px;}
.y118{bottom:158.970000px;}
.ye7{bottom:160.050000px;}
.ybb{bottom:162.030000px;}
.y16f{bottom:167.430000px;}
.y3b{bottom:169.590000px;}
.y49{bottom:171.900000px;}
.y86{bottom:171.930000px;}
.y13f{bottom:172.830000px;}
.y117{bottom:181.290000px;}
.ye6{bottom:182.370000px;}
.yba{bottom:184.350000px;}
.y48{bottom:185.940000px;}
.y16e{bottom:186.870000px;}
.y3a{bottom:188.850000px;}
.y85{bottom:191.190000px;}
.y13e{bottom:192.270000px;}
.y47{bottom:199.980000px;}
.y116{bottom:203.610000px;}
.ye5{bottom:204.510000px;}
.y16d{bottom:206.130000px;}
.yb9{bottom:206.670000px;}
.y39{bottom:208.290000px;}
.y84{bottom:210.630000px;}
.y13d{bottom:211.530000px;}
.y46{bottom:215.325000px;}
.y16c{bottom:225.570000px;}
.y115{bottom:225.750000px;}
.ye4{bottom:226.830000px;}
.y38{bottom:227.550000px;}
.yb8{bottom:228.810000px;}
.y83{bottom:229.890000px;}
.y13c{bottom:230.790000px;}
.y45{bottom:234.765000px;}
.y16b{bottom:244.830000px;}
.y37{bottom:246.990000px;}
.y114{bottom:248.070000px;}
.y44{bottom:248.985000px;}
.ye3{bottom:249.150000px;}
.y82{bottom:249.330000px;}
.y13b{bottom:250.230000px;}
.yb7{bottom:251.130000px;}
.y43{bottom:263.025000px;}
.y16a{bottom:264.270000px;}
.y36{bottom:266.250000px;}
.y81{bottom:268.590000px;}
.y13a{bottom:269.490000px;}
.y113{bottom:270.210000px;}
.ye2{bottom:271.290000px;}
.yb6{bottom:274.170000px;}
.y42{bottom:277.065000px;}
.y169{bottom:283.530000px;}
.y35{bottom:285.690000px;}
.y80{bottom:287.850000px;}
.y139{bottom:288.930000px;}
.y41{bottom:291.105000px;}
.y112{bottom:292.530000px;}
.ye1{bottom:293.610000px;}
.yb5{bottom:296.490000px;}
.y168{bottom:302.970000px;}
.y34{bottom:304.950000px;}
.y40{bottom:305.505000px;}
.y7f{bottom:307.290000px;}
.y138{bottom:308.190000px;}
.y111{bottom:314.850000px;}
.ye0{bottom:315.750000px;}
.yb4{bottom:318.810000px;}
.y167{bottom:322.230000px;}
.y33{bottom:324.390000px;}
.y7e{bottom:326.550000px;}
.y137{bottom:327.630000px;}
.y110{bottom:337.035000px;}
.ydf{bottom:338.115000px;}
.y166{bottom:341.715000px;}
.yb3{bottom:341.895000px;}
.y32{bottom:343.695000px;}
.y7d{bottom:346.035000px;}
.y136{bottom:346.935000px;}
.y10f{bottom:359.355000px;}
.yde{bottom:360.255000px;}
.y165{bottom:360.975000px;}
.y31{bottom:363.135000px;}
.yb2{bottom:364.215000px;}
.y7c{bottom:365.295000px;}
.y135{bottom:366.375000px;}
.y164{bottom:380.415000px;}
.y10e{bottom:381.495000px;}
.y30{bottom:382.395000px;}
.ydd{bottom:382.575000px;}
.y7b{bottom:384.735000px;}
.y134{bottom:385.635000px;}
.yb1{bottom:386.355000px;}
.y163{bottom:399.675000px;}
.y2f{bottom:401.835000px;}
.y10d{bottom:403.815000px;}
.y7a{bottom:403.995000px;}
.ydc{bottom:404.895000px;}
.y133{bottom:405.075000px;}
.yb0{bottom:409.575000px;}
.y162{bottom:418.935000px;}
.y2e{bottom:421.095000px;}
.y79{bottom:423.435000px;}
.y132{bottom:424.335000px;}
.y10c{bottom:425.955000px;}
.ydb{bottom:427.035000px;}
.yaf{bottom:431.895000px;}
.y161{bottom:438.375000px;}
.y2d{bottom:440.535000px;}
.y78{bottom:442.695000px;}
.y131{bottom:443.775000px;}
.y10b{bottom:448.275000px;}
.yda{bottom:449.355000px;}
.yae{bottom:454.035000px;}
.y160{bottom:457.635000px;}
.y2c{bottom:459.795000px;}
.y77{bottom:462.135000px;}
.y130{bottom:463.035000px;}
.y10a{bottom:470.595000px;}
.yd9{bottom:471.495000px;}
.yad{bottom:474.555000px;}
.y15f{bottom:477.075000px;}
.y2b{bottom:479.055000px;}
.y76{bottom:481.395000px;}
.y12f{bottom:485.175000px;}
.y109{bottom:492.735000px;}
.yac{bottom:493.815000px;}
.y15e{bottom:496.335000px;}
.y2a{bottom:498.495000px;}
.y75{bottom:500.835000px;}
.y12e{bottom:504.615000px;}
.yab{bottom:513.255000px;}
.y108{bottom:515.055000px;}
.y15d{bottom:515.775000px;}
.yd8{bottom:516.135000px;}
.y29{bottom:517.755000px;}
.y74{bottom:520.095000px;}
.y12d{bottom:524.055000px;}
.yaa{bottom:532.515000px;}
.y15c{bottom:535.035000px;}
.y28{bottom:537.195000px;}
.yd7{bottom:538.275000px;}
.y73{bottom:539.535000px;}
.y12c{bottom:543.315000px;}
.ya9{bottom:551.955000px;}
.y15b{bottom:554.475000px;}
.y27{bottom:556.455000px;}
.y72{bottom:558.795000px;}
.y107{bottom:559.515000px;}
.yd6{bottom:560.595000px;}
.y12b{bottom:562.755000px;}
.ya8{bottom:571.215000px;}
.y15a{bottom:573.735000px;}
.y26{bottom:575.895000px;}
.y71{bottom:578.055000px;}
.y106{bottom:581.835000px;}
.y12a{bottom:582.015000px;}
.yd5{bottom:582.735000px;}
.ya7{bottom:590.475000px;}
.y159{bottom:593.175000px;}
.y25{bottom:594.975000px;}
.y70{bottom:597.495000px;}
.y129{bottom:601.275000px;}
.y105{bottom:604.005000px;}
.yd4{bottom:605.085000px;}
.ya6{bottom:609.945000px;}
.y158{bottom:612.465000px;}
.y24{bottom:612.645000px;}
.y6f{bottom:616.785000px;}
.y128{bottom:620.745000px;}
.y104{bottom:626.325000px;}
.yd3{bottom:627.405000px;}
.ya5{bottom:629.205000px;}
.y23{bottom:630.105000px;}
.y157{bottom:631.905000px;}
.y6e{bottom:636.225000px;}
.y127{bottom:640.005000px;}
.y22{bottom:647.745000px;}
.y103{bottom:648.465000px;}
.ya4{bottom:648.645000px;}
.yd2{bottom:649.545000px;}
.y156{bottom:651.165000px;}
.y6d{bottom:655.485000px;}
.y126{bottom:659.445000px;}
.y3f{bottom:660.705000px;}
.y21{bottom:665.385000px;}
.ya3{bottom:667.905000px;}
.y155{bottom:670.605000px;}
.y102{bottom:670.785000px;}
.yd1{bottom:671.865000px;}
.y6c{bottom:674.925000px;}
.y125{bottom:678.705000px;}
.y20{bottom:682.845000px;}
.ya2{bottom:687.345000px;}
.y154{bottom:689.865000px;}
.y101{bottom:693.105000px;}
.yd0{bottom:694.005000px;}
.y6b{bottom:694.185000px;}
.y124{bottom:698.145000px;}
.y1f{bottom:700.485000px;}
.ya1{bottom:706.605000px;}
.y153{bottom:709.125000px;}
.y6a{bottom:713.625000px;}
.y100{bottom:715.245000px;}
.ycf{bottom:716.325000px;}
.y123{bottom:717.405000px;}
.y1e{bottom:718.125000px;}
.ya0{bottom:725.865000px;}
.y152{bottom:728.565000px;}
.y69{bottom:732.885000px;}
.y1d{bottom:735.585000px;}
.y122{bottom:736.845000px;}
.yff{bottom:737.565000px;}
.yce{bottom:738.465000px;}
.y9f{bottom:746.205000px;}
.y151{bottom:747.825000px;}
.y68{bottom:752.325000px;}
.y1c{bottom:753.225000px;}
.y121{bottom:756.105000px;}
.yfe{bottom:759.705000px;}
.ycd{bottom:760.785000px;}
.y9e{bottom:765.645000px;}
.y150{bottom:767.265000px;}
.y67{bottom:771.585000px;}
.y1b{bottom:773.025000px;}
.y120{bottom:775.545000px;}
.yfd{bottom:782.025000px;}
.ycc{bottom:783.105000px;}
.y9d{bottom:784.905000px;}
.y14f{bottom:786.525000px;}
.y1a{bottom:790.665000px;}
.y66{bottom:791.025000px;}
.y11f{bottom:794.805000px;}
.yfc{bottom:804.165000px;}
.y9c{bottom:805.245000px;}
.y14e{bottom:805.965000px;}
.y19{bottom:808.305000px;}
.y65{bottom:810.285000px;}
.y11e{bottom:814.245000px;}
.y9b{bottom:824.505000px;}
.y14d{bottom:825.225000px;}
.y18{bottom:825.765000px;}
.yfb{bottom:826.485000px;}
.ycb{bottom:827.565000px;}
.y64{bottom:829.725000px;}
.y11d{bottom:833.505000px;}
.y17{bottom:843.405000px;}
.y9a{bottom:843.945000px;}
.y14c{bottom:844.665000px;}
.yfa{bottom:848.805000px;}
.y63{bottom:848.985000px;}
.yca{bottom:849.705000px;}
.y11c{bottom:852.945000px;}
.y16{bottom:861.045000px;}
.y99{bottom:863.205000px;}
.y14b{bottom:863.925000px;}
.y62{bottom:868.245000px;}
.yf9{bottom:870.990000px;}
.yc9{bottom:872.070000px;}
.y11b{bottom:872.250000px;}
.y15{bottom:878.550000px;}
.y14a{bottom:883.410000px;}
.y98{bottom:883.590000px;}
.y61{bottom:887.730000px;}
.yf8{bottom:893.310000px;}
.yc8{bottom:894.390000px;}
.y14{bottom:896.190000px;}
.y149{bottom:902.670000px;}
.y97{bottom:902.850000px;}
.y60{bottom:906.990000px;}
.y13{bottom:913.830000px;}
.yf7{bottom:915.450000px;}
.yc7{bottom:916.530000px;}
.y96{bottom:922.110000px;}
.y5f{bottom:926.430000px;}
.y12{bottom:931.470000px;}
.yf6{bottom:937.770000px;}
.yc6{bottom:938.850000px;}
.y148{bottom:941.370000px;}
.y95{bottom:942.450000px;}
.y5e{bottom:945.690000px;}
.y11{bottom:948.930000px;}
.yf5{bottom:960.090000px;}
.y147{bottom:960.810000px;}
.yc5{bottom:960.990000px;}
.y94{bottom:961.890000px;}
.y5d{bottom:965.130000px;}
.y10{bottom:966.570000px;}
.y93{bottom:981.150000px;}
.yf4{bottom:982.230000px;}
.y146{bottom:982.770000px;}
.yc4{bottom:983.310000px;}
.yf{bottom:984.390000px;}
.y92{bottom:1000.410000px;}
.y145{bottom:1002.390000px;}
.y5c{bottom:1003.830000px;}
.yf3{bottom:1004.550000px;}
.ye{bottom:1005.450000px;}
.y91{bottom:1020.750000px;}
.y144{bottom:1021.650000px;}
.y5b{bottom:1023.090000px;}
.yd{bottom:1024.710000px;}
.yf2{bottom:1026.690000px;}
.yc3{bottom:1027.770000px;}
.y90{bottom:1040.010000px;}
.y143{bottom:1041.090000px;}
.y5a{bottom:1042.530000px;}
.yc{bottom:1043.970000px;}
.yf1{bottom:1049.010000px;}
.yc2{bottom:1050.090000px;}
.y8f{bottom:1059.270000px;}
.y142{bottom:1060.350000px;}
.y59{bottom:1061.790000px;}
.yb{bottom:1062.510000px;}
.yee{bottom:1067.550000px;}
.yf0{bottom:1068.270000px;}
.yef{bottom:1069.170000px;}
.yed{bottom:1071.150000px;}
.yc1{bottom:1072.230000px;}
.y8e{bottom:1079.610000px;}
.y58{bottom:1081.230000px;}
.ya{bottom:1085.370000px;}
.yec{bottom:1093.110000px;}
.yc0{bottom:1094.550000px;}
.y8d{bottom:1099.050000px;}
.y57{bottom:1100.490000px;}
.y9{bottom:1108.230000px;}
.yeb{bottom:1115.250000px;}
.ybf{bottom:1116.690000px;}
.y8c{bottom:1118.310000px;}
.y56{bottom:1119.930000px;}
.y5{bottom:1133.250000px;}
.yea{bottom:1137.570000px;}
.y8b{bottom:1137.780000px;}
.ybe{bottom:1139.040000px;}
.y55{bottom:1139.220000px;}
.y4{bottom:1147.500000px;}
.y8a{bottom:1157.400000px;}
.y3{bottom:1162.980000px;}
.y54{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y53{bottom:1197.540000px;}
.he{height:30.480469px;}
.h3{height:38.100586px;}
.hd{height:40.843828px;}
.h4{height:41.974453px;}
.h8{height:45.720703px;}
.h2{height:46.986328px;}
.hc{height:50.273438px;}
.h9{height:50.597578px;}
.h6{height:51.998203px;}
.h7{height:56.084062px;}
.ha{height:57.636562px;}
.hf{height:58.819922px;}
.h12{height:59.447812px;}
.h5{height:65.837812px;}
.h13{height:67.367813px;}
.h15{height:71.687812px;}
.h10{height:73.127813px;}
.h14{height:76.007813px;}
.h11{height:90.407813px;}
.hb{height:318.270000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:209.190000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:94.494000px;}
.x1{left:108.035987px;}
.xa{left:113.076000px;}
.x2{left:116.135987px;}
.x3{left:135.575987px;}
.x15{left:140.075987px;}
.x9{left:162.029987px;}
.xd{left:189.029987px;}
.x7{left:203.609987px;}
.x6{left:293.294987px;}
.x8{left:335.774987px;}
.x4{left:367.994987px;}
.x5{left:446.474987px;}
.xc{left:535.604987px;}
.x12{left:631.724987px;}
.x13{left:640.544987px;}
.x14{left:659.264987px;}
.x11{left:676.589987px;}
.xf{left:709.349987px;}
.x10{left:724.829987px;}
.xe{left:767.489987px;}
@media print{
.vc{vertical-align:-17.280000pt;}
.v8{vertical-align:-12.160000pt;}
.v2{vertical-align:-9.600000pt;}
.ve{vertical-align:-8.320000pt;}
.v10{vertical-align:-5.120000pt;}
.v9{vertical-align:-2.560000pt;}
.v6{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.280000pt;}
.va{vertical-align:2.560000pt;}
.v4{vertical-align:4.480000pt;}
.vd{vertical-align:7.040000pt;}
.vf{vertical-align:8.320000pt;}
.v3{vertical-align:9.600000pt;}
.v11{vertical-align:10.880000pt;}
.v7{vertical-align:12.160000pt;}
.v1{vertical-align:13.440000pt;}
.vb{vertical-align:14.720000pt;}
.ls1c{letter-spacing:-0.549333pt;}
.lsa{letter-spacing:-0.531200pt;}
.ls1f{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.240533pt;}
.ls3{letter-spacing:-0.202133pt;}
.lsb{letter-spacing:-0.133333pt;}
.ls7{letter-spacing:-0.084267pt;}
.ls23{letter-spacing:-0.061333pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.020480pt;}
.ls1e{letter-spacing:0.089600pt;}
.ls22{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.198400pt;}
.ls10{letter-spacing:0.258560pt;}
.ls1b{letter-spacing:0.271360pt;}
.ls20{letter-spacing:0.271467pt;}
.ls1a{letter-spacing:0.274133pt;}
.ls21{letter-spacing:0.291840pt;}
.lsd{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.353280pt;}
.ls1d{letter-spacing:0.358400pt;}
.ls0{letter-spacing:0.486400pt;}
.ls15{letter-spacing:1.029120pt;}
.ls13{letter-spacing:1.280000pt;}
.lse{letter-spacing:4.436480pt;}
.ls11{letter-spacing:6.113280pt;}
.ls17{letter-spacing:6.213120pt;}
.ls12{letter-spacing:6.338560pt;}
.lsc{letter-spacing:8.960000pt;}
.ls16{letter-spacing:18.211840pt;}
.ls14{letter-spacing:21.760000pt;}
.ls18{letter-spacing:22.400000pt;}
.ls19{letter-spacing:24.591360pt;}
.ls9{letter-spacing:52.730027pt;}
.ls8{letter-spacing:52.751360pt;}
.wsa{word-spacing:-58.880000pt;}
.wsf{word-spacing:-13.312000pt;}
.wse{word-spacing:-13.227733pt;}
.ws11{word-spacing:-13.225067pt;}
.ws9{word-spacing:-12.974080pt;}
.ws2{word-spacing:-12.953600pt;}
.ws12{word-spacing:-12.892267pt;}
.wsb{word-spacing:-12.820267pt;}
.ws3{word-spacing:-12.751467pt;}
.ws10{word-spacing:-12.585067pt;}
.ws0{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.433600pt;}
.ws1{word-spacing:-8.166400pt;}
.ws8{word-spacing:-8.082133pt;}
.ws6{word-spacing:-7.040000pt;}
.ws5{word-spacing:-7.008000pt;}
.wsc{word-spacing:-0.058880pt;}
.ws7{word-spacing:0.000000pt;}
.wsd{word-spacing:403.272960pt;}
._2b{margin-left:-157.614507pt;}
._2a{margin-left:-119.070720pt;}
._26{margin-left:-107.033600pt;}
._28{margin-left:-105.754880pt;}
._29{margin-left:-101.913600pt;}
._25{margin-left:-76.276480pt;}
._27{margin-left:-7.040000pt;}
._1f{margin-left:-4.550400pt;}
._1a{margin-left:-3.416960pt;}
._a{margin-left:-2.284160pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._9{width:2.138027pt;}
._b{width:3.180587pt;}
._17{width:4.096000pt;}
._7{width:5.053013pt;}
._6{width:6.108800pt;}
._13{width:7.360000pt;}
._12{width:8.378240pt;}
._15{width:9.577600pt;}
._8{width:10.517760pt;}
._16{width:11.776000pt;}
._1d{width:14.546560pt;}
._e{width:15.617280pt;}
._d{width:16.520320pt;}
._21{width:17.492480pt;}
._1b{width:18.500267pt;}
._c{width:20.079360pt;}
._1e{width:20.987520pt;}
._10{width:22.044800pt;}
._f{width:22.947840pt;}
._14{width:24.258560pt;}
._1c{width:25.628160pt;}
._11{width:26.779093pt;}
._24{width:29.675520pt;}
._2e{width:32.501760pt;}
._2f{width:37.035520pt;}
._22{width:38.095360pt;}
._23{width:39.290240pt;}
._2d{width:40.509440pt;}
._18{width:41.808427pt;}
._30{width:62.883840pt;}
._31{width:64.061440pt;}
._0{width:66.666667pt;}
._20{width:68.286293pt;}
._35{width:71.244800pt;}
._36{width:72.525440pt;}
._39{width:85.552640pt;}
._3a{width:86.509867pt;}
._37{width:90.851840pt;}
._38{width:134.187520pt;}
._3b{width:141.370880pt;}
._3{width:161.440000pt;}
._4{width:175.422080pt;}
._2c{width:179.025067pt;}
._5{width:180.313600pt;}
._33{width:196.247040pt;}
._34{width:197.342507pt;}
._32{width:222.919680pt;}
._19{width:938.673067pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:4.640000pt;}
.y51{bottom:23.040000pt;}
.y50{bottom:39.680000pt;}
.y4f{bottom:49.120000pt;}
.y8{bottom:50.240000pt;}
.y4e{bottom:58.400000pt;}
.y7{bottom:62.752000pt;}
.y4d{bottom:67.840000pt;}
.y6{bottom:75.232000pt;}
.y4c{bottom:83.520000pt;}
.y3e{bottom:99.232000pt;}
.y89{bottom:101.152000pt;}
.y11a{bottom:101.792000pt;}
.ye9{bottom:102.752000pt;}
.ybd{bottom:104.512000pt;}
.y171{bottom:114.432000pt;}
.y3d{bottom:116.352000pt;}
.y88{bottom:118.432000pt;}
.y141{bottom:119.232000pt;}
.y119{bottom:121.632000pt;}
.ye8{bottom:122.592000pt;}
.y4b{bottom:123.040000pt;}
.ybc{bottom:124.352000pt;}
.y170{bottom:131.712000pt;}
.y3c{bottom:133.626667pt;}
.y87{bottom:135.546667pt;}
.y140{bottom:136.506667pt;}
.y4a{bottom:140.320000pt;}
.y118{bottom:141.306667pt;}
.ye7{bottom:142.266667pt;}
.ybb{bottom:144.026667pt;}
.y16f{bottom:148.826667pt;}
.y3b{bottom:150.746667pt;}
.y49{bottom:152.800000pt;}
.y86{bottom:152.826667pt;}
.y13f{bottom:153.626667pt;}
.y117{bottom:161.146667pt;}
.ye6{bottom:162.106667pt;}
.yba{bottom:163.866667pt;}
.y48{bottom:165.280000pt;}
.y16e{bottom:166.106667pt;}
.y3a{bottom:167.866667pt;}
.y85{bottom:169.946667pt;}
.y13e{bottom:170.906667pt;}
.y47{bottom:177.760000pt;}
.y116{bottom:180.986667pt;}
.ye5{bottom:181.786667pt;}
.y16d{bottom:183.226667pt;}
.yb9{bottom:183.706667pt;}
.y39{bottom:185.146667pt;}
.y84{bottom:187.226667pt;}
.y13d{bottom:188.026667pt;}
.y46{bottom:191.400000pt;}
.y16c{bottom:200.506667pt;}
.y115{bottom:200.666667pt;}
.ye4{bottom:201.626667pt;}
.y38{bottom:202.266667pt;}
.yb8{bottom:203.386667pt;}
.y83{bottom:204.346667pt;}
.y13c{bottom:205.146667pt;}
.y45{bottom:208.680000pt;}
.y16b{bottom:217.626667pt;}
.y37{bottom:219.546667pt;}
.y114{bottom:220.506667pt;}
.y44{bottom:221.320000pt;}
.ye3{bottom:221.466667pt;}
.y82{bottom:221.626667pt;}
.y13b{bottom:222.426667pt;}
.yb7{bottom:223.226667pt;}
.y43{bottom:233.800000pt;}
.y16a{bottom:234.906667pt;}
.y36{bottom:236.666667pt;}
.y81{bottom:238.746667pt;}
.y13a{bottom:239.546667pt;}
.y113{bottom:240.186667pt;}
.ye2{bottom:241.146667pt;}
.yb6{bottom:243.706667pt;}
.y42{bottom:246.280000pt;}
.y169{bottom:252.026667pt;}
.y35{bottom:253.946667pt;}
.y80{bottom:255.866667pt;}
.y139{bottom:256.826667pt;}
.y41{bottom:258.760000pt;}
.y112{bottom:260.026667pt;}
.ye1{bottom:260.986667pt;}
.yb5{bottom:263.546667pt;}
.y168{bottom:269.306667pt;}
.y34{bottom:271.066667pt;}
.y40{bottom:271.560000pt;}
.y7f{bottom:273.146667pt;}
.y138{bottom:273.946667pt;}
.y111{bottom:279.866667pt;}
.ye0{bottom:280.666667pt;}
.yb4{bottom:283.386667pt;}
.y167{bottom:286.426667pt;}
.y33{bottom:288.346667pt;}
.y7e{bottom:290.266667pt;}
.y137{bottom:291.226667pt;}
.y110{bottom:299.586667pt;}
.ydf{bottom:300.546667pt;}
.y166{bottom:303.746667pt;}
.yb3{bottom:303.906667pt;}
.y32{bottom:305.506667pt;}
.y7d{bottom:307.586667pt;}
.y136{bottom:308.386667pt;}
.y10f{bottom:319.426667pt;}
.yde{bottom:320.226667pt;}
.y165{bottom:320.866667pt;}
.y31{bottom:322.786667pt;}
.yb2{bottom:323.746667pt;}
.y7c{bottom:324.706667pt;}
.y135{bottom:325.666667pt;}
.y164{bottom:338.146667pt;}
.y10e{bottom:339.106667pt;}
.y30{bottom:339.906667pt;}
.ydd{bottom:340.066667pt;}
.y7b{bottom:341.986667pt;}
.y134{bottom:342.786667pt;}
.yb1{bottom:343.426667pt;}
.y163{bottom:355.266667pt;}
.y2f{bottom:357.186667pt;}
.y10d{bottom:358.946667pt;}
.y7a{bottom:359.106667pt;}
.ydc{bottom:359.906667pt;}
.y133{bottom:360.066667pt;}
.yb0{bottom:364.066667pt;}
.y162{bottom:372.386667pt;}
.y2e{bottom:374.306667pt;}
.y79{bottom:376.386667pt;}
.y132{bottom:377.186667pt;}
.y10c{bottom:378.626667pt;}
.ydb{bottom:379.586667pt;}
.yaf{bottom:383.906667pt;}
.y161{bottom:389.666667pt;}
.y2d{bottom:391.586667pt;}
.y78{bottom:393.506667pt;}
.y131{bottom:394.466667pt;}
.y10b{bottom:398.466667pt;}
.yda{bottom:399.426667pt;}
.yae{bottom:403.586667pt;}
.y160{bottom:406.786667pt;}
.y2c{bottom:408.706667pt;}
.y77{bottom:410.786667pt;}
.y130{bottom:411.586667pt;}
.y10a{bottom:418.306667pt;}
.yd9{bottom:419.106667pt;}
.yad{bottom:421.826667pt;}
.y15f{bottom:424.066667pt;}
.y2b{bottom:425.826667pt;}
.y76{bottom:427.906667pt;}
.y12f{bottom:431.266667pt;}
.y109{bottom:437.986667pt;}
.yac{bottom:438.946667pt;}
.y15e{bottom:441.186667pt;}
.y2a{bottom:443.106667pt;}
.y75{bottom:445.186667pt;}
.y12e{bottom:448.546667pt;}
.yab{bottom:456.226667pt;}
.y108{bottom:457.826667pt;}
.y15d{bottom:458.466667pt;}
.yd8{bottom:458.786667pt;}
.y29{bottom:460.226667pt;}
.y74{bottom:462.306667pt;}
.y12d{bottom:465.826667pt;}
.yaa{bottom:473.346667pt;}
.y15c{bottom:475.586667pt;}
.y28{bottom:477.506667pt;}
.yd7{bottom:478.466667pt;}
.y73{bottom:479.586667pt;}
.y12c{bottom:482.946667pt;}
.ya9{bottom:490.626667pt;}
.y15b{bottom:492.866667pt;}
.y27{bottom:494.626667pt;}
.y72{bottom:496.706667pt;}
.y107{bottom:497.346667pt;}
.yd6{bottom:498.306667pt;}
.y12b{bottom:500.226667pt;}
.ya8{bottom:507.746667pt;}
.y15a{bottom:509.986667pt;}
.y26{bottom:511.906667pt;}
.y71{bottom:513.826667pt;}
.y106{bottom:517.186667pt;}
.y12a{bottom:517.346667pt;}
.yd5{bottom:517.986667pt;}
.ya7{bottom:524.866667pt;}
.y159{bottom:527.266667pt;}
.y25{bottom:528.866667pt;}
.y70{bottom:531.106667pt;}
.y129{bottom:534.466667pt;}
.y105{bottom:536.893333pt;}
.yd4{bottom:537.853333pt;}
.ya6{bottom:542.173333pt;}
.y158{bottom:544.413333pt;}
.y24{bottom:544.573333pt;}
.y6f{bottom:548.253333pt;}
.y128{bottom:551.773333pt;}
.y104{bottom:556.733333pt;}
.yd3{bottom:557.693333pt;}
.ya5{bottom:559.293333pt;}
.y23{bottom:560.093333pt;}
.y157{bottom:561.693333pt;}
.y6e{bottom:565.533333pt;}
.y127{bottom:568.893333pt;}
.y22{bottom:575.773333pt;}
.y103{bottom:576.413333pt;}
.ya4{bottom:576.573333pt;}
.yd2{bottom:577.373333pt;}
.y156{bottom:578.813333pt;}
.y6d{bottom:582.653333pt;}
.y126{bottom:586.173333pt;}
.y3f{bottom:587.293333pt;}
.y21{bottom:591.453333pt;}
.ya3{bottom:593.693333pt;}
.y155{bottom:596.093333pt;}
.y102{bottom:596.253333pt;}
.yd1{bottom:597.213333pt;}
.y6c{bottom:599.933333pt;}
.y125{bottom:603.293333pt;}
.y20{bottom:606.973333pt;}
.ya2{bottom:610.973333pt;}
.y154{bottom:613.213333pt;}
.y101{bottom:616.093333pt;}
.yd0{bottom:616.893333pt;}
.y6b{bottom:617.053333pt;}
.y124{bottom:620.573333pt;}
.y1f{bottom:622.653333pt;}
.ya1{bottom:628.093333pt;}
.y153{bottom:630.333333pt;}
.y6a{bottom:634.333333pt;}
.y100{bottom:635.773333pt;}
.ycf{bottom:636.733333pt;}
.y123{bottom:637.693333pt;}
.y1e{bottom:638.333333pt;}
.ya0{bottom:645.213333pt;}
.y152{bottom:647.613333pt;}
.y69{bottom:651.453333pt;}
.y1d{bottom:653.853333pt;}
.y122{bottom:654.973333pt;}
.yff{bottom:655.613333pt;}
.yce{bottom:656.413333pt;}
.y9f{bottom:663.293333pt;}
.y151{bottom:664.733333pt;}
.y68{bottom:668.733333pt;}
.y1c{bottom:669.533333pt;}
.y121{bottom:672.093333pt;}
.yfe{bottom:675.293333pt;}
.ycd{bottom:676.253333pt;}
.y9e{bottom:680.573333pt;}
.y150{bottom:682.013333pt;}
.y67{bottom:685.853333pt;}
.y1b{bottom:687.133333pt;}
.y120{bottom:689.373333pt;}
.yfd{bottom:695.133333pt;}
.ycc{bottom:696.093333pt;}
.y9d{bottom:697.693333pt;}
.y14f{bottom:699.133333pt;}
.y1a{bottom:702.813333pt;}
.y66{bottom:703.133333pt;}
.y11f{bottom:706.493333pt;}
.yfc{bottom:714.813333pt;}
.y9c{bottom:715.773333pt;}
.y14e{bottom:716.413333pt;}
.y19{bottom:718.493333pt;}
.y65{bottom:720.253333pt;}
.y11e{bottom:723.773333pt;}
.y9b{bottom:732.893333pt;}
.y14d{bottom:733.533333pt;}
.y18{bottom:734.013333pt;}
.yfb{bottom:734.653333pt;}
.ycb{bottom:735.613333pt;}
.y64{bottom:737.533333pt;}
.y11d{bottom:740.893333pt;}
.y17{bottom:749.693333pt;}
.y9a{bottom:750.173333pt;}
.y14c{bottom:750.813333pt;}
.yfa{bottom:754.493333pt;}
.y63{bottom:754.653333pt;}
.yca{bottom:755.293333pt;}
.y11c{bottom:758.173333pt;}
.y16{bottom:765.373333pt;}
.y99{bottom:767.293333pt;}
.y14b{bottom:767.933333pt;}
.y62{bottom:771.773333pt;}
.yf9{bottom:774.213333pt;}
.yc9{bottom:775.173333pt;}
.y11b{bottom:775.333333pt;}
.y15{bottom:780.933333pt;}
.y14a{bottom:785.253333pt;}
.y98{bottom:785.413333pt;}
.y61{bottom:789.093333pt;}
.yf8{bottom:794.053333pt;}
.yc8{bottom:795.013333pt;}
.y14{bottom:796.613333pt;}
.y149{bottom:802.373333pt;}
.y97{bottom:802.533333pt;}
.y60{bottom:806.213333pt;}
.y13{bottom:812.293333pt;}
.yf7{bottom:813.733333pt;}
.yc7{bottom:814.693333pt;}
.y96{bottom:819.653333pt;}
.y5f{bottom:823.493333pt;}
.y12{bottom:827.973333pt;}
.yf6{bottom:833.573333pt;}
.yc6{bottom:834.533333pt;}
.y148{bottom:836.773333pt;}
.y95{bottom:837.733333pt;}
.y5e{bottom:840.613333pt;}
.y11{bottom:843.493333pt;}
.yf5{bottom:853.413333pt;}
.y147{bottom:854.053333pt;}
.yc5{bottom:854.213333pt;}
.y94{bottom:855.013333pt;}
.y5d{bottom:857.893333pt;}
.y10{bottom:859.173333pt;}
.y93{bottom:872.133333pt;}
.yf4{bottom:873.093333pt;}
.y146{bottom:873.573333pt;}
.yc4{bottom:874.053333pt;}
.yf{bottom:875.013333pt;}
.y92{bottom:889.253333pt;}
.y145{bottom:891.013333pt;}
.y5c{bottom:892.293333pt;}
.yf3{bottom:892.933333pt;}
.ye{bottom:893.733333pt;}
.y91{bottom:907.333333pt;}
.y144{bottom:908.133333pt;}
.y5b{bottom:909.413333pt;}
.yd{bottom:910.853333pt;}
.yf2{bottom:912.613333pt;}
.yc3{bottom:913.573333pt;}
.y90{bottom:924.453333pt;}
.y143{bottom:925.413333pt;}
.y5a{bottom:926.693333pt;}
.yc{bottom:927.973333pt;}
.yf1{bottom:932.453333pt;}
.yc2{bottom:933.413333pt;}
.y8f{bottom:941.573333pt;}
.y142{bottom:942.533333pt;}
.y59{bottom:943.813333pt;}
.yb{bottom:944.453333pt;}
.yee{bottom:948.933333pt;}
.yf0{bottom:949.573333pt;}
.yef{bottom:950.373333pt;}
.yed{bottom:952.133333pt;}
.yc1{bottom:953.093333pt;}
.y8e{bottom:959.653333pt;}
.y58{bottom:961.093333pt;}
.ya{bottom:964.773333pt;}
.yec{bottom:971.653333pt;}
.yc0{bottom:972.933333pt;}
.y8d{bottom:976.933333pt;}
.y57{bottom:978.213333pt;}
.y9{bottom:985.093333pt;}
.yeb{bottom:991.333333pt;}
.ybf{bottom:992.613333pt;}
.y8c{bottom:994.053333pt;}
.y56{bottom:995.493333pt;}
.y5{bottom:1007.333333pt;}
.yea{bottom:1011.173333pt;}
.y8b{bottom:1011.360000pt;}
.ybe{bottom:1012.480000pt;}
.y55{bottom:1012.640000pt;}
.y4{bottom:1020.000000pt;}
.y8a{bottom:1028.800000pt;}
.y3{bottom:1033.760000pt;}
.y54{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y53{bottom:1064.480000pt;}
.he{height:27.093750pt;}
.h3{height:33.867188pt;}
.hd{height:36.305625pt;}
.h4{height:37.310625pt;}
.h8{height:40.640625pt;}
.h2{height:41.765625pt;}
.hc{height:44.687500pt;}
.h9{height:44.975625pt;}
.h6{height:46.220625pt;}
.h7{height:49.852500pt;}
.ha{height:51.232500pt;}
.hf{height:52.284375pt;}
.h12{height:52.842500pt;}
.h5{height:58.522500pt;}
.h13{height:59.882500pt;}
.h15{height:63.722500pt;}
.h10{height:65.002500pt;}
.h14{height:67.562500pt;}
.h11{height:80.362500pt;}
.hb{height:282.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:185.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:83.994667pt;}
.x1{left:96.031988pt;}
.xa{left:100.512000pt;}
.x2{left:103.231988pt;}
.x3{left:120.511988pt;}
.x15{left:124.511988pt;}
.x9{left:144.026655pt;}
.xd{left:168.026655pt;}
.x7{left:180.986655pt;}
.x6{left:260.706655pt;}
.x8{left:298.466655pt;}
.x4{left:327.106655pt;}
.x5{left:396.866655pt;}
.xc{left:476.093322pt;}
.x12{left:561.533322pt;}
.x13{left:569.373322pt;}
.x14{left:586.013322pt;}
.x11{left:601.413322pt;}
.xf{left:630.533322pt;}
.x10{left:644.293322pt;}
.xe{left:682.213322pt;}
}




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