
    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_35bb80aac75333ac4234750c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.947754;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_f6d09229e18f41b9440b0916.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947266;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_c05caeb32f67c6086e38db74.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.947266;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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_64917d4636fa6bf4158f9050.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_19e86db36f02b48aec7c419c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_d056e0d059f7836df6db9a12.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_ff3d19a213e3276835b871ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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);}
.v5{vertical-align:-54.000000px;}
.v7{vertical-align:-48.240000px;}
.v8{vertical-align:-43.920000px;}
.v4{vertical-align:-31.680000px;}
.v2{vertical-align:-22.320000px;}
.vb{vertical-align:-18.720000px;}
.v3{vertical-align:-16.560000px;}
.v1{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:12.240000px;}
.va{vertical-align:15.120000px;}
.v6{vertical-align:22.320000px;}
.ls22{letter-spacing:-0.345600px;}
.ls7{letter-spacing:-0.331200px;}
.ls23{letter-spacing:-0.316800px;}
.ls14{letter-spacing:-0.302400px;}
.ls15{letter-spacing:-0.201600px;}
.ls1e{letter-spacing:-0.158400px;}
.ls21{letter-spacing:-0.115200px;}
.ls6{letter-spacing:-0.100800px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.087120px;}
.ls1a{letter-spacing:0.106560px;}
.ls1f{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.158400px;}
.ls1d{letter-spacing:0.166800px;}
.lsf{letter-spacing:0.172800px;}
.ls0{letter-spacing:0.201600px;}
.ls1{letter-spacing:0.316800px;}
.ls2{letter-spacing:0.345600px;}
.ls8{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.388800px;}
.ls4{letter-spacing:1.038000px;}
.ls9{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.157040px;}
.ls18{letter-spacing:2.829600px;}
.ls11{letter-spacing:2.908800px;}
.lse{letter-spacing:3.028800px;}
.ls12{letter-spacing:3.312000px;}
.ls19{letter-spacing:10.749600px;}
.ls1b{letter-spacing:12.870720px;}
.lsd{letter-spacing:12.959280px;}
.ls10{letter-spacing:15.789600px;}
.lsc{letter-spacing:15.868800px;}
.lsa{letter-spacing:19.872000px;}
.ls16{letter-spacing:21.510720px;}
.ls20{letter-spacing:35.226720px;}
.ls5{letter-spacing:64.170720px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws0{word-spacing:-22.723200px;}
.ws6{word-spacing:-20.476800px;}
.ws10{word-spacing:-19.512000px;}
.ws1{word-spacing:-19.123200px;}
.ws4{word-spacing:-19.022400px;}
.wsf{word-spacing:-19.008000px;}
.ws7{word-spacing:-18.820800px;}
.ws5{word-spacing:-18.792000px;}
.ws11{word-spacing:-18.777600px;}
.wsa{word-spacing:-13.564800px;}
.ws9{word-spacing:-13.161600px;}
.wsb{word-spacing:-13.147200px;}
.wsc{word-spacing:-12.787200px;}
.wsd{word-spacing:-9.354000px;}
.wse{word-spacing:-9.337200px;}
.ws8{word-spacing:-9.187200px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-3.109680px;}
._0{margin-left:-1.126080px;}
._1{width:1.093440px;}
._2{width:2.831040px;}
._3{width:3.940320px;}
._b{width:5.828640px;}
._11{width:7.290720px;}
._12{width:8.330880px;}
._c{width:9.876480px;}
._7{width:11.046240px;}
._6{width:12.549600px;}
._e{width:13.735680px;}
._13{width:14.854320px;}
._14{width:16.098720px;}
._d{width:17.210880px;}
._4{width:20.856240px;}
._5{width:21.956160px;}
._a{width:23.425440px;}
._8{width:24.441840px;}
._9{width:25.655760px;}
._15{width:27.310320px;}
._18{width:29.315280px;}
._f{width:30.945600px;}
._10{width:32.227680px;}
._16{width:33.465600px;}
.fc2{color:rgb(255,0,0);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y12e{bottom:-3.450000px;}
.yb4{bottom:-3.420000px;}
.y0{bottom:0.000000px;}
.y14e{bottom:0.180000px;}
.y14d{bottom:0.360000px;}
.yeb{bottom:3.600000px;}
.y5{bottom:3.780000px;}
.y6{bottom:4.500000px;}
.yba{bottom:5.220000px;}
.yc7{bottom:5.250000px;}
.yb2{bottom:5.400000px;}
.ye7{bottom:5.430000px;}
.y12b{bottom:7.560000px;}
.yec{bottom:12.420000px;}
.yea{bottom:21.240000px;}
.y4{bottom:25.380000px;}
.yf1{bottom:38.700000px;}
.y83{bottom:66.960000px;}
.y112{bottom:68.040000px;}
.yb0{bottom:68.580000px;}
.y44{bottom:70.920000px;}
.ye5{bottom:71.460000px;}
.y14b{bottom:73.440000px;}
.y113{bottom:75.960000px;}
.y82{bottom:84.600000px;}
.yaf{bottom:86.220000px;}
.y43{bottom:88.560000px;}
.ye4{bottom:88.920000px;}
.y14a{bottom:91.080000px;}
.y81{bottom:102.276000px;}
.yae{bottom:103.896000px;}
.y42{bottom:106.236000px;}
.ye3{bottom:106.596000px;}
.y149{bottom:108.756000px;}
.y80{bottom:119.736000px;}
.yad{bottom:121.536000px;}
.y41{bottom:123.876000px;}
.ye2{bottom:124.236000px;}
.y148{bottom:126.396000px;}
.y151{bottom:135.216000px;}
.y7f{bottom:137.376000px;}
.yac{bottom:139.176000px;}
.y40{bottom:141.516000px;}
.y111{bottom:141.696000px;}
.ye1{bottom:141.876000px;}
.y147{bottom:143.856000px;}
.y150{bottom:152.670000px;}
.y7e{bottom:155.010000px;}
.yab{bottom:156.810000px;}
.y3f{bottom:158.970000px;}
.y110{bottom:159.330000px;}
.ye0{bottom:159.510000px;}
.y146{bottom:161.490000px;}
.y14f{bottom:166.710000px;}
.y7d{bottom:172.650000px;}
.yaa{bottom:174.270000px;}
.y3e{bottom:176.610000px;}
.y10f{bottom:176.970000px;}
.ydf{bottom:177.150000px;}
.y145{bottom:179.130000px;}
.y14c{bottom:184.350000px;}
.y7c{bottom:190.290000px;}
.ya9{bottom:191.910000px;}
.y3d{bottom:194.250000px;}
.yde{bottom:194.610000px;}
.y144{bottom:196.770000px;}
.y7b{bottom:207.750000px;}
.ya8{bottom:209.550000px;}
.y3c{bottom:211.890000px;}
.ydd{bottom:212.250000px;}
.y143{bottom:214.410000px;}
.y7a{bottom:225.390000px;}
.ya7{bottom:227.190000px;}
.y3b{bottom:229.530000px;}
.ydc{bottom:229.890000px;}
.y142{bottom:232.050000px;}
.y79{bottom:243.030000px;}
.ya6{bottom:244.830000px;}
.y3a{bottom:247.170000px;}
.y10e{bottom:247.350000px;}
.ydb{bottom:247.530000px;}
.y141{bottom:249.510000px;}
.y78{bottom:260.670000px;}
.ya5{bottom:262.290000px;}
.y39{bottom:264.630000px;}
.y10d{bottom:264.990000px;}
.yda{bottom:265.170000px;}
.y140{bottom:267.150000px;}
.y77{bottom:278.310000px;}
.ya4{bottom:279.930000px;}
.y38{bottom:282.270000px;}
.yd9{bottom:282.630000px;}
.y13f{bottom:284.790000px;}
.y76{bottom:295.950000px;}
.ya3{bottom:297.570000px;}
.y37{bottom:299.910000px;}
.yd8{bottom:300.270000px;}
.y13e{bottom:302.430000px;}
.y75{bottom:313.410000px;}
.ya2{bottom:315.210000px;}
.y36{bottom:317.550000px;}
.yd7{bottom:317.910000px;}
.y13d{bottom:320.070000px;}
.y74{bottom:331.050000px;}
.ya1{bottom:332.850000px;}
.y35{bottom:335.190000px;}
.y10c{bottom:335.370000px;}
.yd6{bottom:335.550000px;}
.y13c{bottom:337.530000px;}
.y73{bottom:348.690000px;}
.ya0{bottom:350.490000px;}
.y34{bottom:352.650000px;}
.y10b{bottom:353.010000px;}
.yd5{bottom:353.190000px;}
.y13b{bottom:355.170000px;}
.y72{bottom:366.375000px;}
.y9f{bottom:367.995000px;}
.y33{bottom:370.335000px;}
.y10a{bottom:370.695000px;}
.yd4{bottom:370.875000px;}
.y13a{bottom:372.855000px;}
.y71{bottom:384.015000px;}
.y9e{bottom:385.635000px;}
.y32{bottom:387.975000px;}
.yd3{bottom:388.335000px;}
.y139{bottom:390.495000px;}
.y70{bottom:401.475000px;}
.y9d{bottom:403.275000px;}
.y31{bottom:405.615000px;}
.yd2{bottom:405.975000px;}
.y138{bottom:408.135000px;}
.y6f{bottom:419.115000px;}
.y9c{bottom:420.915000px;}
.y30{bottom:423.255000px;}
.yd1{bottom:423.615000px;}
.y137{bottom:425.775000px;}
.y6e{bottom:436.755000px;}
.y9b{bottom:438.555000px;}
.y136{bottom:440.535000px;}
.y2f{bottom:440.895000px;}
.y109{bottom:441.075000px;}
.yd0{bottom:441.255000px;}
.y9a{bottom:452.595000px;}
.y6d{bottom:454.395000px;}
.y2e{bottom:458.355000px;}
.y108{bottom:458.715000px;}
.ycf{bottom:458.895000px;}
.y135{bottom:462.495000px;}
.y6c{bottom:472.035000px;}
.y2d{bottom:475.995000px;}
.yce{bottom:476.355000px;}
.y134{bottom:484.455000px;}
.y6b{bottom:489.675000px;}
.y2c{bottom:493.635000px;}
.ycd{bottom:493.995000px;}
.y133{bottom:506.415000px;}
.y6a{bottom:507.135000px;}
.y2b{bottom:511.275000px;}
.ycc{bottom:511.635000px;}
.y69{bottom:524.775000px;}
.ycb{bottom:526.395000px;}
.y132{bottom:528.375000px;}
.y2a{bottom:528.915000px;}
.y107{bottom:529.275000px;}
.y68{bottom:542.415000px;}
.y29{bottom:546.375000px;}
.y106{bottom:546.735000px;}
.yca{bottom:548.355000px;}
.y131{bottom:550.335000px;}
.y67{bottom:560.055000px;}
.y28{bottom:564.015000px;}
.y105{bottom:564.375000px;}
.yc9{bottom:570.315000px;}
.y130{bottom:572.295000px;}
.y66{bottom:577.695000px;}
.y27{bottom:581.655000px;}
.y104{bottom:582.015000px;}
.yc8{bottom:592.275000px;}
.y12f{bottom:594.255000px;}
.y65{bottom:595.155000px;}
.y26{bottom:599.295000px;}
.y103{bottom:599.655000px;}
.y64{bottom:612.795000px;}
.yc6{bottom:614.415000px;}
.y12d{bottom:616.245000px;}
.y25{bottom:616.965000px;}
.y102{bottom:617.505000px;}
.y99{bottom:628.665000px;}
.y63{bottom:630.465000px;}
.y24{bottom:634.605000px;}
.y101{bottom:634.965000px;}
.yc5{bottom:636.405000px;}
.y12c{bottom:638.205000px;}
.y98{bottom:646.305000px;}
.y62{bottom:648.105000px;}
.y23{bottom:652.065000px;}
.y100{bottom:652.425000px;}
.yc4{bottom:658.365000px;}
.y97{bottom:663.765000px;}
.y61{bottom:665.745000px;}
.y22{bottom:669.705000px;}
.yff{bottom:670.245000px;}
.yc3{bottom:680.325000px;}
.y96{bottom:681.405000px;}
.y60{bottom:683.385000px;}
.y21{bottom:687.345000px;}
.yfe{bottom:687.885000px;}
.y95{bottom:699.045000px;}
.y5f{bottom:700.845000px;}
.yc2{bottom:702.285000px;}
.y20{bottom:704.985000px;}
.yfd{bottom:705.345000px;}
.y94{bottom:716.685000px;}
.y5e{bottom:718.485000px;}
.y1f{bottom:722.625000px;}
.yfc{bottom:722.985000px;}
.yc1{bottom:724.245000px;}
.y12a{bottom:731.445000px;}
.y93{bottom:734.325000px;}
.y5d{bottom:736.125000px;}
.y1e{bottom:740.265000px;}
.yfb{bottom:740.445000px;}
.yc0{bottom:746.205000px;}
.y92{bottom:751.785000px;}
.y129{bottom:753.405000px;}
.y5c{bottom:753.765000px;}
.y1d{bottom:757.725000px;}
.yfa{bottom:758.085000px;}
.ybf{bottom:768.165000px;}
.y91{bottom:769.425000px;}
.y5b{bottom:771.405000px;}
.y1c{bottom:775.365000px;}
.yf9{bottom:775.725000px;}
.y90{bottom:787.065000px;}
.y5a{bottom:788.865000px;}
.ybe{bottom:790.125000px;}
.y1b{bottom:793.005000px;}
.yf8{bottom:793.365000px;}
.y128{bottom:797.325000px;}
.y8f{bottom:804.705000px;}
.y59{bottom:806.505000px;}
.y1a{bottom:810.645000px;}
.yf7{bottom:811.005000px;}
.ybd{bottom:812.085000px;}
.y8e{bottom:822.345000px;}
.y127{bottom:822.885000px;}
.y58{bottom:824.145000px;}
.y19{bottom:828.285000px;}
.yf6{bottom:828.465000px;}
.ybc{bottom:834.045000px;}
.y8d{bottom:839.985000px;}
.y126{bottom:840.525000px;}
.y57{bottom:841.785000px;}
.y18{bottom:845.745000px;}
.yf5{bottom:846.105000px;}
.ybb{bottom:856.005000px;}
.y8c{bottom:857.445000px;}
.y125{bottom:858.165000px;}
.y56{bottom:859.425000px;}
.y17{bottom:863.385000px;}
.yf4{bottom:863.745000px;}
.y8b{bottom:875.130000px;}
.y124{bottom:875.850000px;}
.y55{bottom:877.110000px;}
.yb9{bottom:878.190000px;}
.y16{bottom:881.070000px;}
.yf3{bottom:881.430000px;}
.y8a{bottom:892.770000px;}
.y123{bottom:893.310000px;}
.y54{bottom:894.570000px;}
.y15{bottom:898.710000px;}
.yf2{bottom:899.070000px;}
.yb8{bottom:900.150000px;}
.y89{bottom:910.410000px;}
.y122{bottom:910.950000px;}
.y53{bottom:912.210000px;}
.yf0{bottom:913.830000px;}
.y14{bottom:917.070000px;}
.yb7{bottom:922.110000px;}
.y88{bottom:928.050000px;}
.y121{bottom:928.590000px;}
.y52{bottom:929.850000px;}
.y13{bottom:934.710000px;}
.y120{bottom:943.350000px;}
.yb6{bottom:944.070000px;}
.y87{bottom:945.510000px;}
.y51{bottom:947.490000px;}
.y12{bottom:952.170000px;}
.y86{bottom:962.970000px;}
.y50{bottom:965.130000px;}
.y11f{bottom:965.310000px;}
.yb5{bottom:966.030000px;}
.yef{bottom:967.290000px;}
.y11{bottom:969.810000px;}
.y85{bottom:981.690000px;}
.y4f{bottom:982.770000px;}
.y10{bottom:987.450000px;}
.yb3{bottom:987.990000px;}
.y11e{bottom:990.870000px;}
.y84{bottom:999.150000px;}
.y4e{bottom:1000.230000px;}
.yee{bottom:1003.290000px;}
.yf{bottom:1005.090000px;}
.y11d{bottom:1008.510000px;}
.yb1{bottom:1009.950000px;}
.y4d{bottom:1017.870000px;}
.ye{bottom:1022.550000px;}
.y11c{bottom:1026.150000px;}
.y4c{bottom:1035.510000px;}
.yed{bottom:1039.290000px;}
.yd{bottom:1042.530000px;}
.y11b{bottom:1043.790000px;}
.y4b{bottom:1053.150000px;}
.yc{bottom:1060.170000px;}
.y119{bottom:1062.690000px;}
.y11a{bottom:1070.610000px;}
.y4a{bottom:1070.790000px;}
.ye9{bottom:1075.290000px;}
.yb{bottom:1077.810000px;}
.y118{bottom:1083.570000px;}
.y49{bottom:1088.250000px;}
.ya{bottom:1095.450000px;}
.y117{bottom:1101.210000px;}
.y48{bottom:1105.890000px;}
.ye8{bottom:1111.290000px;}
.y9{bottom:1113.630000px;}
.y115{bottom:1119.930000px;}
.y47{bottom:1123.530000px;}
.y116{bottom:1127.850000px;}
.ye6{bottom:1133.250000px;}
.y8{bottom:1134.720000px;}
.y114{bottom:1141.020000px;}
.y46{bottom:1141.200000px;}
.y7{bottom:1155.960000px;}
.y45{bottom:1158.840000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1196.100000px;}
.y1{bottom:1215.360000px;}
.h14{height:17.640000px;}
.h4{height:19.260000px;}
.hb{height:21.060000px;}
.hd{height:21.096000px;}
.ha{height:21.240000px;}
.hc{height:21.276000px;}
.h11{height:35.194219px;}
.he{height:35.280000px;}
.h7{height:42.806602px;}
.h8{height:42.835781px;}
.h12{height:43.200000px;}
.h2{height:47.480625px;}
.h10{height:50.364141px;}
.h6{height:51.609375px;}
.hf{height:52.740000px;}
.h9{height:61.423863px;}
.h5{height:65.884219px;}
.h3{height:67.824844px;}
.h13{height:266.430000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:50.256000px;}
.w3{width:61.416000px;}
.wf{width:67.320000px;}
.w1f{width:70.416000px;}
.we{width:75.816000px;}
.w1e{width:87.300000px;}
.w1c{width:88.596000px;}
.w9{width:90.180000px;}
.wa{width:90.216000px;}
.wb{width:90.396000px;}
.wc{width:92.520000px;}
.w10{width:92.736000px;}
.w16{width:95.796000px;}
.wd{width:104.256000px;}
.w19{width:106.200000px;}
.w18{width:106.776000px;}
.w1d{width:113.220000px;}
.w14{width:114.876000px;}
.w17{width:134.820000px;}
.w13{width:148.896000px;}
.w6{width:152.850000px;}
.w7{width:162.750000px;}
.w15{width:165.270000px;}
.w11{width:169.230000px;}
.w5{width:172.290000px;}
.w1a{width:213.690000px;}
.w12{width:224.490000px;}
.w4{width:277.410000px;}
.w1b{width:335.955000px;}
.w20{width:377.715000px;}
.w21{width:416.805000px;}
.w2{width:734.910000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x40{left:11.160000px;}
.x51{left:12.600000px;}
.x7{left:14.220000px;}
.x64{left:15.660000px;}
.x39{left:16.740000px;}
.x5f{left:18.000000px;}
.x35{left:19.440000px;}
.x45{left:20.520000px;}
.x46{left:22.320000px;}
.x37{left:24.120000px;}
.x55{left:25.380000px;}
.x67{left:27.180000px;}
.x42{left:28.620000px;}
.x5b{left:30.060000px;}
.x1a{left:32.040000px;}
.x54{left:33.120000px;}
.x3c{left:34.200000px;}
.x41{left:35.820000px;}
.x43{left:36.900000px;}
.x58{left:39.060000px;}
.x44{left:40.320000px;}
.x3f{left:41.976000px;}
.x47{left:43.596000px;}
.x18{left:45.030000px;}
.x65{left:47.196000px;}
.x4{left:48.420000px;}
.x33{left:49.716000px;}
.x69{left:52.020000px;}
.x8{left:54.000000px;}
.x4d{left:55.260000px;}
.x28{left:57.414000px;}
.x32{left:58.500000px;}
.x26{left:59.985000px;}
.x4b{left:63.180000px;}
.x22{left:64.665000px;}
.x20{left:67.185000px;}
.x24{left:68.754000px;}
.x1f{left:72.030000px;}
.x2e{left:73.074000px;}
.x1d{left:76.365000px;}
.x66{left:79.416000px;}
.x11{left:81.000000px;}
.x1b{left:83.154000px;}
.x1c{left:86.070000px;}
.x29{left:87.474000px;}
.x68{left:88.956000px;}
.x2a{left:92.514000px;}
.x27{left:94.314000px;}
.x21{left:98.994000px;}
.x2b{left:101.154000px;}
.x16{left:106.914000px;}
.x10{left:108.036000px;}
.x1e{left:109.974000px;}
.x2c{left:112.314000px;}
.x2d{left:113.754000px;}
.x23{left:116.274000px;}
.x25{left:118.254000px;}
.x2f{left:119.874000px;}
.x63{left:129.810000px;}
.x4e{left:131.796000px;}
.x5c{left:136.110000px;}
.x15{left:144.576000px;}
.x13{left:148.176000px;}
.xf{left:162.570000px;}
.x1{left:192.810000px;}
.x57{left:198.570000px;}
.x4f{left:199.830000px;}
.x9{left:204.690000px;}
.xc{left:217.470000px;}
.x34{left:221.970000px;}
.x14{left:224.130000px;}
.xd{left:226.110000px;}
.xe{left:255.270000px;}
.x3{left:260.490000px;}
.x36{left:272.955000px;}
.x50{left:293.475000px;}
.x48{left:303.195000px;}
.xa{left:318.855000px;}
.xb{left:328.395000px;}
.x31{left:337.575000px;}
.x2{left:347.295000px;}
.x4c{left:354.675000px;}
.x38{left:364.035000px;}
.x6b{left:373.755000px;}
.x56{left:387.795000px;}
.x5d{left:395.715000px;}
.x17{left:422.715000px;}
.x6a{left:427.035000px;}
.x30{left:446.475000px;}
.x3a{left:454.965000px;}
.x59{left:461.085000px;}
.x52{left:463.605000px;}
.x49{left:469.365000px;}
.x5e{left:485.205000px;}
.x4a{left:541.545000px;}
.x3b{left:545.865000px;}
.x19{left:595.725000px;}
.x60{left:599.145000px;}
.x3d{left:636.990000px;}
.x61{left:675.690000px;}
.x53{left:689.010000px;}
.x5a{left:704.130000px;}
.x3e{left:730.230000px;}
.x62{left:763.710000px;}
.x12{left:779.550000px;}
.x6{left:783.330000px;}
@media print{
.v5{vertical-align:-48.000000pt;}
.v7{vertical-align:-42.880000pt;}
.v8{vertical-align:-39.040000pt;}
.v4{vertical-align:-28.160000pt;}
.v2{vertical-align:-19.840000pt;}
.vb{vertical-align:-16.640000pt;}
.v3{vertical-align:-14.720000pt;}
.v1{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:10.880000pt;}
.va{vertical-align:13.440000pt;}
.v6{vertical-align:19.840000pt;}
.ls22{letter-spacing:-0.307200pt;}
.ls7{letter-spacing:-0.294400pt;}
.ls23{letter-spacing:-0.281600pt;}
.ls14{letter-spacing:-0.268800pt;}
.ls15{letter-spacing:-0.179200pt;}
.ls1e{letter-spacing:-0.140800pt;}
.ls21{letter-spacing:-0.102400pt;}
.ls6{letter-spacing:-0.089600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.077440pt;}
.ls1a{letter-spacing:0.094720pt;}
.ls1f{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.140800pt;}
.ls1d{letter-spacing:0.148267pt;}
.lsf{letter-spacing:0.153600pt;}
.ls0{letter-spacing:0.179200pt;}
.ls1{letter-spacing:0.281600pt;}
.ls2{letter-spacing:0.307200pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.345600pt;}
.ls4{letter-spacing:0.922667pt;}
.ls9{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.028480pt;}
.ls18{letter-spacing:2.515200pt;}
.ls11{letter-spacing:2.585600pt;}
.lse{letter-spacing:2.692267pt;}
.ls12{letter-spacing:2.944000pt;}
.ls19{letter-spacing:9.555200pt;}
.ls1b{letter-spacing:11.440640pt;}
.lsd{letter-spacing:11.519360pt;}
.ls10{letter-spacing:14.035200pt;}
.lsc{letter-spacing:14.105600pt;}
.lsa{letter-spacing:17.664000pt;}
.ls16{letter-spacing:19.120640pt;}
.ls20{letter-spacing:31.312640pt;}
.ls5{letter-spacing:57.040640pt;}
.ws3{word-spacing:-53.120000pt;}
.ws0{word-spacing:-20.198400pt;}
.ws6{word-spacing:-18.201600pt;}
.ws10{word-spacing:-17.344000pt;}
.ws1{word-spacing:-16.998400pt;}
.ws4{word-spacing:-16.908800pt;}
.wsf{word-spacing:-16.896000pt;}
.ws7{word-spacing:-16.729600pt;}
.ws5{word-spacing:-16.704000pt;}
.ws11{word-spacing:-16.691200pt;}
.wsa{word-spacing:-12.057600pt;}
.ws9{word-spacing:-11.699200pt;}
.wsb{word-spacing:-11.686400pt;}
.wsc{word-spacing:-11.366400pt;}
.wsd{word-spacing:-8.314667pt;}
.wse{word-spacing:-8.299733pt;}
.ws8{word-spacing:-8.166400pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-2.764160pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.971947pt;}
._2{width:2.516480pt;}
._3{width:3.502507pt;}
._b{width:5.181013pt;}
._11{width:6.480640pt;}
._12{width:7.405227pt;}
._c{width:8.779093pt;}
._7{width:9.818880pt;}
._6{width:11.155200pt;}
._e{width:12.209493pt;}
._13{width:13.203840pt;}
._14{width:14.309973pt;}
._d{width:15.298560pt;}
._4{width:18.538880pt;}
._5{width:19.516587pt;}
._a{width:20.822613pt;}
._8{width:21.726080pt;}
._9{width:22.805120pt;}
._15{width:24.275840pt;}
._18{width:26.058027pt;}
._f{width:27.507200pt;}
._10{width:28.646827pt;}
._16{width:29.747200pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y12e{bottom:-3.066667pt;}
.yb4{bottom:-3.040000pt;}
.y0{bottom:0.000000pt;}
.y14e{bottom:0.160000pt;}
.y14d{bottom:0.320000pt;}
.yeb{bottom:3.200000pt;}
.y5{bottom:3.360000pt;}
.y6{bottom:4.000000pt;}
.yba{bottom:4.640000pt;}
.yc7{bottom:4.666667pt;}
.yb2{bottom:4.800000pt;}
.ye7{bottom:4.826667pt;}
.y12b{bottom:6.720000pt;}
.yec{bottom:11.040000pt;}
.yea{bottom:18.880000pt;}
.y4{bottom:22.560000pt;}
.yf1{bottom:34.400000pt;}
.y83{bottom:59.520000pt;}
.y112{bottom:60.480000pt;}
.yb0{bottom:60.960000pt;}
.y44{bottom:63.040000pt;}
.ye5{bottom:63.520000pt;}
.y14b{bottom:65.280000pt;}
.y113{bottom:67.520000pt;}
.y82{bottom:75.200000pt;}
.yaf{bottom:76.640000pt;}
.y43{bottom:78.720000pt;}
.ye4{bottom:79.040000pt;}
.y14a{bottom:80.960000pt;}
.y81{bottom:90.912000pt;}
.yae{bottom:92.352000pt;}
.y42{bottom:94.432000pt;}
.ye3{bottom:94.752000pt;}
.y149{bottom:96.672000pt;}
.y80{bottom:106.432000pt;}
.yad{bottom:108.032000pt;}
.y41{bottom:110.112000pt;}
.ye2{bottom:110.432000pt;}
.y148{bottom:112.352000pt;}
.y151{bottom:120.192000pt;}
.y7f{bottom:122.112000pt;}
.yac{bottom:123.712000pt;}
.y40{bottom:125.792000pt;}
.y111{bottom:125.952000pt;}
.ye1{bottom:126.112000pt;}
.y147{bottom:127.872000pt;}
.y150{bottom:135.706667pt;}
.y7e{bottom:137.786667pt;}
.yab{bottom:139.386667pt;}
.y3f{bottom:141.306667pt;}
.y110{bottom:141.626667pt;}
.ye0{bottom:141.786667pt;}
.y146{bottom:143.546667pt;}
.y14f{bottom:148.186667pt;}
.y7d{bottom:153.466667pt;}
.yaa{bottom:154.906667pt;}
.y3e{bottom:156.986667pt;}
.y10f{bottom:157.306667pt;}
.ydf{bottom:157.466667pt;}
.y145{bottom:159.226667pt;}
.y14c{bottom:163.866667pt;}
.y7c{bottom:169.146667pt;}
.ya9{bottom:170.586667pt;}
.y3d{bottom:172.666667pt;}
.yde{bottom:172.986667pt;}
.y144{bottom:174.906667pt;}
.y7b{bottom:184.666667pt;}
.ya8{bottom:186.266667pt;}
.y3c{bottom:188.346667pt;}
.ydd{bottom:188.666667pt;}
.y143{bottom:190.586667pt;}
.y7a{bottom:200.346667pt;}
.ya7{bottom:201.946667pt;}
.y3b{bottom:204.026667pt;}
.ydc{bottom:204.346667pt;}
.y142{bottom:206.266667pt;}
.y79{bottom:216.026667pt;}
.ya6{bottom:217.626667pt;}
.y3a{bottom:219.706667pt;}
.y10e{bottom:219.866667pt;}
.ydb{bottom:220.026667pt;}
.y141{bottom:221.786667pt;}
.y78{bottom:231.706667pt;}
.ya5{bottom:233.146667pt;}
.y39{bottom:235.226667pt;}
.y10d{bottom:235.546667pt;}
.yda{bottom:235.706667pt;}
.y140{bottom:237.466667pt;}
.y77{bottom:247.386667pt;}
.ya4{bottom:248.826667pt;}
.y38{bottom:250.906667pt;}
.yd9{bottom:251.226667pt;}
.y13f{bottom:253.146667pt;}
.y76{bottom:263.066667pt;}
.ya3{bottom:264.506667pt;}
.y37{bottom:266.586667pt;}
.yd8{bottom:266.906667pt;}
.y13e{bottom:268.826667pt;}
.y75{bottom:278.586667pt;}
.ya2{bottom:280.186667pt;}
.y36{bottom:282.266667pt;}
.yd7{bottom:282.586667pt;}
.y13d{bottom:284.506667pt;}
.y74{bottom:294.266667pt;}
.ya1{bottom:295.866667pt;}
.y35{bottom:297.946667pt;}
.y10c{bottom:298.106667pt;}
.yd6{bottom:298.266667pt;}
.y13c{bottom:300.026667pt;}
.y73{bottom:309.946667pt;}
.ya0{bottom:311.546667pt;}
.y34{bottom:313.466667pt;}
.y10b{bottom:313.786667pt;}
.yd5{bottom:313.946667pt;}
.y13b{bottom:315.706667pt;}
.y72{bottom:325.666667pt;}
.y9f{bottom:327.106667pt;}
.y33{bottom:329.186667pt;}
.y10a{bottom:329.506667pt;}
.yd4{bottom:329.666667pt;}
.y13a{bottom:331.426667pt;}
.y71{bottom:341.346667pt;}
.y9e{bottom:342.786667pt;}
.y32{bottom:344.866667pt;}
.yd3{bottom:345.186667pt;}
.y139{bottom:347.106667pt;}
.y70{bottom:356.866667pt;}
.y9d{bottom:358.466667pt;}
.y31{bottom:360.546667pt;}
.yd2{bottom:360.866667pt;}
.y138{bottom:362.786667pt;}
.y6f{bottom:372.546667pt;}
.y9c{bottom:374.146667pt;}
.y30{bottom:376.226667pt;}
.yd1{bottom:376.546667pt;}
.y137{bottom:378.466667pt;}
.y6e{bottom:388.226667pt;}
.y9b{bottom:389.826667pt;}
.y136{bottom:391.586667pt;}
.y2f{bottom:391.906667pt;}
.y109{bottom:392.066667pt;}
.yd0{bottom:392.226667pt;}
.y9a{bottom:402.306667pt;}
.y6d{bottom:403.906667pt;}
.y2e{bottom:407.426667pt;}
.y108{bottom:407.746667pt;}
.ycf{bottom:407.906667pt;}
.y135{bottom:411.106667pt;}
.y6c{bottom:419.586667pt;}
.y2d{bottom:423.106667pt;}
.yce{bottom:423.426667pt;}
.y134{bottom:430.626667pt;}
.y6b{bottom:435.266667pt;}
.y2c{bottom:438.786667pt;}
.ycd{bottom:439.106667pt;}
.y133{bottom:450.146667pt;}
.y6a{bottom:450.786667pt;}
.y2b{bottom:454.466667pt;}
.ycc{bottom:454.786667pt;}
.y69{bottom:466.466667pt;}
.ycb{bottom:467.906667pt;}
.y132{bottom:469.666667pt;}
.y2a{bottom:470.146667pt;}
.y107{bottom:470.466667pt;}
.y68{bottom:482.146667pt;}
.y29{bottom:485.666667pt;}
.y106{bottom:485.986667pt;}
.yca{bottom:487.426667pt;}
.y131{bottom:489.186667pt;}
.y67{bottom:497.826667pt;}
.y28{bottom:501.346667pt;}
.y105{bottom:501.666667pt;}
.yc9{bottom:506.946667pt;}
.y130{bottom:508.706667pt;}
.y66{bottom:513.506667pt;}
.y27{bottom:517.026667pt;}
.y104{bottom:517.346667pt;}
.yc8{bottom:526.466667pt;}
.y12f{bottom:528.226667pt;}
.y65{bottom:529.026667pt;}
.y26{bottom:532.706667pt;}
.y103{bottom:533.026667pt;}
.y64{bottom:544.706667pt;}
.yc6{bottom:546.146667pt;}
.y12d{bottom:547.773333pt;}
.y25{bottom:548.413333pt;}
.y102{bottom:548.893333pt;}
.y99{bottom:558.813333pt;}
.y63{bottom:560.413333pt;}
.y24{bottom:564.093333pt;}
.y101{bottom:564.413333pt;}
.yc5{bottom:565.693333pt;}
.y12c{bottom:567.293333pt;}
.y98{bottom:574.493333pt;}
.y62{bottom:576.093333pt;}
.y23{bottom:579.613333pt;}
.y100{bottom:579.933333pt;}
.yc4{bottom:585.213333pt;}
.y97{bottom:590.013333pt;}
.y61{bottom:591.773333pt;}
.y22{bottom:595.293333pt;}
.yff{bottom:595.773333pt;}
.yc3{bottom:604.733333pt;}
.y96{bottom:605.693333pt;}
.y60{bottom:607.453333pt;}
.y21{bottom:610.973333pt;}
.yfe{bottom:611.453333pt;}
.y95{bottom:621.373333pt;}
.y5f{bottom:622.973333pt;}
.yc2{bottom:624.253333pt;}
.y20{bottom:626.653333pt;}
.yfd{bottom:626.973333pt;}
.y94{bottom:637.053333pt;}
.y5e{bottom:638.653333pt;}
.y1f{bottom:642.333333pt;}
.yfc{bottom:642.653333pt;}
.yc1{bottom:643.773333pt;}
.y12a{bottom:650.173333pt;}
.y93{bottom:652.733333pt;}
.y5d{bottom:654.333333pt;}
.y1e{bottom:658.013333pt;}
.yfb{bottom:658.173333pt;}
.yc0{bottom:663.293333pt;}
.y92{bottom:668.253333pt;}
.y129{bottom:669.693333pt;}
.y5c{bottom:670.013333pt;}
.y1d{bottom:673.533333pt;}
.yfa{bottom:673.853333pt;}
.ybf{bottom:682.813333pt;}
.y91{bottom:683.933333pt;}
.y5b{bottom:685.693333pt;}
.y1c{bottom:689.213333pt;}
.yf9{bottom:689.533333pt;}
.y90{bottom:699.613333pt;}
.y5a{bottom:701.213333pt;}
.ybe{bottom:702.333333pt;}
.y1b{bottom:704.893333pt;}
.yf8{bottom:705.213333pt;}
.y128{bottom:708.733333pt;}
.y8f{bottom:715.293333pt;}
.y59{bottom:716.893333pt;}
.y1a{bottom:720.573333pt;}
.yf7{bottom:720.893333pt;}
.ybd{bottom:721.853333pt;}
.y8e{bottom:730.973333pt;}
.y127{bottom:731.453333pt;}
.y58{bottom:732.573333pt;}
.y19{bottom:736.253333pt;}
.yf6{bottom:736.413333pt;}
.ybc{bottom:741.373333pt;}
.y8d{bottom:746.653333pt;}
.y126{bottom:747.133333pt;}
.y57{bottom:748.253333pt;}
.y18{bottom:751.773333pt;}
.yf5{bottom:752.093333pt;}
.ybb{bottom:760.893333pt;}
.y8c{bottom:762.173333pt;}
.y125{bottom:762.813333pt;}
.y56{bottom:763.933333pt;}
.y17{bottom:767.453333pt;}
.yf4{bottom:767.773333pt;}
.y8b{bottom:777.893333pt;}
.y124{bottom:778.533333pt;}
.y55{bottom:779.653333pt;}
.yb9{bottom:780.613333pt;}
.y16{bottom:783.173333pt;}
.yf3{bottom:783.493333pt;}
.y8a{bottom:793.573333pt;}
.y123{bottom:794.053333pt;}
.y54{bottom:795.173333pt;}
.y15{bottom:798.853333pt;}
.yf2{bottom:799.173333pt;}
.yb8{bottom:800.133333pt;}
.y89{bottom:809.253333pt;}
.y122{bottom:809.733333pt;}
.y53{bottom:810.853333pt;}
.yf0{bottom:812.293333pt;}
.y14{bottom:815.173333pt;}
.yb7{bottom:819.653333pt;}
.y88{bottom:824.933333pt;}
.y121{bottom:825.413333pt;}
.y52{bottom:826.533333pt;}
.y13{bottom:830.853333pt;}
.y120{bottom:838.533333pt;}
.yb6{bottom:839.173333pt;}
.y87{bottom:840.453333pt;}
.y51{bottom:842.213333pt;}
.y12{bottom:846.373333pt;}
.y86{bottom:855.973333pt;}
.y50{bottom:857.893333pt;}
.y11f{bottom:858.053333pt;}
.yb5{bottom:858.693333pt;}
.yef{bottom:859.813333pt;}
.y11{bottom:862.053333pt;}
.y85{bottom:872.613333pt;}
.y4f{bottom:873.573333pt;}
.y10{bottom:877.733333pt;}
.yb3{bottom:878.213333pt;}
.y11e{bottom:880.773333pt;}
.y84{bottom:888.133333pt;}
.y4e{bottom:889.093333pt;}
.yee{bottom:891.813333pt;}
.yf{bottom:893.413333pt;}
.y11d{bottom:896.453333pt;}
.yb1{bottom:897.733333pt;}
.y4d{bottom:904.773333pt;}
.ye{bottom:908.933333pt;}
.y11c{bottom:912.133333pt;}
.y4c{bottom:920.453333pt;}
.yed{bottom:923.813333pt;}
.yd{bottom:926.693333pt;}
.y11b{bottom:927.813333pt;}
.y4b{bottom:936.133333pt;}
.yc{bottom:942.373333pt;}
.y119{bottom:944.613333pt;}
.y11a{bottom:951.653333pt;}
.y4a{bottom:951.813333pt;}
.ye9{bottom:955.813333pt;}
.yb{bottom:958.053333pt;}
.y118{bottom:963.173333pt;}
.y49{bottom:967.333333pt;}
.ya{bottom:973.733333pt;}
.y117{bottom:978.853333pt;}
.y48{bottom:983.013333pt;}
.ye8{bottom:987.813333pt;}
.y9{bottom:989.893333pt;}
.y115{bottom:995.493333pt;}
.y47{bottom:998.693333pt;}
.y116{bottom:1002.533333pt;}
.ye6{bottom:1007.333333pt;}
.y8{bottom:1008.640000pt;}
.y114{bottom:1014.240000pt;}
.y46{bottom:1014.400000pt;}
.y7{bottom:1027.520000pt;}
.y45{bottom:1030.080000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1063.200000pt;}
.y1{bottom:1080.320000pt;}
.h14{height:15.680000pt;}
.h4{height:17.120000pt;}
.hb{height:18.720000pt;}
.hd{height:18.752000pt;}
.ha{height:18.880000pt;}
.hc{height:18.912000pt;}
.h11{height:31.283750pt;}
.he{height:31.360000pt;}
.h7{height:38.050313pt;}
.h8{height:38.076250pt;}
.h12{height:38.400000pt;}
.h2{height:42.205000pt;}
.h10{height:44.768125pt;}
.h6{height:45.875000pt;}
.hf{height:46.880000pt;}
.h9{height:54.598989pt;}
.h5{height:58.563750pt;}
.h3{height:60.288750pt;}
.h13{height:236.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:44.672000pt;}
.w3{width:54.592000pt;}
.wf{width:59.840000pt;}
.w1f{width:62.592000pt;}
.we{width:67.392000pt;}
.w1e{width:77.600000pt;}
.w1c{width:78.752000pt;}
.w9{width:80.160000pt;}
.wa{width:80.192000pt;}
.wb{width:80.352000pt;}
.wc{width:82.240000pt;}
.w10{width:82.432000pt;}
.w16{width:85.152000pt;}
.wd{width:92.672000pt;}
.w19{width:94.400000pt;}
.w18{width:94.912000pt;}
.w1d{width:100.640000pt;}
.w14{width:102.112000pt;}
.w17{width:119.840000pt;}
.w13{width:132.352000pt;}
.w6{width:135.866667pt;}
.w7{width:144.666667pt;}
.w15{width:146.906667pt;}
.w11{width:150.426667pt;}
.w5{width:153.146667pt;}
.w1a{width:189.946667pt;}
.w12{width:199.546667pt;}
.w4{width:246.586667pt;}
.w1b{width:298.626667pt;}
.w20{width:335.746667pt;}
.w21{width:370.493333pt;}
.w2{width:653.253333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x40{left:9.920000pt;}
.x51{left:11.200000pt;}
.x7{left:12.640000pt;}
.x64{left:13.920000pt;}
.x39{left:14.880000pt;}
.x5f{left:16.000000pt;}
.x35{left:17.280000pt;}
.x45{left:18.240000pt;}
.x46{left:19.840000pt;}
.x37{left:21.440000pt;}
.x55{left:22.560000pt;}
.x67{left:24.160000pt;}
.x42{left:25.440000pt;}
.x5b{left:26.720000pt;}
.x1a{left:28.480000pt;}
.x54{left:29.440000pt;}
.x3c{left:30.400000pt;}
.x41{left:31.840000pt;}
.x43{left:32.800000pt;}
.x58{left:34.720000pt;}
.x44{left:35.840000pt;}
.x3f{left:37.312000pt;}
.x47{left:38.752000pt;}
.x18{left:40.026667pt;}
.x65{left:41.952000pt;}
.x4{left:43.040000pt;}
.x33{left:44.192000pt;}
.x69{left:46.240000pt;}
.x8{left:48.000000pt;}
.x4d{left:49.120000pt;}
.x28{left:51.034667pt;}
.x32{left:52.000000pt;}
.x26{left:53.320000pt;}
.x4b{left:56.160000pt;}
.x22{left:57.480000pt;}
.x20{left:59.720000pt;}
.x24{left:61.114667pt;}
.x1f{left:64.026667pt;}
.x2e{left:64.954667pt;}
.x1d{left:67.880000pt;}
.x66{left:70.592000pt;}
.x11{left:72.000000pt;}
.x1b{left:73.914667pt;}
.x1c{left:76.506667pt;}
.x29{left:77.754667pt;}
.x68{left:79.072000pt;}
.x2a{left:82.234667pt;}
.x27{left:83.834667pt;}
.x21{left:87.994667pt;}
.x2b{left:89.914667pt;}
.x16{left:95.034667pt;}
.x10{left:96.032000pt;}
.x1e{left:97.754667pt;}
.x2c{left:99.834667pt;}
.x2d{left:101.114667pt;}
.x23{left:103.354667pt;}
.x25{left:105.114667pt;}
.x2f{left:106.554667pt;}
.x63{left:115.386667pt;}
.x4e{left:117.152000pt;}
.x5c{left:120.986667pt;}
.x15{left:128.512000pt;}
.x13{left:131.712000pt;}
.xf{left:144.506667pt;}
.x1{left:171.386667pt;}
.x57{left:176.506667pt;}
.x4f{left:177.626667pt;}
.x9{left:181.946667pt;}
.xc{left:193.306667pt;}
.x34{left:197.306667pt;}
.x14{left:199.226667pt;}
.xd{left:200.986667pt;}
.xe{left:226.906667pt;}
.x3{left:231.546667pt;}
.x36{left:242.626667pt;}
.x50{left:260.866667pt;}
.x48{left:269.506667pt;}
.xa{left:283.426667pt;}
.xb{left:291.906667pt;}
.x31{left:300.066667pt;}
.x2{left:308.706667pt;}
.x4c{left:315.266667pt;}
.x38{left:323.586667pt;}
.x6b{left:332.226667pt;}
.x56{left:344.706667pt;}
.x5d{left:351.746667pt;}
.x17{left:375.746667pt;}
.x6a{left:379.586667pt;}
.x30{left:396.866667pt;}
.x3a{left:404.413333pt;}
.x59{left:409.853333pt;}
.x52{left:412.093333pt;}
.x49{left:417.213333pt;}
.x5e{left:431.293333pt;}
.x4a{left:481.373333pt;}
.x3b{left:485.213333pt;}
.x19{left:529.533333pt;}
.x60{left:532.573333pt;}
.x3d{left:566.213333pt;}
.x61{left:600.613333pt;}
.x53{left:612.453333pt;}
.x5a{left:625.893333pt;}
.x3e{left:649.093333pt;}
.x62{left:678.853333pt;}
.x12{left:692.933333pt;}
.x6{left:696.293333pt;}
}




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