
    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_78d1b4fc5a40cbc74ea711e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f0a4bcf4c38d179a8ceaa1ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1559ce21616cc70d4268e9d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.201172;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_453e1397409c881217f1d0be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_e9f1f38d9f7e21f4c761bf27.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_3f1dfe756dc36ece422abc88.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_69f6c07b80e435e86c8bb433.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a78ef0959f7360562e242eb1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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);}
.m2{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-2.622000px;}
.ls2d{letter-spacing:-1.800000px;}
.ls21{letter-spacing:-1.494000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.924000px;}
.ls1e{letter-spacing:-0.774000px;}
.ls8{letter-spacing:-0.612000px;}
.ls23{letter-spacing:-0.566400px;}
.lsb{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.457800px;}
.ls1f{letter-spacing:-0.413400px;}
.lsa{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.305400px;}
.ls24{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.100200px;}
.ls7{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.186600px;}
.ls2f{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.259800px;}
.ls29{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.513600px;}
.lsc{letter-spacing:0.666000px;}
.ls12{letter-spacing:2.340000px;}
.lse{letter-spacing:3.780000px;}
.ls2b{letter-spacing:6.660000px;}
.lsd{letter-spacing:7.866720px;}
.ls1c{letter-spacing:8.820000px;}
.ls26{letter-spacing:9.540000px;}
.ls25{letter-spacing:11.466720px;}
.ls2c{letter-spacing:11.700000px;}
.ls30{letter-spacing:12.906720px;}
.ls28{letter-spacing:18.900000px;}
.ls16{letter-spacing:20.340000px;}
.ls17{letter-spacing:21.060000px;}
.ls1d{letter-spacing:24.660000px;}
.ls20{letter-spacing:27.540000px;}
.ls0{letter-spacing:31.626720px;}
.ls22{letter-spacing:41.706720px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws11{word-spacing:-59.653200px;}
.ws15{word-spacing:-59.148000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.ws7{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.ws1e{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.ws20{word-spacing:-15.146400px;}
.ws1b{word-spacing:-15.093600px;}
.ws5{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.839800px;}
.ws1a{word-spacing:-14.833200px;}
.ws9{word-spacing:-14.733600px;}
.ws18{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.526600px;}
.ws12{word-spacing:-14.479800px;}
.ws14{word-spacing:-14.328000px;}
.ws13{word-spacing:-14.166000px;}
.ws19{word-spacing:-13.860000px;}
.ws1f{word-spacing:-13.692360px;}
.ws1d{word-spacing:-13.505760px;}
.ws17{word-spacing:-13.446000px;}
.ws1c{word-spacing:-13.140000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-576.348480px;}
._1f{margin-left:-15.312480px;}
._26{margin-left:-11.546640px;}
._7{margin-left:-9.325680px;}
._18{margin-left:-8.316720px;}
._8{margin-left:-4.743840px;}
._17{margin-left:-3.453840px;}
._c{margin-left:-2.267520px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._9{width:2.298240px;}
._a{width:3.734880px;}
._10{width:4.785120px;}
._e{width:6.513360px;}
._d{width:8.206560px;}
._12{width:9.404640px;}
._13{width:10.431120px;}
._f{width:12.191040px;}
._14{width:13.310880px;}
._11{width:16.608000px;}
._19{width:17.724960px;}
._16{width:18.774960px;}
._15{width:20.341680px;}
._20{width:21.998880px;}
._1a{width:23.605440px;}
._1d{width:24.863760px;}
._1e{width:25.935840px;}
._2b{width:27.838080px;}
._29{width:28.933920px;}
._28{width:30.358080px;}
._31{width:31.493520px;}
._27{width:32.868000px;}
._25{width:34.242480px;}
._22{width:35.915760px;}
._2c{width:37.668240px;}
._2d{width:40.753440px;}
._2a{width:42.589200px;}
._1b{width:44.658720px;}
._1c{width:45.779520px;}
._30{width:47.688480px;}
._34{width:51.826800px;}
._35{width:53.313120px;}
._2e{width:57.034800px;}
._23{width:58.253040px;}
._33{width:61.095600px;}
._32{width:62.368320px;}
._37{width:63.584640px;}
._2f{width:64.839600px;}
._38{width:66.822240px;}
._36{width:74.288160px;}
._21{width:108.938400px;}
._24{width:228.289440px;}
._b{width:1254.720000px;}
.fc2{color:transparent;}
.fc3{color:rgb(4,98,193);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:5.760000px;}
.y95{bottom:5.940000px;}
.y158{bottom:10.800000px;}
.y98{bottom:19.620000px;}
.y9b{bottom:25.560000px;}
.y94{bottom:25.740000px;}
.y157{bottom:30.600000px;}
.y154{bottom:34.920000px;}
.y97{bottom:39.420000px;}
.yca{bottom:45.360000px;}
.y9a{bottom:45.540000px;}
.yc5{bottom:45.570000px;}
.ye5{bottom:45.585000px;}
.y156{bottom:50.430000px;}
.y6{bottom:60.300000px;}
.yc7{bottom:65.340000px;}
.yc4{bottom:65.370000px;}
.y155{bottom:70.410000px;}
.yc9{bottom:85.140000px;}
.yc3{bottom:85.170000px;}
.y10c{bottom:85.185000px;}
.y152{bottom:88.200000px;}
.yf0{bottom:88.380000px;}
.y92{bottom:91.080000px;}
.y112{bottom:101.520000px;}
.y33{bottom:102.780000px;}
.yc2{bottom:104.970000px;}
.y10b{bottom:104.985000px;}
.y109{bottom:105.120000px;}
.y69{bottom:105.300000px;}
.yef{bottom:108.180000px;}
.yc0{bottom:109.080000px;}
.y91{bottom:110.880000px;}
.y12b{bottom:114.300000px;}
.y153{bottom:116.640000px;}
.y111{bottom:121.320000px;}
.y32{bottom:122.580000px;}
.y10e{bottom:124.920000px;}
.yc1{bottom:124.950000px;}
.y68{bottom:125.100000px;}
.yee{bottom:127.980000px;}
.y90{bottom:130.680000px;}
.y12a{bottom:134.100000px;}
.y110{bottom:141.120000px;}
.y31{bottom:142.560000px;}
.y67{bottom:144.900000px;}
.y151{bottom:147.780000px;}
.yed{bottom:147.960000px;}
.y8f{bottom:150.480000px;}
.y129{bottom:153.930000px;}
.y10f{bottom:160.950000px;}
.y30{bottom:162.390000px;}
.y66{bottom:164.730000px;}
.y150{bottom:167.610000px;}
.yec{bottom:167.790000px;}
.y8e{bottom:170.490000px;}
.y128{bottom:173.730000px;}
.y10d{bottom:175.710000px;}
.y2f{bottom:182.190000px;}
.y65{bottom:184.530000px;}
.y14f{bottom:187.410000px;}
.yeb{bottom:187.590000px;}
.y8d{bottom:190.290000px;}
.y127{bottom:193.530000px;}
.y2e{bottom:201.990000px;}
.y64{bottom:204.510000px;}
.yea{bottom:207.390000px;}
.y8c{bottom:210.090000px;}
.y126{bottom:213.510000px;}
.y2d{bottom:221.790000px;}
.y63{bottom:224.310000px;}
.ye9{bottom:227.190000px;}
.y8b{bottom:229.890000px;}
.y125{bottom:233.310000px;}
.y2c{bottom:241.770000px;}
.y62{bottom:244.110000px;}
.y14e{bottom:246.990000px;}
.ye8{bottom:247.170000px;}
.ybf{bottom:248.790000px;}
.y8a{bottom:249.690000px;}
.y124{bottom:253.110000px;}
.y2b{bottom:261.570000px;}
.y61{bottom:263.910000px;}
.y14d{bottom:266.790000px;}
.ye7{bottom:266.970000px;}
.y89{bottom:269.670000px;}
.y123{bottom:272.910000px;}
.y2a{bottom:281.370000px;}
.ye6{bottom:281.730000px;}
.y60{bottom:283.710000px;}
.y14c{bottom:286.590000px;}
.y88{bottom:289.470000px;}
.y122{bottom:292.710000px;}
.ybe{bottom:295.050000px;}
.y29{bottom:301.170000px;}
.y5f{bottom:303.690000px;}
.y14b{bottom:306.570000px;}
.y87{bottom:309.270000px;}
.y121{bottom:312.690000px;}
.ybd{bottom:314.850000px;}
.y10a{bottom:315.390000px;}
.y28{bottom:320.970000px;}
.y5e{bottom:323.490000px;}
.y14a{bottom:326.370000px;}
.y86{bottom:329.070000px;}
.y120{bottom:332.490000px;}
.ybc{bottom:334.650000px;}
.y27{bottom:340.950000px;}
.y5d{bottom:343.290000px;}
.y149{bottom:346.170000px;}
.y85{bottom:348.870000px;}
.y11f{bottom:352.290000px;}
.ybb{bottom:354.450000px;}
.y26{bottom:360.750000px;}
.ye4{bottom:361.830000px;}
.y5c{bottom:363.090000px;}
.y148{bottom:365.970000px;}
.y84{bottom:368.850000px;}
.y11e{bottom:372.090000px;}
.yba{bottom:374.250000px;}
.y25{bottom:380.550000px;}
.y5b{bottom:382.890000px;}
.y147{bottom:385.770000px;}
.y83{bottom:388.650000px;}
.y11d{bottom:391.890000px;}
.yb9{bottom:394.230000px;}
.y24{bottom:400.350000px;}
.y5a{bottom:402.915000px;}
.y146{bottom:405.795000px;}
.y82{bottom:408.495000px;}
.y11c{bottom:411.915000px;}
.yb8{bottom:414.075000px;}
.y23{bottom:420.195000px;}
.ye3{bottom:422.175000px;}
.y59{bottom:422.715000px;}
.y145{bottom:425.595000px;}
.y81{bottom:428.295000px;}
.y11b{bottom:431.715000px;}
.yb7{bottom:433.875000px;}
.y108{bottom:435.135000px;}
.y22{bottom:440.175000px;}
.y58{bottom:442.515000px;}
.y144{bottom:445.395000px;}
.y80{bottom:448.095000px;}
.y11a{bottom:451.515000px;}
.yb6{bottom:453.675000px;}
.y21{bottom:459.975000px;}
.y57{bottom:462.315000px;}
.y143{bottom:465.195000px;}
.y7f{bottom:468.075000px;}
.y119{bottom:471.315000px;}
.yb5{bottom:473.475000px;}
.y20{bottom:479.775000px;}
.y56{bottom:482.115000px;}
.ye2{bottom:482.295000px;}
.y142{bottom:484.995000px;}
.y7e{bottom:487.875000px;}
.y118{bottom:491.115000px;}
.yb4{bottom:493.455000px;}
.y1f{bottom:499.575000px;}
.y55{bottom:502.095000px;}
.y141{bottom:504.975000px;}
.y7d{bottom:507.675000px;}
.y117{bottom:511.095000px;}
.yb3{bottom:513.255000px;}
.y1e{bottom:519.375000px;}
.y54{bottom:521.895000px;}
.y140{bottom:525.675000px;}
.y7c{bottom:527.475000px;}
.ye1{bottom:528.555000px;}
.y116{bottom:530.895000px;}
.yb2{bottom:533.055000px;}
.y1d{bottom:539.355000px;}
.y53{bottom:541.695000px;}
.y13f{bottom:545.835000px;}
.y7b{bottom:547.275000px;}
.ye0{bottom:548.355000px;}
.y115{bottom:550.695000px;}
.yb1{bottom:552.855000px;}
.y107{bottom:555.015000px;}
.y1c{bottom:559.155000px;}
.y52{bottom:561.495000px;}
.y13e{bottom:565.635000px;}
.y7a{bottom:567.255000px;}
.ydf{bottom:568.335000px;}
.y114{bottom:570.495000px;}
.yb0{bottom:572.655000px;}
.y1b{bottom:578.955000px;}
.y51{bottom:581.295000px;}
.y13d{bottom:585.435000px;}
.y79{bottom:587.055000px;}
.yde{bottom:588.135000px;}
.y113{bottom:590.295000px;}
.yaf{bottom:592.635000px;}
.y1a{bottom:598.755000px;}
.y106{bottom:601.275000px;}
.y13c{bottom:605.235000px;}
.y78{bottom:606.855000px;}
.ydd{bottom:607.935000px;}
.y50{bottom:610.275000px;}
.yae{bottom:612.435000px;}
.y19{bottom:618.555000px;}
.y105{bottom:621.075000px;}
.y13b{bottom:625.215000px;}
.y77{bottom:626.655000px;}
.ydc{bottom:627.735000px;}
.y4f{bottom:630.075000px;}
.yad{bottom:632.235000px;}
.y18{bottom:638.535000px;}
.y104{bottom:640.875000px;}
.y13a{bottom:645.015000px;}
.y76{bottom:646.455000px;}
.ydb{bottom:647.535000px;}
.y4e{bottom:649.905000px;}
.yac{bottom:652.065000px;}
.y17{bottom:658.365000px;}
.y103{bottom:660.705000px;}
.y139{bottom:664.845000px;}
.y75{bottom:666.465000px;}
.yda{bottom:667.545000px;}
.y4d{bottom:669.705000px;}
.yab{bottom:671.865000px;}
.y16{bottom:678.165000px;}
.y102{bottom:680.505000px;}
.y138{bottom:684.645000px;}
.y74{bottom:686.265000px;}
.yd9{bottom:687.345000px;}
.y4c{bottom:689.505000px;}
.yaa{bottom:691.845000px;}
.y15{bottom:700.305000px;}
.y101{bottom:700.485000px;}
.y137{bottom:704.445000px;}
.y73{bottom:706.065000px;}
.yd8{bottom:707.145000px;}
.y4b{bottom:709.485000px;}
.ya9{bottom:711.645000px;}
.y100{bottom:720.285000px;}
.y136{bottom:724.425000px;}
.y72{bottom:725.865000px;}
.yd7{bottom:726.945000px;}
.y14{bottom:729.105000px;}
.y4a{bottom:729.285000px;}
.ya8{bottom:731.445000px;}
.yff{bottom:740.085000px;}
.y135{bottom:744.225000px;}
.y71{bottom:745.665000px;}
.yd6{bottom:746.745000px;}
.y13{bottom:748.905000px;}
.y49{bottom:749.085000px;}
.ya7{bottom:751.245000px;}
.yfe{bottom:759.885000px;}
.y70{bottom:762.225000px;}
.y134{bottom:764.025000px;}
.yd5{bottom:766.725000px;}
.y12{bottom:768.705000px;}
.y48{bottom:768.885000px;}
.ya6{bottom:771.045000px;}
.yfd{bottom:779.685000px;}
.y133{bottom:783.825000px;}
.yd4{bottom:786.525000px;}
.y11{bottom:788.685000px;}
.ya5{bottom:791.025000px;}
.yfc{bottom:799.665000px;}
.y132{bottom:803.625000px;}
.yd3{bottom:806.325000px;}
.y10{bottom:808.485000px;}
.y47{bottom:808.665000px;}
.ya4{bottom:810.825000px;}
.yfb{bottom:819.465000px;}
.y131{bottom:824.325000px;}
.yd2{bottom:826.125000px;}
.yf{bottom:828.285000px;}
.y46{bottom:828.465000px;}
.ya3{bottom:830.625000px;}
.yfa{bottom:839.265000px;}
.y130{bottom:845.385000px;}
.yd1{bottom:845.925000px;}
.ye{bottom:848.085000px;}
.y45{bottom:848.265000px;}
.ya2{bottom:850.425000px;}
.yf9{bottom:859.065000px;}
.y12f{bottom:865.725000px;}
.yd0{bottom:865.905000px;}
.yd{bottom:867.885000px;}
.y44{bottom:868.065000px;}
.ya1{bottom:870.225000px;}
.yf8{bottom:878.865000px;}
.y12e{bottom:885.525000px;}
.ycf{bottom:885.705000px;}
.y43{bottom:887.865000px;}
.yc{bottom:890.025000px;}
.ya0{bottom:890.205000px;}
.yf7{bottom:898.890000px;}
.yce{bottom:905.550000px;}
.y12d{bottom:906.270000px;}
.y42{bottom:907.890000px;}
.y9f{bottom:910.050000px;}
.yb{bottom:915.090000px;}
.yf6{bottom:918.690000px;}
.ycd{bottom:925.350000px;}
.y12c{bottom:927.330000px;}
.y41{bottom:927.690000px;}
.y9e{bottom:929.850000px;}
.ya{bottom:930.210000px;}
.yf5{bottom:938.490000px;}
.y9d{bottom:944.610000px;}
.ycc{bottom:945.150000px;}
.y40{bottom:947.490000px;}
.y9{bottom:951.630000px;}
.yf4{bottom:958.290000px;}
.ycb{bottom:965.130000px;}
.y3f{bottom:967.290000px;}
.y8{bottom:975.030000px;}
.y6f{bottom:978.090000px;}
.yc8{bottom:979.890000px;}
.y3e{bottom:987.090000px;}
.y6e{bottom:998.070000px;}
.y99{bottom:1004.910000px;}
.y7{bottom:1006.710000px;}
.y3d{bottom:1007.070000px;}
.y6d{bottom:1017.870000px;}
.y3c{bottom:1026.870000px;}
.y6c{bottom:1037.670000px;}
.y3b{bottom:1046.670000px;}
.y5{bottom:1051.170000px;}
.y6b{bottom:1057.470000px;}
.y96{bottom:1065.210000px;}
.y3a{bottom:1066.470000px;}
.y6a{bottom:1077.270000px;}
.yc6{bottom:1079.790000px;}
.y4{bottom:1081.950000px;}
.y39{bottom:1086.270000px;}
.yf3{bottom:1097.250000px;}
.y38{bottom:1106.250000px;}
.y3{bottom:1112.730000px;}
.yf2{bottom:1117.050000px;}
.y93{bottom:1119.390000px;}
.y37{bottom:1126.050000px;}
.yf1{bottom:1136.850000px;}
.y2{bottom:1143.690000px;}
.y36{bottom:1145.850000px;}
.y35{bottom:1165.680000px;}
.y1{bottom:1177.560000px;}
.y34{bottom:1193.220000px;}
.h1d{height:2.010938px;}
.h7{height:27.147656px;}
.h10{height:39.600000px;}
.h14{height:39.780000px;}
.hd{height:39.816000px;}
.h8{height:41.726953px;}
.h5{height:42.164648px;}
.hb{height:43.302656px;}
.h9{height:43.506914px;}
.hc{height:45.461953px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h6{height:53.224453px;}
.he{height:53.460000px;}
.h15{height:59.400000px;}
.h1b{height:59.439023px;}
.hf{height:59.580000px;}
.h16{height:59.616000px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.h17{height:79.380000px;}
.h1c{height:84.456000px;}
.h13{height:99.180000px;}
.h12{height:99.216000px;}
.h19{height:119.016000px;}
.h18{height:119.160000px;}
.h1a{height:138.960000px;}
.h11{height:138.996000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:63.000000px;}
.w4{width:73.800000px;}
.wf{width:94.500000px;}
.wb{width:94.536000px;}
.wc{width:95.040000px;}
.w7{width:102.960000px;}
.wa{width:103.536000px;}
.we{width:103.716000px;}
.w3{width:182.010000px;}
.w12{width:210.810000px;}
.w10{width:254.415000px;}
.w9{width:275.790000px;}
.w11{width:328.935000px;}
.w8{width:337.575000px;}
.w6{width:339.735000px;}
.wd{width:442.365000px;}
.w13{width:581.010000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1d{left:9.000000px;}
.xb{left:11.160000px;}
.x4b{left:45.900000px;}
.x1{left:54.179987px;}
.x14{left:65.880000px;}
.x3{left:75.599987px;}
.x15{left:77.805000px;}
.x3b{left:80.999987px;}
.x16{left:82.845000px;}
.xc{left:87.516000px;}
.x17{left:94.725000px;}
.x2{left:108.035987px;}
.x6{left:116.136000px;}
.x27{left:117.395987px;}
.x28{left:128.915987px;}
.x18{left:131.625000px;}
.x19{left:143.685000px;}
.x29{left:151.409987px;}
.x3c{left:155.549987px;}
.x34{left:159.150000px;}
.x5{left:163.649987px;}
.x3d{left:170.129987px;}
.x1a{left:173.565000px;}
.x1e{left:182.010000px;}
.xf{left:185.085000px;}
.x4c{left:190.290000px;}
.xd{left:191.370000px;}
.x3e{left:196.409987px;}
.x10{left:201.105000px;}
.x2a{left:202.349987px;}
.x37{left:208.305000px;}
.x2b{left:214.049987px;}
.x1b{left:228.105000px;}
.x38{left:230.085000px;}
.x1c{left:239.985000px;}
.x39{left:251.865000px;}
.x35{left:254.370000px;}
.x4d{left:256.710000px;}
.x3f{left:263.729987px;}
.x3a{left:273.645000px;}
.x1f{left:277.275000px;}
.x2c{left:289.334987px;}
.x8{left:298.875000px;}
.x2d{left:301.034987px;}
.x11{left:302.115000px;}
.x2e{left:312.734987px;}
.x12{left:318.135000px;}
.x40{left:321.194987px;}
.x2f{left:324.614987px;}
.x13{left:329.835000px;}
.x41{left:332.714987px;}
.x30{left:357.014987px;}
.x31{left:368.714987px;}
.x9{left:373.395000px;}
.x42{left:395.174987px;}
.x43{left:406.514987px;}
.x32{left:431.894987px;}
.xa{left:437.115000px;}
.x33{left:443.774987px;}
.x44{left:458.924987px;}
.x45{left:470.624987px;}
.x36{left:509.505000px;}
.xe{left:529.845000px;}
.x46{left:541.364987px;}
.x47{left:563.864987px;}
.x48{left:575.384987px;}
.x49{left:610.304987px;}
.x4a{left:622.004987px;}
.x4{left:664.889987px;}
.x20{left:720.689987px;}
.x21{left:730.409987px;}
.x22{left:754.529987px;}
.x23{left:764.429987px;}
.x24{left:804.929987px;}
.x25{left:815.039987px;}
.x26{left:839.159987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-2.330667pt;}
.ls2d{letter-spacing:-1.600000pt;}
.ls21{letter-spacing:-1.328000pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.821333pt;}
.ls1e{letter-spacing:-0.688000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls23{letter-spacing:-0.503467pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls1f{letter-spacing:-0.367467pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls24{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.089067pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.165867pt;}
.ls2f{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.230933pt;}
.ls29{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.456533pt;}
.lsc{letter-spacing:0.592000pt;}
.ls12{letter-spacing:2.080000pt;}
.lse{letter-spacing:3.360000pt;}
.ls2b{letter-spacing:5.920000pt;}
.lsd{letter-spacing:6.992640pt;}
.ls1c{letter-spacing:7.840000pt;}
.ls26{letter-spacing:8.480000pt;}
.ls25{letter-spacing:10.192640pt;}
.ls2c{letter-spacing:10.400000pt;}
.ls30{letter-spacing:11.472640pt;}
.ls28{letter-spacing:16.800000pt;}
.ls16{letter-spacing:18.080000pt;}
.ls17{letter-spacing:18.720000pt;}
.ls1d{letter-spacing:21.920000pt;}
.ls20{letter-spacing:24.480000pt;}
.ls0{letter-spacing:28.112640pt;}
.ls22{letter-spacing:37.072640pt;}
.wsf{word-spacing:-53.120000pt;}
.ws11{word-spacing:-53.025067pt;}
.ws15{word-spacing:-52.576000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.ws7{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.ws1e{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.ws20{word-spacing:-13.463467pt;}
.ws1b{word-spacing:-13.416533pt;}
.ws5{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.190933pt;}
.ws1a{word-spacing:-13.185067pt;}
.ws9{word-spacing:-13.096533pt;}
.ws18{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.912533pt;}
.ws12{word-spacing:-12.870933pt;}
.ws14{word-spacing:-12.736000pt;}
.ws13{word-spacing:-12.592000pt;}
.ws19{word-spacing:-12.320000pt;}
.ws1f{word-spacing:-12.170987pt;}
.ws1d{word-spacing:-12.005120pt;}
.ws17{word-spacing:-11.952000pt;}
.ws1c{word-spacing:-11.680000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-512.309760pt;}
._1f{margin-left:-13.611093pt;}
._26{margin-left:-10.263680pt;}
._7{margin-left:-8.289493pt;}
._18{margin-left:-7.392640pt;}
._8{margin-left:-4.216747pt;}
._17{margin-left:-3.070080pt;}
._c{margin-left:-2.015573pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._9{width:2.042880pt;}
._a{width:3.319893pt;}
._10{width:4.253440pt;}
._e{width:5.789653pt;}
._d{width:7.294720pt;}
._12{width:8.359680pt;}
._13{width:9.272107pt;}
._f{width:10.836480pt;}
._14{width:11.831893pt;}
._11{width:14.762667pt;}
._19{width:15.755520pt;}
._16{width:16.688853pt;}
._15{width:18.081493pt;}
._20{width:19.554560pt;}
._1a{width:20.982613pt;}
._1d{width:22.101120pt;}
._1e{width:23.054080pt;}
._2b{width:24.744960pt;}
._29{width:25.719040pt;}
._28{width:26.984960pt;}
._31{width:27.994240pt;}
._27{width:29.216000pt;}
._25{width:30.437760pt;}
._22{width:31.925120pt;}
._2c{width:33.482880pt;}
._2d{width:36.225280pt;}
._2a{width:37.857067pt;}
._1b{width:39.696640pt;}
._1c{width:40.692907pt;}
._30{width:42.389760pt;}
._34{width:46.068267pt;}
._35{width:47.389440pt;}
._2e{width:50.697600pt;}
._23{width:51.780480pt;}
._33{width:54.307200pt;}
._32{width:55.438507pt;}
._37{width:56.519680pt;}
._2f{width:57.635200pt;}
._38{width:59.397547pt;}
._36{width:66.033920pt;}
._21{width:96.834133pt;}
._24{width:202.923947pt;}
._b{width:1115.306667pt;}
.fs6{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:5.120000pt;}
.y95{bottom:5.280000pt;}
.y158{bottom:9.600000pt;}
.y98{bottom:17.440000pt;}
.y9b{bottom:22.720000pt;}
.y94{bottom:22.880000pt;}
.y157{bottom:27.200000pt;}
.y154{bottom:31.040000pt;}
.y97{bottom:35.040000pt;}
.yca{bottom:40.320000pt;}
.y9a{bottom:40.480000pt;}
.yc5{bottom:40.506667pt;}
.ye5{bottom:40.520000pt;}
.y156{bottom:44.826667pt;}
.y6{bottom:53.600000pt;}
.yc7{bottom:58.080000pt;}
.yc4{bottom:58.106667pt;}
.y155{bottom:62.586667pt;}
.yc9{bottom:75.680000pt;}
.yc3{bottom:75.706667pt;}
.y10c{bottom:75.720000pt;}
.y152{bottom:78.400000pt;}
.yf0{bottom:78.560000pt;}
.y92{bottom:80.960000pt;}
.y112{bottom:90.240000pt;}
.y33{bottom:91.360000pt;}
.yc2{bottom:93.306667pt;}
.y10b{bottom:93.320000pt;}
.y109{bottom:93.440000pt;}
.y69{bottom:93.600000pt;}
.yef{bottom:96.160000pt;}
.yc0{bottom:96.960000pt;}
.y91{bottom:98.560000pt;}
.y12b{bottom:101.600000pt;}
.y153{bottom:103.680000pt;}
.y111{bottom:107.840000pt;}
.y32{bottom:108.960000pt;}
.y10e{bottom:111.040000pt;}
.yc1{bottom:111.066667pt;}
.y68{bottom:111.200000pt;}
.yee{bottom:113.760000pt;}
.y90{bottom:116.160000pt;}
.y12a{bottom:119.200000pt;}
.y110{bottom:125.440000pt;}
.y31{bottom:126.720000pt;}
.y67{bottom:128.800000pt;}
.y151{bottom:131.360000pt;}
.yed{bottom:131.520000pt;}
.y8f{bottom:133.760000pt;}
.y129{bottom:136.826667pt;}
.y10f{bottom:143.066667pt;}
.y30{bottom:144.346667pt;}
.y66{bottom:146.426667pt;}
.y150{bottom:148.986667pt;}
.yec{bottom:149.146667pt;}
.y8e{bottom:151.546667pt;}
.y128{bottom:154.426667pt;}
.y10d{bottom:156.186667pt;}
.y2f{bottom:161.946667pt;}
.y65{bottom:164.026667pt;}
.y14f{bottom:166.586667pt;}
.yeb{bottom:166.746667pt;}
.y8d{bottom:169.146667pt;}
.y127{bottom:172.026667pt;}
.y2e{bottom:179.546667pt;}
.y64{bottom:181.786667pt;}
.yea{bottom:184.346667pt;}
.y8c{bottom:186.746667pt;}
.y126{bottom:189.786667pt;}
.y2d{bottom:197.146667pt;}
.y63{bottom:199.386667pt;}
.ye9{bottom:201.946667pt;}
.y8b{bottom:204.346667pt;}
.y125{bottom:207.386667pt;}
.y2c{bottom:214.906667pt;}
.y62{bottom:216.986667pt;}
.y14e{bottom:219.546667pt;}
.ye8{bottom:219.706667pt;}
.ybf{bottom:221.146667pt;}
.y8a{bottom:221.946667pt;}
.y124{bottom:224.986667pt;}
.y2b{bottom:232.506667pt;}
.y61{bottom:234.586667pt;}
.y14d{bottom:237.146667pt;}
.ye7{bottom:237.306667pt;}
.y89{bottom:239.706667pt;}
.y123{bottom:242.586667pt;}
.y2a{bottom:250.106667pt;}
.ye6{bottom:250.426667pt;}
.y60{bottom:252.186667pt;}
.y14c{bottom:254.746667pt;}
.y88{bottom:257.306667pt;}
.y122{bottom:260.186667pt;}
.ybe{bottom:262.266667pt;}
.y29{bottom:267.706667pt;}
.y5f{bottom:269.946667pt;}
.y14b{bottom:272.506667pt;}
.y87{bottom:274.906667pt;}
.y121{bottom:277.946667pt;}
.ybd{bottom:279.866667pt;}
.y10a{bottom:280.346667pt;}
.y28{bottom:285.306667pt;}
.y5e{bottom:287.546667pt;}
.y14a{bottom:290.106667pt;}
.y86{bottom:292.506667pt;}
.y120{bottom:295.546667pt;}
.ybc{bottom:297.466667pt;}
.y27{bottom:303.066667pt;}
.y5d{bottom:305.146667pt;}
.y149{bottom:307.706667pt;}
.y85{bottom:310.106667pt;}
.y11f{bottom:313.146667pt;}
.ybb{bottom:315.066667pt;}
.y26{bottom:320.666667pt;}
.ye4{bottom:321.626667pt;}
.y5c{bottom:322.746667pt;}
.y148{bottom:325.306667pt;}
.y84{bottom:327.866667pt;}
.y11e{bottom:330.746667pt;}
.yba{bottom:332.666667pt;}
.y25{bottom:338.266667pt;}
.y5b{bottom:340.346667pt;}
.y147{bottom:342.906667pt;}
.y83{bottom:345.466667pt;}
.y11d{bottom:348.346667pt;}
.yb9{bottom:350.426667pt;}
.y24{bottom:355.866667pt;}
.y5a{bottom:358.146667pt;}
.y146{bottom:360.706667pt;}
.y82{bottom:363.106667pt;}
.y11c{bottom:366.146667pt;}
.yb8{bottom:368.066667pt;}
.y23{bottom:373.506667pt;}
.ye3{bottom:375.266667pt;}
.y59{bottom:375.746667pt;}
.y145{bottom:378.306667pt;}
.y81{bottom:380.706667pt;}
.y11b{bottom:383.746667pt;}
.yb7{bottom:385.666667pt;}
.y108{bottom:386.786667pt;}
.y22{bottom:391.266667pt;}
.y58{bottom:393.346667pt;}
.y144{bottom:395.906667pt;}
.y80{bottom:398.306667pt;}
.y11a{bottom:401.346667pt;}
.yb6{bottom:403.266667pt;}
.y21{bottom:408.866667pt;}
.y57{bottom:410.946667pt;}
.y143{bottom:413.506667pt;}
.y7f{bottom:416.066667pt;}
.y119{bottom:418.946667pt;}
.yb5{bottom:420.866667pt;}
.y20{bottom:426.466667pt;}
.y56{bottom:428.546667pt;}
.ye2{bottom:428.706667pt;}
.y142{bottom:431.106667pt;}
.y7e{bottom:433.666667pt;}
.y118{bottom:436.546667pt;}
.yb4{bottom:438.626667pt;}
.y1f{bottom:444.066667pt;}
.y55{bottom:446.306667pt;}
.y141{bottom:448.866667pt;}
.y7d{bottom:451.266667pt;}
.y117{bottom:454.306667pt;}
.yb3{bottom:456.226667pt;}
.y1e{bottom:461.666667pt;}
.y54{bottom:463.906667pt;}
.y140{bottom:467.266667pt;}
.y7c{bottom:468.866667pt;}
.ye1{bottom:469.826667pt;}
.y116{bottom:471.906667pt;}
.yb2{bottom:473.826667pt;}
.y1d{bottom:479.426667pt;}
.y53{bottom:481.506667pt;}
.y13f{bottom:485.186667pt;}
.y7b{bottom:486.466667pt;}
.ye0{bottom:487.426667pt;}
.y115{bottom:489.506667pt;}
.yb1{bottom:491.426667pt;}
.y107{bottom:493.346667pt;}
.y1c{bottom:497.026667pt;}
.y52{bottom:499.106667pt;}
.y13e{bottom:502.786667pt;}
.y7a{bottom:504.226667pt;}
.ydf{bottom:505.186667pt;}
.y114{bottom:507.106667pt;}
.yb0{bottom:509.026667pt;}
.y1b{bottom:514.626667pt;}
.y51{bottom:516.706667pt;}
.y13d{bottom:520.386667pt;}
.y79{bottom:521.826667pt;}
.yde{bottom:522.786667pt;}
.y113{bottom:524.706667pt;}
.yaf{bottom:526.786667pt;}
.y1a{bottom:532.226667pt;}
.y106{bottom:534.466667pt;}
.y13c{bottom:537.986667pt;}
.y78{bottom:539.426667pt;}
.ydd{bottom:540.386667pt;}
.y50{bottom:542.466667pt;}
.yae{bottom:544.386667pt;}
.y19{bottom:549.826667pt;}
.y105{bottom:552.066667pt;}
.y13b{bottom:555.746667pt;}
.y77{bottom:557.026667pt;}
.ydc{bottom:557.986667pt;}
.y4f{bottom:560.066667pt;}
.yad{bottom:561.986667pt;}
.y18{bottom:567.586667pt;}
.y104{bottom:569.666667pt;}
.y13a{bottom:573.346667pt;}
.y76{bottom:574.626667pt;}
.ydb{bottom:575.586667pt;}
.y4e{bottom:577.693333pt;}
.yac{bottom:579.613333pt;}
.y17{bottom:585.213333pt;}
.y103{bottom:587.293333pt;}
.y139{bottom:590.973333pt;}
.y75{bottom:592.413333pt;}
.yda{bottom:593.373333pt;}
.y4d{bottom:595.293333pt;}
.yab{bottom:597.213333pt;}
.y16{bottom:602.813333pt;}
.y102{bottom:604.893333pt;}
.y138{bottom:608.573333pt;}
.y74{bottom:610.013333pt;}
.yd9{bottom:610.973333pt;}
.y4c{bottom:612.893333pt;}
.yaa{bottom:614.973333pt;}
.y15{bottom:622.493333pt;}
.y101{bottom:622.653333pt;}
.y137{bottom:626.173333pt;}
.y73{bottom:627.613333pt;}
.yd8{bottom:628.573333pt;}
.y4b{bottom:630.653333pt;}
.ya9{bottom:632.573333pt;}
.y100{bottom:640.253333pt;}
.y136{bottom:643.933333pt;}
.y72{bottom:645.213333pt;}
.yd7{bottom:646.173333pt;}
.y14{bottom:648.093333pt;}
.y4a{bottom:648.253333pt;}
.ya8{bottom:650.173333pt;}
.yff{bottom:657.853333pt;}
.y135{bottom:661.533333pt;}
.y71{bottom:662.813333pt;}
.yd6{bottom:663.773333pt;}
.y13{bottom:665.693333pt;}
.y49{bottom:665.853333pt;}
.ya7{bottom:667.773333pt;}
.yfe{bottom:675.453333pt;}
.y70{bottom:677.533333pt;}
.y134{bottom:679.133333pt;}
.yd5{bottom:681.533333pt;}
.y12{bottom:683.293333pt;}
.y48{bottom:683.453333pt;}
.ya6{bottom:685.373333pt;}
.yfd{bottom:693.053333pt;}
.y133{bottom:696.733333pt;}
.yd4{bottom:699.133333pt;}
.y11{bottom:701.053333pt;}
.ya5{bottom:703.133333pt;}
.yfc{bottom:710.813333pt;}
.y132{bottom:714.333333pt;}
.yd3{bottom:716.733333pt;}
.y10{bottom:718.653333pt;}
.y47{bottom:718.813333pt;}
.ya4{bottom:720.733333pt;}
.yfb{bottom:728.413333pt;}
.y131{bottom:732.733333pt;}
.yd2{bottom:734.333333pt;}
.yf{bottom:736.253333pt;}
.y46{bottom:736.413333pt;}
.ya3{bottom:738.333333pt;}
.yfa{bottom:746.013333pt;}
.y130{bottom:751.453333pt;}
.yd1{bottom:751.933333pt;}
.ye{bottom:753.853333pt;}
.y45{bottom:754.013333pt;}
.ya2{bottom:755.933333pt;}
.yf9{bottom:763.613333pt;}
.y12f{bottom:769.533333pt;}
.yd0{bottom:769.693333pt;}
.yd{bottom:771.453333pt;}
.y44{bottom:771.613333pt;}
.ya1{bottom:773.533333pt;}
.yf8{bottom:781.213333pt;}
.y12e{bottom:787.133333pt;}
.ycf{bottom:787.293333pt;}
.y43{bottom:789.213333pt;}
.yc{bottom:791.133333pt;}
.ya0{bottom:791.293333pt;}
.yf7{bottom:799.013333pt;}
.yce{bottom:804.933333pt;}
.y12d{bottom:805.573333pt;}
.y42{bottom:807.013333pt;}
.y9f{bottom:808.933333pt;}
.yb{bottom:813.413333pt;}
.yf6{bottom:816.613333pt;}
.ycd{bottom:822.533333pt;}
.y12c{bottom:824.293333pt;}
.y41{bottom:824.613333pt;}
.y9e{bottom:826.533333pt;}
.ya{bottom:826.853333pt;}
.yf5{bottom:834.213333pt;}
.y9d{bottom:839.653333pt;}
.ycc{bottom:840.133333pt;}
.y40{bottom:842.213333pt;}
.y9{bottom:845.893333pt;}
.yf4{bottom:851.813333pt;}
.ycb{bottom:857.893333pt;}
.y3f{bottom:859.813333pt;}
.y8{bottom:866.693333pt;}
.y6f{bottom:869.413333pt;}
.yc8{bottom:871.013333pt;}
.y3e{bottom:877.413333pt;}
.y6e{bottom:887.173333pt;}
.y99{bottom:893.253333pt;}
.y7{bottom:894.853333pt;}
.y3d{bottom:895.173333pt;}
.y6d{bottom:904.773333pt;}
.y3c{bottom:912.773333pt;}
.y6c{bottom:922.373333pt;}
.y3b{bottom:930.373333pt;}
.y5{bottom:934.373333pt;}
.y6b{bottom:939.973333pt;}
.y96{bottom:946.853333pt;}
.y3a{bottom:947.973333pt;}
.y6a{bottom:957.573333pt;}
.yc6{bottom:959.813333pt;}
.y4{bottom:961.733333pt;}
.y39{bottom:965.573333pt;}
.yf3{bottom:975.333333pt;}
.y38{bottom:983.333333pt;}
.y3{bottom:989.093333pt;}
.yf2{bottom:992.933333pt;}
.y93{bottom:995.013333pt;}
.y37{bottom:1000.933333pt;}
.yf1{bottom:1010.533333pt;}
.y2{bottom:1016.613333pt;}
.y36{bottom:1018.533333pt;}
.y35{bottom:1036.160000pt;}
.y1{bottom:1046.720000pt;}
.y34{bottom:1060.640000pt;}
.h1d{height:1.787500pt;}
.h7{height:24.131250pt;}
.h10{height:35.200000pt;}
.h14{height:35.360000pt;}
.hd{height:35.392000pt;}
.h8{height:37.090625pt;}
.h5{height:37.479688pt;}
.hb{height:38.491250pt;}
.h9{height:38.672812pt;}
.hc{height:40.410625pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h6{height:47.310625pt;}
.he{height:47.520000pt;}
.h15{height:52.800000pt;}
.h1b{height:52.834688pt;}
.hf{height:52.960000pt;}
.h16{height:52.992000pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.h17{height:70.560000pt;}
.h1c{height:75.072000pt;}
.h13{height:88.160000pt;}
.h12{height:88.192000pt;}
.h19{height:105.792000pt;}
.h18{height:105.920000pt;}
.h1a{height:123.520000pt;}
.h11{height:123.552000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:56.000000pt;}
.w4{width:65.600000pt;}
.wf{width:84.000000pt;}
.wb{width:84.032000pt;}
.wc{width:84.480000pt;}
.w7{width:91.520000pt;}
.wa{width:92.032000pt;}
.we{width:92.192000pt;}
.w3{width:161.786667pt;}
.w12{width:187.386667pt;}
.w10{width:226.146667pt;}
.w9{width:245.146667pt;}
.w11{width:292.386667pt;}
.w8{width:300.066667pt;}
.w6{width:301.986667pt;}
.wd{width:393.213333pt;}
.w13{width:516.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1d{left:8.000000pt;}
.xb{left:9.920000pt;}
.x4b{left:40.800000pt;}
.x1{left:48.159988pt;}
.x14{left:58.560000pt;}
.x3{left:67.199988pt;}
.x15{left:69.160000pt;}
.x3b{left:71.999988pt;}
.x16{left:73.640000pt;}
.xc{left:77.792000pt;}
.x17{left:84.200000pt;}
.x2{left:96.031988pt;}
.x6{left:103.232000pt;}
.x27{left:104.351988pt;}
.x28{left:114.591988pt;}
.x18{left:117.000000pt;}
.x19{left:127.720000pt;}
.x29{left:134.586655pt;}
.x3c{left:138.266655pt;}
.x34{left:141.466667pt;}
.x5{left:145.466655pt;}
.x3d{left:151.226655pt;}
.x1a{left:154.280000pt;}
.x1e{left:161.786667pt;}
.xf{left:164.520000pt;}
.x4c{left:169.146667pt;}
.xd{left:170.106667pt;}
.x3e{left:174.586655pt;}
.x10{left:178.760000pt;}
.x2a{left:179.866655pt;}
.x37{left:185.160000pt;}
.x2b{left:190.266655pt;}
.x1b{left:202.760000pt;}
.x38{left:204.520000pt;}
.x1c{left:213.320000pt;}
.x39{left:223.880000pt;}
.x35{left:226.106667pt;}
.x4d{left:228.186667pt;}
.x3f{left:234.426655pt;}
.x3a{left:243.240000pt;}
.x1f{left:246.466667pt;}
.x2c{left:257.186655pt;}
.x8{left:265.666667pt;}
.x2d{left:267.586655pt;}
.x11{left:268.546667pt;}
.x2e{left:277.986655pt;}
.x12{left:282.786667pt;}
.x40{left:285.506655pt;}
.x2f{left:288.546655pt;}
.x13{left:293.186667pt;}
.x41{left:295.746655pt;}
.x30{left:317.346655pt;}
.x31{left:327.746655pt;}
.x9{left:331.906667pt;}
.x42{left:351.266655pt;}
.x43{left:361.346655pt;}
.x32{left:383.906655pt;}
.xa{left:388.546667pt;}
.x33{left:394.466655pt;}
.x44{left:407.933322pt;}
.x45{left:418.333322pt;}
.x36{left:452.893333pt;}
.xe{left:470.973333pt;}
.x46{left:481.213322pt;}
.x47{left:501.213322pt;}
.x48{left:511.453322pt;}
.x49{left:542.493322pt;}
.x4a{left:552.893322pt;}
.x4{left:591.013322pt;}
.x20{left:640.613322pt;}
.x21{left:649.253322pt;}
.x22{left:670.693322pt;}
.x23{left:679.493322pt;}
.x24{left:715.493322pt;}
.x25{left:724.479988pt;}
.x26{left:745.919988pt;}
}




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