
    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_7a457e6c9fcfa4074700c889.woff')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_4291659267bf78b25a886b9f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cf06d4588a45df626a6007a2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_146b4a689101c372365dab92.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_f88d104704373a7dd1784a78.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960938;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_23209a53cd6a01ef5f1621e8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_7ae7623aea62b87315b4ca48.woff')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_05518c1f03dd438eab883892.woff')format("woff");}.ff9{font-family:ff9;line-height:0.957031;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_18900717beb747ea3c70bfb2.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls9{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-0.972000px;}
.lsd{letter-spacing:-0.936000px;}
.lse{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.498000px;}
.ls8{letter-spacing:-0.486600px;}
.ls14{letter-spacing:-0.466800px;}
.lsb{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.423360px;}
.ls10{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.ls6{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.731520px;}
.ls13{letter-spacing:42.077280px;}
.lsc{letter-spacing:67.985280px;}
.lsf{letter-spacing:68.129280px;}
.ls12{letter-spacing:75.197280px;}
.ls7{letter-spacing:81.250560px;}
.ls2{letter-spacing:82.690560px;}
.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:-16.560000px;}
.ws9{word-spacing:-15.586800px;}
.wsb{word-spacing:-15.543360px;}
.ws1{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.099840px;}
.wsc{word-spacing:-14.653200px;}
.ws3{word-spacing:-14.633400px;}
.ws8{word-spacing:-14.184000px;}
.wsa{word-spacing:-13.680000px;}
.ws4{word-spacing:-13.668480px;}
.ws0{word-spacing:-13.182000px;}
.ws6{word-spacing:-9.720000px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-5.593440px;}
._9{margin-left:-4.250880px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._c{width:3.198720px;}
._8{width:4.394880px;}
._7{width:5.901600px;}
._17{width:7.033920px;}
._14{width:8.190720px;}
._10{width:9.253440px;}
._e{width:10.384800px;}
._d{width:11.612160px;}
._f{width:12.640320px;}
._15{width:13.728960px;}
._b{width:16.467840px;}
._a{width:18.264960px;}
._33{width:19.275840px;}
._2f{width:20.278080px;}
._13{width:21.425760px;}
._11{width:22.740480px;}
._12{width:24.225600px;}
._18{width:25.368000px;}
._24{width:27.034560px;}
._2a{width:28.909440px;}
._19{width:32.857920px;}
._1a{width:34.179840px;}
._1b{width:36.125760px;}
._27{width:46.267200px;}
._28{width:47.727360px;}
._23{width:51.045120px;}
._2e{width:54.017280px;}
._2d{width:55.823040px;}
._32{width:61.689600px;}
._21{width:66.346560px;}
._1f{width:68.342400px;}
._25{width:71.064000px;}
._31{width:77.353920px;}
._34{width:79.349760px;}
._1c{width:82.192320px;}
._20{width:85.034880px;}
._22{width:86.425920px;}
._29{width:89.510400px;}
._1e{width:95.022720px;}
._1d{width:96.163200px;}
._26{width:111.101760px;}
._2b{width:131.846400px;}
._30{width:172.609920px;}
._2c{width:232.727040px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs6{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y27{bottom:3.240000px;}
.yb7{bottom:5.760000px;}
.y119{bottom:6.480000px;}
.yaa{bottom:11.880000px;}
.ye0{bottom:11.925000px;}
.yd2{bottom:19.080000px;}
.y26{bottom:20.520000px;}
.yb6{bottom:25.560000px;}
.yc0{bottom:25.920000px;}
.y123{bottom:28.080000px;}
.y118{bottom:28.125000px;}
.y11f{bottom:28.440000px;}
.y11a{bottom:31.725000px;}
.y125{bottom:33.480000px;}
.yce{bottom:37.470000px;}
.yb3{bottom:37.800000px;}
.ye5{bottom:37.830000px;}
.y25{bottom:37.845000px;}
.ye{bottom:43.560000px;}
.ybe{bottom:45.360000px;}
.yc3{bottom:45.390000px;}
.yb5{bottom:45.720000px;}
.y11e{bottom:50.040000px;}
.y117{bottom:50.085000px;}
.y116{bottom:51.525000px;}
.y124{bottom:53.280000px;}
.y11d{bottom:53.640000px;}
.yb2{bottom:54.720000px;}
.yed{bottom:63.750000px;}
.y24{bottom:64.125000px;}
.yc2{bottom:65.190000px;}
.ybf{bottom:65.520000px;}
.yb4{bottom:65.550000px;}
.ybc{bottom:66.240000px;}
.yc{bottom:68.400000px;}
.y122{bottom:71.640000px;}
.yb1{bottom:72.000000px;}
.y121{bottom:73.080000px;}
.y11c{bottom:73.440000px;}
.ybb{bottom:86.085000px;}
.y23{bottom:90.045000px;}
.ya{bottom:94.716000px;}
.yaf{bottom:100.830000px;}
.yba{bottom:105.885000px;}
.y22{bottom:107.325000px;}
.yae{bottom:118.110000px;}
.yb9{bottom:125.685000px;}
.y7b{bottom:131.076000px;}
.y21{bottom:133.605000px;}
.yad{bottom:135.030000px;}
.y101{bottom:140.436000px;}
.y15a{bottom:141.156000px;}
.yeb{bottom:142.596000px;}
.y5c{bottom:145.116000px;}
.yc9{bottom:145.836000px;}
.y31{bottom:146.196000px;}
.y7a{bottom:149.436000px;}
.y20{bottom:150.885000px;}
.y113{bottom:151.590000px;}
.yac{bottom:152.310000px;}
.y129{bottom:154.110000px;}
.y79{bottom:154.830000px;}
.y149{bottom:157.350000px;}
.y100{bottom:166.350000px;}
.y78{bottom:167.070000px;}
.y1f{bottom:168.195000px;}
.yea{bottom:168.510000px;}
.y5b{bottom:171.030000px;}
.yc8{bottom:171.750000px;}
.y30{bottom:172.110000px;}
.y112{bottom:177.510000px;}
.y128{bottom:180.030000px;}
.y148{bottom:183.270000px;}
.y1e{bottom:185.475000px;}
.yff{bottom:191.910000px;}
.y159{bottom:192.990000px;}
.yc7{bottom:193.350000px;}
.ye9{bottom:194.430000px;}
.y5a{bottom:196.950000px;}
.y2f{bottom:198.075000px;}
.y1d{bottom:202.755000px;}
.y111{bottom:203.475000px;}
.y127{bottom:205.995000px;}
.y147{bottom:209.235000px;}
.y9d{bottom:212.475000px;}
.yfe{bottom:214.635000px;}
.y59{bottom:218.595000px;}
.y1c{bottom:220.035000px;}
.ye8{bottom:220.395000px;}
.y2e{bottom:223.995000px;}
.y77{bottom:226.875000px;}
.yc6{bottom:228.315000px;}
.y110{bottom:229.395000px;}
.y126{bottom:231.915000px;}
.y146{bottom:235.155000px;}
.y1b{bottom:237.315000px;}
.y9c{bottom:238.395000px;}
.y158{bottom:244.515000px;}
.ye7{bottom:245.955000px;}
.y120{bottom:246.675000px;}
.y2d{bottom:249.555000px;}
.y76{bottom:252.795000px;}
.y58{bottom:253.515000px;}
.yc5{bottom:254.235000px;}
.y1a{bottom:254.595000px;}
.y10f{bottom:255.315000px;}
.ye6{bottom:260.715000px;}
.y145{bottom:261.075000px;}
.y9b{bottom:264.315000px;}
.y157{bottom:270.435000px;}
.y2c{bottom:275.475000px;}
.y75{bottom:278.715000px;}
.yc4{bottom:280.155000px;}
.y10e{bottom:280.875000px;}
.y144{bottom:286.995000px;}
.ye4{bottom:287.355000px;}
.y57{bottom:288.435000px;}
.y9a{bottom:290.235000px;}
.yc1{bottom:294.915000px;}
.y156{bottom:296.355000px;}
.y2b{bottom:301.395000px;}
.y10d{bottom:302.835000px;}
.y74{bottom:304.635000px;}
.y143{bottom:312.555000px;}
.y17c{bottom:313.275000px;}
.y56{bottom:314.355000px;}
.y99{bottom:315.795000px;}
.y155{bottom:322.275000px;}
.y2a{bottom:327.345000px;}
.y73{bottom:330.585000px;}
.y17b{bottom:333.105000px;}
.y11b{bottom:334.545000px;}
.y10c{bottom:337.785000px;}
.y142{bottom:338.505000px;}
.ye3{bottom:339.945000px;}
.y55{bottom:340.305000px;}
.y98{bottom:341.745000px;}
.y154{bottom:348.225000px;}
.y17a{bottom:354.345000px;}
.y72{bottom:356.505000px;}
.y29{bottom:362.265000px;}
.y97{bottom:363.705000px;}
.y141{bottom:364.425000px;}
.y54{bottom:366.225000px;}
.y153{bottom:374.145000px;}
.yb8{bottom:374.865000px;}
.y71{bottom:382.425000px;}
.y10b{bottom:389.265000px;}
.y28{bottom:390.345000px;}
.y53{bottom:392.145000px;}
.ye2{bottom:392.505000px;}
.y179{bottom:393.945000px;}
.y96{bottom:398.625000px;}
.y152{bottom:399.705000px;}
.y70{bottom:407.985000px;}
.y19{bottom:415.185000px;}
.y140{bottom:416.265000px;}
.y52{bottom:417.705000px;}
.ye1{bottom:419.145000px;}
.y115{bottom:422.745000px;}
.y95{bottom:424.185000px;}
.y151{bottom:425.625000px;}
.y6f{bottom:433.905000px;}
.y178{bottom:434.985000px;}
.y10a{bottom:441.105000px;}
.y13f{bottom:442.185000px;}
.y51{bottom:443.625000px;}
.ydf{bottom:445.785000px;}
.y94{bottom:450.150000px;}
.y150{bottom:451.590000px;}
.ybd{bottom:455.190000px;}
.yfd{bottom:456.270000px;}
.y6e{bottom:459.870000px;}
.y109{bottom:467.070000px;}
.y13e{bottom:468.150000px;}
.y50{bottom:469.590000px;}
.y93{bottom:476.070000px;}
.y14f{bottom:477.510000px;}
.yfc{bottom:482.190000px;}
.yde{bottom:484.350000px;}
.y6d{bottom:485.790000px;}
.y114{bottom:489.030000px;}
.y13d{bottom:493.710000px;}
.y4f{bottom:495.510000px;}
.y177{bottom:497.310000px;}
.y92{bottom:501.990000px;}
.y14e{bottom:503.430000px;}
.y6c{bottom:507.390000px;}
.yfb{bottom:507.750000px;}
.ydd{bottom:510.270000px;}
.yab{bottom:515.310000px;}
.y176{bottom:517.110000px;}
.y13c{bottom:519.630000px;}
.y4e{bottom:521.430000px;}
.y91{bottom:527.910000px;}
.y108{bottom:528.270000px;}
.y14d{bottom:529.350000px;}
.yfa{bottom:529.710000px;}
.ydc{bottom:536.190000px;}
.y175{bottom:538.350000px;}
.y6b{bottom:542.310000px;}
.y13b{bottom:545.550000px;}
.y4d{bottom:547.350000px;}
.y90{bottom:553.830000px;}
.y107{bottom:554.190000px;}
.y14c{bottom:555.270000px;}
.y174{bottom:559.590000px;}
.ydb{bottom:561.750000px;}
.yf9{bottom:564.630000px;}
.y6a{bottom:568.230000px;}
.y13a{bottom:571.470000px;}
.y4c{bottom:573.270000px;}
.y8f{bottom:575.460000px;}
.y173{bottom:579.420000px;}
.y106{bottom:580.140000px;}
.y14b{bottom:581.220000px;}
.yda{bottom:583.740000px;}
.yf8{bottom:590.580000px;}
.y69{bottom:594.180000px;}
.yb0{bottom:595.620000px;}
.y139{bottom:597.420000px;}
.y4b{bottom:599.220000px;}
.y172{bottom:601.020000px;}
.y105{bottom:605.700000px;}
.y8e{bottom:610.380000px;}
.y14a{bottom:615.780000px;}
.yf7{bottom:616.140000px;}
.yd9{bottom:618.660000px;}
.y67{bottom:620.100000px;}
.y171{bottom:620.820000px;}
.y138{bottom:623.340000px;}
.y4a{bottom:624.780000px;}
.y68{bottom:625.500000px;}
.y104{bottom:631.620000px;}
.y8d{bottom:635.940000px;}
.yf6{bottom:642.060000px;}
.y66{bottom:646.020000px;}
.y137{bottom:649.260000px;}
.y49{bottom:650.700000px;}
.yd8{bottom:653.580000px;}
.y103{bottom:657.540000px;}
.y170{bottom:661.860000px;}
.yf5{bottom:667.980000px;}
.y65{bottom:671.940000px;}
.y136{bottom:675.180000px;}
.y48{bottom:676.620000px;}
.yd7{bottom:679.140000px;}
.y102{bottom:680.220000px;}
.ya9{bottom:682.380000px;}
.y16f{bottom:683.100000px;}
.yf4{bottom:693.900000px;}
.y64{bottom:697.500000px;}
.y18{bottom:698.220000px;}
.y135{bottom:700.770000px;}
.y47{bottom:702.570000px;}
.y16e{bottom:702.930000px;}
.yd6{bottom:705.090000px;}
.ya8{bottom:712.290000px;}
.y17{bottom:715.530000px;}
.yf3{bottom:719.850000px;}
.y63{bottom:723.450000px;}
.y16d{bottom:724.170000px;}
.y134{bottom:726.690000px;}
.y46{bottom:728.490000px;}
.ya7{bottom:729.570000px;}
.yd5{bottom:731.010000px;}
.y16{bottom:732.090000px;}
.y8c{bottom:738.570000px;}
.y16c{bottom:743.970000px;}
.yf2{bottom:745.770000px;}
.y62{bottom:749.370000px;}
.y133{bottom:752.610000px;}
.y45{bottom:754.410000px;}
.y15{bottom:755.490000px;}
.yd4{bottom:756.930000px;}
.y8b{bottom:758.370000px;}
.y16b{bottom:763.770000px;}
.yf1{bottom:771.690000px;}
.y14{bottom:774.570000px;}
.y61{bottom:775.290000px;}
.y132{bottom:778.530000px;}
.y44{bottom:780.330000px;}
.yd3{bottom:782.850000px;}
.y8a{bottom:784.290000px;}
.y16a{bottom:785.010000px;}
.yd1{bottom:797.610000px;}
.y60{bottom:801.210000px;}
.y13{bottom:802.290000px;}
.y131{bottom:804.450000px;}
.y169{bottom:804.810000px;}
.y43{bottom:805.890000px;}
.y89{bottom:810.210000px;}
.yf0{bottom:823.170000px;}
.y168{bottom:826.050000px;}
.y5f{bottom:827.175000px;}
.y12{bottom:829.695000px;}
.y130{bottom:830.415000px;}
.y42{bottom:831.855000px;}
.yd0{bottom:832.935000px;}
.y88{bottom:836.175000px;}
.yef{bottom:837.975000px;}
.y167{bottom:845.895000px;}
.y5e{bottom:853.095000px;}
.y12f{bottom:856.335000px;}
.y11{bottom:857.415000px;}
.y41{bottom:857.775000px;}
.y86{bottom:862.095000px;}
.yee{bottom:864.615000px;}
.y166{bottom:867.135000px;}
.y87{bottom:867.495000px;}
.y5d{bottom:874.695000px;}
.ya6{bottom:879.015000px;}
.y40{bottom:883.695000px;}
.y10{bottom:885.135000px;}
.ycf{bottom:885.495000px;}
.y165{bottom:886.935000px;}
.y85{bottom:888.015000px;}
.yec{bottom:891.255000px;}
.y12e{bottom:895.215000px;}
.ya5{bottom:904.575000px;}
.y164{bottom:908.175000px;}
.y3f{bottom:909.615000px;}
.yf{bottom:912.495000px;}
.y84{bottom:913.575000px;}
.ycd{bottom:920.775000px;}
.y12d{bottom:923.655000px;}
.y163{bottom:927.975000px;}
.ya4{bottom:930.495000px;}
.y3e{bottom:935.535000px;}
.y9{bottom:938.415000px;}
.y83{bottom:939.495000px;}
.y162{bottom:949.215000px;}
.y12c{bottom:952.095000px;}
.y8{bottom:955.725000px;}
.ya3{bottom:956.445000px;}
.y3d{bottom:961.485000px;}
.y82{bottom:965.445000px;}
.y161{bottom:969.045000px;}
.y7{bottom:969.765000px;}
.ycc{bottom:973.005000px;}
.y12b{bottom:980.565000px;}
.ya2{bottom:982.365000px;}
.y3c{bottom:987.405000px;}
.y160{bottom:990.285000px;}
.ycb{bottom:991.005000px;}
.y81{bottom:991.365000px;}
.ya1{bottom:1008.285000px;}
.yca{bottom:1009.005000px;}
.y15f{bottom:1010.085000px;}
.y3b{bottom:1012.965000px;}
.y80{bottom:1017.285000px;}
.y6{bottom:1024.485000px;}
.y15e{bottom:1031.685000px;}
.ya0{bottom:1034.205000px;}
.y12a{bottom:1037.445000px;}
.y3a{bottom:1038.885000px;}
.y7f{bottom:1043.205000px;}
.y5{bottom:1050.405000px;}
.y15d{bottom:1051.485000px;}
.y9f{bottom:1060.125000px;}
.y39{bottom:1064.805000px;}
.y7e{bottom:1069.125000px;}
.y4{bottom:1072.725000px;}
.y9e{bottom:1081.770000px;}
.y38{bottom:1090.770000px;}
.y15c{bottom:1092.570000px;}
.y3{bottom:1094.010000px;}
.y7d{bottom:1095.090000px;}
.y15b{bottom:1112.370000px;}
.y2{bottom:1114.530000px;}
.y37{bottom:1116.690000px;}
.y7c{bottom:1120.650000px;}
.y1{bottom:1131.450000px;}
.y36{bottom:1142.610000px;}
.y35{bottom:1166.370000px;}
.y34{bottom:1180.410000px;}
.y33{bottom:1201.290000px;}
.y32{bottom:1227.600000px;}
.h7{height:8.640000px;}
.h9{height:15.516000px;}
.h1b{height:17.280000px;}
.h24{height:19.800000px;}
.h21{height:25.920000px;}
.h13{height:25.956000px;}
.hf{height:34.114922px;}
.h1d{height:34.560000px;}
.h1f{height:34.596000px;}
.h10{height:38.671172px;}
.hc{height:41.696016px;}
.h1a{height:43.233750px;}
.h2{height:44.828437px;}
.h8{height:48.013594px;}
.h5{height:48.147188px;}
.h1c{height:51.516000px;}
.h1e{height:51.840000px;}
.h22{height:51.876000px;}
.h6{height:53.067656px;}
.he{height:53.215313px;}
.h3{height:53.367188px;}
.h12{height:55.714922px;}
.h20{height:58.121719px;}
.h18{height:59.400000px;}
.h11{height:60.155156px;}
.h25{height:65.556000px;}
.h4{height:65.884219px;}
.hb{height:68.968125px;}
.ha{height:71.512031px;}
.h23{height:77.796000px;}
.h19{height:79.236000px;}
.h16{height:79.596000px;}
.h15{height:86.040000px;}
.h27{height:87.156000px;}
.h26{height:87.480000px;}
.h17{height:139.716000px;}
.h14{height:166.350000px;}
.hd{height:277.635000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:134.316000px;}
.wd{width:134.352000px;}
.we{width:134.676000px;}
.wb{width:134.712000px;}
.wa{width:168.195000px;}
.w9{width:168.555000px;}
.w10{width:224.715000px;}
.wf{width:224.745000px;}
.w11{width:225.105000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w8{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1a{left:7.560000px;}
.x9{left:8.640000px;}
.x34{left:34.920000px;}
.x23{left:39.240000px;}
.x1f{left:40.680000px;}
.x21{left:42.870000px;}
.x1d{left:48.999000px;}
.x25{left:50.070000px;}
.x29{left:52.599000px;}
.x2b{left:56.190000px;}
.x2a{left:57.645000px;}
.x26{left:59.400000px;}
.x27{left:64.470000px;}
.x28{left:66.990000px;}
.x7{left:106.235987px;}
.x15{left:111.275987px;}
.x36{left:117.035987px;}
.x35{left:133.271987px;}
.xb{left:153.074987px;}
.x37{left:159.554987px;}
.x10{left:180.794987px;}
.xc{left:194.834987px;}
.x30{left:230.864987px;}
.x1e{left:242.385000px;}
.x2{left:254.264987px;}
.x2c{left:265.784987px;}
.x6{left:274.064987px;}
.x19{left:276.225000px;}
.xe{left:297.464987px;}
.x2e{left:300.704987px;}
.xa{left:304.350000px;}
.x14{left:322.349987px;}
.x32{left:332.430000px;}
.xf{left:339.984000px;}
.x2d{left:341.069987px;}
.xd{left:345.029987px;}
.x5{left:357.989987px;}
.x20{left:377.790000px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x16{left:402.659973px;}
.x17{left:407.699987px;}
.x1b{left:445.140000px;}
.x8{left:446.579987px;}
.x11{left:447.660000px;}
.x22{left:512.850000px;}
.x33{left:557.850000px;}
.x1c{left:614.415000px;}
.x18{left:633.134987px;}
.x24{left:648.255000px;}
.x12{left:652.214973px;}
.x13{left:657.254987px;}
.x31{left:709.124987px;}
.x2f{left:713.084987px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.864000pt;}
.lsd{letter-spacing:-0.832000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.442667pt;}
.ls8{letter-spacing:-0.432533pt;}
.ls14{letter-spacing:-0.414933pt;}
.lsb{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.376320pt;}
.ls10{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.ls6{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.650240pt;}
.ls13{letter-spacing:37.402027pt;}
.lsc{letter-spacing:60.431360pt;}
.lsf{letter-spacing:60.559360pt;}
.ls12{letter-spacing:66.842027pt;}
.ls7{letter-spacing:72.222720pt;}
.ls2{letter-spacing:73.502720pt;}
.ws7{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.854933pt;}
.wsb{word-spacing:-13.816320pt;}
.ws1{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.422080pt;}
.wsc{word-spacing:-13.025067pt;}
.ws3{word-spacing:-13.007467pt;}
.ws8{word-spacing:-12.608000pt;}
.wsa{word-spacing:-12.160000pt;}
.ws4{word-spacing:-12.149760pt;}
.ws0{word-spacing:-11.717333pt;}
.ws6{word-spacing:-8.640000pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-4.971947pt;}
._9{margin-left:-3.778560pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._c{width:2.843307pt;}
._8{width:3.906560pt;}
._7{width:5.245867pt;}
._17{width:6.252373pt;}
._14{width:7.280640pt;}
._10{width:8.225280pt;}
._e{width:9.230933pt;}
._d{width:10.321920pt;}
._f{width:11.235840pt;}
._15{width:12.203520pt;}
._b{width:14.638080pt;}
._a{width:16.235520pt;}
._33{width:17.134080pt;}
._2f{width:18.024960pt;}
._13{width:19.045120pt;}
._11{width:20.213760pt;}
._12{width:21.533867pt;}
._18{width:22.549333pt;}
._24{width:24.030720pt;}
._2a{width:25.697280pt;}
._19{width:29.207040pt;}
._1a{width:30.382080pt;}
._1b{width:32.111787pt;}
._27{width:41.126400pt;}
._28{width:42.424320pt;}
._23{width:45.373440pt;}
._2e{width:48.015360pt;}
._2d{width:49.620480pt;}
._32{width:54.835200pt;}
._21{width:58.974720pt;}
._1f{width:60.748800pt;}
._25{width:63.168000pt;}
._31{width:68.759040pt;}
._34{width:70.533120pt;}
._1c{width:73.059840pt;}
._20{width:75.586560pt;}
._22{width:76.823040pt;}
._29{width:79.564800pt;}
._1e{width:84.464640pt;}
._1d{width:85.478400pt;}
._26{width:98.757120pt;}
._2b{width:117.196800pt;}
._30{width:153.431040pt;}
._2c{width:206.868480pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y27{bottom:2.880000pt;}
.yb7{bottom:5.120000pt;}
.y119{bottom:5.760000pt;}
.yaa{bottom:10.560000pt;}
.ye0{bottom:10.600000pt;}
.yd2{bottom:16.960000pt;}
.y26{bottom:18.240000pt;}
.yb6{bottom:22.720000pt;}
.yc0{bottom:23.040000pt;}
.y123{bottom:24.960000pt;}
.y118{bottom:25.000000pt;}
.y11f{bottom:25.280000pt;}
.y11a{bottom:28.200000pt;}
.y125{bottom:29.760000pt;}
.yce{bottom:33.306667pt;}
.yb3{bottom:33.600000pt;}
.ye5{bottom:33.626667pt;}
.y25{bottom:33.640000pt;}
.ye{bottom:38.720000pt;}
.ybe{bottom:40.320000pt;}
.yc3{bottom:40.346667pt;}
.yb5{bottom:40.640000pt;}
.y11e{bottom:44.480000pt;}
.y117{bottom:44.520000pt;}
.y116{bottom:45.800000pt;}
.y124{bottom:47.360000pt;}
.y11d{bottom:47.680000pt;}
.yb2{bottom:48.640000pt;}
.yed{bottom:56.666667pt;}
.y24{bottom:57.000000pt;}
.yc2{bottom:57.946667pt;}
.ybf{bottom:58.240000pt;}
.yb4{bottom:58.266667pt;}
.ybc{bottom:58.880000pt;}
.yc{bottom:60.800000pt;}
.y122{bottom:63.680000pt;}
.yb1{bottom:64.000000pt;}
.y121{bottom:64.960000pt;}
.y11c{bottom:65.280000pt;}
.ybb{bottom:76.520000pt;}
.y23{bottom:80.040000pt;}
.ya{bottom:84.192000pt;}
.yaf{bottom:89.626667pt;}
.yba{bottom:94.120000pt;}
.y22{bottom:95.400000pt;}
.yae{bottom:104.986667pt;}
.yb9{bottom:111.720000pt;}
.y7b{bottom:116.512000pt;}
.y21{bottom:118.760000pt;}
.yad{bottom:120.026667pt;}
.y101{bottom:124.832000pt;}
.y15a{bottom:125.472000pt;}
.yeb{bottom:126.752000pt;}
.y5c{bottom:128.992000pt;}
.yc9{bottom:129.632000pt;}
.y31{bottom:129.952000pt;}
.y7a{bottom:132.832000pt;}
.y20{bottom:134.120000pt;}
.y113{bottom:134.746667pt;}
.yac{bottom:135.386667pt;}
.y129{bottom:136.986667pt;}
.y79{bottom:137.626667pt;}
.y149{bottom:139.866667pt;}
.y100{bottom:147.866667pt;}
.y78{bottom:148.506667pt;}
.y1f{bottom:149.506667pt;}
.yea{bottom:149.786667pt;}
.y5b{bottom:152.026667pt;}
.yc8{bottom:152.666667pt;}
.y30{bottom:152.986667pt;}
.y112{bottom:157.786667pt;}
.y128{bottom:160.026667pt;}
.y148{bottom:162.906667pt;}
.y1e{bottom:164.866667pt;}
.yff{bottom:170.586667pt;}
.y159{bottom:171.546667pt;}
.yc7{bottom:171.866667pt;}
.ye9{bottom:172.826667pt;}
.y5a{bottom:175.066667pt;}
.y2f{bottom:176.066667pt;}
.y1d{bottom:180.226667pt;}
.y111{bottom:180.866667pt;}
.y127{bottom:183.106667pt;}
.y147{bottom:185.986667pt;}
.y9d{bottom:188.866667pt;}
.yfe{bottom:190.786667pt;}
.y59{bottom:194.306667pt;}
.y1c{bottom:195.586667pt;}
.ye8{bottom:195.906667pt;}
.y2e{bottom:199.106667pt;}
.y77{bottom:201.666667pt;}
.yc6{bottom:202.946667pt;}
.y110{bottom:203.906667pt;}
.y126{bottom:206.146667pt;}
.y146{bottom:209.026667pt;}
.y1b{bottom:210.946667pt;}
.y9c{bottom:211.906667pt;}
.y158{bottom:217.346667pt;}
.ye7{bottom:218.626667pt;}
.y120{bottom:219.266667pt;}
.y2d{bottom:221.826667pt;}
.y76{bottom:224.706667pt;}
.y58{bottom:225.346667pt;}
.yc5{bottom:225.986667pt;}
.y1a{bottom:226.306667pt;}
.y10f{bottom:226.946667pt;}
.ye6{bottom:231.746667pt;}
.y145{bottom:232.066667pt;}
.y9b{bottom:234.946667pt;}
.y157{bottom:240.386667pt;}
.y2c{bottom:244.866667pt;}
.y75{bottom:247.746667pt;}
.yc4{bottom:249.026667pt;}
.y10e{bottom:249.666667pt;}
.y144{bottom:255.106667pt;}
.ye4{bottom:255.426667pt;}
.y57{bottom:256.386667pt;}
.y9a{bottom:257.986667pt;}
.yc1{bottom:262.146667pt;}
.y156{bottom:263.426667pt;}
.y2b{bottom:267.906667pt;}
.y10d{bottom:269.186667pt;}
.y74{bottom:270.786667pt;}
.y143{bottom:277.826667pt;}
.y17c{bottom:278.466667pt;}
.y56{bottom:279.426667pt;}
.y99{bottom:280.706667pt;}
.y155{bottom:286.466667pt;}
.y2a{bottom:290.973333pt;}
.y73{bottom:293.853333pt;}
.y17b{bottom:296.093333pt;}
.y11b{bottom:297.373333pt;}
.y10c{bottom:300.253333pt;}
.y142{bottom:300.893333pt;}
.ye3{bottom:302.173333pt;}
.y55{bottom:302.493333pt;}
.y98{bottom:303.773333pt;}
.y154{bottom:309.533333pt;}
.y17a{bottom:314.973333pt;}
.y72{bottom:316.893333pt;}
.y29{bottom:322.013333pt;}
.y97{bottom:323.293333pt;}
.y141{bottom:323.933333pt;}
.y54{bottom:325.533333pt;}
.y153{bottom:332.573333pt;}
.yb8{bottom:333.213333pt;}
.y71{bottom:339.933333pt;}
.y10b{bottom:346.013333pt;}
.y28{bottom:346.973333pt;}
.y53{bottom:348.573333pt;}
.ye2{bottom:348.893333pt;}
.y179{bottom:350.173333pt;}
.y96{bottom:354.333333pt;}
.y152{bottom:355.293333pt;}
.y70{bottom:362.653333pt;}
.y19{bottom:369.053333pt;}
.y140{bottom:370.013333pt;}
.y52{bottom:371.293333pt;}
.ye1{bottom:372.573333pt;}
.y115{bottom:375.773333pt;}
.y95{bottom:377.053333pt;}
.y151{bottom:378.333333pt;}
.y6f{bottom:385.693333pt;}
.y178{bottom:386.653333pt;}
.y10a{bottom:392.093333pt;}
.y13f{bottom:393.053333pt;}
.y51{bottom:394.333333pt;}
.ydf{bottom:396.253333pt;}
.y94{bottom:400.133333pt;}
.y150{bottom:401.413333pt;}
.ybd{bottom:404.613333pt;}
.yfd{bottom:405.573333pt;}
.y6e{bottom:408.773333pt;}
.y109{bottom:415.173333pt;}
.y13e{bottom:416.133333pt;}
.y50{bottom:417.413333pt;}
.y93{bottom:423.173333pt;}
.y14f{bottom:424.453333pt;}
.yfc{bottom:428.613333pt;}
.yde{bottom:430.533333pt;}
.y6d{bottom:431.813333pt;}
.y114{bottom:434.693333pt;}
.y13d{bottom:438.853333pt;}
.y4f{bottom:440.453333pt;}
.y177{bottom:442.053333pt;}
.y92{bottom:446.213333pt;}
.y14e{bottom:447.493333pt;}
.y6c{bottom:451.013333pt;}
.yfb{bottom:451.333333pt;}
.ydd{bottom:453.573333pt;}
.yab{bottom:458.053333pt;}
.y176{bottom:459.653333pt;}
.y13c{bottom:461.893333pt;}
.y4e{bottom:463.493333pt;}
.y91{bottom:469.253333pt;}
.y108{bottom:469.573333pt;}
.y14d{bottom:470.533333pt;}
.yfa{bottom:470.853333pt;}
.ydc{bottom:476.613333pt;}
.y175{bottom:478.533333pt;}
.y6b{bottom:482.053333pt;}
.y13b{bottom:484.933333pt;}
.y4d{bottom:486.533333pt;}
.y90{bottom:492.293333pt;}
.y107{bottom:492.613333pt;}
.y14c{bottom:493.573333pt;}
.y174{bottom:497.413333pt;}
.ydb{bottom:499.333333pt;}
.yf9{bottom:501.893333pt;}
.y6a{bottom:505.093333pt;}
.y13a{bottom:507.973333pt;}
.y4c{bottom:509.573333pt;}
.y8f{bottom:511.520000pt;}
.y173{bottom:515.040000pt;}
.y106{bottom:515.680000pt;}
.y14b{bottom:516.640000pt;}
.yda{bottom:518.880000pt;}
.yf8{bottom:524.960000pt;}
.y69{bottom:528.160000pt;}
.yb0{bottom:529.440000pt;}
.y139{bottom:531.040000pt;}
.y4b{bottom:532.640000pt;}
.y172{bottom:534.240000pt;}
.y105{bottom:538.400000pt;}
.y8e{bottom:542.560000pt;}
.y14a{bottom:547.360000pt;}
.yf7{bottom:547.680000pt;}
.yd9{bottom:549.920000pt;}
.y67{bottom:551.200000pt;}
.y171{bottom:551.840000pt;}
.y138{bottom:554.080000pt;}
.y4a{bottom:555.360000pt;}
.y68{bottom:556.000000pt;}
.y104{bottom:561.440000pt;}
.y8d{bottom:565.280000pt;}
.yf6{bottom:570.720000pt;}
.y66{bottom:574.240000pt;}
.y137{bottom:577.120000pt;}
.y49{bottom:578.400000pt;}
.yd8{bottom:580.960000pt;}
.y103{bottom:584.480000pt;}
.y170{bottom:588.320000pt;}
.yf5{bottom:593.760000pt;}
.y65{bottom:597.280000pt;}
.y136{bottom:600.160000pt;}
.y48{bottom:601.440000pt;}
.yd7{bottom:603.680000pt;}
.y102{bottom:604.640000pt;}
.ya9{bottom:606.560000pt;}
.y16f{bottom:607.200000pt;}
.yf4{bottom:616.800000pt;}
.y64{bottom:620.000000pt;}
.y18{bottom:620.640000pt;}
.y135{bottom:622.906667pt;}
.y47{bottom:624.506667pt;}
.y16e{bottom:624.826667pt;}
.yd6{bottom:626.746667pt;}
.ya8{bottom:633.146667pt;}
.y17{bottom:636.026667pt;}
.yf3{bottom:639.866667pt;}
.y63{bottom:643.066667pt;}
.y16d{bottom:643.706667pt;}
.y134{bottom:645.946667pt;}
.y46{bottom:647.546667pt;}
.ya7{bottom:648.506667pt;}
.yd5{bottom:649.786667pt;}
.y16{bottom:650.746667pt;}
.y8c{bottom:656.506667pt;}
.y16c{bottom:661.306667pt;}
.yf2{bottom:662.906667pt;}
.y62{bottom:666.106667pt;}
.y133{bottom:668.986667pt;}
.y45{bottom:670.586667pt;}
.y15{bottom:671.546667pt;}
.yd4{bottom:672.826667pt;}
.y8b{bottom:674.106667pt;}
.y16b{bottom:678.906667pt;}
.yf1{bottom:685.946667pt;}
.y14{bottom:688.506667pt;}
.y61{bottom:689.146667pt;}
.y132{bottom:692.026667pt;}
.y44{bottom:693.626667pt;}
.yd3{bottom:695.866667pt;}
.y8a{bottom:697.146667pt;}
.y16a{bottom:697.786667pt;}
.yd1{bottom:708.986667pt;}
.y60{bottom:712.186667pt;}
.y13{bottom:713.146667pt;}
.y131{bottom:715.066667pt;}
.y169{bottom:715.386667pt;}
.y43{bottom:716.346667pt;}
.y89{bottom:720.186667pt;}
.yf0{bottom:731.706667pt;}
.y168{bottom:734.266667pt;}
.y5f{bottom:735.266667pt;}
.y12{bottom:737.506667pt;}
.y130{bottom:738.146667pt;}
.y42{bottom:739.426667pt;}
.yd0{bottom:740.386667pt;}
.y88{bottom:743.266667pt;}
.yef{bottom:744.866667pt;}
.y167{bottom:751.906667pt;}
.y5e{bottom:758.306667pt;}
.y12f{bottom:761.186667pt;}
.y11{bottom:762.146667pt;}
.y41{bottom:762.466667pt;}
.y86{bottom:766.306667pt;}
.yee{bottom:768.546667pt;}
.y166{bottom:770.786667pt;}
.y87{bottom:771.106667pt;}
.y5d{bottom:777.506667pt;}
.ya6{bottom:781.346667pt;}
.y40{bottom:785.506667pt;}
.y10{bottom:786.786667pt;}
.ycf{bottom:787.106667pt;}
.y165{bottom:788.386667pt;}
.y85{bottom:789.346667pt;}
.yec{bottom:792.226667pt;}
.y12e{bottom:795.746667pt;}
.ya5{bottom:804.066667pt;}
.y164{bottom:807.266667pt;}
.y3f{bottom:808.546667pt;}
.yf{bottom:811.106667pt;}
.y84{bottom:812.066667pt;}
.ycd{bottom:818.466667pt;}
.y12d{bottom:821.026667pt;}
.y163{bottom:824.866667pt;}
.ya4{bottom:827.106667pt;}
.y3e{bottom:831.586667pt;}
.y9{bottom:834.146667pt;}
.y83{bottom:835.106667pt;}
.y162{bottom:843.746667pt;}
.y12c{bottom:846.306667pt;}
.y8{bottom:849.533333pt;}
.ya3{bottom:850.173333pt;}
.y3d{bottom:854.653333pt;}
.y82{bottom:858.173333pt;}
.y161{bottom:861.373333pt;}
.y7{bottom:862.013333pt;}
.ycc{bottom:864.893333pt;}
.y12b{bottom:871.613333pt;}
.ya2{bottom:873.213333pt;}
.y3c{bottom:877.693333pt;}
.y160{bottom:880.253333pt;}
.ycb{bottom:880.893333pt;}
.y81{bottom:881.213333pt;}
.ya1{bottom:896.253333pt;}
.yca{bottom:896.893333pt;}
.y15f{bottom:897.853333pt;}
.y3b{bottom:900.413333pt;}
.y80{bottom:904.253333pt;}
.y6{bottom:910.653333pt;}
.y15e{bottom:917.053333pt;}
.ya0{bottom:919.293333pt;}
.y12a{bottom:922.173333pt;}
.y3a{bottom:923.453333pt;}
.y7f{bottom:927.293333pt;}
.y5{bottom:933.693333pt;}
.y15d{bottom:934.653333pt;}
.y9f{bottom:942.333333pt;}
.y39{bottom:946.493333pt;}
.y7e{bottom:950.333333pt;}
.y4{bottom:953.533333pt;}
.y9e{bottom:961.573333pt;}
.y38{bottom:969.573333pt;}
.y15c{bottom:971.173333pt;}
.y3{bottom:972.453333pt;}
.y7d{bottom:973.413333pt;}
.y15b{bottom:988.773333pt;}
.y2{bottom:990.693333pt;}
.y37{bottom:992.613333pt;}
.y7c{bottom:996.133333pt;}
.y1{bottom:1005.733333pt;}
.y36{bottom:1015.653333pt;}
.y35{bottom:1036.773333pt;}
.y34{bottom:1049.253333pt;}
.y33{bottom:1067.813333pt;}
.y32{bottom:1091.200000pt;}
.h7{height:7.680000pt;}
.h9{height:13.792000pt;}
.h1b{height:15.360000pt;}
.h24{height:17.600000pt;}
.h21{height:23.040000pt;}
.h13{height:23.072000pt;}
.hf{height:30.324375pt;}
.h1d{height:30.720000pt;}
.h1f{height:30.752000pt;}
.h10{height:34.374375pt;}
.hc{height:37.063125pt;}
.h1a{height:38.430000pt;}
.h2{height:39.847500pt;}
.h8{height:42.678750pt;}
.h5{height:42.797500pt;}
.h1c{height:45.792000pt;}
.h1e{height:46.080000pt;}
.h22{height:46.112000pt;}
.h6{height:47.171250pt;}
.he{height:47.302500pt;}
.h3{height:47.437500pt;}
.h12{height:49.524375pt;}
.h20{height:51.663750pt;}
.h18{height:52.800000pt;}
.h11{height:53.471250pt;}
.h25{height:58.272000pt;}
.h4{height:58.563750pt;}
.hb{height:61.305000pt;}
.ha{height:63.566250pt;}
.h23{height:69.152000pt;}
.h19{height:70.432000pt;}
.h16{height:70.752000pt;}
.h15{height:76.480000pt;}
.h27{height:77.472000pt;}
.h26{height:77.760000pt;}
.h17{height:124.192000pt;}
.h14{height:147.866667pt;}
.hd{height:246.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:119.392000pt;}
.wd{width:119.424000pt;}
.we{width:119.712000pt;}
.wb{width:119.744000pt;}
.wa{width:149.506667pt;}
.w9{width:149.826667pt;}
.w10{width:199.746667pt;}
.wf{width:199.773333pt;}
.w11{width:200.093333pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w8{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.720000pt;}
.x9{left:7.680000pt;}
.x34{left:31.040000pt;}
.x23{left:34.880000pt;}
.x1f{left:36.160000pt;}
.x21{left:38.106667pt;}
.x1d{left:43.554667pt;}
.x25{left:44.506667pt;}
.x29{left:46.754667pt;}
.x2b{left:49.946667pt;}
.x2a{left:51.240000pt;}
.x26{left:52.800000pt;}
.x27{left:57.306667pt;}
.x28{left:59.546667pt;}
.x7{left:94.431988pt;}
.x15{left:98.911988pt;}
.x36{left:104.031988pt;}
.x35{left:118.463988pt;}
.xb{left:136.066655pt;}
.x37{left:141.826655pt;}
.x10{left:160.706655pt;}
.xc{left:173.186655pt;}
.x30{left:205.213322pt;}
.x1e{left:215.453333pt;}
.x2{left:226.013322pt;}
.x2c{left:236.253322pt;}
.x6{left:243.613322pt;}
.x19{left:245.533333pt;}
.xe{left:264.413322pt;}
.x2e{left:267.293322pt;}
.xa{left:270.533333pt;}
.x14{left:286.533322pt;}
.x32{left:295.493333pt;}
.xf{left:302.208000pt;}
.x2d{left:303.173322pt;}
.xd{left:306.693322pt;}
.x5{left:318.213322pt;}
.x20{left:335.813333pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x16{left:357.919976pt;}
.x17{left:362.399988pt;}
.x1b{left:395.680000pt;}
.x8{left:396.959988pt;}
.x11{left:397.920000pt;}
.x22{left:455.866667pt;}
.x33{left:495.866667pt;}
.x1c{left:546.146667pt;}
.x18{left:562.786655pt;}
.x24{left:576.226667pt;}
.x12{left:579.746643pt;}
.x13{left:584.226655pt;}
.x31{left:630.333322pt;}
.x2f{left:633.853322pt;}
.x1{left:699.493322pt;}
}




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