
    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_f9ae1f98df3be092ad5fae00.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a3ad34b3cadc85f5abe61b1f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_5d0db22a6b17d8d71ff3071f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_5b36330f4c5c4f79bd4b0ae9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_81abbe783a7ee94aa6be0f8c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1d383724dcea8230d7165fa2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8b1c3bfd401fb65e55bb92fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_38841a0d2c76a14e9bbfb371.woff2')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3ba45ad2995de53baee75361.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.776855;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:-82.980000px;}
.v2{vertical-align:-77.160000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.512000px;}
.ls1e{letter-spacing:-1.440000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.259800px;}
.ls1b{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.220800px;}
.ls12{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.720000px;}
.ls17{letter-spacing:1.440000px;}
.ls1d{letter-spacing:10.800000px;}
.ls21{letter-spacing:21.600000px;}
.ls22{letter-spacing:24.480000px;}
.ls18{letter-spacing:33.300000px;}
.ls24{letter-spacing:33.984000px;}
.ls14{letter-spacing:54.864000px;}
.ls11{letter-spacing:66.960000px;}
.ls10{letter-spacing:109.440000px;}
.ls15{letter-spacing:110.160000px;}
.lsf{letter-spacing:162.149760px;}
.ls20{letter-spacing:825.996000px;}
.ls23{letter-spacing:872.796000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws9{word-spacing:-66.240000px;}
.ws14{word-spacing:-18.216000px;}
.ws1{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.712000px;}
.ws11{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.226440px;}
.ws12{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.440800px;}
.ws2{word-spacing:-14.220000px;}
.wsc{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.518000px;}
.wsb{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.204000px;}
.ws8{word-spacing:0.000000px;}
._18{margin-left:-4.878000px;}
._13{margin-left:-3.834000px;}
._c{margin-left:-2.268000px;}
._a{margin-left:-1.260000px;}
._1{width:1.128000px;}
._7{width:2.151360px;}
._e{width:3.672000px;}
._f{width:5.238000px;}
._10{width:6.287280px;}
._9{width:7.290720px;}
._8{width:8.485920px;}
._d{width:9.542160px;}
._b{width:11.028000px;}
._15{width:12.850560px;}
._16{width:14.175360px;}
._19{width:15.480000px;}
._1a{width:16.632000px;}
._14{width:19.512000px;}
._1c{width:20.952000px;}
._11{width:22.032000px;}
._6{width:23.269680px;}
._5{width:24.322320px;}
._1b{width:25.539360px;}
._22{width:27.061920px;}
._1d{width:28.944000px;}
._1e{width:29.952000px;}
._2c{width:30.976560px;}
._29{width:32.275440px;}
._28{width:33.388560px;}
._2f{width:34.394880px;}
._25{width:35.496000px;}
._26{width:36.936000px;}
._2a{width:39.024000px;}
._2b{width:40.176000px;}
._34{width:41.988000px;}
._23{width:43.128000px;}
._24{width:44.208000px;}
._27{width:46.008000px;}
._1f{width:48.960000px;}
._20{width:53.640000px;}
._21{width:55.116000px;}
._32{width:56.664000px;}
._33{width:57.876000px;}
._39{width:60.024000px;}
._3a{width:62.388000px;}
._37{width:71.280000px;}
._38{width:72.648000px;}
._2d{width:80.928000px;}
._2e{width:82.644000px;}
._3b{width:100.224000px;}
._3c{width:101.256000px;}
._3{width:110.698560px;}
._4{width:139.426560px;}
._30{width:150.696000px;}
._31{width:152.064000px;}
._36{width:200.664000px;}
._3d{width:246.312000px;}
._0{width:470.316000px;}
._12{width:483.276000px;}
._35{width:622.728000px;}
._2{width:1080.300000px;}
._17{width:1361.946000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf6{bottom:3.600000px;}
.yf9{bottom:3.780000px;}
.y112{bottom:4.500000px;}
.y111{bottom:5.220000px;}
.y115{bottom:5.400000px;}
.y10e{bottom:7.200000px;}
.y14a{bottom:13.140000px;}
.y10f{bottom:14.940000px;}
.y100{bottom:22.500000px;}
.y10d{bottom:26.100000px;}
.y5{bottom:45.180000px;}
.y59{bottom:45.900000px;}
.y4{bottom:60.840000px;}
.y58{bottom:61.740000px;}
.y3{bottom:76.320000px;}
.y57{bottom:77.220000px;}
.y2{bottom:91.836000px;}
.y56{bottom:92.916000px;}
.ye4{bottom:111.276000px;}
.y128{bottom:113.076000px;}
.y9f{bottom:116.136000px;}
.y7f{bottom:118.836000px;}
.y16b{bottom:119.016000px;}
.y2e{bottom:121.536000px;}
.y125{bottom:125.136000px;}
.yda{bottom:125.316000px;}
.y146{bottom:126.936000px;}
.yf2{bottom:127.476000px;}
.y107{bottom:128.556000px;}
.ye1{bottom:130.356000px;}
.y55{bottom:131.976000px;}
.y127{bottom:133.596000px;}
.y15d{bottom:133.776000px;}
.y9e{bottom:136.836000px;}
.y2d{bottom:137.916000px;}
.ya2{bottom:138.276000px;}
.y7e{bottom:139.536000px;}
.y191{bottom:142.236000px;}
.y124{bottom:145.836000px;}
.yd9{bottom:146.016000px;}
.y145{bottom:147.636000px;}
.yf1{bottom:148.176000px;}
.y106{bottom:149.076000px;}
.ye0{bottom:151.050000px;}
.y54{bottom:152.670000px;}
.y15c{bottom:153.570000px;}
.y2c{bottom:154.470000px;}
.yc3{bottom:156.270000px;}
.y9d{bottom:157.530000px;}
.ya1{bottom:158.970000px;}
.y7d{bottom:160.230000px;}
.y126{bottom:162.570000px;}
.y190{bottom:162.930000px;}
.y123{bottom:166.530000px;}
.yd8{bottom:166.710000px;}
.y144{bottom:168.330000px;}
.yf0{bottom:168.870000px;}
.y2b{bottom:170.850000px;}
.ydf{bottom:171.750000px;}
.y53{bottom:173.370000px;}
.yc2{bottom:176.970000px;}
.y105{bottom:178.050000px;}
.y9c{bottom:178.230000px;}
.ya0{bottom:179.670000px;}
.y7c{bottom:180.930000px;}
.y18f{bottom:183.630000px;}
.y122{bottom:187.230000px;}
.y2a{bottom:187.410000px;}
.y143{bottom:189.030000px;}
.yef{bottom:189.570000px;}
.yde{bottom:192.450000px;}
.y15b{bottom:192.990000px;}
.y52{bottom:194.070000px;}
.yc1{bottom:197.670000px;}
.y9b{bottom:198.930000px;}
.y7b{bottom:201.630000px;}
.y29{bottom:203.790000px;}
.y18e{bottom:204.330000px;}
.y121{bottom:207.930000px;}
.yd7{bottom:208.110000px;}
.y142{bottom:209.730000px;}
.yee{bottom:210.270000px;}
.y15a{bottom:212.790000px;}
.ydd{bottom:213.150000px;}
.y51{bottom:214.770000px;}
.yc0{bottom:218.370000px;}
.y9a{bottom:219.630000px;}
.y28{bottom:220.350000px;}
.y7a{bottom:222.330000px;}
.y18d{bottom:225.030000px;}
.y120{bottom:228.630000px;}
.yd6{bottom:228.810000px;}
.y141{bottom:230.430000px;}
.yed{bottom:230.970000px;}
.y159{bottom:232.410000px;}
.y50{bottom:235.470000px;}
.y27{bottom:236.730000px;}
.ybf{bottom:239.070000px;}
.y99{bottom:240.330000px;}
.y79{bottom:243.030000px;}
.y18c{bottom:245.730000px;}
.ydc{bottom:246.810000px;}
.y11f{bottom:249.330000px;}
.yd5{bottom:249.510000px;}
.y140{bottom:251.130000px;}
.yec{bottom:251.670000px;}
.y158{bottom:252.210000px;}
.y26{bottom:253.290000px;}
.y4f{bottom:256.170000px;}
.ybe{bottom:259.770000px;}
.y98{bottom:261.030000px;}
.y78{bottom:263.730000px;}
.y18b{bottom:266.430000px;}
.y25{bottom:269.670000px;}
.y11e{bottom:270.030000px;}
.yd4{bottom:271.470000px;}
.y13f{bottom:271.830000px;}
.yeb{bottom:272.370000px;}
.ydb{bottom:275.970000px;}
.y4e{bottom:276.870000px;}
.ybd{bottom:280.470000px;}
.y97{bottom:281.730000px;}
.y77{bottom:284.430000px;}
.y24{bottom:286.230000px;}
.y18a{bottom:287.130000px;}
.y11d{bottom:290.730000px;}
.y157{bottom:291.630000px;}
.yd3{bottom:292.350000px;}
.y13e{bottom:292.530000px;}
.yea{bottom:293.070000px;}
.y4d{bottom:297.615000px;}
.ybc{bottom:301.215000px;}
.y96{bottom:302.475000px;}
.y23{bottom:302.835000px;}
.y76{bottom:305.175000px;}
.y189{bottom:307.875000px;}
.ye3{bottom:310.575000px;}
.y11c{bottom:311.475000px;}
.y13d{bottom:313.275000px;}
.ye9{bottom:313.815000px;}
.yd2{bottom:314.355000px;}
.y4c{bottom:318.315000px;}
.y22{bottom:319.215000px;}
.y95{bottom:323.175000px;}
.y75{bottom:325.875000px;}
.y188{bottom:328.575000px;}
.y11b{bottom:332.175000px;}
.y13c{bottom:333.975000px;}
.ye8{bottom:334.515000px;}
.yd1{bottom:335.055000px;}
.y21{bottom:335.775000px;}
.y4b{bottom:339.015000px;}
.ye2{bottom:339.555000px;}
.ybb{bottom:342.615000px;}
.y94{bottom:343.875000px;}
.y74{bottom:346.575000px;}
.y156{bottom:348.195000px;}
.y187{bottom:349.275000px;}
.y11a{bottom:349.635000px;}
.y20{bottom:352.155000px;}
.y13b{bottom:354.675000px;}
.y17f{bottom:355.215000px;}
.yd0{bottom:355.755000px;}
.y4a{bottom:359.715000px;}
.yba{bottom:363.315000px;}
.y73{bottom:367.275000px;}
.ye7{bottom:368.175000px;}
.y155{bottom:368.535000px;}
.y1f{bottom:368.715000px;}
.y119{bottom:369.435000px;}
.y186{bottom:369.975000px;}
.y13a{bottom:375.375000px;}
.y17e{bottom:375.915000px;}
.ycf{bottom:377.715000px;}
.y49{bottom:380.415000px;}
.yb9{bottom:384.015000px;}
.y1e{bottom:385.095000px;}
.y93{bottom:385.275000px;}
.y72{bottom:387.975000px;}
.ye6{bottom:388.695000px;}
.y118{bottom:390.675000px;}
.y139{bottom:396.075000px;}
.y17d{bottom:396.435000px;}
.yce{bottom:399.675000px;}
.y48{bottom:400.755000px;}
.y1d{bottom:401.655000px;}
.yb8{bottom:404.715000px;}
.y92{bottom:405.975000px;}
.y71{bottom:408.675000px;}
.y185{bottom:411.375000px;}
.y117{bottom:412.095000px;}
.y138{bottom:416.775000px;}
.y17c{bottom:417.135000px;}
.ye5{bottom:417.495000px;}
.y1c{bottom:418.035000px;}
.y47{bottom:419.835000px;}
.ycd{bottom:420.375000px;}
.yb7{bottom:425.415000px;}
.y91{bottom:426.675000px;}
.y70{bottom:429.375000px;}
.y184{bottom:432.075000px;}
.y116{bottom:433.335000px;}
.y1b{bottom:434.595000px;}
.y137{bottom:437.475000px;}
.y17b{bottom:437.835000px;}
.y46{bottom:438.735000px;}
.ycc{bottom:441.075000px;}
.yb6{bottom:446.115000px;}
.y16a{bottom:447.015000px;}
.y90{bottom:447.375000px;}
.y6f{bottom:450.075000px;}
.y1a{bottom:451.155000px;}
.y183{bottom:452.775000px;}
.y114{bottom:454.575000px;}
.y45{bottom:457.635000px;}
.y136{bottom:458.175000px;}
.y17a{bottom:458.535000px;}
.ycb{bottom:461.775000px;}
.y169{bottom:466.635000px;}
.yb5{bottom:466.815000px;}
.y19{bottom:467.535000px;}
.y8f{bottom:468.075000px;}
.y6e{bottom:470.775000px;}
.y182{bottom:473.475000px;}
.y113{bottom:475.995000px;}
.y44{bottom:476.715000px;}
.y135{bottom:478.875000px;}
.y179{bottom:479.235000px;}
.yca{bottom:482.475000px;}
.y18{bottom:483.735000px;}
.y168{bottom:486.435000px;}
.yb4{bottom:487.515000px;}
.y8e{bottom:488.775000px;}
.y6d{bottom:491.475000px;}
.y181{bottom:494.175000px;}
.y110{bottom:497.235000px;}
.y134{bottom:499.575000px;}
.y178{bottom:499.935000px;}
.y17{bottom:501.015000px;}
.yc9{bottom:503.175000px;}
.y167{bottom:506.085000px;}
.y104{bottom:507.885000px;}
.yb3{bottom:508.245000px;}
.y8d{bottom:509.505000px;}
.y6c{bottom:512.205000px;}
.y43{bottom:514.905000px;}
.y16{bottom:518.145000px;}
.y10c{bottom:518.505000px;}
.y133{bottom:520.305000px;}
.y177{bottom:520.665000px;}
.yc8{bottom:523.905000px;}
.y166{bottom:525.885000px;}
.yb2{bottom:528.945000px;}
.y8c{bottom:530.205000px;}
.y6b{bottom:532.905000px;}
.y15{bottom:535.425000px;}
.y42{bottom:535.605000px;}
.y103{bottom:536.865000px;}
.y132{bottom:541.005000px;}
.y176{bottom:541.365000px;}
.yc7{bottom:544.605000px;}
.y165{bottom:545.505000px;}
.yb1{bottom:549.645000px;}
.y102{bottom:550.365000px;}
.y8b{bottom:550.905000px;}
.y6a{bottom:553.605000px;}
.y41{bottom:556.305000px;}
.y14{bottom:556.665000px;}
.y10b{bottom:560.625000px;}
.y131{bottom:561.705000px;}
.y175{bottom:562.065000px;}
.y164{bottom:565.305000px;}
.y101{bottom:570.165000px;}
.yb0{bottom:570.345000px;}
.y8a{bottom:571.605000px;}
.y13{bottom:573.945000px;}
.y69{bottom:574.125000px;}
.y154{bottom:574.305000px;}
.y40{bottom:577.005000px;}
.yc6{bottom:578.265000px;}
.y10a{bottom:580.425000px;}
.y130{bottom:582.405000px;}
.y174{bottom:582.765000px;}
.y163{bottom:585.105000px;}
.yff{bottom:589.965000px;}
.yaf{bottom:591.045000px;}
.y12{bottom:591.225000px;}
.y153{bottom:591.765000px;}
.y89{bottom:592.305000px;}
.y68{bottom:594.825000px;}
.y3f{bottom:597.705000px;}
.yc5{bottom:598.785000px;}
.y12f{bottom:603.105000px;}
.y173{bottom:603.465000px;}
.y162{bottom:604.725000px;}
.y11{bottom:608.505000px;}
.y152{bottom:611.565000px;}
.yae{bottom:611.745000px;}
.y67{bottom:615.525000px;}
.y109{bottom:617.145000px;}
.y3e{bottom:618.405000px;}
.y12e{bottom:623.805000px;}
.y172{bottom:624.165000px;}
.y161{bottom:624.525000px;}
.y10{bottom:625.605000px;}
.yc4{bottom:627.765000px;}
.yfe{bottom:628.665000px;}
.y151{bottom:631.365000px;}
.yad{bottom:632.445000px;}
.y88{bottom:633.705000px;}
.y66{bottom:636.225000px;}
.y108{bottom:637.485000px;}
.y3d{bottom:639.105000px;}
.yf{bottom:642.885000px;}
.y12d{bottom:644.505000px;}
.y171{bottom:644.865000px;}
.yfd{bottom:648.285000px;}
.y150{bottom:650.985000px;}
.yac{bottom:653.145000px;}
.y87{bottom:654.405000px;}
.y65{bottom:656.925000px;}
.y3c{bottom:659.805000px;}
.ye{bottom:660.165000px;}
.y160{bottom:663.225000px;}
.y12c{bottom:665.205000px;}
.y170{bottom:665.565000px;}
.yfc{bottom:668.085000px;}
.y14f{bottom:670.785000px;}
.yab{bottom:673.845000px;}
.y86{bottom:675.105000px;}
.yd{bottom:677.445000px;}
.y64{bottom:677.625000px;}
.y180{bottom:679.965000px;}
.y3b{bottom:680.505000px;}
.y16f{bottom:686.085000px;}
.yfb{bottom:687.705000px;}
.y14e{bottom:690.405000px;}
.yaa{bottom:694.545000px;}
.yc{bottom:695.445000px;}
.y85{bottom:695.805000px;}
.y63{bottom:698.325000px;}
.y12b{bottom:699.045000px;}
.y15f{bottom:699.945000px;}
.y16e{bottom:704.985000px;}
.yfa{bottom:707.505000px;}
.y14d{bottom:710.205000px;}
.ya9{bottom:715.290000px;}
.y84{bottom:716.550000px;}
.y62{bottom:719.070000px;}
.y12a{bottom:719.430000px;}
.y15e{bottom:720.330000px;}
.y3a{bottom:721.950000px;}
.y16d{bottom:724.110000px;}
.yf8{bottom:727.170000px;}
.y14c{bottom:729.870000px;}
.yb{bottom:732.210000px;}
.y83{bottom:738.510000px;}
.y61{bottom:739.770000px;}
.y39{bottom:742.650000px;}
.y16c{bottom:743.010000px;}
.yf7{bottom:746.970000px;}
.y129{bottom:748.410000px;}
.y14b{bottom:749.670000px;}
.ya8{bottom:756.690000px;}
.y82{bottom:759.210000px;}
.y60{bottom:760.470000px;}
.ya{bottom:761.550000px;}
.y38{bottom:763.350000px;}
.yf5{bottom:766.770000px;}
.y149{bottom:769.470000px;}
.ya7{bottom:777.390000px;}
.y81{bottom:779.910000px;}
.y5f{bottom:781.170000px;}
.y37{bottom:789.630000px;}
.y9{bottom:790.710000px;}
.ya6{bottom:799.350000px;}
.y80{bottom:800.610000px;}
.y5e{bottom:801.870000px;}
.yf4{bottom:803.490000px;}
.y36{bottom:806.190000px;}
.y148{bottom:808.170000px;}
.y8{bottom:820.050000px;}
.y5d{bottom:822.570000px;}
.y35{bottom:822.750000px;}
.yf3{bottom:823.830000px;}
.y34{bottom:839.130000px;}
.ya5{bottom:842.010000px;}
.y5c{bottom:843.270000px;}
.y147{bottom:844.890000px;}
.y7{bottom:849.390000px;}
.y33{bottom:855.690000px;}
.ya4{bottom:862.710000px;}
.y5b{bottom:863.970000px;}
.y32{bottom:872.070000px;}
.y6{bottom:878.730000px;}
.ya3{bottom:883.410000px;}
.y5a{bottom:884.670000px;}
.y31{bottom:888.630000px;}
.y30{bottom:917.070000px;}
.y1{bottom:924.120000px;}
.y2f{bottom:936.900000px;}
.he{height:18.900000px;}
.h11{height:18.936000px;}
.h10{height:19.080000px;}
.h15{height:20.520000px;}
.h14{height:20.556000px;}
.h16{height:20.700000px;}
.h12{height:37.800000px;}
.h17{height:41.317383px;}
.h13{height:41.400000px;}
.h3{height:52.998047px;}
.h8{height:53.709961px;}
.h7{height:55.291992px;}
.h6{height:58.651172px;}
.hb{height:64.546875px;}
.h9{height:65.010937px;}
.h2{height:65.884219px;}
.hf{height:66.757500px;}
.hd{height:70.628906px;}
.h5{height:70.664062px;}
.ha{height:72.562500px;}
.hc{height:74.004654px;}
.h4{height:95.245664px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.wa{width:32.580000px;}
.wd{width:32.616000px;}
.wb{width:32.760000px;}
.wc{width:32.796000px;}
.we{width:73.260000px;}
.wf{width:85.716000px;}
.w4{width:94.500000px;}
.w15{width:119.520000px;}
.w16{width:125.136000px;}
.w10{width:135.900000px;}
.w6{width:137.376000px;}
.w17{width:138.636000px;}
.w12{width:141.696000px;}
.w14{width:144.576000px;}
.w11{width:146.196000px;}
.w7{width:147.636000px;}
.w5{width:148.176000px;}
.w9{width:164.910000px;}
.w13{width:186.150000px;}
.w8{width:465.945000px;}
.w3{width:530.025000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2f{left:7.740000px;}
.x26{left:9.360000px;}
.x44{left:10.440000px;}
.x31{left:12.240000px;}
.x1a{left:14.940000px;}
.x3a{left:16.200000px;}
.x1b{left:18.720000px;}
.x53{left:19.980000px;}
.x20{left:22.680000px;}
.x57{left:23.940000px;}
.x22{left:25.020000px;}
.x52{left:27.540000px;}
.x55{left:29.160000px;}
.x21{left:32.760000px;}
.x41{left:36.540000px;}
.x16{left:37.620000px;}
.x45{left:38.880000px;}
.x18{left:40.320000px;}
.x1f{left:41.940000px;}
.x24{left:43.380000px;}
.x1d{left:45.540000px;}
.x14{left:47.340000px;}
.x58{left:48.630000px;}
.x25{left:50.085000px;}
.x1e{left:51.660000px;}
.x59{left:55.440000px;}
.x23{left:56.565000px;}
.x27{left:58.545000px;}
.x1c{left:59.985000px;}
.x46{left:63.900000px;}
.x48{left:67.860000px;}
.x47{left:68.970000px;}
.x4c{left:70.965000px;}
.x49{left:72.930000px;}
.x4e{left:79.050000px;}
.x1{left:95.795989px;}
.xb{left:97.235989px;}
.xf{left:98.855989px;}
.x2c{left:100.655989px;}
.x8{left:104.795989px;}
.x29{left:107.315989px;}
.x11{left:111.635989px;}
.x4a{left:113.075989px;}
.x3c{left:119.015989px;}
.x5{left:122.795989px;}
.xd{left:123.875989px;}
.x3d{left:126.035989px;}
.x4{left:127.655989px;}
.x5a{left:138.275989px;}
.x3{left:146.195989px;}
.x6{left:149.795989px;}
.x2e{left:160.059000px;}
.x50{left:163.659000px;}
.x40{left:170.139000px;}
.x10{left:177.329989px;}
.x13{left:184.539000px;}
.x15{left:191.730000px;}
.x4b{left:197.310000px;}
.x2d{left:228.629989px;}
.x2b{left:235.109989px;}
.x51{left:241.815000px;}
.x12{left:243.074989px;}
.x42{left:257.115000px;}
.x2{left:262.874989px;}
.x9{left:273.134989px;}
.x30{left:294.195000px;}
.x4f{left:297.794989px;}
.x32{left:327.675000px;}
.x3f{left:338.474989px;}
.x4d{left:339.735000px;}
.x17{left:340.815000px;}
.x33{left:360.975000px;}
.x54{left:362.055000px;}
.x34{left:394.455000px;}
.x35{left:427.965000px;}
.x3e{left:438.044989px;}
.x36{left:461.445000px;}
.x19{left:478.905000px;}
.x28{left:486.644989px;}
.x56{left:487.905000px;}
.x37{left:494.925000px;}
.x38{left:528.405000px;}
.x43{left:540.825000px;}
.x3b{left:549.824989px;}
.x39{left:561.750000px;}
.xa{left:576.689989px;}
.xe{left:600.629989px;}
.x2a{left:602.429989px;}
.xc{left:646.889989px;}
.x7{left:656.789989px;}
@media print{
.v1{vertical-align:-73.760000pt;}
.v2{vertical-align:-68.586667pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.344000pt;}
.ls1e{letter-spacing:-1.280000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.230933pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.196267pt;}
.ls12{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls17{letter-spacing:1.280000pt;}
.ls1d{letter-spacing:9.600000pt;}
.ls21{letter-spacing:19.200000pt;}
.ls22{letter-spacing:21.760000pt;}
.ls18{letter-spacing:29.600000pt;}
.ls24{letter-spacing:30.208000pt;}
.ls14{letter-spacing:48.768000pt;}
.ls11{letter-spacing:59.520000pt;}
.ls10{letter-spacing:97.280000pt;}
.ls15{letter-spacing:97.920000pt;}
.lsf{letter-spacing:144.133120pt;}
.ls20{letter-spacing:734.218667pt;}
.ls23{letter-spacing:775.818667pt;}
.wse{word-spacing:-64.000000pt;}
.ws9{word-spacing:-58.880000pt;}
.ws14{word-spacing:-16.192000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws11{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.534613pt;}
.ws12{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.836267pt;}
.ws2{word-spacing:-12.640000pt;}
.wsc{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.016000pt;}
.wsb{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws7{word-spacing:-10.848000pt;}
.ws8{word-spacing:0.000000pt;}
._18{margin-left:-4.336000pt;}
._13{margin-left:-3.408000pt;}
._c{margin-left:-2.016000pt;}
._a{margin-left:-1.120000pt;}
._1{width:1.002667pt;}
._7{width:1.912320pt;}
._e{width:3.264000pt;}
._f{width:4.656000pt;}
._10{width:5.588693pt;}
._9{width:6.480640pt;}
._8{width:7.543040pt;}
._d{width:8.481920pt;}
._b{width:9.802667pt;}
._15{width:11.422720pt;}
._16{width:12.600320pt;}
._19{width:13.760000pt;}
._1a{width:14.784000pt;}
._14{width:17.344000pt;}
._1c{width:18.624000pt;}
._11{width:19.584000pt;}
._6{width:20.684160pt;}
._5{width:21.619840pt;}
._1b{width:22.701653pt;}
._22{width:24.055040pt;}
._1d{width:25.728000pt;}
._1e{width:26.624000pt;}
._2c{width:27.534720pt;}
._29{width:28.689280pt;}
._28{width:29.678720pt;}
._2f{width:30.573227pt;}
._25{width:31.552000pt;}
._26{width:32.832000pt;}
._2a{width:34.688000pt;}
._2b{width:35.712000pt;}
._34{width:37.322667pt;}
._23{width:38.336000pt;}
._24{width:39.296000pt;}
._27{width:40.896000pt;}
._1f{width:43.520000pt;}
._20{width:47.680000pt;}
._21{width:48.992000pt;}
._32{width:50.368000pt;}
._33{width:51.445333pt;}
._39{width:53.354667pt;}
._3a{width:55.456000pt;}
._37{width:63.360000pt;}
._38{width:64.576000pt;}
._2d{width:71.936000pt;}
._2e{width:73.461333pt;}
._3b{width:89.088000pt;}
._3c{width:90.005333pt;}
._3{width:98.398720pt;}
._4{width:123.934720pt;}
._30{width:133.952000pt;}
._31{width:135.168000pt;}
._36{width:178.368000pt;}
._3d{width:218.944000pt;}
._0{width:418.058667pt;}
._12{width:429.578667pt;}
._35{width:553.536000pt;}
._2{width:960.266667pt;}
._17{width:1210.618667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf6{bottom:3.200000pt;}
.yf9{bottom:3.360000pt;}
.y112{bottom:4.000000pt;}
.y111{bottom:4.640000pt;}
.y115{bottom:4.800000pt;}
.y10e{bottom:6.400000pt;}
.y14a{bottom:11.680000pt;}
.y10f{bottom:13.280000pt;}
.y100{bottom:20.000000pt;}
.y10d{bottom:23.200000pt;}
.y5{bottom:40.160000pt;}
.y59{bottom:40.800000pt;}
.y4{bottom:54.080000pt;}
.y58{bottom:54.880000pt;}
.y3{bottom:67.840000pt;}
.y57{bottom:68.640000pt;}
.y2{bottom:81.632000pt;}
.y56{bottom:82.592000pt;}
.ye4{bottom:98.912000pt;}
.y128{bottom:100.512000pt;}
.y9f{bottom:103.232000pt;}
.y7f{bottom:105.632000pt;}
.y16b{bottom:105.792000pt;}
.y2e{bottom:108.032000pt;}
.y125{bottom:111.232000pt;}
.yda{bottom:111.392000pt;}
.y146{bottom:112.832000pt;}
.yf2{bottom:113.312000pt;}
.y107{bottom:114.272000pt;}
.ye1{bottom:115.872000pt;}
.y55{bottom:117.312000pt;}
.y127{bottom:118.752000pt;}
.y15d{bottom:118.912000pt;}
.y9e{bottom:121.632000pt;}
.y2d{bottom:122.592000pt;}
.ya2{bottom:122.912000pt;}
.y7e{bottom:124.032000pt;}
.y191{bottom:126.432000pt;}
.y124{bottom:129.632000pt;}
.yd9{bottom:129.792000pt;}
.y145{bottom:131.232000pt;}
.yf1{bottom:131.712000pt;}
.y106{bottom:132.512000pt;}
.ye0{bottom:134.266667pt;}
.y54{bottom:135.706667pt;}
.y15c{bottom:136.506667pt;}
.y2c{bottom:137.306667pt;}
.yc3{bottom:138.906667pt;}
.y9d{bottom:140.026667pt;}
.ya1{bottom:141.306667pt;}
.y7d{bottom:142.426667pt;}
.y126{bottom:144.506667pt;}
.y190{bottom:144.826667pt;}
.y123{bottom:148.026667pt;}
.yd8{bottom:148.186667pt;}
.y144{bottom:149.626667pt;}
.yf0{bottom:150.106667pt;}
.y2b{bottom:151.866667pt;}
.ydf{bottom:152.666667pt;}
.y53{bottom:154.106667pt;}
.yc2{bottom:157.306667pt;}
.y105{bottom:158.266667pt;}
.y9c{bottom:158.426667pt;}
.ya0{bottom:159.706667pt;}
.y7c{bottom:160.826667pt;}
.y18f{bottom:163.226667pt;}
.y122{bottom:166.426667pt;}
.y2a{bottom:166.586667pt;}
.y143{bottom:168.026667pt;}
.yef{bottom:168.506667pt;}
.yde{bottom:171.066667pt;}
.y15b{bottom:171.546667pt;}
.y52{bottom:172.506667pt;}
.yc1{bottom:175.706667pt;}
.y9b{bottom:176.826667pt;}
.y7b{bottom:179.226667pt;}
.y29{bottom:181.146667pt;}
.y18e{bottom:181.626667pt;}
.y121{bottom:184.826667pt;}
.yd7{bottom:184.986667pt;}
.y142{bottom:186.426667pt;}
.yee{bottom:186.906667pt;}
.y15a{bottom:189.146667pt;}
.ydd{bottom:189.466667pt;}
.y51{bottom:190.906667pt;}
.yc0{bottom:194.106667pt;}
.y9a{bottom:195.226667pt;}
.y28{bottom:195.866667pt;}
.y7a{bottom:197.626667pt;}
.y18d{bottom:200.026667pt;}
.y120{bottom:203.226667pt;}
.yd6{bottom:203.386667pt;}
.y141{bottom:204.826667pt;}
.yed{bottom:205.306667pt;}
.y159{bottom:206.586667pt;}
.y50{bottom:209.306667pt;}
.y27{bottom:210.426667pt;}
.ybf{bottom:212.506667pt;}
.y99{bottom:213.626667pt;}
.y79{bottom:216.026667pt;}
.y18c{bottom:218.426667pt;}
.ydc{bottom:219.386667pt;}
.y11f{bottom:221.626667pt;}
.yd5{bottom:221.786667pt;}
.y140{bottom:223.226667pt;}
.yec{bottom:223.706667pt;}
.y158{bottom:224.186667pt;}
.y26{bottom:225.146667pt;}
.y4f{bottom:227.706667pt;}
.ybe{bottom:230.906667pt;}
.y98{bottom:232.026667pt;}
.y78{bottom:234.426667pt;}
.y18b{bottom:236.826667pt;}
.y25{bottom:239.706667pt;}
.y11e{bottom:240.026667pt;}
.yd4{bottom:241.306667pt;}
.y13f{bottom:241.626667pt;}
.yeb{bottom:242.106667pt;}
.ydb{bottom:245.306667pt;}
.y4e{bottom:246.106667pt;}
.ybd{bottom:249.306667pt;}
.y97{bottom:250.426667pt;}
.y77{bottom:252.826667pt;}
.y24{bottom:254.426667pt;}
.y18a{bottom:255.226667pt;}
.y11d{bottom:258.426667pt;}
.y157{bottom:259.226667pt;}
.yd3{bottom:259.866667pt;}
.y13e{bottom:260.026667pt;}
.yea{bottom:260.506667pt;}
.y4d{bottom:264.546667pt;}
.ybc{bottom:267.746667pt;}
.y96{bottom:268.866667pt;}
.y23{bottom:269.186667pt;}
.y76{bottom:271.266667pt;}
.y189{bottom:273.666667pt;}
.ye3{bottom:276.066667pt;}
.y11c{bottom:276.866667pt;}
.y13d{bottom:278.466667pt;}
.ye9{bottom:278.946667pt;}
.yd2{bottom:279.426667pt;}
.y4c{bottom:282.946667pt;}
.y22{bottom:283.746667pt;}
.y95{bottom:287.266667pt;}
.y75{bottom:289.666667pt;}
.y188{bottom:292.066667pt;}
.y11b{bottom:295.266667pt;}
.y13c{bottom:296.866667pt;}
.ye8{bottom:297.346667pt;}
.yd1{bottom:297.826667pt;}
.y21{bottom:298.466667pt;}
.y4b{bottom:301.346667pt;}
.ye2{bottom:301.826667pt;}
.ybb{bottom:304.546667pt;}
.y94{bottom:305.666667pt;}
.y74{bottom:308.066667pt;}
.y156{bottom:309.506667pt;}
.y187{bottom:310.466667pt;}
.y11a{bottom:310.786667pt;}
.y20{bottom:313.026667pt;}
.y13b{bottom:315.266667pt;}
.y17f{bottom:315.746667pt;}
.yd0{bottom:316.226667pt;}
.y4a{bottom:319.746667pt;}
.yba{bottom:322.946667pt;}
.y73{bottom:326.466667pt;}
.ye7{bottom:327.266667pt;}
.y155{bottom:327.586667pt;}
.y1f{bottom:327.746667pt;}
.y119{bottom:328.386667pt;}
.y186{bottom:328.866667pt;}
.y13a{bottom:333.666667pt;}
.y17e{bottom:334.146667pt;}
.ycf{bottom:335.746667pt;}
.y49{bottom:338.146667pt;}
.yb9{bottom:341.346667pt;}
.y1e{bottom:342.306667pt;}
.y93{bottom:342.466667pt;}
.y72{bottom:344.866667pt;}
.ye6{bottom:345.506667pt;}
.y118{bottom:347.266667pt;}
.y139{bottom:352.066667pt;}
.y17d{bottom:352.386667pt;}
.yce{bottom:355.266667pt;}
.y48{bottom:356.226667pt;}
.y1d{bottom:357.026667pt;}
.yb8{bottom:359.746667pt;}
.y92{bottom:360.866667pt;}
.y71{bottom:363.266667pt;}
.y185{bottom:365.666667pt;}
.y117{bottom:366.306667pt;}
.y138{bottom:370.466667pt;}
.y17c{bottom:370.786667pt;}
.ye5{bottom:371.106667pt;}
.y1c{bottom:371.586667pt;}
.y47{bottom:373.186667pt;}
.ycd{bottom:373.666667pt;}
.yb7{bottom:378.146667pt;}
.y91{bottom:379.266667pt;}
.y70{bottom:381.666667pt;}
.y184{bottom:384.066667pt;}
.y116{bottom:385.186667pt;}
.y1b{bottom:386.306667pt;}
.y137{bottom:388.866667pt;}
.y17b{bottom:389.186667pt;}
.y46{bottom:389.986667pt;}
.ycc{bottom:392.066667pt;}
.yb6{bottom:396.546667pt;}
.y16a{bottom:397.346667pt;}
.y90{bottom:397.666667pt;}
.y6f{bottom:400.066667pt;}
.y1a{bottom:401.026667pt;}
.y183{bottom:402.466667pt;}
.y114{bottom:404.066667pt;}
.y45{bottom:406.786667pt;}
.y136{bottom:407.266667pt;}
.y17a{bottom:407.586667pt;}
.ycb{bottom:410.466667pt;}
.y169{bottom:414.786667pt;}
.yb5{bottom:414.946667pt;}
.y19{bottom:415.586667pt;}
.y8f{bottom:416.066667pt;}
.y6e{bottom:418.466667pt;}
.y182{bottom:420.866667pt;}
.y113{bottom:423.106667pt;}
.y44{bottom:423.746667pt;}
.y135{bottom:425.666667pt;}
.y179{bottom:425.986667pt;}
.yca{bottom:428.866667pt;}
.y18{bottom:429.986667pt;}
.y168{bottom:432.386667pt;}
.yb4{bottom:433.346667pt;}
.y8e{bottom:434.466667pt;}
.y6d{bottom:436.866667pt;}
.y181{bottom:439.266667pt;}
.y110{bottom:441.986667pt;}
.y134{bottom:444.066667pt;}
.y178{bottom:444.386667pt;}
.y17{bottom:445.346667pt;}
.yc9{bottom:447.266667pt;}
.y167{bottom:449.853333pt;}
.y104{bottom:451.453333pt;}
.yb3{bottom:451.773333pt;}
.y8d{bottom:452.893333pt;}
.y6c{bottom:455.293333pt;}
.y43{bottom:457.693333pt;}
.y16{bottom:460.573333pt;}
.y10c{bottom:460.893333pt;}
.y133{bottom:462.493333pt;}
.y177{bottom:462.813333pt;}
.yc8{bottom:465.693333pt;}
.y166{bottom:467.453333pt;}
.yb2{bottom:470.173333pt;}
.y8c{bottom:471.293333pt;}
.y6b{bottom:473.693333pt;}
.y15{bottom:475.933333pt;}
.y42{bottom:476.093333pt;}
.y103{bottom:477.213333pt;}
.y132{bottom:480.893333pt;}
.y176{bottom:481.213333pt;}
.yc7{bottom:484.093333pt;}
.y165{bottom:484.893333pt;}
.yb1{bottom:488.573333pt;}
.y102{bottom:489.213333pt;}
.y8b{bottom:489.693333pt;}
.y6a{bottom:492.093333pt;}
.y41{bottom:494.493333pt;}
.y14{bottom:494.813333pt;}
.y10b{bottom:498.333333pt;}
.y131{bottom:499.293333pt;}
.y175{bottom:499.613333pt;}
.y164{bottom:502.493333pt;}
.y101{bottom:506.813333pt;}
.yb0{bottom:506.973333pt;}
.y8a{bottom:508.093333pt;}
.y13{bottom:510.173333pt;}
.y69{bottom:510.333333pt;}
.y154{bottom:510.493333pt;}
.y40{bottom:512.893333pt;}
.yc6{bottom:514.013333pt;}
.y10a{bottom:515.933333pt;}
.y130{bottom:517.693333pt;}
.y174{bottom:518.013333pt;}
.y163{bottom:520.093333pt;}
.yff{bottom:524.413333pt;}
.yaf{bottom:525.373333pt;}
.y12{bottom:525.533333pt;}
.y153{bottom:526.013333pt;}
.y89{bottom:526.493333pt;}
.y68{bottom:528.733333pt;}
.y3f{bottom:531.293333pt;}
.yc5{bottom:532.253333pt;}
.y12f{bottom:536.093333pt;}
.y173{bottom:536.413333pt;}
.y162{bottom:537.533333pt;}
.y11{bottom:540.893333pt;}
.y152{bottom:543.613333pt;}
.yae{bottom:543.773333pt;}
.y67{bottom:547.133333pt;}
.y109{bottom:548.573333pt;}
.y3e{bottom:549.693333pt;}
.y12e{bottom:554.493333pt;}
.y172{bottom:554.813333pt;}
.y161{bottom:555.133333pt;}
.y10{bottom:556.093333pt;}
.yc4{bottom:558.013333pt;}
.yfe{bottom:558.813333pt;}
.y151{bottom:561.213333pt;}
.yad{bottom:562.173333pt;}
.y88{bottom:563.293333pt;}
.y66{bottom:565.533333pt;}
.y108{bottom:566.653333pt;}
.y3d{bottom:568.093333pt;}
.yf{bottom:571.453333pt;}
.y12d{bottom:572.893333pt;}
.y171{bottom:573.213333pt;}
.yfd{bottom:576.253333pt;}
.y150{bottom:578.653333pt;}
.yac{bottom:580.573333pt;}
.y87{bottom:581.693333pt;}
.y65{bottom:583.933333pt;}
.y3c{bottom:586.493333pt;}
.ye{bottom:586.813333pt;}
.y160{bottom:589.533333pt;}
.y12c{bottom:591.293333pt;}
.y170{bottom:591.613333pt;}
.yfc{bottom:593.853333pt;}
.y14f{bottom:596.253333pt;}
.yab{bottom:598.973333pt;}
.y86{bottom:600.093333pt;}
.yd{bottom:602.173333pt;}
.y64{bottom:602.333333pt;}
.y180{bottom:604.413333pt;}
.y3b{bottom:604.893333pt;}
.y16f{bottom:609.853333pt;}
.yfb{bottom:611.293333pt;}
.y14e{bottom:613.693333pt;}
.yaa{bottom:617.373333pt;}
.yc{bottom:618.173333pt;}
.y85{bottom:618.493333pt;}
.y63{bottom:620.733333pt;}
.y12b{bottom:621.373333pt;}
.y15f{bottom:622.173333pt;}
.y16e{bottom:626.653333pt;}
.yfa{bottom:628.893333pt;}
.y14d{bottom:631.293333pt;}
.ya9{bottom:635.813333pt;}
.y84{bottom:636.933333pt;}
.y62{bottom:639.173333pt;}
.y12a{bottom:639.493333pt;}
.y15e{bottom:640.293333pt;}
.y3a{bottom:641.733333pt;}
.y16d{bottom:643.653333pt;}
.yf8{bottom:646.373333pt;}
.y14c{bottom:648.773333pt;}
.yb{bottom:650.853333pt;}
.y83{bottom:656.453333pt;}
.y61{bottom:657.573333pt;}
.y39{bottom:660.133333pt;}
.y16c{bottom:660.453333pt;}
.yf7{bottom:663.973333pt;}
.y129{bottom:665.253333pt;}
.y14b{bottom:666.373333pt;}
.ya8{bottom:672.613333pt;}
.y82{bottom:674.853333pt;}
.y60{bottom:675.973333pt;}
.ya{bottom:676.933333pt;}
.y38{bottom:678.533333pt;}
.yf5{bottom:681.573333pt;}
.y149{bottom:683.973333pt;}
.ya7{bottom:691.013333pt;}
.y81{bottom:693.253333pt;}
.y5f{bottom:694.373333pt;}
.y37{bottom:701.893333pt;}
.y9{bottom:702.853333pt;}
.ya6{bottom:710.533333pt;}
.y80{bottom:711.653333pt;}
.y5e{bottom:712.773333pt;}
.yf4{bottom:714.213333pt;}
.y36{bottom:716.613333pt;}
.y148{bottom:718.373333pt;}
.y8{bottom:728.933333pt;}
.y5d{bottom:731.173333pt;}
.y35{bottom:731.333333pt;}
.yf3{bottom:732.293333pt;}
.y34{bottom:745.893333pt;}
.ya5{bottom:748.453333pt;}
.y5c{bottom:749.573333pt;}
.y147{bottom:751.013333pt;}
.y7{bottom:755.013333pt;}
.y33{bottom:760.613333pt;}
.ya4{bottom:766.853333pt;}
.y5b{bottom:767.973333pt;}
.y32{bottom:775.173333pt;}
.y6{bottom:781.093333pt;}
.ya3{bottom:785.253333pt;}
.y5a{bottom:786.373333pt;}
.y31{bottom:789.893333pt;}
.y30{bottom:815.173333pt;}
.y1{bottom:821.440000pt;}
.y2f{bottom:832.800000pt;}
.he{height:16.800000pt;}
.h11{height:16.832000pt;}
.h10{height:16.960000pt;}
.h15{height:18.240000pt;}
.h14{height:18.272000pt;}
.h16{height:18.400000pt;}
.h12{height:33.600000pt;}
.h17{height:36.726562pt;}
.h13{height:36.800000pt;}
.h3{height:47.109375pt;}
.h8{height:47.742188pt;}
.h7{height:49.148438pt;}
.h6{height:52.134375pt;}
.hb{height:57.375000pt;}
.h9{height:57.787500pt;}
.h2{height:58.563750pt;}
.hf{height:59.340000pt;}
.hd{height:62.781250pt;}
.h5{height:62.812500pt;}
.ha{height:64.500000pt;}
.hc{height:65.781915pt;}
.h4{height:84.662813pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.wa{width:28.960000pt;}
.wd{width:28.992000pt;}
.wb{width:29.120000pt;}
.wc{width:29.152000pt;}
.we{width:65.120000pt;}
.wf{width:76.192000pt;}
.w4{width:84.000000pt;}
.w15{width:106.240000pt;}
.w16{width:111.232000pt;}
.w10{width:120.800000pt;}
.w6{width:122.112000pt;}
.w17{width:123.232000pt;}
.w12{width:125.952000pt;}
.w14{width:128.512000pt;}
.w11{width:129.952000pt;}
.w7{width:131.232000pt;}
.w5{width:131.712000pt;}
.w9{width:146.586667pt;}
.w13{width:165.466667pt;}
.w8{width:414.173333pt;}
.w3{width:471.133333pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2f{left:6.880000pt;}
.x26{left:8.320000pt;}
.x44{left:9.280000pt;}
.x31{left:10.880000pt;}
.x1a{left:13.280000pt;}
.x3a{left:14.400000pt;}
.x1b{left:16.640000pt;}
.x53{left:17.760000pt;}
.x20{left:20.160000pt;}
.x57{left:21.280000pt;}
.x22{left:22.240000pt;}
.x52{left:24.480000pt;}
.x55{left:25.920000pt;}
.x21{left:29.120000pt;}
.x41{left:32.480000pt;}
.x16{left:33.440000pt;}
.x45{left:34.560000pt;}
.x18{left:35.840000pt;}
.x1f{left:37.280000pt;}
.x24{left:38.560000pt;}
.x1d{left:40.480000pt;}
.x14{left:42.080000pt;}
.x58{left:43.226667pt;}
.x25{left:44.520000pt;}
.x1e{left:45.920000pt;}
.x59{left:49.280000pt;}
.x23{left:50.280000pt;}
.x27{left:52.040000pt;}
.x1c{left:53.320000pt;}
.x46{left:56.800000pt;}
.x48{left:60.320000pt;}
.x47{left:61.306667pt;}
.x4c{left:63.080000pt;}
.x49{left:64.826667pt;}
.x4e{left:70.266667pt;}
.x1{left:85.151990pt;}
.xb{left:86.431990pt;}
.xf{left:87.871990pt;}
.x2c{left:89.471990pt;}
.x8{left:93.151990pt;}
.x29{left:95.391990pt;}
.x11{left:99.231990pt;}
.x4a{left:100.511990pt;}
.x3c{left:105.791990pt;}
.x5{left:109.151990pt;}
.xd{left:110.111990pt;}
.x3d{left:112.031990pt;}
.x4{left:113.471990pt;}
.x5a{left:122.911990pt;}
.x3{left:129.951990pt;}
.x6{left:133.151990pt;}
.x2e{left:142.274667pt;}
.x50{left:145.474667pt;}
.x40{left:151.234667pt;}
.x10{left:157.626657pt;}
.x13{left:164.034667pt;}
.x15{left:170.426667pt;}
.x4b{left:175.386667pt;}
.x2d{left:203.226657pt;}
.x2b{left:208.986657pt;}
.x51{left:214.946667pt;}
.x12{left:216.066657pt;}
.x42{left:228.546667pt;}
.x2{left:233.666657pt;}
.x9{left:242.786657pt;}
.x30{left:261.506667pt;}
.x4f{left:264.706657pt;}
.x32{left:291.266667pt;}
.x3f{left:300.866657pt;}
.x4d{left:301.986667pt;}
.x17{left:302.946667pt;}
.x33{left:320.866667pt;}
.x54{left:321.826667pt;}
.x34{left:350.626667pt;}
.x35{left:380.413333pt;}
.x3e{left:389.373324pt;}
.x36{left:410.173333pt;}
.x19{left:425.693333pt;}
.x28{left:432.573324pt;}
.x56{left:433.693333pt;}
.x37{left:439.933333pt;}
.x38{left:469.693333pt;}
.x43{left:480.733333pt;}
.x3b{left:488.733324pt;}
.x39{left:499.333333pt;}
.xa{left:512.613324pt;}
.xe{left:533.893324pt;}
.x2a{left:535.493324pt;}
.xc{left:575.013324pt;}
.x7{left:583.813324pt;}
}




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