
    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_06ee4b4d4792e54a54c99b1d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.060059;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_6e5634af512d42e4021d2d7e.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_5b9c5d60da426bf34e302f17.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c8fad0d498a742a4f663b1ed.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f41e83992d88dbaf91268f6f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21990b2f31c4a32254a2fdb8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fc8cca2293e5a5415ecf19bf.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_58985701b4c755d552b4c977.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_a625715d5b33d0fbac94d764.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;}
.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);}
.v3{vertical-align:-84.240000px;}
.v4{vertical-align:-68.400000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.119520px;}
.lsa{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.234000px;}
.lsd{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.720000px;}
.ls11{letter-spacing:2.160000px;}
.lsc{letter-spacing:54.840000px;}
.ls8{letter-spacing:833.196000px;}
.lsf{letter-spacing:1047.360000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.wsd{word-spacing:-18.504000px;}
.ws5{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.424000px;}
.wse{word-spacing:-16.560000px;}
.ws1{word-spacing:-14.940000px;}
.ws0{word-spacing:-12.114000px;}
.ws2{word-spacing:-11.700000px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-7.254000px;}
._7{margin-left:-4.338000px;}
._1{margin-left:-3.078000px;}
._0{margin-left:-1.914000px;}
._3{width:1.194000px;}
._15{width:2.238000px;}
._2{width:3.299040px;}
._14{width:4.467600px;}
._c{width:6.408000px;}
._d{width:7.602000px;}
._8{width:8.928000px;}
._9{width:10.152000px;}
._1b{width:11.220000px;}
._12{width:12.240000px;}
._5{width:13.320000px;}
._6{width:14.760000px;}
._16{width:15.852000px;}
._11{width:16.938000px;}
._e{width:19.452000px;}
._a{width:20.520000px;}
._b{width:21.540000px;}
._10{width:23.256000px;}
._f{width:24.408000px;}
._13{width:25.848000px;}
._1c{width:27.864000px;}
._1d{width:29.118000px;}
._17{width:30.312000px;}
._18{width:31.320000px;}
._19{width:32.646000px;}
._1e{width:34.704000px;}
._1f{width:35.928000px;}
._29{width:36.978000px;}
._2b{width:42.372000px;}
._2a{width:43.392000px;}
._2c{width:44.622000px;}
._30{width:45.666000px;}
._37{width:46.986000px;}
._4{width:62.928000px;}
._33{width:69.264000px;}
._34{width:70.272000px;}
._25{width:78.024000px;}
._26{width:82.080000px;}
._27{width:83.238000px;}
._31{width:93.744000px;}
._32{width:94.752000px;}
._28{width:100.728000px;}
._21{width:104.400000px;}
._2d{width:111.528000px;}
._22{width:113.016000px;}
._23{width:114.024000px;}
._2f{width:144.060000px;}
._2e{width:145.482000px;}
._24{width:173.448000px;}
._38{width:219.036000px;}
._36{width:297.360000px;}
._35{width:298.368000px;}
._39{width:1155.240000px;}
._20{width:1485.096000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:4.140000px;}
.y19c{bottom:4.320000px;}
.y5b{bottom:4.500000px;}
.y18c{bottom:25.020000px;}
.y61{bottom:25.194000px;}
.y5a{bottom:25.200000px;}
.y172{bottom:25.245000px;}
.y18b{bottom:45.720000px;}
.y171{bottom:45.765000px;}
.y60{bottom:45.894000px;}
.y59{bottom:45.900000px;}
.y94{bottom:45.945000px;}
.y4{bottom:57.600000px;}
.y18a{bottom:66.420000px;}
.y170{bottom:66.465000px;}
.y5f{bottom:66.594000px;}
.y6a{bottom:66.600000px;}
.y183{bottom:66.630000px;}
.y58{bottom:66.645000px;}
.y3{bottom:75.276000px;}
.y189{bottom:87.120000px;}
.y16f{bottom:87.165000px;}
.y5e{bottom:87.294000px;}
.y69{bottom:87.300000px;}
.y169{bottom:87.330000px;}
.y57{bottom:87.345000px;}
.y164{bottom:107.640000px;}
.y188{bottom:107.820000px;}
.y16e{bottom:107.865000px;}
.y5d{bottom:107.994000px;}
.y68{bottom:108.000000px;}
.y168{bottom:108.030000px;}
.y56{bottom:108.045000px;}
.y15d{bottom:116.676000px;}
.y31{bottom:116.856000px;}
.y19e{bottom:117.216000px;}
.y102{bottom:120.096000px;}
.y192{bottom:120.996000px;}
.y17e{bottom:123.156000px;}
.y5c{bottom:125.496000px;}
.y187{bottom:128.520000px;}
.y97{bottom:128.556000px;}
.y16d{bottom:128.565000px;}
.y175{bottom:128.694000px;}
.y67{bottom:128.700000px;}
.y167{bottom:128.730000px;}
.y55{bottom:128.745000px;}
.y8c{bottom:129.996000px;}
.y126{bottom:131.976000px;}
.y135{bottom:132.156000px;}
.ybc{bottom:133.776000px;}
.y30{bottom:137.556000px;}
.y1b1{bottom:137.916000px;}
.ydc{bottom:138.636000px;}
.y101{bottom:140.796000px;}
.y173{bottom:143.856000px;}
.y186{bottom:149.220000px;}
.y96{bottom:149.256000px;}
.y16c{bottom:149.265000px;}
.y174{bottom:149.394000px;}
.y66{bottom:149.400000px;}
.y166{bottom:149.430000px;}
.y162{bottom:149.445000px;}
.y8b{bottom:150.690000px;}
.y14a{bottom:151.770000px;}
.y125{bottom:152.670000px;}
.y134{bottom:152.850000px;}
.ybb{bottom:156.090000px;}
.y2f{bottom:158.250000px;}
.y1b0{bottom:158.610000px;}
.ydb{bottom:159.330000px;}
.y100{bottom:161.490000px;}
.y191{bottom:163.110000px;}
.y1ca{bottom:165.090000px;}
.y95{bottom:166.170000px;}
.y185{bottom:169.920000px;}
.y16b{bottom:169.965000px;}
.y65{bottom:170.100000px;}
.y17b{bottom:170.130000px;}
.y161{bottom:170.145000px;}
.y8a{bottom:171.390000px;}
.y149{bottom:172.470000px;}
.y124{bottom:173.370000px;}
.y133{bottom:173.550000px;}
.yba{bottom:178.410000px;}
.y2e{bottom:178.950000px;}
.yda{bottom:179.310000px;}
.yff{bottom:182.190000px;}
.y1c9{bottom:185.790000px;}
.y17d{bottom:186.150000px;}
.y64{bottom:190.800000px;}
.y160{bottom:190.845000px;}
.y89{bottom:192.090000px;}
.y148{bottom:193.170000px;}
.y123{bottom:194.070000px;}
.y132{bottom:194.250000px;}
.yd9{bottom:196.590000px;}
.y2d{bottom:199.650000px;}
.y1af{bottom:200.010000px;}
.y15c{bottom:200.370000px;}
.yb9{bottom:200.730000px;}
.y1c8{bottom:206.490000px;}
.y178{bottom:211.500000px;}
.y88{bottom:212.790000px;}
.yd8{bottom:213.870000px;}
.y122{bottom:214.770000px;}
.y131{bottom:214.950000px;}
.y1cb{bottom:217.650000px;}
.y2c{bottom:220.350000px;}
.y1ae{bottom:220.710000px;}
.yb8{bottom:223.050000px;}
.yfe{bottom:223.950000px;}
.y1c7{bottom:227.190000px;}
.yd7{bottom:231.150000px;}
.y177{bottom:232.200000px;}
.y87{bottom:233.490000px;}
.y147{bottom:234.570000px;}
.y121{bottom:235.470000px;}
.y130{bottom:235.650000px;}
.y2b{bottom:241.050000px;}
.y1ad{bottom:241.410000px;}
.yfd{bottom:244.650000px;}
.yb7{bottom:245.370000px;}
.y190{bottom:246.630000px;}
.y15b{bottom:246.990000px;}
.y1c6{bottom:247.890000px;}
.yd6{bottom:248.430000px;}
.y54{bottom:250.410000px;}
.y86{bottom:254.190000px;}
.y146{bottom:255.270000px;}
.y120{bottom:256.170000px;}
.y12f{bottom:256.350000px;}
.y2a{bottom:261.750000px;}
.y1ac{bottom:262.110000px;}
.y19d{bottom:263.550000px;}
.yfc{bottom:265.350000px;}
.yd5{bottom:265.530000px;}
.y15a{bottom:267.690000px;}
.yb6{bottom:268.050000px;}
.y1c5{bottom:268.590000px;}
.y18f{bottom:272.550000px;}
.y85{bottom:274.890000px;}
.y145{bottom:275.970000px;}
.y11f{bottom:276.870000px;}
.y12e{bottom:277.050000px;}
.y29{bottom:282.450000px;}
.yd4{bottom:282.810000px;}
.yfb{bottom:286.050000px;}
.y1c4{bottom:289.290000px;}
.yb5{bottom:290.370000px;}
.y93{bottom:291.090000px;}
.y18e{bottom:293.250000px;}
.y84{bottom:295.590000px;}
.y144{bottom:296.670000px;}
.y159{bottom:297.390000px;}
.y11e{bottom:297.570000px;}
.y12d{bottom:297.750000px;}
.yd3{bottom:300.090000px;}
.y28{bottom:303.150000px;}
.yfa{bottom:306.750000px;}
.y1c3{bottom:309.990000px;}
.y16a{bottom:310.350000px;}
.y1ab{bottom:312.510000px;}
.yb4{bottom:312.690000px;}
.y18d{bottom:313.950000px;}
.y83{bottom:315.930000px;}
.yd2{bottom:317.415000px;}
.y158{bottom:318.135000px;}
.y11d{bottom:318.315000px;}
.y12c{bottom:318.495000px;}
.y27{bottom:323.895000px;}
.yf9{bottom:327.495000px;}
.y1c2{bottom:330.735000px;}
.y184{bottom:331.095000px;}
.y17c{bottom:331.815000px;}
.y1aa{bottom:333.255000px;}
.yd1{bottom:334.695000px;}
.yb3{bottom:335.235000px;}
.y82{bottom:337.035000px;}
.y143{bottom:338.115000px;}
.y157{bottom:338.475000px;}
.y11c{bottom:339.015000px;}
.y12b{bottom:339.195000px;}
.y26{bottom:344.235000px;}
.y19b{bottom:347.295000px;}
.yf8{bottom:348.195000px;}
.y1c1{bottom:351.435000px;}
.yd0{bottom:351.795000px;}
.y1a9{bottom:353.955000px;}
.y81{bottom:357.735000px;}
.y142{bottom:358.455000px;}
.yb2{bottom:358.815000px;}
.y156{bottom:359.535000px;}
.y11b{bottom:359.715000px;}
.y12a{bottom:359.895000px;}
.yf7{bottom:368.895000px;}
.ycf{bottom:369.075000px;}
.y1c0{bottom:371.775000px;}
.y25{bottom:373.935000px;}
.y1a8{bottom:374.655000px;}
.y80{bottom:378.435000px;}
.y155{bottom:380.235000px;}
.y11a{bottom:380.415000px;}
.y129{bottom:380.595000px;}
.yb1{bottom:381.135000px;}
.yce{bottom:386.355000px;}
.yf6{bottom:389.595000px;}
.y1bf{bottom:392.475000px;}
.y24{bottom:394.635000px;}
.y1a7{bottom:395.355000px;}
.y52{bottom:396.075000px;}
.y154{bottom:396.435000px;}
.y7f{bottom:399.135000px;}
.y141{bottom:400.395000px;}
.y119{bottom:401.115000px;}
.y128{bottom:401.295000px;}
.yb0{bottom:403.455000px;}
.ycd{bottom:403.635000px;}
.yf5{bottom:410.115000px;}
.y1be{bottom:413.535000px;}
.y23{bottom:415.695000px;}
.y92{bottom:416.055000px;}
.y7e{bottom:419.835000px;}
.ycc{bottom:420.915000px;}
.y118{bottom:421.815000px;}
.y51{bottom:421.995000px;}
.yaf{bottom:425.775000px;}
.yf4{bottom:430.455000px;}
.y1bd{bottom:434.235000px;}
.y17a{bottom:436.035000px;}
.y22{bottom:436.395000px;}
.y1a6{bottom:436.755000px;}
.ycb{bottom:438.195000px;}
.y7d{bottom:440.535000px;}
.y140{bottom:442.155000px;}
.y50{bottom:442.335000px;}
.y117{bottom:442.515000px;}
.y127{bottom:442.695000px;}
.yae{bottom:449.355000px;}
.y19a{bottom:451.515000px;}
.y1a5{bottom:453.675000px;}
.y1bc{bottom:454.575000px;}
.yca{bottom:455.295000px;}
.y21{bottom:457.095000px;}
.y7c{bottom:461.235000px;}
.y13f{bottom:462.855000px;}
.y116{bottom:463.215000px;}
.y4f{bottom:463.395000px;}
.yad{bottom:471.675000px;}
.yc9{bottom:472.575000px;}
.y1bb{bottom:475.455000px;}
.y7b{bottom:481.935000px;}
.y13e{bottom:483.555000px;}
.y115{bottom:483.915000px;}
.y4e{bottom:484.095000px;}
.y20{bottom:486.435000px;}
.yc8{bottom:489.855000px;}
.yf3{bottom:493.275000px;}
.yac{bottom:493.815000px;}
.y1ba{bottom:495.795000px;}
.y165{bottom:497.415000px;}
.y7a{bottom:502.635000px;}
.y13d{bottom:504.255000px;}
.y114{bottom:504.615000px;}
.y4d{bottom:504.795000px;}
.yc7{bottom:507.135000px;}
.y1f{bottom:507.495000px;}
.yf2{bottom:513.975000px;}
.y199{bottom:514.335000px;}
.yab{bottom:514.515000px;}
.y1a4{bottom:516.495000px;}
.y182{bottom:518.115000px;}
.y79{bottom:523.335000px;}
.yc6{bottom:524.415000px;}
.y13c{bottom:524.955000px;}
.y113{bottom:525.315000px;}
.y4c{bottom:525.495000px;}
.y1e{bottom:528.195000px;}
.yf1{bottom:534.675000px;}
.yaa{bottom:535.215000px;}
.y1b9{bottom:536.835000px;}
.y78{bottom:544.035000px;}
.y13b{bottom:545.655000px;}
.y112{bottom:546.015000px;}
.y4b{bottom:546.195000px;}
.y1d{bottom:548.895000px;}
.yf0{bottom:555.375000px;}
.ya9{bottom:555.555000px;}
.y1b8{bottom:557.895000px;}
.yc5{bottom:558.795000px;}
.y91{bottom:561.675000px;}
.y77{bottom:564.735000px;}
.y13a{bottom:566.355000px;}
.y111{bottom:566.715000px;}
.y4a{bottom:566.895000px;}
.y1c{bottom:569.625000px;}
.yc4{bottom:576.105000px;}
.ya8{bottom:576.285000px;}
.y198{bottom:577.185000px;}
.y1b7{bottom:578.625000px;}
.y76{bottom:585.105000px;}
.y139{bottom:587.085000px;}
.y110{bottom:587.445000px;}
.y49{bottom:587.625000px;}
.y1b{bottom:590.325000px;}
.yc3{bottom:594.105000px;}
.yef{bottom:597.165000px;}
.ya7{bottom:598.965000px;}
.y1b6{bottom:599.325000px;}
.y75{bottom:606.165000px;}
.y138{bottom:607.785000px;}
.y10f{bottom:608.145000px;}
.y48{bottom:608.325000px;}
.y1a{bottom:611.025000px;}
.yc2{bottom:614.805000px;}
.yee{bottom:617.865000px;}
.y197{bottom:619.305000px;}
.y1b5{bottom:620.025000px;}
.y1a3{bottom:620.745000px;}
.y181{bottom:622.365000px;}
.ya6{bottom:622.545000px;}
.y179{bottom:623.085000px;}
.y74{bottom:626.865000px;}
.y137{bottom:628.485000px;}
.y10e{bottom:628.845000px;}
.y47{bottom:629.025000px;}
.y19{bottom:631.725000px;}
.yc1{bottom:636.585000px;}
.yed{bottom:638.565000px;}
.y1b4{bottom:640.725000px;}
.ya5{bottom:646.125000px;}
.y73{bottom:647.565000px;}
.y136{bottom:648.825000px;}
.y10d{bottom:649.545000px;}
.y46{bottom:649.725000px;}
.y18{bottom:652.425000px;}
.yc0{bottom:655.125000px;}
.yec{bottom:659.265000px;}
.y1b3{bottom:661.425000px;}
.y163{bottom:663.765000px;}
.y72{bottom:668.265000px;}
.ya4{bottom:668.445000px;}
.y45{bottom:670.065000px;}
.y10c{bottom:670.245000px;}
.y90{bottom:670.425000px;}
.y17{bottom:673.125000px;}
.yeb{bottom:679.965000px;}
.y153{bottom:682.125000px;}
.y71{bottom:688.965000px;}
.ya3{bottom:690.765000px;}
.y44{bottom:691.125000px;}
.y16{bottom:693.825000px;}
.yea{bottom:700.665000px;}
.y152{bottom:702.825000px;}
.y1a2{bottom:704.445000px;}
.y70{bottom:709.665000px;}
.y8f{bottom:711.465000px;}
.y43{bottom:711.825000px;}
.ya2{bottom:712.905000px;}
.y15{bottom:714.525000px;}
.ye9{bottom:721.365000px;}
.y151{bottom:723.525000px;}
.y6f{bottom:730.365000px;}
.y10b{bottom:732.165000px;}
.y42{bottom:732.525000px;}
.ya1{bottom:733.605000px;}
.y14{bottom:735.225000px;}
.ye8{bottom:742.065000px;}
.y150{bottom:744.225000px;}
.y196{bottom:744.945000px;}
.y6e{bottom:750.705000px;}
.y10a{bottom:752.865000px;}
.y41{bottom:753.225000px;}
.ya0{bottom:754.305000px;}
.y13{bottom:755.925000px;}
.y14f{bottom:764.925000px;}
.y6d{bottom:771.765000px;}
.y109{bottom:773.565000px;}
.y40{bottom:773.925000px;}
.y12{bottom:776.625000px;}
.ye7{bottom:783.645000px;}
.y14e{bottom:785.625000px;}
.y195{bottom:787.065000px;}
.y15f{bottom:788.685000px;}
.y6c{bottom:792.465000px;}
.y108{bottom:794.265000px;}
.y3f{bottom:794.625000px;}
.y11{bottom:797.325000px;}
.y9f{bottom:800.205000px;}
.ye6{bottom:804.345000px;}
.y14d{bottom:806.325000px;}
.y1a1{bottom:808.665000px;}
.y180{bottom:809.385000px;}
.y6b{bottom:813.165000px;}
.y107{bottom:814.965000px;}
.y3e{bottom:815.325000px;}
.y10{bottom:818.025000px;}
.y9e{bottom:823.830000px;}
.ye5{bottom:825.090000px;}
.y14c{bottom:827.070000px;}
.y63{bottom:830.130000px;}
.y176{bottom:830.850000px;}
.y106{bottom:835.710000px;}
.y3d{bottom:836.070000px;}
.yf{bottom:838.770000px;}
.ye4{bottom:845.790000px;}
.y9d{bottom:846.150000px;}
.y1b2{bottom:847.410000px;}
.y14b{bottom:847.770000px;}
.y105{bottom:856.410000px;}
.y3c{bottom:856.770000px;}
.ye{bottom:859.110000px;}
.ye3{bottom:866.490000px;}
.y9c{bottom:868.470000px;}
.y194{bottom:870.810000px;}
.y104{bottom:877.110000px;}
.y3b{bottom:877.470000px;}
.yd{bottom:879.810000px;}
.ye2{bottom:887.190000px;}
.y9b{bottom:892.230000px;}
.y103{bottom:897.450000px;}
.y3a{bottom:898.170000px;}
.yc{bottom:900.870000px;}
.ye1{bottom:907.890000px;}
.y9a{bottom:915.810000px;}
.y39{bottom:918.870000px;}
.yb{bottom:921.570000px;}
.y1a0{bottom:933.630000px;}
.y99{bottom:938.130000px;}
.y38{bottom:939.570000px;}
.ya{bottom:949.110000px;}
.ye0{bottom:949.290000px;}
.y193{bottom:954.330000px;}
.y37{bottom:960.270000px;}
.y9{bottom:969.810000px;}
.ydf{bottom:969.990000px;}
.y17f{bottom:975.750000px;}
.y36{bottom:980.610000px;}
.y8e{bottom:980.970000px;}
.y8{bottom:983.310000px;}
.yde{bottom:990.690000px;}
.y15e{bottom:996.450000px;}
.y35{bottom:1001.670000px;}
.y7{bottom:1004.370000px;}
.y19f{bottom:1017.150000px;}
.ybf{bottom:1018.590000px;}
.ydd{bottom:1022.190000px;}
.y34{bottom:1022.370000px;}
.y6{bottom:1033.710000px;}
.y62{bottom:1037.850000px;}
.ybe{bottom:1040.910000px;}
.y98{bottom:1042.710000px;}
.y33{bottom:1043.070000px;}
.y5{bottom:1054.410000px;}
.ybd{bottom:1063.230000px;}
.y8d{bottom:1063.410000px;}
.y32{bottom:1063.770000px;}
.y2{bottom:1103.220000px;}
.y1{bottom:1119.780000px;}
.h7{height:20.700000px;}
.hc{height:20.736000px;}
.h11{height:41.400000px;}
.ha{height:41.436000px;}
.h1{height:45.720703px;}
.h5{height:47.344922px;}
.h2{height:58.651172px;}
.h1b{height:62.100000px;}
.h1f{height:62.136000px;}
.he{height:64.546875px;}
.h6{height:70.628906px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h10{height:74.004654px;}
.h12{height:82.800000px;}
.h13{height:82.836000px;}
.h20{height:103.320000px;}
.h1a{height:103.500000px;}
.h1c{height:103.536000px;}
.h9{height:124.200000px;}
.hf{height:124.236000px;}
.hd{height:144.900000px;}
.h8{height:144.936000px;}
.h17{height:165.600000px;}
.h15{height:165.630000px;}
.h1e{height:186.120000px;}
.h16{height:186.150000px;}
.h1d{height:186.300000px;}
.h19{height:186.330000px;}
.hb{height:207.000000px;}
.h14{height:207.030000px;}
.h18{height:248.430000px;}
.h0{height:1188.000000px;}
.wd{width:46.080000px;}
.w8{width:66.780000px;}
.w7{width:73.440000px;}
.w9{width:93.816000px;}
.w2{width:97.560000px;}
.wb{width:107.136000px;}
.wc{width:161.100000px;}
.w4{width:170.670000px;}
.w5{width:201.270000px;}
.w3{width:228.990000px;}
.wa{width:235.470000px;}
.wf{width:343.470000px;}
.we{width:343.515000px;}
.w6{width:602.385000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x25{left:7.740000px;}
.x3d{left:8.820000px;}
.x16{left:9.900000px;}
.x20{left:10.980000px;}
.x2b{left:12.960000px;}
.x14{left:14.040000px;}
.x1f{left:15.660000px;}
.x2a{left:16.920000px;}
.xd{left:18.720000px;}
.x23{left:20.700000px;}
.x1b{left:22.140000px;}
.x44{left:23.760000px;}
.x1c{left:24.840000px;}
.x1e{left:26.820000px;}
.x19{left:28.440000px;}
.x37{left:30.060000px;}
.x17{left:31.500000px;}
.x28{left:32.940000px;}
.x11{left:34.200000px;}
.x3f{left:35.280000px;}
.x22{left:36.900000px;}
.x21{left:38.160000px;}
.x26{left:39.780000px;}
.x18{left:40.860000px;}
.x41{left:42.840000px;}
.x29{left:44.670000px;}
.x27{left:46.620000px;}
.x15{left:48.774000px;}
.x3e{left:50.400000px;}
.x56{left:52.560000px;}
.x40{left:54.540000px;}
.x13{left:55.980000px;}
.x42{left:59.400000px;}
.x45{left:61.200000px;}
.x47{left:63.900000px;}
.x1d{left:68.085000px;}
.x59{left:70.920000px;}
.xf{left:75.960000px;}
.x2c{left:77.085000px;}
.x1a{left:81.045000px;}
.x58{left:83.880000px;}
.x43{left:85.500000px;}
.x24{left:87.525000px;}
.x4d{left:92.520000px;}
.x46{left:94.140000px;}
.x3a{left:95.760000px;}
.x4c{left:97.020000px;}
.x53{left:98.460000px;}
.x36{left:101.736000px;}
.xa{left:108.035986px;}
.x1{left:109.475986px;}
.x50{left:112.680000px;}
.x57{left:120.240000px;}
.x4{left:121.895986px;}
.x55{left:122.940000px;}
.x2d{left:126.035986px;}
.x2e{left:131.625000px;}
.x4a{left:133.740000px;}
.x30{left:135.035986px;}
.x51{left:136.260000px;}
.x4f{left:137.565000px;}
.x54{left:138.645000px;}
.x52{left:139.905000px;}
.x4b{left:142.065000px;}
.x48{left:155.730000px;}
.x31{left:162.029986px;}
.x4e{left:171.585000px;}
.xc{left:175.889986px;}
.x8{left:184.529986px;}
.xe{left:207.030000px;}
.x7{left:208.469986px;}
.x3{left:218.549986px;}
.x9{left:236.189986px;}
.x38{left:243.390000px;}
.x5{left:262.289986px;}
.x2f{left:265.905000px;}
.x35{left:273.269986px;}
.x5a{left:277.229986px;}
.x6{left:313.994986px;}
.x39{left:337.935000px;}
.x34{left:344.774986px;}
.xb{left:378.974986px;}
.x5b{left:383.474986px;}
.x10{left:436.755000px;}
.x2{left:459.074986px;}
.x49{left:499.965000px;}
.x3b{left:574.305000px;}
.x12{left:608.145000px;}
.x3c{left:682.350000px;}
.x33{left:724.649986px;}
.x32{left:793.229986px;}
@media print{
.v3{vertical-align:-74.880000pt;}
.v4{vertical-align:-60.800000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.106240pt;}
.lsa{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.208000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.920000pt;}
.lsc{letter-spacing:48.746667pt;}
.ls8{letter-spacing:740.618667pt;}
.lsf{letter-spacing:930.986667pt;}
.ws7{word-spacing:-64.000000pt;}
.wsd{word-spacing:-16.448000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.488000pt;}
.wse{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.768000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-6.448000pt;}
._7{margin-left:-3.856000pt;}
._1{margin-left:-2.736000pt;}
._0{margin-left:-1.701333pt;}
._3{width:1.061333pt;}
._15{width:1.989333pt;}
._2{width:2.932480pt;}
._14{width:3.971200pt;}
._c{width:5.696000pt;}
._d{width:6.757333pt;}
._8{width:7.936000pt;}
._9{width:9.024000pt;}
._1b{width:9.973333pt;}
._12{width:10.880000pt;}
._5{width:11.840000pt;}
._6{width:13.120000pt;}
._16{width:14.090667pt;}
._11{width:15.056000pt;}
._e{width:17.290667pt;}
._a{width:18.240000pt;}
._b{width:19.146667pt;}
._10{width:20.672000pt;}
._f{width:21.696000pt;}
._13{width:22.976000pt;}
._1c{width:24.768000pt;}
._1d{width:25.882667pt;}
._17{width:26.944000pt;}
._18{width:27.840000pt;}
._19{width:29.018667pt;}
._1e{width:30.848000pt;}
._1f{width:31.936000pt;}
._29{width:32.869333pt;}
._2b{width:37.664000pt;}
._2a{width:38.570667pt;}
._2c{width:39.664000pt;}
._30{width:40.592000pt;}
._37{width:41.765333pt;}
._4{width:55.936000pt;}
._33{width:61.568000pt;}
._34{width:62.464000pt;}
._25{width:69.354667pt;}
._26{width:72.960000pt;}
._27{width:73.989333pt;}
._31{width:83.328000pt;}
._32{width:84.224000pt;}
._28{width:89.536000pt;}
._21{width:92.800000pt;}
._2d{width:99.136000pt;}
._22{width:100.458667pt;}
._23{width:101.354667pt;}
._2f{width:128.053333pt;}
._2e{width:129.317333pt;}
._24{width:154.176000pt;}
._38{width:194.698667pt;}
._36{width:264.320000pt;}
._35{width:265.216000pt;}
._39{width:1026.880000pt;}
._20{width:1320.085333pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:3.680000pt;}
.y19c{bottom:3.840000pt;}
.y5b{bottom:4.000000pt;}
.y18c{bottom:22.240000pt;}
.y61{bottom:22.394667pt;}
.y5a{bottom:22.400000pt;}
.y172{bottom:22.440000pt;}
.y18b{bottom:40.640000pt;}
.y171{bottom:40.680000pt;}
.y60{bottom:40.794667pt;}
.y59{bottom:40.800000pt;}
.y94{bottom:40.840000pt;}
.y4{bottom:51.200000pt;}
.y18a{bottom:59.040000pt;}
.y170{bottom:59.080000pt;}
.y5f{bottom:59.194667pt;}
.y6a{bottom:59.200000pt;}
.y183{bottom:59.226667pt;}
.y58{bottom:59.240000pt;}
.y3{bottom:66.912000pt;}
.y189{bottom:77.440000pt;}
.y16f{bottom:77.480000pt;}
.y5e{bottom:77.594667pt;}
.y69{bottom:77.600000pt;}
.y169{bottom:77.626667pt;}
.y57{bottom:77.640000pt;}
.y164{bottom:95.680000pt;}
.y188{bottom:95.840000pt;}
.y16e{bottom:95.880000pt;}
.y5d{bottom:95.994667pt;}
.y68{bottom:96.000000pt;}
.y168{bottom:96.026667pt;}
.y56{bottom:96.040000pt;}
.y15d{bottom:103.712000pt;}
.y31{bottom:103.872000pt;}
.y19e{bottom:104.192000pt;}
.y102{bottom:106.752000pt;}
.y192{bottom:107.552000pt;}
.y17e{bottom:109.472000pt;}
.y5c{bottom:111.552000pt;}
.y187{bottom:114.240000pt;}
.y97{bottom:114.272000pt;}
.y16d{bottom:114.280000pt;}
.y175{bottom:114.394667pt;}
.y67{bottom:114.400000pt;}
.y167{bottom:114.426667pt;}
.y55{bottom:114.440000pt;}
.y8c{bottom:115.552000pt;}
.y126{bottom:117.312000pt;}
.y135{bottom:117.472000pt;}
.ybc{bottom:118.912000pt;}
.y30{bottom:122.272000pt;}
.y1b1{bottom:122.592000pt;}
.ydc{bottom:123.232000pt;}
.y101{bottom:125.152000pt;}
.y173{bottom:127.872000pt;}
.y186{bottom:132.640000pt;}
.y96{bottom:132.672000pt;}
.y16c{bottom:132.680000pt;}
.y174{bottom:132.794667pt;}
.y66{bottom:132.800000pt;}
.y166{bottom:132.826667pt;}
.y162{bottom:132.840000pt;}
.y8b{bottom:133.946667pt;}
.y14a{bottom:134.906667pt;}
.y125{bottom:135.706667pt;}
.y134{bottom:135.866667pt;}
.ybb{bottom:138.746667pt;}
.y2f{bottom:140.666667pt;}
.y1b0{bottom:140.986667pt;}
.ydb{bottom:141.626667pt;}
.y100{bottom:143.546667pt;}
.y191{bottom:144.986667pt;}
.y1ca{bottom:146.746667pt;}
.y95{bottom:147.706667pt;}
.y185{bottom:151.040000pt;}
.y16b{bottom:151.080000pt;}
.y65{bottom:151.200000pt;}
.y17b{bottom:151.226667pt;}
.y161{bottom:151.240000pt;}
.y8a{bottom:152.346667pt;}
.y149{bottom:153.306667pt;}
.y124{bottom:154.106667pt;}
.y133{bottom:154.266667pt;}
.yba{bottom:158.586667pt;}
.y2e{bottom:159.066667pt;}
.yda{bottom:159.386667pt;}
.yff{bottom:161.946667pt;}
.y1c9{bottom:165.146667pt;}
.y17d{bottom:165.466667pt;}
.y64{bottom:169.600000pt;}
.y160{bottom:169.640000pt;}
.y89{bottom:170.746667pt;}
.y148{bottom:171.706667pt;}
.y123{bottom:172.506667pt;}
.y132{bottom:172.666667pt;}
.yd9{bottom:174.746667pt;}
.y2d{bottom:177.466667pt;}
.y1af{bottom:177.786667pt;}
.y15c{bottom:178.106667pt;}
.yb9{bottom:178.426667pt;}
.y1c8{bottom:183.546667pt;}
.y178{bottom:188.000000pt;}
.y88{bottom:189.146667pt;}
.yd8{bottom:190.106667pt;}
.y122{bottom:190.906667pt;}
.y131{bottom:191.066667pt;}
.y1cb{bottom:193.466667pt;}
.y2c{bottom:195.866667pt;}
.y1ae{bottom:196.186667pt;}
.yb8{bottom:198.266667pt;}
.yfe{bottom:199.066667pt;}
.y1c7{bottom:201.946667pt;}
.yd7{bottom:205.466667pt;}
.y177{bottom:206.400000pt;}
.y87{bottom:207.546667pt;}
.y147{bottom:208.506667pt;}
.y121{bottom:209.306667pt;}
.y130{bottom:209.466667pt;}
.y2b{bottom:214.266667pt;}
.y1ad{bottom:214.586667pt;}
.yfd{bottom:217.466667pt;}
.yb7{bottom:218.106667pt;}
.y190{bottom:219.226667pt;}
.y15b{bottom:219.546667pt;}
.y1c6{bottom:220.346667pt;}
.yd6{bottom:220.826667pt;}
.y54{bottom:222.586667pt;}
.y86{bottom:225.946667pt;}
.y146{bottom:226.906667pt;}
.y120{bottom:227.706667pt;}
.y12f{bottom:227.866667pt;}
.y2a{bottom:232.666667pt;}
.y1ac{bottom:232.986667pt;}
.y19d{bottom:234.266667pt;}
.yfc{bottom:235.866667pt;}
.yd5{bottom:236.026667pt;}
.y15a{bottom:237.946667pt;}
.yb6{bottom:238.266667pt;}
.y1c5{bottom:238.746667pt;}
.y18f{bottom:242.266667pt;}
.y85{bottom:244.346667pt;}
.y145{bottom:245.306667pt;}
.y11f{bottom:246.106667pt;}
.y12e{bottom:246.266667pt;}
.y29{bottom:251.066667pt;}
.yd4{bottom:251.386667pt;}
.yfb{bottom:254.266667pt;}
.y1c4{bottom:257.146667pt;}
.yb5{bottom:258.106667pt;}
.y93{bottom:258.746667pt;}
.y18e{bottom:260.666667pt;}
.y84{bottom:262.746667pt;}
.y144{bottom:263.706667pt;}
.y159{bottom:264.346667pt;}
.y11e{bottom:264.506667pt;}
.y12d{bottom:264.666667pt;}
.yd3{bottom:266.746667pt;}
.y28{bottom:269.466667pt;}
.yfa{bottom:272.666667pt;}
.y1c3{bottom:275.546667pt;}
.y16a{bottom:275.866667pt;}
.y1ab{bottom:277.786667pt;}
.yb4{bottom:277.946667pt;}
.y18d{bottom:279.066667pt;}
.y83{bottom:280.826667pt;}
.yd2{bottom:282.146667pt;}
.y158{bottom:282.786667pt;}
.y11d{bottom:282.946667pt;}
.y12c{bottom:283.106667pt;}
.y27{bottom:287.906667pt;}
.yf9{bottom:291.106667pt;}
.y1c2{bottom:293.986667pt;}
.y184{bottom:294.306667pt;}
.y17c{bottom:294.946667pt;}
.y1aa{bottom:296.226667pt;}
.yd1{bottom:297.506667pt;}
.yb3{bottom:297.986667pt;}
.y82{bottom:299.586667pt;}
.y143{bottom:300.546667pt;}
.y157{bottom:300.866667pt;}
.y11c{bottom:301.346667pt;}
.y12b{bottom:301.506667pt;}
.y26{bottom:305.986667pt;}
.y19b{bottom:308.706667pt;}
.yf8{bottom:309.506667pt;}
.y1c1{bottom:312.386667pt;}
.yd0{bottom:312.706667pt;}
.y1a9{bottom:314.626667pt;}
.y81{bottom:317.986667pt;}
.y142{bottom:318.626667pt;}
.yb2{bottom:318.946667pt;}
.y156{bottom:319.586667pt;}
.y11b{bottom:319.746667pt;}
.y12a{bottom:319.906667pt;}
.yf7{bottom:327.906667pt;}
.ycf{bottom:328.066667pt;}
.y1c0{bottom:330.466667pt;}
.y25{bottom:332.386667pt;}
.y1a8{bottom:333.026667pt;}
.y80{bottom:336.386667pt;}
.y155{bottom:337.986667pt;}
.y11a{bottom:338.146667pt;}
.y129{bottom:338.306667pt;}
.yb1{bottom:338.786667pt;}
.yce{bottom:343.426667pt;}
.yf6{bottom:346.306667pt;}
.y1bf{bottom:348.866667pt;}
.y24{bottom:350.786667pt;}
.y1a7{bottom:351.426667pt;}
.y52{bottom:352.066667pt;}
.y154{bottom:352.386667pt;}
.y7f{bottom:354.786667pt;}
.y141{bottom:355.906667pt;}
.y119{bottom:356.546667pt;}
.y128{bottom:356.706667pt;}
.yb0{bottom:358.626667pt;}
.ycd{bottom:358.786667pt;}
.yf5{bottom:364.546667pt;}
.y1be{bottom:367.586667pt;}
.y23{bottom:369.506667pt;}
.y92{bottom:369.826667pt;}
.y7e{bottom:373.186667pt;}
.ycc{bottom:374.146667pt;}
.y118{bottom:374.946667pt;}
.y51{bottom:375.106667pt;}
.yaf{bottom:378.466667pt;}
.yf4{bottom:382.626667pt;}
.y1bd{bottom:385.986667pt;}
.y17a{bottom:387.586667pt;}
.y22{bottom:387.906667pt;}
.y1a6{bottom:388.226667pt;}
.ycb{bottom:389.506667pt;}
.y7d{bottom:391.586667pt;}
.y140{bottom:393.026667pt;}
.y50{bottom:393.186667pt;}
.y117{bottom:393.346667pt;}
.y127{bottom:393.506667pt;}
.yae{bottom:399.426667pt;}
.y19a{bottom:401.346667pt;}
.y1a5{bottom:403.266667pt;}
.y1bc{bottom:404.066667pt;}
.yca{bottom:404.706667pt;}
.y21{bottom:406.306667pt;}
.y7c{bottom:409.986667pt;}
.y13f{bottom:411.426667pt;}
.y116{bottom:411.746667pt;}
.y4f{bottom:411.906667pt;}
.yad{bottom:419.266667pt;}
.yc9{bottom:420.066667pt;}
.y1bb{bottom:422.626667pt;}
.y7b{bottom:428.386667pt;}
.y13e{bottom:429.826667pt;}
.y115{bottom:430.146667pt;}
.y4e{bottom:430.306667pt;}
.y20{bottom:432.386667pt;}
.yc8{bottom:435.426667pt;}
.yf3{bottom:438.466667pt;}
.yac{bottom:438.946667pt;}
.y1ba{bottom:440.706667pt;}
.y165{bottom:442.146667pt;}
.y7a{bottom:446.786667pt;}
.y13d{bottom:448.226667pt;}
.y114{bottom:448.546667pt;}
.y4d{bottom:448.706667pt;}
.yc7{bottom:450.786667pt;}
.y1f{bottom:451.106667pt;}
.yf2{bottom:456.866667pt;}
.y199{bottom:457.186667pt;}
.yab{bottom:457.346667pt;}
.y1a4{bottom:459.106667pt;}
.y182{bottom:460.546667pt;}
.y79{bottom:465.186667pt;}
.yc6{bottom:466.146667pt;}
.y13c{bottom:466.626667pt;}
.y113{bottom:466.946667pt;}
.y4c{bottom:467.106667pt;}
.y1e{bottom:469.506667pt;}
.yf1{bottom:475.266667pt;}
.yaa{bottom:475.746667pt;}
.y1b9{bottom:477.186667pt;}
.y78{bottom:483.586667pt;}
.y13b{bottom:485.026667pt;}
.y112{bottom:485.346667pt;}
.y4b{bottom:485.506667pt;}
.y1d{bottom:487.906667pt;}
.yf0{bottom:493.666667pt;}
.ya9{bottom:493.826667pt;}
.y1b8{bottom:495.906667pt;}
.yc5{bottom:496.706667pt;}
.y91{bottom:499.266667pt;}
.y77{bottom:501.986667pt;}
.y13a{bottom:503.426667pt;}
.y111{bottom:503.746667pt;}
.y4a{bottom:503.906667pt;}
.y1c{bottom:506.333333pt;}
.yc4{bottom:512.093333pt;}
.ya8{bottom:512.253333pt;}
.y198{bottom:513.053333pt;}
.y1b7{bottom:514.333333pt;}
.y76{bottom:520.093333pt;}
.y139{bottom:521.853333pt;}
.y110{bottom:522.173333pt;}
.y49{bottom:522.333333pt;}
.y1b{bottom:524.733333pt;}
.yc3{bottom:528.093333pt;}
.yef{bottom:530.813333pt;}
.ya7{bottom:532.413333pt;}
.y1b6{bottom:532.733333pt;}
.y75{bottom:538.813333pt;}
.y138{bottom:540.253333pt;}
.y10f{bottom:540.573333pt;}
.y48{bottom:540.733333pt;}
.y1a{bottom:543.133333pt;}
.yc2{bottom:546.493333pt;}
.yee{bottom:549.213333pt;}
.y197{bottom:550.493333pt;}
.y1b5{bottom:551.133333pt;}
.y1a3{bottom:551.773333pt;}
.y181{bottom:553.213333pt;}
.ya6{bottom:553.373333pt;}
.y179{bottom:553.853333pt;}
.y74{bottom:557.213333pt;}
.y137{bottom:558.653333pt;}
.y10e{bottom:558.973333pt;}
.y47{bottom:559.133333pt;}
.y19{bottom:561.533333pt;}
.yc1{bottom:565.853333pt;}
.yed{bottom:567.613333pt;}
.y1b4{bottom:569.533333pt;}
.ya5{bottom:574.333333pt;}
.y73{bottom:575.613333pt;}
.y136{bottom:576.733333pt;}
.y10d{bottom:577.373333pt;}
.y46{bottom:577.533333pt;}
.y18{bottom:579.933333pt;}
.yc0{bottom:582.333333pt;}
.yec{bottom:586.013333pt;}
.y1b3{bottom:587.933333pt;}
.y163{bottom:590.013333pt;}
.y72{bottom:594.013333pt;}
.ya4{bottom:594.173333pt;}
.y45{bottom:595.613333pt;}
.y10c{bottom:595.773333pt;}
.y90{bottom:595.933333pt;}
.y17{bottom:598.333333pt;}
.yeb{bottom:604.413333pt;}
.y153{bottom:606.333333pt;}
.y71{bottom:612.413333pt;}
.ya3{bottom:614.013333pt;}
.y44{bottom:614.333333pt;}
.y16{bottom:616.733333pt;}
.yea{bottom:622.813333pt;}
.y152{bottom:624.733333pt;}
.y1a2{bottom:626.173333pt;}
.y70{bottom:630.813333pt;}
.y8f{bottom:632.413333pt;}
.y43{bottom:632.733333pt;}
.ya2{bottom:633.693333pt;}
.y15{bottom:635.133333pt;}
.ye9{bottom:641.213333pt;}
.y151{bottom:643.133333pt;}
.y6f{bottom:649.213333pt;}
.y10b{bottom:650.813333pt;}
.y42{bottom:651.133333pt;}
.ya1{bottom:652.093333pt;}
.y14{bottom:653.533333pt;}
.ye8{bottom:659.613333pt;}
.y150{bottom:661.533333pt;}
.y196{bottom:662.173333pt;}
.y6e{bottom:667.293333pt;}
.y10a{bottom:669.213333pt;}
.y41{bottom:669.533333pt;}
.ya0{bottom:670.493333pt;}
.y13{bottom:671.933333pt;}
.y14f{bottom:679.933333pt;}
.y6d{bottom:686.013333pt;}
.y109{bottom:687.613333pt;}
.y40{bottom:687.933333pt;}
.y12{bottom:690.333333pt;}
.ye7{bottom:696.573333pt;}
.y14e{bottom:698.333333pt;}
.y195{bottom:699.613333pt;}
.y15f{bottom:701.053333pt;}
.y6c{bottom:704.413333pt;}
.y108{bottom:706.013333pt;}
.y3f{bottom:706.333333pt;}
.y11{bottom:708.733333pt;}
.y9f{bottom:711.293333pt;}
.ye6{bottom:714.973333pt;}
.y14d{bottom:716.733333pt;}
.y1a1{bottom:718.813333pt;}
.y180{bottom:719.453333pt;}
.y6b{bottom:722.813333pt;}
.y107{bottom:724.413333pt;}
.y3e{bottom:724.733333pt;}
.y10{bottom:727.133333pt;}
.y9e{bottom:732.293333pt;}
.ye5{bottom:733.413333pt;}
.y14c{bottom:735.173333pt;}
.y63{bottom:737.893333pt;}
.y176{bottom:738.533333pt;}
.y106{bottom:742.853333pt;}
.y3d{bottom:743.173333pt;}
.yf{bottom:745.573333pt;}
.ye4{bottom:751.813333pt;}
.y9d{bottom:752.133333pt;}
.y1b2{bottom:753.253333pt;}
.y14b{bottom:753.573333pt;}
.y105{bottom:761.253333pt;}
.y3c{bottom:761.573333pt;}
.ye{bottom:763.653333pt;}
.ye3{bottom:770.213333pt;}
.y9c{bottom:771.973333pt;}
.y194{bottom:774.053333pt;}
.y104{bottom:779.653333pt;}
.y3b{bottom:779.973333pt;}
.yd{bottom:782.053333pt;}
.ye2{bottom:788.613333pt;}
.y9b{bottom:793.093333pt;}
.y103{bottom:797.733333pt;}
.y3a{bottom:798.373333pt;}
.yc{bottom:800.773333pt;}
.ye1{bottom:807.013333pt;}
.y9a{bottom:814.053333pt;}
.y39{bottom:816.773333pt;}
.yb{bottom:819.173333pt;}
.y1a0{bottom:829.893333pt;}
.y99{bottom:833.893333pt;}
.y38{bottom:835.173333pt;}
.ya{bottom:843.653333pt;}
.ye0{bottom:843.813333pt;}
.y193{bottom:848.293333pt;}
.y37{bottom:853.573333pt;}
.y9{bottom:862.053333pt;}
.ydf{bottom:862.213333pt;}
.y17f{bottom:867.333333pt;}
.y36{bottom:871.653333pt;}
.y8e{bottom:871.973333pt;}
.y8{bottom:874.053333pt;}
.yde{bottom:880.613333pt;}
.y15e{bottom:885.733333pt;}
.y35{bottom:890.373333pt;}
.y7{bottom:892.773333pt;}
.y19f{bottom:904.133333pt;}
.ybf{bottom:905.413333pt;}
.ydd{bottom:908.613333pt;}
.y34{bottom:908.773333pt;}
.y6{bottom:918.853333pt;}
.y62{bottom:922.533333pt;}
.ybe{bottom:925.253333pt;}
.y98{bottom:926.853333pt;}
.y33{bottom:927.173333pt;}
.y5{bottom:937.253333pt;}
.ybd{bottom:945.093333pt;}
.y8d{bottom:945.253333pt;}
.y32{bottom:945.573333pt;}
.y2{bottom:980.640000pt;}
.y1{bottom:995.360000pt;}
.h7{height:18.400000pt;}
.hc{height:18.432000pt;}
.h11{height:36.800000pt;}
.ha{height:36.832000pt;}
.h1{height:40.640625pt;}
.h5{height:42.084375pt;}
.h2{height:52.134375pt;}
.h1b{height:55.200000pt;}
.h1f{height:55.232000pt;}
.he{height:57.375000pt;}
.h6{height:62.781250pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h10{height:65.781915pt;}
.h12{height:73.600000pt;}
.h13{height:73.632000pt;}
.h20{height:91.840000pt;}
.h1a{height:92.000000pt;}
.h1c{height:92.032000pt;}
.h9{height:110.400000pt;}
.hf{height:110.432000pt;}
.hd{height:128.800000pt;}
.h8{height:128.832000pt;}
.h17{height:147.200000pt;}
.h15{height:147.226667pt;}
.h1e{height:165.440000pt;}
.h16{height:165.466667pt;}
.h1d{height:165.600000pt;}
.h19{height:165.626667pt;}
.hb{height:184.000000pt;}
.h14{height:184.026667pt;}
.h18{height:220.826667pt;}
.h0{height:1056.000000pt;}
.wd{width:40.960000pt;}
.w8{width:59.360000pt;}
.w7{width:65.280000pt;}
.w9{width:83.392000pt;}
.w2{width:86.720000pt;}
.wb{width:95.232000pt;}
.wc{width:143.200000pt;}
.w4{width:151.706667pt;}
.w5{width:178.906667pt;}
.w3{width:203.546667pt;}
.wa{width:209.306667pt;}
.wf{width:305.306667pt;}
.we{width:305.346667pt;}
.w6{width:535.453333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.880000pt;}
.x3d{left:7.840000pt;}
.x16{left:8.800000pt;}
.x20{left:9.760000pt;}
.x2b{left:11.520000pt;}
.x14{left:12.480000pt;}
.x1f{left:13.920000pt;}
.x2a{left:15.040000pt;}
.xd{left:16.640000pt;}
.x23{left:18.400000pt;}
.x1b{left:19.680000pt;}
.x44{left:21.120000pt;}
.x1c{left:22.080000pt;}
.x1e{left:23.840000pt;}
.x19{left:25.280000pt;}
.x37{left:26.720000pt;}
.x17{left:28.000000pt;}
.x28{left:29.280000pt;}
.x11{left:30.400000pt;}
.x3f{left:31.360000pt;}
.x22{left:32.800000pt;}
.x21{left:33.920000pt;}
.x26{left:35.360000pt;}
.x18{left:36.320000pt;}
.x41{left:38.080000pt;}
.x29{left:39.706667pt;}
.x27{left:41.440000pt;}
.x15{left:43.354667pt;}
.x3e{left:44.800000pt;}
.x56{left:46.720000pt;}
.x40{left:48.480000pt;}
.x13{left:49.760000pt;}
.x42{left:52.800000pt;}
.x45{left:54.400000pt;}
.x47{left:56.800000pt;}
.x1d{left:60.520000pt;}
.x59{left:63.040000pt;}
.xf{left:67.520000pt;}
.x2c{left:68.520000pt;}
.x1a{left:72.040000pt;}
.x58{left:74.560000pt;}
.x43{left:76.000000pt;}
.x24{left:77.800000pt;}
.x4d{left:82.240000pt;}
.x46{left:83.680000pt;}
.x3a{left:85.120000pt;}
.x4c{left:86.240000pt;}
.x53{left:87.520000pt;}
.x36{left:90.432000pt;}
.xa{left:96.031988pt;}
.x1{left:97.311988pt;}
.x50{left:100.160000pt;}
.x57{left:106.880000pt;}
.x4{left:108.351988pt;}
.x55{left:109.280000pt;}
.x2d{left:112.031988pt;}
.x2e{left:117.000000pt;}
.x4a{left:118.880000pt;}
.x30{left:120.031988pt;}
.x51{left:121.120000pt;}
.x4f{left:122.280000pt;}
.x54{left:123.240000pt;}
.x52{left:124.360000pt;}
.x4b{left:126.280000pt;}
.x48{left:138.426667pt;}
.x31{left:144.026655pt;}
.x4e{left:152.520000pt;}
.xc{left:156.346655pt;}
.x8{left:164.026655pt;}
.xe{left:184.026667pt;}
.x7{left:185.306655pt;}
.x3{left:194.266655pt;}
.x9{left:209.946655pt;}
.x38{left:216.346667pt;}
.x5{left:233.146655pt;}
.x2f{left:236.360000pt;}
.x35{left:242.906655pt;}
.x5a{left:246.426655pt;}
.x6{left:279.106655pt;}
.x39{left:300.386667pt;}
.x34{left:306.466655pt;}
.xb{left:336.866655pt;}
.x5b{left:340.866655pt;}
.x10{left:388.226667pt;}
.x2{left:408.066655pt;}
.x49{left:444.413333pt;}
.x3b{left:510.493333pt;}
.x12{left:540.573333pt;}
.x3c{left:606.533333pt;}
.x33{left:644.133321pt;}
.x32{left:705.093321pt;}
}




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