
    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_5a9e995ce26ace87329b314c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_5a83c54fe58adc9355474c87.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_b7ae5e1121fdeccbe4db080e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_09fa6ff66e61378668d90648.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942383;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_1b717bc916ac3ad7bea80e92.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-0.960000px;}
.ls29{letter-spacing:-0.786000px;}
.ls12{letter-spacing:-0.696000px;}
.lse{letter-spacing:-0.579600px;}
.ls20{letter-spacing:-0.544800px;}
.ls17{letter-spacing:-0.533400px;}
.ls4{letter-spacing:-0.463800px;}
.lsf{letter-spacing:-0.431400px;}
.lsa{letter-spacing:-0.414000px;}
.ls15{letter-spacing:-0.248400px;}
.ls3{letter-spacing:-0.132600px;}
.ls9{letter-spacing:-0.115800px;}
.ls25{letter-spacing:-0.112200px;}
.ls24{letter-spacing:-0.067200px;}
.ls1a{letter-spacing:-0.064800px;}
.ls26{letter-spacing:-0.061200px;}
.lsb{letter-spacing:-0.058320px;}
.ls28{letter-spacing:-0.038160px;}
.ls16{letter-spacing:-0.032400px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.038880px;}
.ls21{letter-spacing:0.097200px;}
.ls23{letter-spacing:0.100800px;}
.ls1c{letter-spacing:0.140400px;}
.ls5{letter-spacing:0.150000px;}
.ls14{letter-spacing:0.175200px;}
.ls8{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.186600px;}
.ls7{letter-spacing:0.190200px;}
.ls19{letter-spacing:0.243600px;}
.ls13{letter-spacing:0.306000px;}
.ls6{letter-spacing:0.417000px;}
.ls2c{letter-spacing:0.479520px;}
.ls1e{letter-spacing:0.513600px;}
.lsd{letter-spacing:0.617760px;}
.ls22{letter-spacing:0.637200px;}
.ls11{letter-spacing:0.780000px;}
.ls1b{letter-spacing:1.026000px;}
.ls1f{letter-spacing:2.106720px;}
.ls1d{letter-spacing:5.706720px;}
.ls2b{letter-spacing:12.186720px;}
.ls27{letter-spacing:17.946720px;}
.lsc{letter-spacing:21.546720px;}
.ls0{letter-spacing:38.106720px;}
.ls2a{letter-spacing:42.426720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsd{word-spacing:-13.749360px;}
.wsa{word-spacing:-13.692360px;}
.wsb{word-spacing:-13.680960px;}
.wse{word-spacing:-13.606560px;}
.ws9{word-spacing:-13.505760px;}
.wsc{word-spacing:-13.473360px;}
.ws10{word-spacing:-13.467600px;}
.ws7{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.393560px;}
.ws6{word-spacing:-13.389960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._1b{margin-left:-533.278560px;}
._1c{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._11{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._15{margin-left:-222.774000px;}
._1f{margin-left:-207.538560px;}
._f{margin-left:-202.866240px;}
._16{margin-left:-200.514720px;}
._1e{margin-left:-190.074240px;}
._22{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._21{margin-left:-145.036560px;}
._c{margin-left:-134.192160px;}
._1d{margin-left:-133.011360px;}
._10{margin-left:-115.522560px;}
._20{margin-left:-109.621680px;}
._1a{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._19{margin-left:-86.399760px;}
._18{margin-left:-83.520000px;}
._12{margin-left:-81.351360px;}
._14{margin-left:-66.703680px;}
._13{margin-left:-49.123920px;}
._17{margin-left:-32.468640px;}
._24{margin-left:-4.827600px;}
._23{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._26{width:1.029360px;}
._28{width:2.061360px;}
._29{width:3.599520px;}
._2d{width:4.693680px;}
._2c{width:5.796720px;}
._32{width:6.818880px;}
._2e{width:7.888320px;}
._38{width:8.890800px;}
._33{width:9.966480px;}
._34{width:11.036160px;}
._2f{width:12.430080px;}
._2a{width:15.343200px;}
._37{width:16.434000px;}
._31{width:18.259440px;}
._30{width:19.541520px;}
._36{width:21.394080px;}
._35{width:22.823280px;}
._3c{width:25.243440px;}
._2b{width:26.699280px;}
._3a{width:35.258400px;}
._25{width:41.496480px;}
._27{width:43.026240px;}
._39{width:62.688240px;}
._3b{width:131.352480px;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:6.660000px;}
.yba{bottom:8.100000px;}
.yc5{bottom:8.145000px;}
.yc0{bottom:8.280000px;}
.y106{bottom:10.440000px;}
.y101{bottom:10.620000px;}
.y104{bottom:14.580000px;}
.y12d{bottom:17.100000px;}
.yea{bottom:17.280000px;}
.yb8{bottom:18.900000px;}
.yd3{bottom:20.160000px;}
.ye9{bottom:21.060000px;}
.y10b{bottom:22.320000px;}
.yeb{bottom:27.720000px;}
.yc2{bottom:32.625000px;}
.yc8{bottom:34.200000px;}
.y103{bottom:35.640000px;}
.y12a{bottom:38.160000px;}
.y10a{bottom:43.380000px;}
.ybc{bottom:44.820000px;}
.y12b{bottom:48.780000px;}
.yc7{bottom:55.260000px;}
.ycd{bottom:56.880000px;}
.y12c{bottom:59.265000px;}
.y6{bottom:61.380000px;}
.y109{bottom:64.440000px;}
.y12e{bottom:69.885000px;}
.yb4{bottom:92.340000px;}
.y136{bottom:92.700000px;}
.y8e{bottom:95.220000px;}
.y102{bottom:97.200000px;}
.y62{bottom:99.900000px;}
.y56{bottom:104.220000px;}
.yd2{bottom:106.020000px;}
.y30{bottom:113.220000px;}
.yb3{bottom:113.400000px;}
.y135{bottom:113.760000px;}
.y8d{bottom:116.280000px;}
.y150{bottom:120.060000px;}
.y61{bottom:120.960000px;}
.y55{bottom:125.280000px;}
.yd4{bottom:130.320000px;}
.y151{bottom:130.860000px;}
.y105{bottom:134.100000px;}
.y2f{bottom:134.280000px;}
.yb2{bottom:134.460000px;}
.y134{bottom:134.820000px;}
.y8c{bottom:137.340000px;}
.y14f{bottom:140.940000px;}
.y60{bottom:142.020000px;}
.y54{bottom:146.340000px;}
.ycc{bottom:154.650000px;}
.y2e{bottom:155.370000px;}
.yb1{bottom:155.550000px;}
.y133{bottom:157.350000px;}
.y8b{bottom:158.430000px;}
.y14e{bottom:162.030000px;}
.y5f{bottom:163.110000px;}
.y53{bottom:167.430000px;}
.y100{bottom:170.850000px;}
.y2d{bottom:176.430000px;}
.yb0{bottom:176.610000px;}
.yd1{bottom:179.130000px;}
.y8a{bottom:179.490000px;}
.y14d{bottom:183.090000px;}
.y5e{bottom:184.170000px;}
.y52{bottom:188.490000px;}
.y132{bottom:194.250000px;}
.y2c{bottom:197.490000px;}
.yaf{bottom:197.670000px;}
.y89{bottom:200.550000px;}
.yd0{bottom:203.430000px;}
.y14c{bottom:204.150000px;}
.y5d{bottom:205.230000px;}
.yff{bottom:206.850000px;}
.y51{bottom:209.550000px;}
.y2b{bottom:218.550000px;}
.yae{bottom:218.730000px;}
.y88{bottom:221.610000px;}
.y14b{bottom:225.210000px;}
.y5c{bottom:226.290000px;}
.ycf{bottom:227.910000px;}
.y50{bottom:230.610000px;}
.y131{bottom:230.970000px;}
.y2a{bottom:239.610000px;}
.yad{bottom:239.790000px;}
.y87{bottom:242.670000px;}
.y14a{bottom:246.270000px;}
.y5b{bottom:247.350000px;}
.yfe{bottom:248.970000px;}
.y4f{bottom:251.670000px;}
.yce{bottom:252.210000px;}
.y29{bottom:260.670000px;}
.y86{bottom:263.730000px;}
.y149{bottom:267.330000px;}
.y130{bottom:267.870000px;}
.y5a{bottom:268.410000px;}
.yac{bottom:269.850000px;}
.yfd{bottom:270.030000px;}
.y4e{bottom:272.730000px;}
.yc6{bottom:276.510000px;}
.y28{bottom:281.730000px;}
.y85{bottom:284.790000px;}
.y148{bottom:288.390000px;}
.y59{bottom:289.470000px;}
.yab{bottom:290.910000px;}
.yfc{bottom:291.090000px;}
.y98{bottom:293.790000px;}
.ycb{bottom:300.990000px;}
.y27{bottom:302.790000px;}
.y12f{bottom:304.590000px;}
.y84{bottom:305.850000px;}
.y147{bottom:309.450000px;}
.y58{bottom:310.530000px;}
.yaa{bottom:311.970000px;}
.yfb{bottom:312.150000px;}
.y97{bottom:314.850000px;}
.y26{bottom:323.850000px;}
.yca{bottom:325.290000px;}
.y83{bottom:326.910000px;}
.y57{bottom:327.450000px;}
.y146{bottom:330.510000px;}
.ya9{bottom:333.030000px;}
.yfa{bottom:333.210000px;}
.y96{bottom:335.910000px;}
.y129{bottom:341.490000px;}
.y25{bottom:344.910000px;}
.y82{bottom:347.970000px;}
.yc9{bottom:349.770000px;}
.y145{bottom:351.570000px;}
.ya8{bottom:354.090000px;}
.yf9{bottom:354.270000px;}
.y95{bottom:356.970000px;}
.y24{bottom:365.970000px;}
.y81{bottom:369.030000px;}
.yc1{bottom:374.070000px;}
.ya7{bottom:375.150000px;}
.yf8{bottom:375.330000px;}
.y94{bottom:378.030000px;}
.y144{bottom:381.630000px;}
.y23{bottom:387.030000px;}
.y80{bottom:390.090000px;}
.ya6{bottom:396.210000px;}
.yf7{bottom:396.390000px;}
.yc4{bottom:398.550000px;}
.y93{bottom:399.090000px;}
.y143{bottom:402.735000px;}
.y22{bottom:408.135000px;}
.y7f{bottom:411.195000px;}
.ya5{bottom:417.315000px;}
.yf6{bottom:417.495000px;}
.y92{bottom:420.195000px;}
.yc3{bottom:422.895000px;}
.y142{bottom:423.795000px;}
.y21{bottom:429.195000px;}
.y7e{bottom:432.255000px;}
.ya4{bottom:438.195000px;}
.yf5{bottom:438.555000px;}
.y128{bottom:440.715000px;}
.y91{bottom:441.255000px;}
.y141{bottom:444.855000px;}
.ybb{bottom:447.195000px;}
.y20{bottom:450.255000px;}
.y7d{bottom:453.315000px;}
.ya3{bottom:459.255000px;}
.yf4{bottom:459.615000px;}
.y127{bottom:461.775000px;}
.y90{bottom:462.315000px;}
.y140{bottom:465.915000px;}
.y1f{bottom:471.315000px;}
.ybf{bottom:471.675000px;}
.y7c{bottom:474.375000px;}
.ya2{bottom:480.315000px;}
.yf3{bottom:480.675000px;}
.y126{bottom:482.655000px;}
.y8f{bottom:483.375000px;}
.y13f{bottom:486.975000px;}
.y1e{bottom:492.375000px;}
.ybe{bottom:495.975000px;}
.ya1{bottom:501.375000px;}
.yf2{bottom:501.735000px;}
.y125{bottom:503.715000px;}
.y7b{bottom:504.435000px;}
.y13e{bottom:508.035000px;}
.y1d{bottom:513.435000px;}
.ybd{bottom:520.455000px;}
.ya0{bottom:522.435000px;}
.yf1{bottom:522.795000px;}
.y124{bottom:524.775000px;}
.y7a{bottom:525.495000px;}
.y13d{bottom:529.095000px;}
.y1c{bottom:534.495000px;}
.y9f{bottom:543.495000px;}
.yf0{bottom:543.855000px;}
.yb7{bottom:544.755000px;}
.y123{bottom:545.835000px;}
.y79{bottom:546.555000px;}
.y13c{bottom:550.155000px;}
.y1b{bottom:555.555000px;}
.y9e{bottom:564.555000px;}
.yef{bottom:564.915000px;}
.y122{bottom:566.895000px;}
.y78{bottom:567.615000px;}
.yb9{bottom:569.055000px;}
.y13b{bottom:571.215000px;}
.y1a{bottom:576.615000px;}
.y9d{bottom:585.615000px;}
.yee{bottom:587.595000px;}
.y121{bottom:587.955000px;}
.y77{bottom:588.675000px;}
.yb5{bottom:590.655000px;}
.y13a{bottom:592.275000px;}
.y4d{bottom:597.675000px;}
.y19{bottom:600.015000px;}
.y9c{bottom:606.675000px;}
.y120{bottom:609.015000px;}
.y76{bottom:609.735000px;}
.y139{bottom:613.335000px;}
.y4c{bottom:618.735000px;}
.yed{bottom:624.315000px;}
.y9b{bottom:627.735000px;}
.y18{bottom:629.895000px;}
.y11f{bottom:630.075000px;}
.y75{bottom:630.795000px;}
.y138{bottom:634.395000px;}
.y4b{bottom:639.795000px;}
.y9a{bottom:648.795000px;}
.y17{bottom:650.985000px;}
.y11e{bottom:651.165000px;}
.y137{bottom:651.525000px;}
.y74{bottom:651.885000px;}
.y4a{bottom:660.885000px;}
.yec{bottom:661.245000px;}
.y99{bottom:665.925000px;}
.y16{bottom:672.045000px;}
.y11d{bottom:672.225000px;}
.y73{bottom:672.945000px;}
.y49{bottom:681.945000px;}
.y15{bottom:693.105000px;}
.y11c{bottom:693.285000px;}
.y72{bottom:694.005000px;}
.ye8{bottom:697.965000px;}
.y48{bottom:703.005000px;}
.y14{bottom:714.165000px;}
.y11b{bottom:714.345000px;}
.y71{bottom:715.065000px;}
.y47{bottom:724.065000px;}
.y13{bottom:735.225000px;}
.y11a{bottom:735.405000px;}
.y70{bottom:736.125000px;}
.y46{bottom:745.125000px;}
.ye7{bottom:755.025000px;}
.y12{bottom:756.285000px;}
.y119{bottom:756.465000px;}
.y6f{bottom:757.005000px;}
.y45{bottom:766.005000px;}
.ye6{bottom:776.085000px;}
.y11{bottom:777.345000px;}
.y118{bottom:777.525000px;}
.y6e{bottom:778.065000px;}
.y44{bottom:787.065000px;}
.ye5{bottom:797.145000px;}
.y10{bottom:798.405000px;}
.y117{bottom:798.585000px;}
.y6d{bottom:799.125000px;}
.y43{bottom:808.125000px;}
.ye4{bottom:818.205000px;}
.yf{bottom:819.465000px;}
.y116{bottom:819.645000px;}
.y6c{bottom:820.185000px;}
.y42{bottom:829.185000px;}
.ye3{bottom:839.265000px;}
.ye{bottom:840.525000px;}
.y6b{bottom:841.245000px;}
.y115{bottom:849.705000px;}
.y41{bottom:850.245000px;}
.ye2{bottom:860.325000px;}
.y6a{bottom:862.305000px;}
.yd{bottom:863.745000px;}
.y114{bottom:870.765000px;}
.y40{bottom:871.305000px;}
.ye1{bottom:881.385000px;}
.y69{bottom:883.365000px;}
.yc{bottom:890.025000px;}
.y113{bottom:891.825000px;}
.y3f{bottom:892.365000px;}
.ye0{bottom:902.490000px;}
.y68{bottom:904.470000px;}
.yb{bottom:911.130000px;}
.y112{bottom:912.930000px;}
.y3e{bottom:913.470000px;}
.ydf{bottom:923.550000px;}
.y67{bottom:925.530000px;}
.ya{bottom:927.870000px;}
.y111{bottom:933.990000px;}
.y3d{bottom:934.530000px;}
.yde{bottom:944.610000px;}
.y66{bottom:946.590000px;}
.y9{bottom:950.190000px;}
.y110{bottom:955.050000px;}
.y3c{bottom:955.590000px;}
.ydd{bottom:965.670000px;}
.y65{bottom:967.650000px;}
.y8{bottom:975.390000px;}
.y10f{bottom:976.110000px;}
.y3b{bottom:976.650000px;}
.ydc{bottom:986.730000px;}
.y64{bottom:988.710000px;}
.y10e{bottom:997.170000px;}
.y3a{bottom:997.710000px;}
.ydb{bottom:1007.790000px;}
.y7{bottom:1009.050000px;}
.y63{bottom:1009.770000px;}
.y39{bottom:1018.770000px;}
.y108{bottom:1019.850000px;}
.yda{bottom:1028.850000px;}
.y38{bottom:1039.830000px;}
.yd9{bottom:1043.610000px;}
.y5{bottom:1049.190000px;}
.y10d{bottom:1056.570000px;}
.y37{bottom:1060.890000px;}
.yd8{bottom:1067.910000px;}
.y4{bottom:1081.410000px;}
.y36{bottom:1081.950000px;}
.yd7{bottom:1092.390000px;}
.y10c{bottom:1093.470000px;}
.y35{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.yd6{bottom:1116.690000px;}
.y34{bottom:1124.070000px;}
.y107{bottom:1130.190000px;}
.yd5{bottom:1138.110000px;}
.y33{bottom:1145.130000px;}
.y2{bottom:1145.670000px;}
.y32{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.hb{height:21.060000px;}
.h14{height:21.096000px;}
.hd{height:23.940000px;}
.h11{height:23.976000px;}
.hf{height:24.120000px;}
.h8{height:38.671172px;}
.h15{height:42.120000px;}
.hc{height:45.360000px;}
.h9{height:45.637031px;}
.h13{height:48.276000px;}
.h16{height:57.996000px;}
.ha{height:59.439023px;}
.h19{height:59.551172px;}
.h6{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h10{height:72.756000px;}
.h4{height:83.787539px;}
.h18{height:84.276000px;}
.h2{height:86.255508px;}
.h17{height:94.680000px;}
.he{height:97.200000px;}
.h5{height:98.051133px;}
.h12{height:121.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:91.116000px;}
.w14{width:94.860000px;}
.w13{width:95.076000px;}
.w12{width:96.660000px;}
.w16{width:98.856000px;}
.w11{width:103.716000px;}
.we{width:126.756000px;}
.wf{width:126.900000px;}
.wb{width:132.120000px;}
.wa{width:135.936000px;}
.wd{width:137.376000px;}
.w7{width:137.520000px;}
.w4{width:137.916000px;}
.w8{width:138.456000px;}
.w9{width:140.976000px;}
.wc{width:144.360000px;}
.w10{width:153.570000px;}
.w5{width:174.420000px;}
.w6{width:271.875000px;}
.w3{width:446.475000px;}
.w17{width:738.360000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.020000px;}
.xf{left:8.100000px;}
.x6{left:53.999987px;}
.x7{left:75.599987px;}
.x1d{left:77.400000px;}
.x24{left:80.999987px;}
.xe{left:85.176000px;}
.x13{left:102.636000px;}
.x18{left:108.576000px;}
.x5{left:173.189987px;}
.x1e{left:231.690000px;}
.x14{left:240.870000px;}
.x19{left:253.650000px;}
.x9{left:257.249987px;}
.x12{left:259.770000px;}
.x3{left:286.634987px;}
.x1f{left:336.315000px;}
.x2{left:350.534987px;}
.xa{left:362.414987px;}
.xd{left:378.614987px;}
.x15{left:380.055000px;}
.x1a{left:391.935000px;}
.x4{left:419.114987px;}
.x20{left:433.695000px;}
.xb{left:457.304987px;}
.x1{left:479.264987px;}
.x16{left:521.745000px;}
.x1c{left:530.205000px;}
.x10{left:531.825000px;}
.x21{left:625.065000px;}
.x17{left:658.410000px;}
.x11{left:670.110000px;}
.x22{left:716.910000px;}
.xc{left:725.009987px;}
.x23{left:761.729987px;}
.x8{left:766.769987px;}
.x25{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.853333pt;}
.ls29{letter-spacing:-0.698667pt;}
.ls12{letter-spacing:-0.618667pt;}
.lse{letter-spacing:-0.515200pt;}
.ls20{letter-spacing:-0.484267pt;}
.ls17{letter-spacing:-0.474133pt;}
.ls4{letter-spacing:-0.412267pt;}
.lsf{letter-spacing:-0.383467pt;}
.lsa{letter-spacing:-0.368000pt;}
.ls15{letter-spacing:-0.220800pt;}
.ls3{letter-spacing:-0.117867pt;}
.ls9{letter-spacing:-0.102933pt;}
.ls25{letter-spacing:-0.099733pt;}
.ls24{letter-spacing:-0.059733pt;}
.ls1a{letter-spacing:-0.057600pt;}
.ls26{letter-spacing:-0.054400pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls28{letter-spacing:-0.033920pt;}
.ls16{letter-spacing:-0.028800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.034560pt;}
.ls21{letter-spacing:0.086400pt;}
.ls23{letter-spacing:0.089600pt;}
.ls1c{letter-spacing:0.124800pt;}
.ls5{letter-spacing:0.133333pt;}
.ls14{letter-spacing:0.155733pt;}
.ls8{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.165867pt;}
.ls7{letter-spacing:0.169067pt;}
.ls19{letter-spacing:0.216533pt;}
.ls13{letter-spacing:0.272000pt;}
.ls6{letter-spacing:0.370667pt;}
.ls2c{letter-spacing:0.426240pt;}
.ls1e{letter-spacing:0.456533pt;}
.lsd{letter-spacing:0.549120pt;}
.ls22{letter-spacing:0.566400pt;}
.ls11{letter-spacing:0.693333pt;}
.ls1b{letter-spacing:0.912000pt;}
.ls1f{letter-spacing:1.872640pt;}
.ls1d{letter-spacing:5.072640pt;}
.ls2b{letter-spacing:10.832640pt;}
.ls27{letter-spacing:15.952640pt;}
.lsc{letter-spacing:19.152640pt;}
.ls0{letter-spacing:33.872640pt;}
.ls2a{letter-spacing:37.712640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsd{word-spacing:-12.221653pt;}
.wsa{word-spacing:-12.170987pt;}
.wsb{word-spacing:-12.160853pt;}
.wse{word-spacing:-12.094720pt;}
.ws9{word-spacing:-12.005120pt;}
.wsc{word-spacing:-11.976320pt;}
.ws10{word-spacing:-11.971200pt;}
.ws7{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.905387pt;}
.ws6{word-spacing:-11.902187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._1b{margin-left:-474.025387pt;}
._1c{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._11{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._15{margin-left:-198.021333pt;}
._1f{margin-left:-184.478720pt;}
._f{margin-left:-180.325547pt;}
._16{margin-left:-178.235307pt;}
._1e{margin-left:-168.954880pt;}
._22{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._21{margin-left:-128.921387pt;}
._c{margin-left:-119.281920pt;}
._1d{margin-left:-118.232320pt;}
._10{margin-left:-102.686720pt;}
._20{margin-left:-97.441493pt;}
._1a{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._19{margin-left:-76.799787pt;}
._18{margin-left:-74.240000pt;}
._12{margin-left:-72.312320pt;}
._14{margin-left:-59.292160pt;}
._13{margin-left:-43.665707pt;}
._17{margin-left:-28.861013pt;}
._24{margin-left:-4.291200pt;}
._23{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._26{width:0.914987pt;}
._28{width:1.832320pt;}
._29{width:3.199573pt;}
._2d{width:4.172160pt;}
._2c{width:5.152640pt;}
._32{width:6.061227pt;}
._2e{width:7.011840pt;}
._38{width:7.902933pt;}
._33{width:8.859093pt;}
._34{width:9.809920pt;}
._2f{width:11.048960pt;}
._2a{width:13.638400pt;}
._37{width:14.608000pt;}
._31{width:16.230613pt;}
._30{width:17.370240pt;}
._36{width:19.016960pt;}
._35{width:20.287360pt;}
._3c{width:22.438613pt;}
._2b{width:23.732693pt;}
._3a{width:31.340800pt;}
._25{width:36.885760pt;}
._27{width:38.245547pt;}
._39{width:55.722880pt;}
._3b{width:116.757760pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:5.920000pt;}
.yba{bottom:7.200000pt;}
.yc5{bottom:7.240000pt;}
.yc0{bottom:7.360000pt;}
.y106{bottom:9.280000pt;}
.y101{bottom:9.440000pt;}
.y104{bottom:12.960000pt;}
.y12d{bottom:15.200000pt;}
.yea{bottom:15.360000pt;}
.yb8{bottom:16.800000pt;}
.yd3{bottom:17.920000pt;}
.ye9{bottom:18.720000pt;}
.y10b{bottom:19.840000pt;}
.yeb{bottom:24.640000pt;}
.yc2{bottom:29.000000pt;}
.yc8{bottom:30.400000pt;}
.y103{bottom:31.680000pt;}
.y12a{bottom:33.920000pt;}
.y10a{bottom:38.560000pt;}
.ybc{bottom:39.840000pt;}
.y12b{bottom:43.360000pt;}
.yc7{bottom:49.120000pt;}
.ycd{bottom:50.560000pt;}
.y12c{bottom:52.680000pt;}
.y6{bottom:54.560000pt;}
.y109{bottom:57.280000pt;}
.y12e{bottom:62.120000pt;}
.yb4{bottom:82.080000pt;}
.y136{bottom:82.400000pt;}
.y8e{bottom:84.640000pt;}
.y102{bottom:86.400000pt;}
.y62{bottom:88.800000pt;}
.y56{bottom:92.640000pt;}
.yd2{bottom:94.240000pt;}
.y30{bottom:100.640000pt;}
.yb3{bottom:100.800000pt;}
.y135{bottom:101.120000pt;}
.y8d{bottom:103.360000pt;}
.y150{bottom:106.720000pt;}
.y61{bottom:107.520000pt;}
.y55{bottom:111.360000pt;}
.yd4{bottom:115.840000pt;}
.y151{bottom:116.320000pt;}
.y105{bottom:119.200000pt;}
.y2f{bottom:119.360000pt;}
.yb2{bottom:119.520000pt;}
.y134{bottom:119.840000pt;}
.y8c{bottom:122.080000pt;}
.y14f{bottom:125.280000pt;}
.y60{bottom:126.240000pt;}
.y54{bottom:130.080000pt;}
.ycc{bottom:137.466667pt;}
.y2e{bottom:138.106667pt;}
.yb1{bottom:138.266667pt;}
.y133{bottom:139.866667pt;}
.y8b{bottom:140.826667pt;}
.y14e{bottom:144.026667pt;}
.y5f{bottom:144.986667pt;}
.y53{bottom:148.826667pt;}
.y100{bottom:151.866667pt;}
.y2d{bottom:156.826667pt;}
.yb0{bottom:156.986667pt;}
.yd1{bottom:159.226667pt;}
.y8a{bottom:159.546667pt;}
.y14d{bottom:162.746667pt;}
.y5e{bottom:163.706667pt;}
.y52{bottom:167.546667pt;}
.y132{bottom:172.666667pt;}
.y2c{bottom:175.546667pt;}
.yaf{bottom:175.706667pt;}
.y89{bottom:178.266667pt;}
.yd0{bottom:180.826667pt;}
.y14c{bottom:181.466667pt;}
.y5d{bottom:182.426667pt;}
.yff{bottom:183.866667pt;}
.y51{bottom:186.266667pt;}
.y2b{bottom:194.266667pt;}
.yae{bottom:194.426667pt;}
.y88{bottom:196.986667pt;}
.y14b{bottom:200.186667pt;}
.y5c{bottom:201.146667pt;}
.ycf{bottom:202.586667pt;}
.y50{bottom:204.986667pt;}
.y131{bottom:205.306667pt;}
.y2a{bottom:212.986667pt;}
.yad{bottom:213.146667pt;}
.y87{bottom:215.706667pt;}
.y14a{bottom:218.906667pt;}
.y5b{bottom:219.866667pt;}
.yfe{bottom:221.306667pt;}
.y4f{bottom:223.706667pt;}
.yce{bottom:224.186667pt;}
.y29{bottom:231.706667pt;}
.y86{bottom:234.426667pt;}
.y149{bottom:237.626667pt;}
.y130{bottom:238.106667pt;}
.y5a{bottom:238.586667pt;}
.yac{bottom:239.866667pt;}
.yfd{bottom:240.026667pt;}
.y4e{bottom:242.426667pt;}
.yc6{bottom:245.786667pt;}
.y28{bottom:250.426667pt;}
.y85{bottom:253.146667pt;}
.y148{bottom:256.346667pt;}
.y59{bottom:257.306667pt;}
.yab{bottom:258.586667pt;}
.yfc{bottom:258.746667pt;}
.y98{bottom:261.146667pt;}
.ycb{bottom:267.546667pt;}
.y27{bottom:269.146667pt;}
.y12f{bottom:270.746667pt;}
.y84{bottom:271.866667pt;}
.y147{bottom:275.066667pt;}
.y58{bottom:276.026667pt;}
.yaa{bottom:277.306667pt;}
.yfb{bottom:277.466667pt;}
.y97{bottom:279.866667pt;}
.y26{bottom:287.866667pt;}
.yca{bottom:289.146667pt;}
.y83{bottom:290.586667pt;}
.y57{bottom:291.066667pt;}
.y146{bottom:293.786667pt;}
.ya9{bottom:296.026667pt;}
.yfa{bottom:296.186667pt;}
.y96{bottom:298.586667pt;}
.y129{bottom:303.546667pt;}
.y25{bottom:306.586667pt;}
.y82{bottom:309.306667pt;}
.yc9{bottom:310.906667pt;}
.y145{bottom:312.506667pt;}
.ya8{bottom:314.746667pt;}
.yf9{bottom:314.906667pt;}
.y95{bottom:317.306667pt;}
.y24{bottom:325.306667pt;}
.y81{bottom:328.026667pt;}
.yc1{bottom:332.506667pt;}
.ya7{bottom:333.466667pt;}
.yf8{bottom:333.626667pt;}
.y94{bottom:336.026667pt;}
.y144{bottom:339.226667pt;}
.y23{bottom:344.026667pt;}
.y80{bottom:346.746667pt;}
.ya6{bottom:352.186667pt;}
.yf7{bottom:352.346667pt;}
.yc4{bottom:354.266667pt;}
.y93{bottom:354.746667pt;}
.y143{bottom:357.986667pt;}
.y22{bottom:362.786667pt;}
.y7f{bottom:365.506667pt;}
.ya5{bottom:370.946667pt;}
.yf6{bottom:371.106667pt;}
.y92{bottom:373.506667pt;}
.yc3{bottom:375.906667pt;}
.y142{bottom:376.706667pt;}
.y21{bottom:381.506667pt;}
.y7e{bottom:384.226667pt;}
.ya4{bottom:389.506667pt;}
.yf5{bottom:389.826667pt;}
.y128{bottom:391.746667pt;}
.y91{bottom:392.226667pt;}
.y141{bottom:395.426667pt;}
.ybb{bottom:397.506667pt;}
.y20{bottom:400.226667pt;}
.y7d{bottom:402.946667pt;}
.ya3{bottom:408.226667pt;}
.yf4{bottom:408.546667pt;}
.y127{bottom:410.466667pt;}
.y90{bottom:410.946667pt;}
.y140{bottom:414.146667pt;}
.y1f{bottom:418.946667pt;}
.ybf{bottom:419.266667pt;}
.y7c{bottom:421.666667pt;}
.ya2{bottom:426.946667pt;}
.yf3{bottom:427.266667pt;}
.y126{bottom:429.026667pt;}
.y8f{bottom:429.666667pt;}
.y13f{bottom:432.866667pt;}
.y1e{bottom:437.666667pt;}
.ybe{bottom:440.866667pt;}
.ya1{bottom:445.666667pt;}
.yf2{bottom:445.986667pt;}
.y125{bottom:447.746667pt;}
.y7b{bottom:448.386667pt;}
.y13e{bottom:451.586667pt;}
.y1d{bottom:456.386667pt;}
.ybd{bottom:462.626667pt;}
.ya0{bottom:464.386667pt;}
.yf1{bottom:464.706667pt;}
.y124{bottom:466.466667pt;}
.y7a{bottom:467.106667pt;}
.y13d{bottom:470.306667pt;}
.y1c{bottom:475.106667pt;}
.y9f{bottom:483.106667pt;}
.yf0{bottom:483.426667pt;}
.yb7{bottom:484.226667pt;}
.y123{bottom:485.186667pt;}
.y79{bottom:485.826667pt;}
.y13c{bottom:489.026667pt;}
.y1b{bottom:493.826667pt;}
.y9e{bottom:501.826667pt;}
.yef{bottom:502.146667pt;}
.y122{bottom:503.906667pt;}
.y78{bottom:504.546667pt;}
.yb9{bottom:505.826667pt;}
.y13b{bottom:507.746667pt;}
.y1a{bottom:512.546667pt;}
.y9d{bottom:520.546667pt;}
.yee{bottom:522.306667pt;}
.y121{bottom:522.626667pt;}
.y77{bottom:523.266667pt;}
.yb5{bottom:525.026667pt;}
.y13a{bottom:526.466667pt;}
.y4d{bottom:531.266667pt;}
.y19{bottom:533.346667pt;}
.y9c{bottom:539.266667pt;}
.y120{bottom:541.346667pt;}
.y76{bottom:541.986667pt;}
.y139{bottom:545.186667pt;}
.y4c{bottom:549.986667pt;}
.yed{bottom:554.946667pt;}
.y9b{bottom:557.986667pt;}
.y18{bottom:559.906667pt;}
.y11f{bottom:560.066667pt;}
.y75{bottom:560.706667pt;}
.y138{bottom:563.906667pt;}
.y4b{bottom:568.706667pt;}
.y9a{bottom:576.706667pt;}
.y17{bottom:578.653333pt;}
.y11e{bottom:578.813333pt;}
.y137{bottom:579.133333pt;}
.y74{bottom:579.453333pt;}
.y4a{bottom:587.453333pt;}
.yec{bottom:587.773333pt;}
.y99{bottom:591.933333pt;}
.y16{bottom:597.373333pt;}
.y11d{bottom:597.533333pt;}
.y73{bottom:598.173333pt;}
.y49{bottom:606.173333pt;}
.y15{bottom:616.093333pt;}
.y11c{bottom:616.253333pt;}
.y72{bottom:616.893333pt;}
.ye8{bottom:620.413333pt;}
.y48{bottom:624.893333pt;}
.y14{bottom:634.813333pt;}
.y11b{bottom:634.973333pt;}
.y71{bottom:635.613333pt;}
.y47{bottom:643.613333pt;}
.y13{bottom:653.533333pt;}
.y11a{bottom:653.693333pt;}
.y70{bottom:654.333333pt;}
.y46{bottom:662.333333pt;}
.ye7{bottom:671.133333pt;}
.y12{bottom:672.253333pt;}
.y119{bottom:672.413333pt;}
.y6f{bottom:672.893333pt;}
.y45{bottom:680.893333pt;}
.ye6{bottom:689.853333pt;}
.y11{bottom:690.973333pt;}
.y118{bottom:691.133333pt;}
.y6e{bottom:691.613333pt;}
.y44{bottom:699.613333pt;}
.ye5{bottom:708.573333pt;}
.y10{bottom:709.693333pt;}
.y117{bottom:709.853333pt;}
.y6d{bottom:710.333333pt;}
.y43{bottom:718.333333pt;}
.ye4{bottom:727.293333pt;}
.yf{bottom:728.413333pt;}
.y116{bottom:728.573333pt;}
.y6c{bottom:729.053333pt;}
.y42{bottom:737.053333pt;}
.ye3{bottom:746.013333pt;}
.ye{bottom:747.133333pt;}
.y6b{bottom:747.773333pt;}
.y115{bottom:755.293333pt;}
.y41{bottom:755.773333pt;}
.ye2{bottom:764.733333pt;}
.y6a{bottom:766.493333pt;}
.yd{bottom:767.773333pt;}
.y114{bottom:774.013333pt;}
.y40{bottom:774.493333pt;}
.ye1{bottom:783.453333pt;}
.y69{bottom:785.213333pt;}
.yc{bottom:791.133333pt;}
.y113{bottom:792.733333pt;}
.y3f{bottom:793.213333pt;}
.ye0{bottom:802.213333pt;}
.y68{bottom:803.973333pt;}
.yb{bottom:809.893333pt;}
.y112{bottom:811.493333pt;}
.y3e{bottom:811.973333pt;}
.ydf{bottom:820.933333pt;}
.y67{bottom:822.693333pt;}
.ya{bottom:824.773333pt;}
.y111{bottom:830.213333pt;}
.y3d{bottom:830.693333pt;}
.yde{bottom:839.653333pt;}
.y66{bottom:841.413333pt;}
.y9{bottom:844.613333pt;}
.y110{bottom:848.933333pt;}
.y3c{bottom:849.413333pt;}
.ydd{bottom:858.373333pt;}
.y65{bottom:860.133333pt;}
.y8{bottom:867.013333pt;}
.y10f{bottom:867.653333pt;}
.y3b{bottom:868.133333pt;}
.ydc{bottom:877.093333pt;}
.y64{bottom:878.853333pt;}
.y10e{bottom:886.373333pt;}
.y3a{bottom:886.853333pt;}
.ydb{bottom:895.813333pt;}
.y7{bottom:896.933333pt;}
.y63{bottom:897.573333pt;}
.y39{bottom:905.573333pt;}
.y108{bottom:906.533333pt;}
.yda{bottom:914.533333pt;}
.y38{bottom:924.293333pt;}
.yd9{bottom:927.653333pt;}
.y5{bottom:932.613333pt;}
.y10d{bottom:939.173333pt;}
.y37{bottom:943.013333pt;}
.yd8{bottom:949.253333pt;}
.y4{bottom:961.253333pt;}
.y36{bottom:961.733333pt;}
.yd7{bottom:971.013333pt;}
.y10c{bottom:971.973333pt;}
.y35{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.yd6{bottom:992.613333pt;}
.y34{bottom:999.173333pt;}
.y107{bottom:1004.613333pt;}
.yd5{bottom:1011.653333pt;}
.y33{bottom:1017.893333pt;}
.y2{bottom:1018.373333pt;}
.y32{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.hb{height:18.720000pt;}
.h14{height:18.752000pt;}
.hd{height:21.280000pt;}
.h11{height:21.312000pt;}
.hf{height:21.440000pt;}
.h8{height:34.374375pt;}
.h15{height:37.440000pt;}
.hc{height:40.320000pt;}
.h9{height:40.566250pt;}
.h13{height:42.912000pt;}
.h16{height:51.552000pt;}
.ha{height:52.834688pt;}
.h19{height:52.934375pt;}
.h6{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h10{height:64.672000pt;}
.h4{height:74.477812pt;}
.h18{height:74.912000pt;}
.h2{height:76.671562pt;}
.h17{height:84.160000pt;}
.he{height:86.400000pt;}
.h5{height:87.156562pt;}
.h12{height:108.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:80.992000pt;}
.w14{width:84.320000pt;}
.w13{width:84.512000pt;}
.w12{width:85.920000pt;}
.w16{width:87.872000pt;}
.w11{width:92.192000pt;}
.we{width:112.672000pt;}
.wf{width:112.800000pt;}
.wb{width:117.440000pt;}
.wa{width:120.832000pt;}
.wd{width:122.112000pt;}
.w7{width:122.240000pt;}
.w4{width:122.592000pt;}
.w8{width:123.072000pt;}
.w9{width:125.312000pt;}
.wc{width:128.320000pt;}
.w10{width:136.506667pt;}
.w5{width:155.040000pt;}
.w6{width:241.666667pt;}
.w3{width:396.866667pt;}
.w17{width:656.320000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.240000pt;}
.xf{left:7.200000pt;}
.x6{left:47.999988pt;}
.x7{left:67.199988pt;}
.x1d{left:68.800000pt;}
.x24{left:71.999988pt;}
.xe{left:75.712000pt;}
.x13{left:91.232000pt;}
.x18{left:96.512000pt;}
.x5{left:153.946655pt;}
.x1e{left:205.946667pt;}
.x14{left:214.106667pt;}
.x19{left:225.466667pt;}
.x9{left:228.666655pt;}
.x12{left:230.906667pt;}
.x3{left:254.786655pt;}
.x1f{left:298.946667pt;}
.x2{left:311.586655pt;}
.xa{left:322.146655pt;}
.xd{left:336.546655pt;}
.x15{left:337.826667pt;}
.x1a{left:348.386667pt;}
.x4{left:372.546655pt;}
.x20{left:385.506667pt;}
.xb{left:406.493322pt;}
.x1{left:426.013322pt;}
.x16{left:463.773333pt;}
.x1c{left:471.293333pt;}
.x10{left:472.733333pt;}
.x21{left:555.613333pt;}
.x17{left:585.253333pt;}
.x11{left:595.653333pt;}
.x22{left:637.253333pt;}
.xc{left:644.453322pt;}
.x23{left:677.093322pt;}
.x8{left:681.573322pt;}
.x25{left:746.079988pt;}
}




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