
    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_1a8a01a9743426abcf543bbe.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6699e248a69bcda8ce6bea4f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_653188c456049f79b946c689.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1a301d8c5faba7b32307cd8d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a0b648f17067bfd81c09db48.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_f2805aafea62476cc2a4f3d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f584ceeb7f98f1c1085b6556.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls28{letter-spacing:-1.662000px;}
.ls10{letter-spacing:-0.666000px;}
.lsb{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.496200px;}
.lsa{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.269400px;}
.ls15{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.053280px;}
.ls23{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.004320px;}
.ls2{letter-spacing:0.012960px;}
.ls16{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.lse{letter-spacing:0.156000px;}
.ls4{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.181200px;}
.ls13{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls29{letter-spacing:0.269400px;}
.ls22{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.460200px;}
.ls8{letter-spacing:0.493800px;}
.ls24{letter-spacing:0.538800px;}
.ls20{letter-spacing:0.612000px;}
.ls25{letter-spacing:0.666000px;}
.ls1{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.900000px;}
.ls1f{letter-spacing:0.924000px;}
.ls14{letter-spacing:1.620000px;}
.ls18{letter-spacing:4.500000px;}
.ls1b{letter-spacing:4.680000px;}
.ls26{letter-spacing:5.220000px;}
.lsd{letter-spacing:9.540000px;}
.ls19{letter-spacing:10.980000px;}
.ls1c{letter-spacing:11.676000px;}
.ls1a{letter-spacing:18.180000px;}
.ls5{letter-spacing:66.960000px;}
.ls6{letter-spacing:67.680000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws14{word-spacing:-15.864000px;}
.ws1b{word-spacing:-15.606000px;}
.ws17{word-spacing:-15.552000px;}
.ws16{word-spacing:-15.400200px;}
.wsf{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.wse{word-spacing:-14.274000px;}
.ws0{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.482000px;}
.ws9{word-spacing:-13.284000px;}
.wsb{word-spacing:-13.140000px;}
.ws1a{word-spacing:-12.598800px;}
.ws3{word-spacing:-12.420000px;}
.ws1e{word-spacing:-12.329400px;}
.wsd{word-spacing:-12.241200px;}
.ws6{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.836200px;}
.ws1c{word-spacing:-11.790600px;}
.ws1f{word-spacing:-11.563800px;}
.ws2{word-spacing:-10.933800px;}
.ws1{word-spacing:-10.440000px;}
.ws1d{word-spacing:-10.398000px;}
.ws18{word-spacing:-9.724320px;}
.ws7{word-spacing:-9.720000px;}
.ws8{word-spacing:-7.560000px;}
.wsc{word-spacing:0.000000px;}
._18{margin-left:-2.245680px;}
._1{margin-left:-1.084560px;}
._0{width:1.211040px;}
._9{width:2.721840px;}
._a{width:4.536000px;}
._b{width:6.210000px;}
._8{width:7.942560px;}
._7{width:9.072000px;}
._f{width:10.788480px;}
._c{width:11.826000px;}
._5{width:13.804560px;}
._12{width:16.333680px;}
._16{width:17.577360px;}
._15{width:19.251600px;}
._13{width:20.258640px;}
._14{width:21.272400px;}
._d{width:23.004000px;}
._e{width:24.337920px;}
._11{width:27.131040px;}
._4{width:46.379520px;}
._3{width:47.828880px;}
._1b{width:48.918240px;}
._17{width:64.899360px;}
._19{width:65.904240px;}
._6{width:67.681680px;}
._1a{width:117.970080px;}
._1c{width:179.211600px;}
._1d{width:180.744480px;}
._10{width:1834.296000px;}
._2{width:2054.840400px;}
.fcd{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc3{color:rgb(13,13,13);}
.fc5{color:rgb(128,128,128);}
.fc6{color:rgb(166,166,166);}
.fcc{color:rgb(27,27,27);}
.fc2{color:rgb(31,77,120);}
.fc4{color:rgb(255,0,0);}
.fca{color:rgb(51,51,51);}
.fcb{color:rgb(106,41,134);}
.fc7{color:rgb(0,0,255);}
.fc8{color:transparent;}
.fc9{color:rgb(0,32,96);}
.fs6{font-size:5.760000px;}
.fsa{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsb{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y45{bottom:4.320000px;}
.ycf{bottom:5.220000px;}
.y2b{bottom:5.580000px;}
.y9b{bottom:6.840000px;}
.ya5{bottom:7.020000px;}
.y9d{bottom:7.560000px;}
.ya1{bottom:7.590000px;}
.y9f{bottom:7.740000px;}
.ya8{bottom:8.280000px;}
.y99{bottom:9.360000px;}
.yd2{bottom:10.800000px;}
.yd0{bottom:14.040000px;}
.y3{bottom:18.000000px;}
.y44{bottom:18.180000px;}
.y48{bottom:18.900000px;}
.y82{bottom:19.260000px;}
.y2a{bottom:19.440000px;}
.yce{bottom:23.040000px;}
.y29{bottom:27.000000px;}
.y98{bottom:27.180000px;}
.y2{bottom:30.060000px;}
.y28{bottom:42.480000px;}
.y1{bottom:43.020000px;}
.y27{bottom:58.140000px;}
.y15f{bottom:70.380000px;}
.y26{bottom:73.620000px;}
.y11f{bottom:75.060000px;}
.y7f{bottom:80.100000px;}
.y15e{bottom:84.060000px;}
.yf5{bottom:87.480000px;}
.y11e{bottom:88.920000px;}
.y25{bottom:89.100000px;}
.ybf{bottom:89.280000px;}
.y15d{bottom:97.920000px;}
.y7e{bottom:99.900000px;}
.y11d{bottom:102.600000px;}
.y42{bottom:104.220000px;}
.y24{bottom:104.580000px;}
.yf4{bottom:107.280000px;}
.ybe{bottom:109.080000px;}
.y15c{bottom:111.780000px;}
.yca{bottom:119.340000px;}
.y7d{bottom:119.700000px;}
.y23{bottom:120.240000px;}
.y11c{bottom:122.400000px;}
.y41{bottom:124.020000px;}
.y15b{bottom:125.460000px;}
.yf3{bottom:127.260000px;}
.ybd{bottom:128.880000px;}
.y22{bottom:135.750000px;}
.y11b{bottom:136.260000px;}
.y7c{bottom:139.140000px;}
.y15a{bottom:139.320000px;}
.yc9{bottom:139.500000px;}
.y40{bottom:143.820000px;}
.yf2{bottom:147.060000px;}
.ybc{bottom:148.680000px;}
.y21{bottom:151.230000px;}
.y159{bottom:153.210000px;}
.y2d{bottom:155.010000px;}
.y11a{bottom:156.090000px;}
.y7b{bottom:158.970000px;}
.yc8{bottom:159.330000px;}
.y3f{bottom:163.650000px;}
.y20{bottom:166.710000px;}
.yf1{bottom:166.890000px;}
.ybb{bottom:168.510000px;}
.y119{bottom:169.950000px;}
.y7a{bottom:179.310000px;}
.y158{bottom:180.750000px;}
.y1f{bottom:182.370000px;}
.y3e{bottom:183.450000px;}
.yf0{bottom:186.690000px;}
.y118{bottom:186.870000px;}
.yba{bottom:188.490000px;}
.y157{bottom:197.670000px;}
.y1e{bottom:197.850000px;}
.y79{bottom:199.110000px;}
.y3d{bottom:203.430000px;}
.y117{bottom:206.310000px;}
.yef{bottom:206.490000px;}
.yb9{bottom:207.930000px;}
.y1d{bottom:213.330000px;}
.y156{bottom:217.470000px;}
.y78{bottom:218.910000px;}
.y3c{bottom:223.230000px;}
.yee{bottom:226.470000px;}
.y116{bottom:227.370000px;}
.yb8{bottom:227.730000px;}
.y1c{bottom:228.810000px;}
.y155{bottom:237.450000px;}
.y77{bottom:238.710000px;}
.y3b{bottom:243.030000px;}
.y1b{bottom:244.470000px;}
.yed{bottom:246.270000px;}
.yb7{bottom:247.890000px;}
.y154{bottom:257.250000px;}
.y76{bottom:258.510000px;}
.y1a{bottom:259.950000px;}
.y3a{bottom:262.830000px;}
.y115{bottom:265.170000px;}
.yec{bottom:265.710000px;}
.yb6{bottom:267.690000px;}
.y19{bottom:275.430000px;}
.y153{bottom:277.050000px;}
.y75{bottom:278.490000px;}
.y114{bottom:282.090000px;}
.y39{bottom:282.630000px;}
.yeb{bottom:285.870000px;}
.yb5{bottom:287.670000px;}
.y18{bottom:297.390000px;}
.y74{bottom:298.290000px;}
.y113{bottom:299.370000px;}
.y152{bottom:299.730000px;}
.y38{bottom:302.610000px;}
.yea{bottom:305.670000px;}
.yb4{bottom:307.470000px;}
.y2c{bottom:309.990000px;}
.y151{bottom:313.590000px;}
.y112{bottom:316.830000px;}
.y73{bottom:318.090000px;}
.y37{bottom:322.410000px;}
.ye9{bottom:325.650000px;}
.yb3{bottom:327.270000px;}
.y111{bottom:334.110000px;}
.y72{bottom:337.890000px;}
.y36{bottom:342.210000px;}
.ye8{bottom:345.450000px;}
.yb2{bottom:347.070000px;}
.y110{bottom:351.030000px;}
.y71{bottom:357.330000px;}
.yc7{bottom:357.690000px;}
.y150{bottom:360.930000px;}
.y35{bottom:362.010000px;}
.ye7{bottom:365.250000px;}
.yb1{bottom:366.870000px;}
.y10f{bottom:368.670000px;}
.y70{bottom:377.310000px;}
.yc6{bottom:377.670000px;}
.y14f{bottom:380.730000px;}
.y34{bottom:381.810000px;}
.ye6{bottom:385.050000px;}
.y10e{bottom:385.950000px;}
.yb0{bottom:386.850000px;}
.y14e{bottom:394.590000px;}
.y6f{bottom:397.470000px;}
.y33{bottom:401.835000px;}
.y10d{bottom:402.735000px;}
.ye5{bottom:404.895000px;}
.yaf{bottom:406.695000px;}
.y14d{bottom:408.315000px;}
.y6e{bottom:417.315000px;}
.y10c{bottom:420.015000px;}
.y32{bottom:421.635000px;}
.ye4{bottom:424.875000px;}
.yae{bottom:426.495000px;}
.y14c{bottom:428.115000px;}
.y6d{bottom:437.115000px;}
.y10b{bottom:437.655000px;}
.y31{bottom:441.435000px;}
.y14b{bottom:441.975000px;}
.ye3{bottom:444.675000px;}
.yad{bottom:446.295000px;}
.y10a{bottom:454.935000px;}
.y6c{bottom:456.915000px;}
.y30{bottom:461.235000px;}
.y14a{bottom:461.775000px;}
.ye2{bottom:464.475000px;}
.yac{bottom:466.095000px;}
.y109{bottom:472.215000px;}
.y149{bottom:475.635000px;}
.y6b{bottom:476.895000px;}
.y2f{bottom:480.675000px;}
.ye1{bottom:484.275000px;}
.yab{bottom:485.715000px;}
.y108{bottom:489.495000px;}
.y148{bottom:495.435000px;}
.y6a{bottom:496.695000px;}
.y2e{bottom:501.015000px;}
.ye0{bottom:504.075000px;}
.yaa{bottom:505.875000px;}
.y107{bottom:506.595000px;}
.y147{bottom:509.115000px;}
.y17{bottom:514.695000px;}
.y69{bottom:516.495000px;}
.y106{bottom:523.875000px;}
.ydf{bottom:524.055000px;}
.ya9{bottom:524.415000px;}
.y146{bottom:528.915000px;}
.ya7{bottom:536.115000px;}
.y68{bottom:536.295000px;}
.y105{bottom:540.795000px;}
.y145{bottom:542.775000px;}
.yde{bottom:543.855000px;}
.y67{bottom:555.735000px;}
.y144{bottom:556.635000px;}
.y104{bottom:558.075000px;}
.ya6{bottom:559.335000px;}
.ydd{bottom:563.655000px;}
.y103{bottom:575.715000px;}
.y66{bottom:576.075000px;}
.y143{bottom:576.435000px;}
.ya4{bottom:581.295000px;}
.ydc{bottom:583.455000px;}
.y142{bottom:590.115000px;}
.y102{bottom:592.995000px;}
.y65{bottom:595.875000px;}
.ya3{bottom:601.815000px;}
.ydb{bottom:602.895000px;}
.y141{bottom:603.975000px;}
.y101{bottom:609.735000px;}
.y64{bottom:615.675000px;}
.ya2{bottom:623.775000px;}
.yda{bottom:623.955000px;}
.y100{bottom:627.375000px;}
.y63{bottom:635.475000px;}
.y140{bottom:637.635000px;}
.yd9{bottom:641.775000px;}
.yff{bottom:644.655000px;}
.ya0{bottom:645.735000px;}
.y62{bottom:655.305000px;}
.yd8{bottom:655.665000px;}
.y13f{bottom:657.465000px;}
.yfe{bottom:661.965000px;}
.y9e{bottom:667.545000px;}
.yd7{bottom:669.525000px;}
.y13e{bottom:671.145000px;}
.y61{bottom:675.285000px;}
.yfd{bottom:679.245000px;}
.yd6{bottom:681.045000px;}
.y13d{bottom:685.005000px;}
.y9c{bottom:689.505000px;}
.y60{bottom:695.085000px;}
.yfc{bottom:695.985000px;}
.y13c{bottom:704.805000px;}
.yd5{bottom:708.585000px;}
.y9a{bottom:711.465000px;}
.yfb{bottom:713.265000px;}
.y5f{bottom:714.525000px;}
.yc5{bottom:714.885000px;}
.y13b{bottom:718.665000px;}
.yfa{bottom:730.545000px;}
.y13a{bottom:732.345000px;}
.y97{bottom:732.705000px;}
.y5e{bottom:734.685000px;}
.yd4{bottom:736.305000px;}
.yf9{bottom:751.785000px;}
.y139{bottom:752.145000px;}
.y5d{bottom:754.485000px;}
.yd3{bottom:764.025000px;}
.y138{bottom:766.005000px;}
.y5c{bottom:774.465000px;}
.y96{bottom:783.465000px;}
.y137{bottom:785.805000px;}
.yd1{bottom:791.745000px;}
.y5b{bottom:794.265000px;}
.y136{bottom:799.485000px;}
.y95{bottom:802.905000px;}
.y135{bottom:813.345000px;}
.y5a{bottom:814.065000px;}
.ycd{bottom:820.185000px;}
.y94{bottom:823.065000px;}
.y16{bottom:830.445000px;}
.y134{bottom:833.145000px;}
.y59{bottom:833.865000px;}
.y93{bottom:842.865000px;}
.y133{bottom:847.005000px;}
.y15{bottom:849.525000px;}
.y58{bottom:853.305000px;}
.yc4{bottom:853.665000px;}
.y132{bottom:860.685000px;}
.y14{bottom:862.305000px;}
.y92{bottom:862.665000px;}
.y57{bottom:873.285000px;}
.yc3{bottom:873.645000px;}
.y13{bottom:874.545000px;}
.y131{bottom:880.485000px;}
.y91{bottom:882.645000px;}
.y12{bottom:888.405000px;}
.y56{bottom:893.445000px;}
.y130{bottom:894.345000px;}
.y11{bottom:902.310000px;}
.y90{bottom:902.490000px;}
.y10{bottom:910.770000px;}
.y55{bottom:913.290000px;}
.y12f{bottom:914.190000px;}
.y8f{bottom:922.290000px;}
.yf{bottom:923.550000px;}
.y12e{bottom:928.050000px;}
.y54{bottom:933.090000px;}
.y8e{bottom:942.090000px;}
.ye{bottom:946.230000px;}
.y12d{bottom:947.850000px;}
.yf8{bottom:952.530000px;}
.y53{bottom:952.890000px;}
.y12c{bottom:961.530000px;}
.y8d{bottom:961.890000px;}
.yd{bottom:968.910000px;}
.y52{bottom:972.510000px;}
.yc2{bottom:972.870000px;}
.y12b{bottom:981.330000px;}
.y8c{bottom:981.870000px;}
.yc{bottom:990.330000px;}
.y51{bottom:992.310000px;}
.yf7{bottom:992.670000px;}
.y12a{bottom:995.190000px;}
.y8b{bottom:1001.670000px;}
.y129{bottom:1009.050000px;}
.y50{bottom:1012.110000px;}
.yf6{bottom:1012.470000px;}
.y8a{bottom:1021.110000px;}
.ycc{bottom:1021.470000px;}
.yb{bottom:1028.310000px;}
.y128{bottom:1028.850000px;}
.y4f{bottom:1032.270000px;}
.y89{bottom:1040.910000px;}
.ycb{bottom:1041.270000px;}
.y127{bottom:1048.650000px;}
.y4e{bottom:1052.070000px;}
.y88{bottom:1061.070000px;}
.y126{bottom:1062.330000px;}
.ya{bottom:1066.290000px;}
.y4d{bottom:1072.050000px;}
.y87{bottom:1081.050000px;}
.y125{bottom:1082.130000px;}
.y4c{bottom:1091.850000px;}
.y124{bottom:1095.990000px;}
.y9{bottom:1100.130000px;}
.y86{bottom:1100.850000px;}
.y4b{bottom:1111.650000px;}
.y43{bottom:1111.830000px;}
.y123{bottom:1115.790000px;}
.y8{bottom:1117.050000px;}
.y85{bottom:1120.650000px;}
.y122{bottom:1129.650000px;}
.yc1{bottom:1131.090000px;}
.y4a{bottom:1131.450000px;}
.y84{bottom:1140.450000px;}
.y121{bottom:1149.480000px;}
.yc0{bottom:1150.920000px;}
.y49{bottom:1151.280000px;}
.y7{bottom:1154.880000px;}
.y83{bottom:1160.280000px;}
.y120{bottom:1163.160000px;}
.y6{bottom:1166.400000px;}
.y47{bottom:1169.460000px;}
.y5{bottom:1175.040000px;}
.y81{bottom:1178.460000px;}
.y46{bottom:1188.720000px;}
.y4{bottom:1194.660000px;}
.y80{bottom:1197.720000px;}
.h6{height:5.650313px;}
.he{height:17.666016px;}
.h10{height:18.140625px;}
.h1d{height:20.505000px;}
.h19{height:20.520000px;}
.h1b{height:21.810000px;}
.h1c{height:21.945000px;}
.h1a{height:21.960000px;}
.h1e{height:23.205000px;}
.h21{height:27.540000px;}
.h14{height:27.705000px;}
.h23{height:27.720000px;}
.hd{height:29.664141px;}
.hc{height:30.476250px;}
.h20{height:35.640000px;}
.h3{height:40.985156px;}
.h15{height:42.922699px;}
.h17{height:43.215117px;}
.h18{height:43.740000px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h22{height:50.558906px;}
.h2{height:52.998047px;}
.h8{height:54.421875px;}
.h12{height:55.503472px;}
.h13{height:58.651172px;}
.h9{height:60.226875px;}
.h24{height:65.010937px;}
.h1f{height:65.518594px;}
.hb{height:66.543750px;}
.h11{height:66.757500px;}
.h16{height:70.664062px;}
.h5{height:72.562500px;}
.ha{height:132.789375px;}
.hf{height:309.990000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:55.080000px;}
.wd{width:100.641000px;}
.we{width:101.190000px;}
.w3{width:101.730000px;}
.wc{width:104.925000px;}
.wb{width:105.336000px;}
.wa{width:108.381000px;}
.w8{width:124.050000px;}
.w6{width:129.765000px;}
.w7{width:130.881000px;}
.w9{width:155.329500px;}
.w4{width:232.050000px;}
.w5{width:344.404500px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xc{left:-36.900000px;}
.xb{left:-19.800000px;}
.xa{left:-5.040000px;}
.x0{left:0.000000px;}
.x2a{left:2.685000px;}
.x29{left:4.845000px;}
.x26{left:6.300000px;}
.x12{left:8.089500px;}
.x9{left:10.650000px;}
.x27{left:12.450000px;}
.x28{left:16.920000px;}
.x2d{left:18.000000px;}
.x2c{left:19.980000px;}
.x2b{left:24.510000px;}
.x8{left:26.850000px;}
.x14{left:33.465000px;}
.x15{left:36.525000px;}
.x19{left:37.980000px;}
.x7{left:42.510000px;}
.x17{left:44.850000px;}
.x1d{left:46.830000px;}
.x1b{left:50.250000px;}
.x1a{left:53.085000px;}
.x1c{left:56.325000px;}
.x6{left:58.710000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.x1f{left:102.276000px;}
.xd{left:108.036000px;}
.x1e{left:113.076000px;}
.x20{left:114.696000px;}
.x2e{left:128.556000px;}
.x2f{left:158.250000px;}
.x21{left:236.385000px;}
.x22{left:344.775000px;}
.x10{left:359.715000px;}
.xf{left:402.735000px;}
.x13{left:425.460000px;}
.x11{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x23{left:450.120000px;}
.x16{left:555.240000px;}
.xe{left:590.370000px;}
.x24{left:655.530000px;}
.x18{left:686.130000px;}
.x4{left:721.950000px;}
.x25{left:756.720000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls28{letter-spacing:-1.477333pt;}
.ls10{letter-spacing:-0.592000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.441067pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.239467pt;}
.ls15{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls23{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.003840pt;}
.ls2{letter-spacing:0.011520pt;}
.ls16{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.138667pt;}
.ls4{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.161067pt;}
.ls13{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls29{letter-spacing:0.239467pt;}
.ls22{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.409067pt;}
.ls8{letter-spacing:0.438933pt;}
.ls24{letter-spacing:0.478933pt;}
.ls20{letter-spacing:0.544000pt;}
.ls25{letter-spacing:0.592000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:0.821333pt;}
.ls14{letter-spacing:1.440000pt;}
.ls18{letter-spacing:4.000000pt;}
.ls1b{letter-spacing:4.160000pt;}
.ls26{letter-spacing:4.640000pt;}
.lsd{letter-spacing:8.480000pt;}
.ls19{letter-spacing:9.760000pt;}
.ls1c{letter-spacing:10.378667pt;}
.ls1a{letter-spacing:16.160000pt;}
.ls5{letter-spacing:59.520000pt;}
.ls6{letter-spacing:60.160000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws14{word-spacing:-14.101333pt;}
.ws1b{word-spacing:-13.872000pt;}
.ws17{word-spacing:-13.824000pt;}
.ws16{word-spacing:-13.689067pt;}
.wsf{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.688000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.984000pt;}
.ws9{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws1a{word-spacing:-11.198933pt;}
.ws3{word-spacing:-11.040000pt;}
.ws1e{word-spacing:-10.959467pt;}
.wsd{word-spacing:-10.881067pt;}
.ws6{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.521067pt;}
.ws1c{word-spacing:-10.480533pt;}
.ws1f{word-spacing:-10.278933pt;}
.ws2{word-spacing:-9.718933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws1d{word-spacing:-9.242667pt;}
.ws18{word-spacing:-8.643840pt;}
.ws7{word-spacing:-8.640000pt;}
.ws8{word-spacing:-6.720000pt;}
.wsc{word-spacing:0.000000pt;}
._18{margin-left:-1.996160pt;}
._1{margin-left:-0.964053pt;}
._0{width:1.076480pt;}
._9{width:2.419413pt;}
._a{width:4.032000pt;}
._b{width:5.520000pt;}
._8{width:7.060053pt;}
._7{width:8.064000pt;}
._f{width:9.589760pt;}
._c{width:10.512000pt;}
._5{width:12.270720pt;}
._12{width:14.518827pt;}
._16{width:15.624320pt;}
._15{width:17.112533pt;}
._13{width:18.007680pt;}
._14{width:18.908800pt;}
._d{width:20.448000pt;}
._e{width:21.633707pt;}
._11{width:24.116480pt;}
._4{width:41.226240pt;}
._3{width:42.514560pt;}
._1b{width:43.482880pt;}
._17{width:57.688320pt;}
._19{width:58.581547pt;}
._6{width:60.161493pt;}
._1a{width:104.862293pt;}
._1c{width:159.299200pt;}
._1d{width:160.661760pt;}
._10{width:1630.485333pt;}
._2{width:1826.524800pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsb{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:3.840000pt;}
.ycf{bottom:4.640000pt;}
.y2b{bottom:4.960000pt;}
.y9b{bottom:6.080000pt;}
.ya5{bottom:6.240000pt;}
.y9d{bottom:6.720000pt;}
.ya1{bottom:6.746667pt;}
.y9f{bottom:6.880000pt;}
.ya8{bottom:7.360000pt;}
.y99{bottom:8.320000pt;}
.yd2{bottom:9.600000pt;}
.yd0{bottom:12.480000pt;}
.y3{bottom:16.000000pt;}
.y44{bottom:16.160000pt;}
.y48{bottom:16.800000pt;}
.y82{bottom:17.120000pt;}
.y2a{bottom:17.280000pt;}
.yce{bottom:20.480000pt;}
.y29{bottom:24.000000pt;}
.y98{bottom:24.160000pt;}
.y2{bottom:26.720000pt;}
.y28{bottom:37.760000pt;}
.y1{bottom:38.240000pt;}
.y27{bottom:51.680000pt;}
.y15f{bottom:62.560000pt;}
.y26{bottom:65.440000pt;}
.y11f{bottom:66.720000pt;}
.y7f{bottom:71.200000pt;}
.y15e{bottom:74.720000pt;}
.yf5{bottom:77.760000pt;}
.y11e{bottom:79.040000pt;}
.y25{bottom:79.200000pt;}
.ybf{bottom:79.360000pt;}
.y15d{bottom:87.040000pt;}
.y7e{bottom:88.800000pt;}
.y11d{bottom:91.200000pt;}
.y42{bottom:92.640000pt;}
.y24{bottom:92.960000pt;}
.yf4{bottom:95.360000pt;}
.ybe{bottom:96.960000pt;}
.y15c{bottom:99.360000pt;}
.yca{bottom:106.080000pt;}
.y7d{bottom:106.400000pt;}
.y23{bottom:106.880000pt;}
.y11c{bottom:108.800000pt;}
.y41{bottom:110.240000pt;}
.y15b{bottom:111.520000pt;}
.yf3{bottom:113.120000pt;}
.ybd{bottom:114.560000pt;}
.y22{bottom:120.666667pt;}
.y11b{bottom:121.120000pt;}
.y7c{bottom:123.680000pt;}
.y15a{bottom:123.840000pt;}
.yc9{bottom:124.000000pt;}
.y40{bottom:127.840000pt;}
.yf2{bottom:130.720000pt;}
.ybc{bottom:132.160000pt;}
.y21{bottom:134.426667pt;}
.y159{bottom:136.186667pt;}
.y2d{bottom:137.786667pt;}
.y11a{bottom:138.746667pt;}
.y7b{bottom:141.306667pt;}
.yc8{bottom:141.626667pt;}
.y3f{bottom:145.466667pt;}
.y20{bottom:148.186667pt;}
.yf1{bottom:148.346667pt;}
.ybb{bottom:149.786667pt;}
.y119{bottom:151.066667pt;}
.y7a{bottom:159.386667pt;}
.y158{bottom:160.666667pt;}
.y1f{bottom:162.106667pt;}
.y3e{bottom:163.066667pt;}
.yf0{bottom:165.946667pt;}
.y118{bottom:166.106667pt;}
.yba{bottom:167.546667pt;}
.y157{bottom:175.706667pt;}
.y1e{bottom:175.866667pt;}
.y79{bottom:176.986667pt;}
.y3d{bottom:180.826667pt;}
.y117{bottom:183.386667pt;}
.yef{bottom:183.546667pt;}
.yb9{bottom:184.826667pt;}
.y1d{bottom:189.626667pt;}
.y156{bottom:193.306667pt;}
.y78{bottom:194.586667pt;}
.y3c{bottom:198.426667pt;}
.yee{bottom:201.306667pt;}
.y116{bottom:202.106667pt;}
.yb8{bottom:202.426667pt;}
.y1c{bottom:203.386667pt;}
.y155{bottom:211.066667pt;}
.y77{bottom:212.186667pt;}
.y3b{bottom:216.026667pt;}
.y1b{bottom:217.306667pt;}
.yed{bottom:218.906667pt;}
.yb7{bottom:220.346667pt;}
.y154{bottom:228.666667pt;}
.y76{bottom:229.786667pt;}
.y1a{bottom:231.066667pt;}
.y3a{bottom:233.626667pt;}
.y115{bottom:235.706667pt;}
.yec{bottom:236.186667pt;}
.yb6{bottom:237.946667pt;}
.y19{bottom:244.826667pt;}
.y153{bottom:246.266667pt;}
.y75{bottom:247.546667pt;}
.y114{bottom:250.746667pt;}
.y39{bottom:251.226667pt;}
.yeb{bottom:254.106667pt;}
.yb5{bottom:255.706667pt;}
.y18{bottom:264.346667pt;}
.y74{bottom:265.146667pt;}
.y113{bottom:266.106667pt;}
.y152{bottom:266.426667pt;}
.y38{bottom:268.986667pt;}
.yea{bottom:271.706667pt;}
.yb4{bottom:273.306667pt;}
.y2c{bottom:275.546667pt;}
.y151{bottom:278.746667pt;}
.y112{bottom:281.626667pt;}
.y73{bottom:282.746667pt;}
.y37{bottom:286.586667pt;}
.ye9{bottom:289.466667pt;}
.yb3{bottom:290.906667pt;}
.y111{bottom:296.986667pt;}
.y72{bottom:300.346667pt;}
.y36{bottom:304.186667pt;}
.ye8{bottom:307.066667pt;}
.yb2{bottom:308.506667pt;}
.y110{bottom:312.026667pt;}
.y71{bottom:317.626667pt;}
.yc7{bottom:317.946667pt;}
.y150{bottom:320.826667pt;}
.y35{bottom:321.786667pt;}
.ye7{bottom:324.666667pt;}
.yb1{bottom:326.106667pt;}
.y10f{bottom:327.706667pt;}
.y70{bottom:335.386667pt;}
.yc6{bottom:335.706667pt;}
.y14f{bottom:338.426667pt;}
.y34{bottom:339.386667pt;}
.ye6{bottom:342.266667pt;}
.y10e{bottom:343.066667pt;}
.yb0{bottom:343.866667pt;}
.y14e{bottom:350.746667pt;}
.y6f{bottom:353.306667pt;}
.y33{bottom:357.186667pt;}
.y10d{bottom:357.986667pt;}
.ye5{bottom:359.906667pt;}
.yaf{bottom:361.506667pt;}
.y14d{bottom:362.946667pt;}
.y6e{bottom:370.946667pt;}
.y10c{bottom:373.346667pt;}
.y32{bottom:374.786667pt;}
.ye4{bottom:377.666667pt;}
.yae{bottom:379.106667pt;}
.y14c{bottom:380.546667pt;}
.y6d{bottom:388.546667pt;}
.y10b{bottom:389.026667pt;}
.y31{bottom:392.386667pt;}
.y14b{bottom:392.866667pt;}
.ye3{bottom:395.266667pt;}
.yad{bottom:396.706667pt;}
.y10a{bottom:404.386667pt;}
.y6c{bottom:406.146667pt;}
.y30{bottom:409.986667pt;}
.y14a{bottom:410.466667pt;}
.ye2{bottom:412.866667pt;}
.yac{bottom:414.306667pt;}
.y109{bottom:419.746667pt;}
.y149{bottom:422.786667pt;}
.y6b{bottom:423.906667pt;}
.y2f{bottom:427.266667pt;}
.ye1{bottom:430.466667pt;}
.yab{bottom:431.746667pt;}
.y108{bottom:435.106667pt;}
.y148{bottom:440.386667pt;}
.y6a{bottom:441.506667pt;}
.y2e{bottom:445.346667pt;}
.ye0{bottom:448.066667pt;}
.yaa{bottom:449.666667pt;}
.y107{bottom:450.306667pt;}
.y147{bottom:452.546667pt;}
.y17{bottom:457.506667pt;}
.y69{bottom:459.106667pt;}
.y106{bottom:465.666667pt;}
.ydf{bottom:465.826667pt;}
.ya9{bottom:466.146667pt;}
.y146{bottom:470.146667pt;}
.ya7{bottom:476.546667pt;}
.y68{bottom:476.706667pt;}
.y105{bottom:480.706667pt;}
.y145{bottom:482.466667pt;}
.yde{bottom:483.426667pt;}
.y67{bottom:493.986667pt;}
.y144{bottom:494.786667pt;}
.y104{bottom:496.066667pt;}
.ya6{bottom:497.186667pt;}
.ydd{bottom:501.026667pt;}
.y103{bottom:511.746667pt;}
.y66{bottom:512.066667pt;}
.y143{bottom:512.386667pt;}
.ya4{bottom:516.706667pt;}
.ydc{bottom:518.626667pt;}
.y142{bottom:524.546667pt;}
.y102{bottom:527.106667pt;}
.y65{bottom:529.666667pt;}
.ya3{bottom:534.946667pt;}
.ydb{bottom:535.906667pt;}
.y141{bottom:536.866667pt;}
.y101{bottom:541.986667pt;}
.y64{bottom:547.266667pt;}
.ya2{bottom:554.466667pt;}
.yda{bottom:554.626667pt;}
.y100{bottom:557.666667pt;}
.y63{bottom:564.866667pt;}
.y140{bottom:566.786667pt;}
.yd9{bottom:570.466667pt;}
.yff{bottom:573.026667pt;}
.ya0{bottom:573.986667pt;}
.y62{bottom:582.493333pt;}
.yd8{bottom:582.813333pt;}
.y13f{bottom:584.413333pt;}
.yfe{bottom:588.413333pt;}
.y9e{bottom:593.373333pt;}
.yd7{bottom:595.133333pt;}
.y13e{bottom:596.573333pt;}
.y61{bottom:600.253333pt;}
.yfd{bottom:603.773333pt;}
.yd6{bottom:605.373333pt;}
.y13d{bottom:608.893333pt;}
.y9c{bottom:612.893333pt;}
.y60{bottom:617.853333pt;}
.yfc{bottom:618.653333pt;}
.y13c{bottom:626.493333pt;}
.yd5{bottom:629.853333pt;}
.y9a{bottom:632.413333pt;}
.yfb{bottom:634.013333pt;}
.y5f{bottom:635.133333pt;}
.yc5{bottom:635.453333pt;}
.y13b{bottom:638.813333pt;}
.yfa{bottom:649.373333pt;}
.y13a{bottom:650.973333pt;}
.y97{bottom:651.293333pt;}
.y5e{bottom:653.053333pt;}
.yd4{bottom:654.493333pt;}
.yf9{bottom:668.253333pt;}
.y139{bottom:668.573333pt;}
.y5d{bottom:670.653333pt;}
.yd3{bottom:679.133333pt;}
.y138{bottom:680.893333pt;}
.y5c{bottom:688.413333pt;}
.y96{bottom:696.413333pt;}
.y137{bottom:698.493333pt;}
.yd1{bottom:703.773333pt;}
.y5b{bottom:706.013333pt;}
.y136{bottom:710.653333pt;}
.y95{bottom:713.693333pt;}
.y135{bottom:722.973333pt;}
.y5a{bottom:723.613333pt;}
.ycd{bottom:729.053333pt;}
.y94{bottom:731.613333pt;}
.y16{bottom:738.173333pt;}
.y134{bottom:740.573333pt;}
.y59{bottom:741.213333pt;}
.y93{bottom:749.213333pt;}
.y133{bottom:752.893333pt;}
.y15{bottom:755.133333pt;}
.y58{bottom:758.493333pt;}
.yc4{bottom:758.813333pt;}
.y132{bottom:765.053333pt;}
.y14{bottom:766.493333pt;}
.y92{bottom:766.813333pt;}
.y57{bottom:776.253333pt;}
.yc3{bottom:776.573333pt;}
.y13{bottom:777.373333pt;}
.y131{bottom:782.653333pt;}
.y91{bottom:784.573333pt;}
.y12{bottom:789.693333pt;}
.y56{bottom:794.173333pt;}
.y130{bottom:794.973333pt;}
.y11{bottom:802.053333pt;}
.y90{bottom:802.213333pt;}
.y10{bottom:809.573333pt;}
.y55{bottom:811.813333pt;}
.y12f{bottom:812.613333pt;}
.y8f{bottom:819.813333pt;}
.yf{bottom:820.933333pt;}
.y12e{bottom:824.933333pt;}
.y54{bottom:829.413333pt;}
.y8e{bottom:837.413333pt;}
.ye{bottom:841.093333pt;}
.y12d{bottom:842.533333pt;}
.yf8{bottom:846.693333pt;}
.y53{bottom:847.013333pt;}
.y12c{bottom:854.693333pt;}
.y8d{bottom:855.013333pt;}
.yd{bottom:861.253333pt;}
.y52{bottom:864.453333pt;}
.yc2{bottom:864.773333pt;}
.y12b{bottom:872.293333pt;}
.y8c{bottom:872.773333pt;}
.yc{bottom:880.293333pt;}
.y51{bottom:882.053333pt;}
.yf7{bottom:882.373333pt;}
.y12a{bottom:884.613333pt;}
.y8b{bottom:890.373333pt;}
.y129{bottom:896.933333pt;}
.y50{bottom:899.653333pt;}
.yf6{bottom:899.973333pt;}
.y8a{bottom:907.653333pt;}
.ycc{bottom:907.973333pt;}
.yb{bottom:914.053333pt;}
.y128{bottom:914.533333pt;}
.y4f{bottom:917.573333pt;}
.y89{bottom:925.253333pt;}
.ycb{bottom:925.573333pt;}
.y127{bottom:932.133333pt;}
.y4e{bottom:935.173333pt;}
.y88{bottom:943.173333pt;}
.y126{bottom:944.293333pt;}
.ya{bottom:947.813333pt;}
.y4d{bottom:952.933333pt;}
.y87{bottom:960.933333pt;}
.y125{bottom:961.893333pt;}
.y4c{bottom:970.533333pt;}
.y124{bottom:974.213333pt;}
.y9{bottom:977.893333pt;}
.y86{bottom:978.533333pt;}
.y4b{bottom:988.133333pt;}
.y43{bottom:988.293333pt;}
.y123{bottom:991.813333pt;}
.y8{bottom:992.933333pt;}
.y85{bottom:996.133333pt;}
.y122{bottom:1004.133333pt;}
.yc1{bottom:1005.413333pt;}
.y4a{bottom:1005.733333pt;}
.y84{bottom:1013.733333pt;}
.y121{bottom:1021.760000pt;}
.yc0{bottom:1023.040000pt;}
.y49{bottom:1023.360000pt;}
.y7{bottom:1026.560000pt;}
.y83{bottom:1031.360000pt;}
.y120{bottom:1033.920000pt;}
.y6{bottom:1036.800000pt;}
.y47{bottom:1039.520000pt;}
.y5{bottom:1044.480000pt;}
.y81{bottom:1047.520000pt;}
.y46{bottom:1056.640000pt;}
.y4{bottom:1061.920000pt;}
.y80{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.he{height:15.703125pt;}
.h10{height:16.125000pt;}
.h1d{height:18.226667pt;}
.h19{height:18.240000pt;}
.h1b{height:19.386667pt;}
.h1c{height:19.506667pt;}
.h1a{height:19.520000pt;}
.h1e{height:20.626667pt;}
.h21{height:24.480000pt;}
.h14{height:24.626667pt;}
.h23{height:24.640000pt;}
.hd{height:26.368125pt;}
.hc{height:27.090000pt;}
.h20{height:31.680000pt;}
.h3{height:36.431250pt;}
.h15{height:38.153511pt;}
.h17{height:38.413438pt;}
.h18{height:38.880000pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h22{height:44.941250pt;}
.h2{height:47.109375pt;}
.h8{height:48.375000pt;}
.h12{height:49.336420pt;}
.h13{height:52.134375pt;}
.h9{height:53.535000pt;}
.h24{height:57.787500pt;}
.h1f{height:58.238750pt;}
.hb{height:59.150000pt;}
.h11{height:59.340000pt;}
.h16{height:62.812500pt;}
.h5{height:64.500000pt;}
.ha{height:118.035000pt;}
.hf{height:275.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:48.960000pt;}
.wd{width:89.458667pt;}
.we{width:89.946667pt;}
.w3{width:90.426667pt;}
.wc{width:93.266667pt;}
.wb{width:93.632000pt;}
.wa{width:96.338667pt;}
.w8{width:110.266667pt;}
.w6{width:115.346667pt;}
.w7{width:116.338667pt;}
.w9{width:138.070667pt;}
.w4{width:206.266667pt;}
.w5{width:306.137333pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xc{left:-32.800000pt;}
.xb{left:-17.600000pt;}
.xa{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x2a{left:2.386667pt;}
.x29{left:4.306667pt;}
.x26{left:5.600000pt;}
.x12{left:7.190667pt;}
.x9{left:9.466667pt;}
.x27{left:11.066667pt;}
.x28{left:15.040000pt;}
.x2d{left:16.000000pt;}
.x2c{left:17.760000pt;}
.x2b{left:21.786667pt;}
.x8{left:23.866667pt;}
.x14{left:29.746667pt;}
.x15{left:32.466667pt;}
.x19{left:33.760000pt;}
.x7{left:37.786667pt;}
.x17{left:39.866667pt;}
.x1d{left:41.626667pt;}
.x1b{left:44.666667pt;}
.x1a{left:47.186667pt;}
.x1c{left:50.066667pt;}
.x6{left:52.186667pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.x1f{left:90.912000pt;}
.xd{left:96.032000pt;}
.x1e{left:100.512000pt;}
.x20{left:101.952000pt;}
.x2e{left:114.272000pt;}
.x2f{left:140.666667pt;}
.x21{left:210.120000pt;}
.x22{left:306.466667pt;}
.x10{left:319.746667pt;}
.xf{left:357.986667pt;}
.x13{left:378.186667pt;}
.x11{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x23{left:400.106667pt;}
.x16{left:493.546667pt;}
.xe{left:524.773333pt;}
.x24{left:582.693333pt;}
.x18{left:609.893333pt;}
.x4{left:641.733333pt;}
.x25{left:672.640000pt;}
}




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