
    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_0f662739111af4af885c740f.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_085bec14e8fc966f41122032.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_947158a51eb998faa1264eb2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e64daba8c8c36f6b6b9a690c.woff')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_a72855d6d2a00eef6fe112e9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2d81005fc37509306ab81c85.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f19604d4155781eea0fbb416.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3bdd0ca5dc415c2feb3617d1.woff')format("woff");}.ff9{font-family:ff9;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;}
.ls12{letter-spacing:-0.243600px;}
.ls10{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.160800px;}
.ls9{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.048960px;}
.ls1a{letter-spacing:-0.038880px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.ls14{letter-spacing:0.068400px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsb{letter-spacing:0.116400px;}
.ls19{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls16{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.198000px;}
.ls18{letter-spacing:0.199200px;}
.ls15{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls4{letter-spacing:10.800000px;}
.ls1d{letter-spacing:47.726640px;}
.ls1c{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;}
}
.ws5{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws10{word-spacing:-13.425600px;}
.ws13{word-spacing:-13.424400px;}
.ws8{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.369800px;}
.ws3{word-spacing:-13.342800px;}
.wse{word-spacing:-13.294800px;}
.ws6{word-spacing:-13.275600px;}
.wsa{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.187520px;}
.wsf{word-spacing:-13.177440px;}
.wsb{word-spacing:-13.065600px;}
.ws9{word-spacing:-13.039800px;}
.wsc{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._d{margin-left:-3.907800px;}
._4{margin-left:-2.585400px;}
._0{margin-left:-1.110000px;}
._1{width:1.096920px;}
._2{width:3.006000px;}
._3{width:4.621320px;}
._6{width:5.957283px;}
._5{width:7.033800px;}
._10{width:8.067363px;}
._c{width:9.084360px;}
._9{width:10.641000px;}
._a{width:12.204600px;}
._b{width:14.603295px;}
._8{width:15.789358px;}
._7{width:17.074200px;}
._26{width:18.637080px;}
._27{width:19.696561px;}
._11{width:20.801520px;}
._12{width:22.124160px;}
._13{width:23.627160px;}
._14{width:24.709320px;}
._19{width:25.851600px;}
._1f{width:27.474840px;}
._2b{width:28.977840px;}
._16{width:30.060000px;}
._f{width:31.289397px;}
._e{width:32.344800px;}
._2d{width:35.410680px;}
._2e{width:36.613080px;}
._30{width:37.635120px;}
._2f{width:41.723280px;}
._1c{width:42.865560px;}
._1b{width:44.698680px;}
._24{width:52.364520px;}
._15{width:56.152080px;}
._25{width:61.142040px;}
._23{width:71.783280px;}
._2c{width:77.587920px;}
._1d{width:79.839360px;}
._17{width:84.107880px;}
._18{width:90.508440px;}
._1e{width:94.689000px;}
._2a{width:102.264120px;}
._1a{width:105.510600px;}
._22{width:113.085720px;}
._21{width:128.356200px;}
._28{width:131.181840px;}
._29{width:167.554440px;}
._20{width:285.149160px;}
.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;}
.y9a{bottom:7.830000px;}
.y96{bottom:7.920000px;}
.yc8{bottom:25.380000px;}
.y95{bottom:25.470000px;}
.y99{bottom:43.020000px;}
.y9c{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y1d4{bottom:116.580000px;}
.y13c{bottom:119.460000px;}
.yec{bottom:119.910000px;}
.y12e{bottom:122.790000px;}
.yc7{bottom:126.930000px;}
.y93{bottom:128.550000px;}
.y148{bottom:129.900000px;}
.y58{bottom:133.320000px;}
.y1d3{bottom:134.130000px;}
.y13b{bottom:137.100000px;}
.yeb{bottom:137.460000px;}
.y112{bottom:139.980000px;}
.y12d{bottom:140.340000px;}
.y92{bottom:146.100000px;}
.ybc{bottom:146.370000px;}
.y27{bottom:147.270000px;}
.y147{bottom:147.540000px;}
.y57{bottom:150.870000px;}
.yea{bottom:155.100000px;}
.y111{bottom:157.620000px;}
.y184{bottom:160.320000px;}
.y1af{bottom:160.500000px;}
.y1d2{bottom:160.680000px;}
.y91{bottom:163.650000px;}
.ybb{bottom:164.010000px;}
.y26{bottom:164.820000px;}
.ye9{bottom:172.650000px;}
.y11d{bottom:173.100000px;}
.y110{bottom:175.170000px;}
.y12c{bottom:175.980000px;}
.y183{bottom:177.870000px;}
.y1ae{bottom:178.050000px;}
.y1d1{bottom:178.320000px;}
.y164{bottom:181.200000px;}
.y90{bottom:181.290000px;}
.yba{bottom:181.560000px;}
.y146{bottom:183.090000px;}
.y56{bottom:186.510000px;}
.yc6{bottom:189.390000px;}
.ye8{bottom:190.200000px;}
.y11c{bottom:190.650000px;}
.y10f{bottom:192.810000px;}
.y12b{bottom:193.530000px;}
.y182{bottom:195.510000px;}
.y1ad{bottom:195.600000px;}
.y1d0{bottom:195.870000px;}
.yb9{bottom:199.110000px;}
.y13a{bottom:199.200000px;}
.y25{bottom:200.370000px;}
.y145{bottom:200.730000px;}
.y55{bottom:204.060000px;}
.y163{bottom:207.840000px;}
.y11b{bottom:208.200000px;}
.y12a{bottom:211.080000px;}
.y181{bottom:213.060000px;}
.y8f{bottom:216.840000px;}
.y24{bottom:218.010000px;}
.y144{bottom:218.280000px;}
.y54{bottom:221.610000px;}
.y1ac{bottom:222.240000px;}
.y1cf{bottom:222.510000px;}
.y10e{bottom:225.750000px;}
.ye7{bottom:225.840000px;}
.y129{bottom:228.720000px;}
.y180{bottom:230.610000px;}
.y139{bottom:234.390000px;}
.y8e{bottom:234.480000px;}
.yb8{bottom:234.750000px;}
.y23{bottom:235.560000px;}
.y143{bottom:235.830000px;}
.y53{bottom:239.250000px;}
.y1ab{bottom:239.790000px;}
.y1ce{bottom:240.060000px;}
.ye6{bottom:243.390000px;}
.y128{bottom:246.270000px;}
.yc5{bottom:251.940000px;}
.y8d{bottom:252.030000px;}
.yb7{bottom:252.300000px;}
.y22{bottom:253.200000px;}
.ye5{bottom:260.940000px;}
.y17f{bottom:266.250000px;}
.y1aa{bottom:266.430000px;}
.y1cd{bottom:266.610000px;}
.y8c{bottom:269.580000px;}
.yb6{bottom:269.940000px;}
.y21{bottom:270.750000px;}
.y142{bottom:271.470000px;}
.y52{bottom:274.800000px;}
.ye4{bottom:278.580000px;}
.y11a{bottom:278.940000px;}
.y127{bottom:281.910000px;}
.y17e{bottom:283.800000px;}
.y1a9{bottom:283.980000px;}
.y1cc{bottom:284.250000px;}
.yb5{bottom:287.490000px;}
.y138{bottom:287.580000px;}
.y10d{bottom:288.210000px;}
.y20{bottom:288.300000px;}
.y141{bottom:289.020000px;}
.y51{bottom:292.440000px;}
.y119{bottom:296.580000px;}
.y126{bottom:299.460000px;}
.y17d{bottom:301.440000px;}
.y1cb{bottom:301.800000px;}
.yb4{bottom:305.040000px;}
.ye3{bottom:305.130000px;}
.y8b{bottom:305.220000px;}
.y50{bottom:309.990000px;}
.y1a8{bottom:310.530000px;}
.y118{bottom:314.130000px;}
.y75{bottom:314.310000px;}
.yc4{bottom:314.400000px;}
.y1f{bottom:314.940000px;}
.y125{bottom:317.010000px;}
.y17c{bottom:318.990000px;}
.yb3{bottom:322.680000px;}
.y8a{bottom:322.770000px;}
.y140{bottom:324.660000px;}
.y4f{bottom:327.540000px;}
.y1a7{bottom:328.170000px;}
.y1ca{bottom:328.440000px;}
.y117{bottom:331.770000px;}
.y17b{bottom:336.540000px;}
.y89{bottom:340.410000px;}
.ye2{bottom:340.770000px;}
.y124{bottom:343.650000px;}
.y4e{bottom:345.180000px;}
.y1c9{bottom:345.990000px;}
.y162{bottom:349.320000px;}
.y74{bottom:349.770000px;}
.y10c{bottom:350.760000px;}
.y1e{bottom:350.850000px;}
.y1a6{bottom:354.720000px;}
.y13f{bottom:356.880000px;}
.y88{bottom:357.960000px;}
.yb2{bottom:358.230000px;}
.ye1{bottom:358.320000px;}
.yc3{bottom:359.310000px;}
.y4d{bottom:362.730000px;}
.y1e6{bottom:363.540000px;}
.y161{bottom:366.870000px;}
.y73{bottom:367.320000px;}
.y17a{bottom:372.180000px;}
.y1a5{bottom:372.360000px;}
.y1c8{bottom:372.540000px;}
.yb1{bottom:375.870000px;}
.y123{bottom:379.200000px;}
.y1e5{bottom:381.180000px;}
.y160{bottom:384.510000px;}
.y72{bottom:384.870000px;}
.y4c{bottom:389.370000px;}
.y179{bottom:389.730000px;}
.y1c7{bottom:390.180000px;}
.yb0{bottom:393.420000px;}
.y87{bottom:393.510000px;}
.y116{bottom:393.870000px;}
.y122{bottom:396.750000px;}
.y1a4{bottom:398.910000px;}
.y1d{bottom:399.090000px;}
.y71{bottom:402.510000px;}
.y178{bottom:407.370000px;}
.y1e4{bottom:407.730000px;}
.yaf{bottom:410.970000px;}
.y137{bottom:411.060000px;}
.y86{bottom:411.150000px;}
.ye0{bottom:411.510000px;}
.y10b{bottom:413.220000px;}
.y1a3{bottom:416.460000px;}
.y1c6{bottom:416.730000px;}
.y1c{bottom:417.000000px;}
.y15f{bottom:420.060000px;}
.yc2{bottom:421.860000px;}
.y102{bottom:424.470000px;}
.y4b{bottom:424.920000px;}
.y1e3{bottom:425.370000px;}
.yae{bottom:428.610000px;}
.y85{bottom:428.700000px;}
.ydf{bottom:429.060000px;}
.y121{bottom:432.390000px;}
.y1c5{bottom:434.370000px;}
.y15e{bottom:437.700000px;}
.y70{bottom:438.060000px;}
.y101{bottom:442.110000px;}
.y4a{bottom:442.470000px;}
.y1e2{bottom:442.920000px;}
.y1a2{bottom:443.100000px;}
.y84{bottom:446.250000px;}
.yde{bottom:446.700000px;}
.y120{bottom:449.940000px;}
.y1b{bottom:453.990000px;}
.y15d{bottom:455.250000px;}
.y6f{bottom:455.700000px;}
.y100{bottom:459.660000px;}
.y177{bottom:460.470000px;}
.y1a1{bottom:460.650000px;}
.y1c4{bottom:460.920000px;}
.yad{bottom:464.160000px;}
.y136{bottom:464.250000px;}
.y1a{bottom:471.660000px;}
.y15c{bottom:472.830000px;}
.y6e{bottom:473.280000px;}
.y10a{bottom:475.800000px;}
.yff{bottom:477.330000px;}
.y49{bottom:478.140000px;}
.y1c3{bottom:478.500000px;}
.yac{bottom:481.830000px;}
.y83{bottom:481.920000px;}
.ydd{bottom:482.280000px;}
.yc1{bottom:484.350000px;}
.y11f{bottom:485.610000px;}
.y1e1{bottom:487.140000px;}
.y1a0{bottom:487.590000px;}
.y19{bottom:489.210000px;}
.y6d{bottom:490.830000px;}
.y48{bottom:495.690000px;}
.y1c2{bottom:496.140000px;}
.yab{bottom:499.380000px;}
.y82{bottom:499.470000px;}
.ydc{bottom:499.830000px;}
.y1e0{bottom:504.690000px;}
.y18{bottom:506.850000px;}
.y6c{bottom:508.470000px;}
.yfe{bottom:512.880000px;}
.y47{bottom:513.330000px;}
.yaa{bottom:516.930000px;}
.y135{bottom:517.020000px;}
.y81{bottom:517.110000px;}
.ydb{bottom:517.470000px;}
.y11e{bottom:517.830000px;}
.y1df{bottom:522.330000px;}
.y1c1{bottom:522.690000px;}
.y17{bottom:524.400000px;}
.y15b{bottom:526.020000px;}
.yfd{bottom:530.430000px;}
.y46{bottom:530.880000px;}
.ya9{bottom:534.570000px;}
.y80{bottom:534.660000px;}
.yda{bottom:535.020000px;}
.y19f{bottom:535.830000px;}
.y109{bottom:538.350000px;}
.y1c0{bottom:540.330000px;}
.y16{bottom:541.950000px;}
.y15a{bottom:543.660000px;}
.y6b{bottom:544.020000px;}
.yc0{bottom:546.900000px;}
.yfc{bottom:548.070000px;}
.y45{bottom:548.430000px;}
.y1de{bottom:548.880000px;}
.ya8{bottom:552.120000px;}
.y7f{bottom:552.210000px;}
.y115{bottom:552.660000px;}
.y19e{bottom:553.470000px;}
.y15{bottom:559.590000px;}
.y159{bottom:561.210000px;}
.y6a{bottom:561.660000px;}
.y176{bottom:566.430000px;}
.y1bf{bottom:566.880000px;}
.y134{bottom:570.210000px;}
.yd9{bottom:570.660000px;}
.y19d{bottom:571.020000px;}
.y14{bottom:577.140000px;}
.y158{bottom:578.760000px;}
.y69{bottom:579.210000px;}
.yfb{bottom:583.620000px;}
.y44{bottom:584.070000px;}
.y1be{bottom:584.430000px;}
.ya7{bottom:587.760000px;}
.y7e{bottom:587.850000px;}
.yd8{bottom:588.210000px;}
.y19c{bottom:588.660000px;}
.y13{bottom:594.780000px;}
.y68{bottom:596.760000px;}
.yfa{bottom:601.260000px;}
.y43{bottom:601.620000px;}
.y1bd{bottom:602.070000px;}
.ya6{bottom:605.310000px;}
.y7d{bottom:605.400000px;}
.yd7{bottom:605.760000px;}
.y1dd{bottom:610.620000px;}
.y12{bottom:612.330000px;}
.y67{bottom:614.400000px;}
.yf9{bottom:618.810000px;}
.y42{bottom:619.260000px;}
.y108{bottom:622.140000px;}
.ya5{bottom:622.860000px;}
.y7c{bottom:623.040000px;}
.y114{bottom:623.400000px;}
.y19b{bottom:624.210000px;}
.y1dc{bottom:628.260000px;}
.y1bc{bottom:628.620000px;}
.y11{bottom:629.880000px;}
.ybf{bottom:630.780000px;}
.y157{bottom:631.950000px;}
.yf8{bottom:636.360000px;}
.y41{bottom:636.810000px;}
.y7b{bottom:640.590000px;}
.y113{bottom:640.950000px;}
.yd6{bottom:641.400000px;}
.y19a{bottom:641.760000px;}
.y175{bottom:645.810000px;}
.y1bb{bottom:646.260000px;}
.y10{bottom:647.520000px;}
.ya4{bottom:649.500000px;}
.y156{bottom:649.590000px;}
.y66{bottom:649.950000px;}
.yf7{bottom:654.000000px;}
.y40{bottom:654.360000px;}
.y107{bottom:657.780000px;}
.y133{bottom:658.590000px;}
.yd5{bottom:658.950000px;}
.y199{bottom:659.400000px;}
.y1ba{bottom:663.810000px;}
.yf{bottom:665.070000px;}
.ybe{bottom:666.330000px;}
.y7a{bottom:667.140000px;}
.y65{bottom:667.590000px;}
.y1db{bottom:672.360000px;}
.y106{bottom:675.330000px;}
.y132{bottom:676.140000px;}
.yd4{bottom:676.590000px;}
.y198{bottom:676.950000px;}
.y174{bottom:681.360000px;}
.ye{bottom:682.710000px;}
.ya3{bottom:685.050000px;}
.y64{bottom:685.140000px;}
.yf6{bottom:689.550000px;}
.y3f{bottom:690.000000px;}
.y1b9{bottom:690.360000px;}
.y105{bottom:692.970000px;}
.y131{bottom:693.690000px;}
.yd3{bottom:694.140000px;}
.ybd{bottom:698.550000px;}
.y173{bottom:699.000000px;}
.yd{bottom:700.260000px;}
.y63{bottom:702.690000px;}
.y79{bottom:702.780000px;}
.yf5{bottom:707.190000px;}
.y3e{bottom:707.550000px;}
.y1b8{bottom:708.000000px;}
.yd2{bottom:711.690000px;}
.y197{bottom:712.590000px;}
.y172{bottom:716.550000px;}
.yc{bottom:717.810000px;}
.ya2{bottom:720.240000px;}
.y62{bottom:720.330000px;}
.yf4{bottom:724.740000px;}
.y3d{bottom:725.190000px;}
.y1b7{bottom:725.550000px;}
.y104{bottom:728.520000px;}
.yd1{bottom:729.330000px;}
.y196{bottom:730.140000px;}
.y1da{bottom:734.190000px;}
.yb{bottom:735.450000px;}
.ya1{bottom:737.790000px;}
.y155{bottom:737.880000px;}
.y78{bottom:737.970000px;}
.y3c{bottom:742.740000px;}
.y61{bottom:746.880000px;}
.y195{bottom:747.690000px;}
.yf3{bottom:751.290000px;}
.y13e{bottom:751.740000px;}
.y171{bottom:752.190000px;}
.ya{bottom:753.000000px;}
.y130{bottom:756.240000px;}
.y3b{bottom:760.290000px;}
.y103{bottom:760.740000px;}
.y154{bottom:764.520000px;}
.yd0{bottom:764.880000px;}
.y194{bottom:765.330000px;}
.y13d{bottom:769.290000px;}
.y170{bottom:769.740000px;}
.ya0{bottom:773.430000px;}
.y77{bottom:773.520000px;}
.y3a{bottom:777.930000px;}
.y1d9{bottom:778.290000px;}
.y9{bottom:779.910000px;}
.ycf{bottom:782.520000px;}
.y60{bottom:782.790000px;}
.y193{bottom:782.880000px;}
.yf2{bottom:786.930000px;}
.y16f{bottom:787.290000px;}
.y9f{bottom:790.980000px;}
.y1b6{bottom:796.290000px;}
.yce{bottom:800.070000px;}
.y153{bottom:800.340000px;}
.y192{bottom:800.520000px;}
.yf1{bottom:804.480000px;}
.y16e{bottom:804.930000px;}
.y76{bottom:805.740000px;}
.y9e{bottom:808.530000px;}
.y39{bottom:813.480000px;}
.y1b5{bottom:813.930000px;}
.ycd{bottom:817.620000px;}
.y12f{bottom:822.030000px;}
.y16d{bottom:822.480000px;}
.y8{bottom:828.240000px;}
.y38{bottom:831.030000px;}
.y1b4{bottom:831.480000px;}
.ycc{bottom:835.260000px;}
.y191{bottom:836.070000px;}
.yf0{bottom:840.030000px;}
.y9d{bottom:841.560000px;}
.y37{bottom:848.670000px;}
.y1b3{bottom:849.030000px;}
.y190{bottom:853.620000px;}
.yef{bottom:857.670000px;}
.y16c{bottom:858.030000px;}
.ycb{bottom:861.810000px;}
.y7{bottom:863.790000px;}
.y36{bottom:866.220000px;}
.y1d8{bottom:866.670000px;}
.y18f{bottom:871.260000px;}
.yee{bottom:875.220000px;}
.y16b{bottom:875.670000px;}
.y5f{bottom:883.860000px;}
.y1d7{bottom:884.220000px;}
.y18e{bottom:888.810000px;}
.y35{bottom:892.860000px;}
.y16a{bottom:893.220000px;}
.yca{bottom:897.720000px;}
.y6{bottom:899.610000px;}
.y5e{bottom:901.410000px;}
.y9b{bottom:904.020000px;}
.y18d{bottom:906.450000px;}
.y169{bottom:910.860000px;}
.y5d{bottom:918.960000px;}
.y152{bottom:919.410000px;}
.y1b2{bottom:919.860000px;}
.y18c{bottom:924.000000px;}
.y34{bottom:928.410000px;}
.y5{bottom:935.610000px;}
.y5c{bottom:936.600000px;}
.y151{bottom:936.960000px;}
.y1b1{bottom:937.410000px;}
.y33{bottom:945.960000px;}
.y150{bottom:954.600000px;}
.y1d6{bottom:954.960000px;}
.y18b{bottom:959.550000px;}
.y5b{bottom:963.150000px;}
.y32{bottom:963.600000px;}
.y168{bottom:963.960000px;}
.y98{bottom:966.570000px;}
.y4{bottom:971.700000px;}
.y1d5{bottom:972.600000px;}
.y18a{bottom:977.190000px;}
.y31{bottom:981.150000px;}
.y167{bottom:981.600000px;}
.y14f{bottom:990.150000px;}
.y189{bottom:994.740000px;}
.y5a{bottom:998.790000px;}
.y166{bottom:999.150000px;}
.y14e{bottom:1007.790000px;}
.y3{bottom:1009.980000px;}
.y188{bottom:1012.320000px;}
.y59{bottom:1016.370000px;}
.y30{bottom:1016.820000px;}
.y14d{bottom:1025.370000px;}
.y97{bottom:1029.060000px;}
.y187{bottom:1029.960000px;}
.y2f{bottom:1034.370000px;}
.y1b0{bottom:1043.370000px;}
.y186{bottom:1047.510000px;}
.y2e{bottom:1051.920000px;}
.y14c{bottom:1060.920000px;}
.y2d{bottom:1069.560000px;}
.y165{bottom:1069.920000px;}
.y94{bottom:1073.970000px;}
.y185{bottom:1074.420000px;}
.y14b{bottom:1078.560000px;}
.y2c{bottom:1087.110000px;}
.yed{bottom:1087.560000px;}
.y14a{bottom:1096.110000px;}
.yc9{bottom:1105.110000px;}
.y149{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hb{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h7{height:60.960938px;}
.he{height:61.740000px;}
.hc{height:61.770000px;}
.ha{height:61.793886px;}
.hd{height:61.830000px;}
.hf{height:61.860000px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:75.690000px;}
.w5{width:92.160000px;}
.w8{width:98.130000px;}
.w11{width:108.480000px;}
.w9{width:112.140000px;}
.wa{width:114.570000px;}
.we{width:115.410000px;}
.w3{width:120.540000px;}
.w4{width:130.230000px;}
.wf{width:134.460000px;}
.wb{width:134.940000px;}
.w6{width:159.150000px;}
.w10{width:171.720000px;}
.wd{width:216.360000px;}
.w12{width:222.570000px;}
.w7{width:250.560000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x1d{left:111.239987px;}
.xe{left:167.700000px;}
.x6{left:173.639987px;}
.x15{left:184.890000px;}
.x8{left:190.110000px;}
.x1c{left:196.319987px;}
.xd{left:199.739987px;}
.x14{left:201.359987px;}
.x2{left:202.799987px;}
.x1a{left:214.859987px;}
.xf{left:280.650000px;}
.x16{left:320.070000px;}
.x9{left:321.150000px;}
.x10{left:395.940000px;}
.xa{left:414.030000px;}
.x4{left:446.609987px;}
.x17{left:492.600000px;}
.x11{left:531.690000px;}
.xb{left:573.900000px;}
.x18{left:601.890000px;}
.x12{left:608.100000px;}
.x19{left:630.059987px;}
.xc{left:640.139987px;}
.x13{left:652.559987px;}
.x1b{left:679.559987px;}
.x5{left:749.309987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls12{letter-spacing:-0.216533pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.142933pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.043520pt;}
.ls1a{letter-spacing:-0.034560pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.ls14{letter-spacing:0.060800pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsb{letter-spacing:0.103467pt;}
.ls19{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls16{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.176000pt;}
.ls18{letter-spacing:0.177067pt;}
.ls15{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls4{letter-spacing:9.600000pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws10{word-spacing:-11.933867pt;}
.ws13{word-spacing:-11.932800pt;}
.ws8{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.884267pt;}
.ws3{word-spacing:-11.860267pt;}
.wse{word-spacing:-11.817600pt;}
.ws6{word-spacing:-11.800533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.722240pt;}
.wsf{word-spacing:-11.713280pt;}
.wsb{word-spacing:-11.613867pt;}
.ws9{word-spacing:-11.590933pt;}
.wsc{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._d{margin-left:-3.473600pt;}
._4{margin-left:-2.298134pt;}
._0{margin-left:-0.986667pt;}
._1{width:0.975040pt;}
._2{width:2.672000pt;}
._3{width:4.107840pt;}
._6{width:5.295363pt;}
._5{width:6.252266pt;}
._10{width:7.170989pt;}
._c{width:8.074987pt;}
._9{width:9.458666pt;}
._a{width:10.848534pt;}
._b{width:12.980707pt;}
._8{width:14.034985pt;}
._7{width:15.177067pt;}
._26{width:16.566293pt;}
._27{width:17.508055pt;}
._11{width:18.490240pt;}
._12{width:19.665920pt;}
._13{width:21.001920pt;}
._14{width:21.963840pt;}
._19{width:22.979200pt;}
._1f{width:24.422080pt;}
._2b{width:25.758080pt;}
._16{width:26.720000pt;}
._f{width:27.812797pt;}
._e{width:28.750934pt;}
._2d{width:31.476160pt;}
._2e{width:32.544960pt;}
._30{width:33.453440pt;}
._2f{width:37.087360pt;}
._1c{width:38.102720pt;}
._1b{width:39.732160pt;}
._24{width:46.546240pt;}
._15{width:49.912960pt;}
._25{width:54.348480pt;}
._23{width:63.807360pt;}
._2c{width:68.967040pt;}
._1d{width:70.968320pt;}
._17{width:74.762560pt;}
._18{width:80.451947pt;}
._1e{width:84.168000pt;}
._2a{width:90.901440pt;}
._1a{width:93.787200pt;}
._22{width:100.520640pt;}
._21{width:114.094400pt;}
._28{width:116.606080pt;}
._29{width:148.937280pt;}
._20{width:253.465920pt;}
.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;}
.y9a{bottom:6.960000pt;}
.y96{bottom:7.040000pt;}
.yc8{bottom:22.560000pt;}
.y95{bottom:22.640000pt;}
.y99{bottom:38.240000pt;}
.y9c{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y1d4{bottom:103.626667pt;}
.y13c{bottom:106.186667pt;}
.yec{bottom:106.586667pt;}
.y12e{bottom:109.146667pt;}
.yc7{bottom:112.826667pt;}
.y93{bottom:114.266667pt;}
.y148{bottom:115.466667pt;}
.y58{bottom:118.506667pt;}
.y1d3{bottom:119.226667pt;}
.y13b{bottom:121.866667pt;}
.yeb{bottom:122.186667pt;}
.y112{bottom:124.426667pt;}
.y12d{bottom:124.746667pt;}
.y92{bottom:129.866667pt;}
.ybc{bottom:130.106667pt;}
.y27{bottom:130.906667pt;}
.y147{bottom:131.146667pt;}
.y57{bottom:134.106667pt;}
.yea{bottom:137.866667pt;}
.y111{bottom:140.106667pt;}
.y184{bottom:142.506667pt;}
.y1af{bottom:142.666667pt;}
.y1d2{bottom:142.826667pt;}
.y91{bottom:145.466667pt;}
.ybb{bottom:145.786667pt;}
.y26{bottom:146.506667pt;}
.ye9{bottom:153.466667pt;}
.y11d{bottom:153.866667pt;}
.y110{bottom:155.706667pt;}
.y12c{bottom:156.426667pt;}
.y183{bottom:158.106667pt;}
.y1ae{bottom:158.266667pt;}
.y1d1{bottom:158.506667pt;}
.y164{bottom:161.066667pt;}
.y90{bottom:161.146667pt;}
.yba{bottom:161.386667pt;}
.y146{bottom:162.746667pt;}
.y56{bottom:165.786667pt;}
.yc6{bottom:168.346667pt;}
.ye8{bottom:169.066667pt;}
.y11c{bottom:169.466667pt;}
.y10f{bottom:171.386667pt;}
.y12b{bottom:172.026667pt;}
.y182{bottom:173.786667pt;}
.y1ad{bottom:173.866667pt;}
.y1d0{bottom:174.106667pt;}
.yb9{bottom:176.986667pt;}
.y13a{bottom:177.066667pt;}
.y25{bottom:178.106667pt;}
.y145{bottom:178.426667pt;}
.y55{bottom:181.386667pt;}
.y163{bottom:184.746667pt;}
.y11b{bottom:185.066667pt;}
.y12a{bottom:187.626667pt;}
.y181{bottom:189.386667pt;}
.y8f{bottom:192.746667pt;}
.y24{bottom:193.786667pt;}
.y144{bottom:194.026667pt;}
.y54{bottom:196.986667pt;}
.y1ac{bottom:197.546667pt;}
.y1cf{bottom:197.786667pt;}
.y10e{bottom:200.666667pt;}
.ye7{bottom:200.746667pt;}
.y129{bottom:203.306667pt;}
.y180{bottom:204.986667pt;}
.y139{bottom:208.346667pt;}
.y8e{bottom:208.426667pt;}
.yb8{bottom:208.666667pt;}
.y23{bottom:209.386667pt;}
.y143{bottom:209.626667pt;}
.y53{bottom:212.666667pt;}
.y1ab{bottom:213.146667pt;}
.y1ce{bottom:213.386667pt;}
.ye6{bottom:216.346667pt;}
.y128{bottom:218.906667pt;}
.yc5{bottom:223.946667pt;}
.y8d{bottom:224.026667pt;}
.yb7{bottom:224.266667pt;}
.y22{bottom:225.066667pt;}
.ye5{bottom:231.946667pt;}
.y17f{bottom:236.666667pt;}
.y1aa{bottom:236.826667pt;}
.y1cd{bottom:236.986667pt;}
.y8c{bottom:239.626667pt;}
.yb6{bottom:239.946667pt;}
.y21{bottom:240.666667pt;}
.y142{bottom:241.306667pt;}
.y52{bottom:244.266667pt;}
.ye4{bottom:247.626667pt;}
.y11a{bottom:247.946667pt;}
.y127{bottom:250.586667pt;}
.y17e{bottom:252.266667pt;}
.y1a9{bottom:252.426667pt;}
.y1cc{bottom:252.666667pt;}
.yb5{bottom:255.546667pt;}
.y138{bottom:255.626667pt;}
.y10d{bottom:256.186667pt;}
.y20{bottom:256.266667pt;}
.y141{bottom:256.906667pt;}
.y51{bottom:259.946667pt;}
.y119{bottom:263.626667pt;}
.y126{bottom:266.186667pt;}
.y17d{bottom:267.946667pt;}
.y1cb{bottom:268.266667pt;}
.yb4{bottom:271.146667pt;}
.ye3{bottom:271.226667pt;}
.y8b{bottom:271.306667pt;}
.y50{bottom:275.546667pt;}
.y1a8{bottom:276.026667pt;}
.y118{bottom:279.226667pt;}
.y75{bottom:279.386667pt;}
.yc4{bottom:279.466667pt;}
.y1f{bottom:279.946667pt;}
.y125{bottom:281.786667pt;}
.y17c{bottom:283.546667pt;}
.yb3{bottom:286.826667pt;}
.y8a{bottom:286.906667pt;}
.y140{bottom:288.586667pt;}
.y4f{bottom:291.146667pt;}
.y1a7{bottom:291.706667pt;}
.y1ca{bottom:291.946667pt;}
.y117{bottom:294.906667pt;}
.y17b{bottom:299.146667pt;}
.y89{bottom:302.586667pt;}
.ye2{bottom:302.906667pt;}
.y124{bottom:305.466667pt;}
.y4e{bottom:306.826667pt;}
.y1c9{bottom:307.546667pt;}
.y162{bottom:310.506667pt;}
.y74{bottom:310.906667pt;}
.y10c{bottom:311.786667pt;}
.y1e{bottom:311.866667pt;}
.y1a6{bottom:315.306667pt;}
.y13f{bottom:317.226667pt;}
.y88{bottom:318.186667pt;}
.yb2{bottom:318.426667pt;}
.ye1{bottom:318.506667pt;}
.yc3{bottom:319.386667pt;}
.y4d{bottom:322.426667pt;}
.y1e6{bottom:323.146667pt;}
.y161{bottom:326.106667pt;}
.y73{bottom:326.506667pt;}
.y17a{bottom:330.826667pt;}
.y1a5{bottom:330.986667pt;}
.y1c8{bottom:331.146667pt;}
.yb1{bottom:334.106667pt;}
.y123{bottom:337.066667pt;}
.y1e5{bottom:338.826667pt;}
.y160{bottom:341.786667pt;}
.y72{bottom:342.106667pt;}
.y4c{bottom:346.106667pt;}
.y179{bottom:346.426667pt;}
.y1c7{bottom:346.826667pt;}
.yb0{bottom:349.706667pt;}
.y87{bottom:349.786667pt;}
.y116{bottom:350.106667pt;}
.y122{bottom:352.666667pt;}
.y1a4{bottom:354.586667pt;}
.y1d{bottom:354.746667pt;}
.y71{bottom:357.786667pt;}
.y178{bottom:362.106667pt;}
.y1e4{bottom:362.426667pt;}
.yaf{bottom:365.306667pt;}
.y137{bottom:365.386667pt;}
.y86{bottom:365.466667pt;}
.ye0{bottom:365.786667pt;}
.y10b{bottom:367.306667pt;}
.y1a3{bottom:370.186667pt;}
.y1c6{bottom:370.426667pt;}
.y1c{bottom:370.666667pt;}
.y15f{bottom:373.386667pt;}
.yc2{bottom:374.986667pt;}
.y102{bottom:377.306667pt;}
.y4b{bottom:377.706667pt;}
.y1e3{bottom:378.106667pt;}
.yae{bottom:380.986667pt;}
.y85{bottom:381.066667pt;}
.ydf{bottom:381.386667pt;}
.y121{bottom:384.346667pt;}
.y1c5{bottom:386.106667pt;}
.y15e{bottom:389.066667pt;}
.y70{bottom:389.386667pt;}
.y101{bottom:392.986667pt;}
.y4a{bottom:393.306667pt;}
.y1e2{bottom:393.706667pt;}
.y1a2{bottom:393.866667pt;}
.y84{bottom:396.666667pt;}
.yde{bottom:397.066667pt;}
.y120{bottom:399.946667pt;}
.y1b{bottom:403.546667pt;}
.y15d{bottom:404.666667pt;}
.y6f{bottom:405.066667pt;}
.y100{bottom:408.586667pt;}
.y177{bottom:409.306667pt;}
.y1a1{bottom:409.466667pt;}
.y1c4{bottom:409.706667pt;}
.yad{bottom:412.586667pt;}
.y136{bottom:412.666667pt;}
.y1a{bottom:419.253333pt;}
.y15c{bottom:420.293333pt;}
.y6e{bottom:420.693333pt;}
.y10a{bottom:422.933333pt;}
.yff{bottom:424.293333pt;}
.y49{bottom:425.013333pt;}
.y1c3{bottom:425.333333pt;}
.yac{bottom:428.293333pt;}
.y83{bottom:428.373333pt;}
.ydd{bottom:428.693333pt;}
.yc1{bottom:430.533333pt;}
.y11f{bottom:431.653333pt;}
.y1e1{bottom:433.013333pt;}
.y1a0{bottom:433.413333pt;}
.y19{bottom:434.853333pt;}
.y6d{bottom:436.293333pt;}
.y48{bottom:440.613333pt;}
.y1c2{bottom:441.013333pt;}
.yab{bottom:443.893333pt;}
.y82{bottom:443.973333pt;}
.ydc{bottom:444.293333pt;}
.y1e0{bottom:448.613333pt;}
.y18{bottom:450.533333pt;}
.y6c{bottom:451.973333pt;}
.yfe{bottom:455.893333pt;}
.y47{bottom:456.293333pt;}
.yaa{bottom:459.493333pt;}
.y135{bottom:459.573333pt;}
.y81{bottom:459.653333pt;}
.ydb{bottom:459.973333pt;}
.y11e{bottom:460.293333pt;}
.y1df{bottom:464.293333pt;}
.y1c1{bottom:464.613333pt;}
.y17{bottom:466.133333pt;}
.y15b{bottom:467.573333pt;}
.yfd{bottom:471.493333pt;}
.y46{bottom:471.893333pt;}
.ya9{bottom:475.173333pt;}
.y80{bottom:475.253333pt;}
.yda{bottom:475.573333pt;}
.y19f{bottom:476.293333pt;}
.y109{bottom:478.533333pt;}
.y1c0{bottom:480.293333pt;}
.y16{bottom:481.733333pt;}
.y15a{bottom:483.253333pt;}
.y6b{bottom:483.573333pt;}
.yc0{bottom:486.133333pt;}
.yfc{bottom:487.173333pt;}
.y45{bottom:487.493333pt;}
.y1de{bottom:487.893333pt;}
.ya8{bottom:490.773333pt;}
.y7f{bottom:490.853333pt;}
.y115{bottom:491.253333pt;}
.y19e{bottom:491.973333pt;}
.y15{bottom:497.413333pt;}
.y159{bottom:498.853333pt;}
.y6a{bottom:499.253333pt;}
.y176{bottom:503.493333pt;}
.y1bf{bottom:503.893333pt;}
.y134{bottom:506.853333pt;}
.yd9{bottom:507.253333pt;}
.y19d{bottom:507.573333pt;}
.y14{bottom:513.013333pt;}
.y158{bottom:514.453333pt;}
.y69{bottom:514.853333pt;}
.yfb{bottom:518.773333pt;}
.y44{bottom:519.173333pt;}
.y1be{bottom:519.493333pt;}
.ya7{bottom:522.453333pt;}
.y7e{bottom:522.533333pt;}
.yd8{bottom:522.853333pt;}
.y19c{bottom:523.253333pt;}
.y13{bottom:528.693333pt;}
.y68{bottom:530.453333pt;}
.yfa{bottom:534.453333pt;}
.y43{bottom:534.773333pt;}
.y1bd{bottom:535.173333pt;}
.ya6{bottom:538.053333pt;}
.y7d{bottom:538.133333pt;}
.yd7{bottom:538.453333pt;}
.y1dd{bottom:542.773333pt;}
.y12{bottom:544.293333pt;}
.y67{bottom:546.133333pt;}
.yf9{bottom:550.053333pt;}
.y42{bottom:550.453333pt;}
.y108{bottom:553.013333pt;}
.ya5{bottom:553.653333pt;}
.y7c{bottom:553.813333pt;}
.y114{bottom:554.133333pt;}
.y19b{bottom:554.853333pt;}
.y1dc{bottom:558.453333pt;}
.y1bc{bottom:558.773333pt;}
.y11{bottom:559.893333pt;}
.ybf{bottom:560.693333pt;}
.y157{bottom:561.733333pt;}
.yf8{bottom:565.653333pt;}
.y41{bottom:566.053333pt;}
.y7b{bottom:569.413333pt;}
.y113{bottom:569.733333pt;}
.yd6{bottom:570.133333pt;}
.y19a{bottom:570.453333pt;}
.y175{bottom:574.053333pt;}
.y1bb{bottom:574.453333pt;}
.y10{bottom:575.573333pt;}
.ya4{bottom:577.333333pt;}
.y156{bottom:577.413333pt;}
.y66{bottom:577.733333pt;}
.yf7{bottom:581.333333pt;}
.y40{bottom:581.653333pt;}
.y107{bottom:584.693333pt;}
.y133{bottom:585.413333pt;}
.yd5{bottom:585.733333pt;}
.y199{bottom:586.133333pt;}
.y1ba{bottom:590.053333pt;}
.yf{bottom:591.173333pt;}
.ybe{bottom:592.293333pt;}
.y7a{bottom:593.013333pt;}
.y65{bottom:593.413333pt;}
.y1db{bottom:597.653333pt;}
.y106{bottom:600.293333pt;}
.y132{bottom:601.013333pt;}
.yd4{bottom:601.413333pt;}
.y198{bottom:601.733333pt;}
.y174{bottom:605.653333pt;}
.ye{bottom:606.853333pt;}
.ya3{bottom:608.933333pt;}
.y64{bottom:609.013333pt;}
.yf6{bottom:612.933333pt;}
.y3f{bottom:613.333333pt;}
.y1b9{bottom:613.653333pt;}
.y105{bottom:615.973333pt;}
.y131{bottom:616.613333pt;}
.yd3{bottom:617.013333pt;}
.ybd{bottom:620.933333pt;}
.y173{bottom:621.333333pt;}
.yd{bottom:622.453333pt;}
.y63{bottom:624.613333pt;}
.y79{bottom:624.693333pt;}
.yf5{bottom:628.613333pt;}
.y3e{bottom:628.933333pt;}
.y1b8{bottom:629.333333pt;}
.yd2{bottom:632.613333pt;}
.y197{bottom:633.413333pt;}
.y172{bottom:636.933333pt;}
.yc{bottom:638.053333pt;}
.ya2{bottom:640.213333pt;}
.y62{bottom:640.293333pt;}
.yf4{bottom:644.213333pt;}
.y3d{bottom:644.613333pt;}
.y1b7{bottom:644.933333pt;}
.y104{bottom:647.573333pt;}
.yd1{bottom:648.293333pt;}
.y196{bottom:649.013333pt;}
.y1da{bottom:652.613333pt;}
.yb{bottom:653.733333pt;}
.ya1{bottom:655.813333pt;}
.y155{bottom:655.893333pt;}
.y78{bottom:655.973333pt;}
.y3c{bottom:660.213333pt;}
.y61{bottom:663.893333pt;}
.y195{bottom:664.613333pt;}
.yf3{bottom:667.813333pt;}
.y13e{bottom:668.213333pt;}
.y171{bottom:668.613333pt;}
.ya{bottom:669.333333pt;}
.y130{bottom:672.213333pt;}
.y3b{bottom:675.813333pt;}
.y103{bottom:676.213333pt;}
.y154{bottom:679.573333pt;}
.yd0{bottom:679.893333pt;}
.y194{bottom:680.293333pt;}
.y13d{bottom:683.813333pt;}
.y170{bottom:684.213333pt;}
.ya0{bottom:687.493333pt;}
.y77{bottom:687.573333pt;}
.y3a{bottom:691.493333pt;}
.y1d9{bottom:691.813333pt;}
.y9{bottom:693.253333pt;}
.ycf{bottom:695.573333pt;}
.y60{bottom:695.813333pt;}
.y193{bottom:695.893333pt;}
.yf2{bottom:699.493333pt;}
.y16f{bottom:699.813333pt;}
.y9f{bottom:703.093333pt;}
.y1b6{bottom:707.813333pt;}
.yce{bottom:711.173333pt;}
.y153{bottom:711.413333pt;}
.y192{bottom:711.573333pt;}
.yf1{bottom:715.093333pt;}
.y16e{bottom:715.493333pt;}
.y76{bottom:716.213333pt;}
.y9e{bottom:718.693333pt;}
.y39{bottom:723.093333pt;}
.y1b5{bottom:723.493333pt;}
.ycd{bottom:726.773333pt;}
.y12f{bottom:730.693333pt;}
.y16d{bottom:731.093333pt;}
.y8{bottom:736.213333pt;}
.y38{bottom:738.693333pt;}
.y1b4{bottom:739.093333pt;}
.ycc{bottom:742.453333pt;}
.y191{bottom:743.173333pt;}
.yf0{bottom:746.693333pt;}
.y9d{bottom:748.053333pt;}
.y37{bottom:754.373333pt;}
.y1b3{bottom:754.693333pt;}
.y190{bottom:758.773333pt;}
.yef{bottom:762.373333pt;}
.y16c{bottom:762.693333pt;}
.ycb{bottom:766.053333pt;}
.y7{bottom:767.813333pt;}
.y36{bottom:769.973333pt;}
.y1d8{bottom:770.373333pt;}
.y18f{bottom:774.453333pt;}
.yee{bottom:777.973333pt;}
.y16b{bottom:778.373333pt;}
.y5f{bottom:785.653333pt;}
.y1d7{bottom:785.973333pt;}
.y18e{bottom:790.053333pt;}
.y35{bottom:793.653333pt;}
.y16a{bottom:793.973333pt;}
.yca{bottom:797.973333pt;}
.y6{bottom:799.653333pt;}
.y5e{bottom:801.253333pt;}
.y9b{bottom:803.573333pt;}
.y18d{bottom:805.733333pt;}
.y169{bottom:809.653333pt;}
.y5d{bottom:816.853333pt;}
.y152{bottom:817.253333pt;}
.y1b2{bottom:817.653333pt;}
.y18c{bottom:821.333333pt;}
.y34{bottom:825.253333pt;}
.y5{bottom:831.653333pt;}
.y5c{bottom:832.533333pt;}
.y151{bottom:832.853333pt;}
.y1b1{bottom:833.253333pt;}
.y33{bottom:840.853333pt;}
.y150{bottom:848.533333pt;}
.y1d6{bottom:848.853333pt;}
.y18b{bottom:852.933333pt;}
.y5b{bottom:856.133333pt;}
.y32{bottom:856.533333pt;}
.y168{bottom:856.853333pt;}
.y98{bottom:859.173333pt;}
.y4{bottom:863.733333pt;}
.y1d5{bottom:864.533333pt;}
.y18a{bottom:868.613333pt;}
.y31{bottom:872.133333pt;}
.y167{bottom:872.533333pt;}
.y14f{bottom:880.133333pt;}
.y189{bottom:884.213333pt;}
.y5a{bottom:887.813333pt;}
.y166{bottom:888.133333pt;}
.y14e{bottom:895.813333pt;}
.y3{bottom:897.760000pt;}
.y188{bottom:899.840000pt;}
.y59{bottom:903.440000pt;}
.y30{bottom:903.840000pt;}
.y14d{bottom:911.440000pt;}
.y97{bottom:914.720000pt;}
.y187{bottom:915.520000pt;}
.y2f{bottom:919.440000pt;}
.y1b0{bottom:927.440000pt;}
.y186{bottom:931.120000pt;}
.y2e{bottom:935.040000pt;}
.y14c{bottom:943.040000pt;}
.y2d{bottom:950.720000pt;}
.y165{bottom:951.040000pt;}
.y94{bottom:954.640000pt;}
.y185{bottom:955.040000pt;}
.y14b{bottom:958.720000pt;}
.y2c{bottom:966.320000pt;}
.yed{bottom:966.720000pt;}
.y14a{bottom:974.320000pt;}
.yc9{bottom:982.320000pt;}
.y149{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hb{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h7{height:54.187500pt;}
.he{height:54.880000pt;}
.hc{height:54.906667pt;}
.ha{height:54.927899pt;}
.hd{height:54.960000pt;}
.hf{height:54.986667pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:67.280000pt;}
.w5{width:81.920000pt;}
.w8{width:87.226667pt;}
.w11{width:96.426667pt;}
.w9{width:99.680000pt;}
.wa{width:101.840000pt;}
.we{width:102.586667pt;}
.w3{width:107.146667pt;}
.w4{width:115.760000pt;}
.wf{width:119.520000pt;}
.wb{width:119.946667pt;}
.w6{width:141.466667pt;}
.w10{width:152.640000pt;}
.wd{width:192.320000pt;}
.w12{width:197.840000pt;}
.w7{width:222.720000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1d{left:98.879988pt;}
.xe{left:149.066667pt;}
.x6{left:154.346655pt;}
.x15{left:164.346667pt;}
.x8{left:168.986667pt;}
.x1c{left:174.506655pt;}
.xd{left:177.546655pt;}
.x14{left:178.986655pt;}
.x2{left:180.266655pt;}
.x1a{left:190.986655pt;}
.xf{left:249.466667pt;}
.x16{left:284.506667pt;}
.x9{left:285.466667pt;}
.x10{left:351.946667pt;}
.xa{left:368.026667pt;}
.x4{left:396.986655pt;}
.x17{left:437.866667pt;}
.x11{left:472.613333pt;}
.xb{left:510.133333pt;}
.x18{left:535.013333pt;}
.x12{left:540.533333pt;}
.x19{left:560.053322pt;}
.xc{left:569.013322pt;}
.x13{left:580.053322pt;}
.x1b{left:604.053322pt;}
.x5{left:666.053322pt;}
.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; }
  