
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b8db5bf6b95d5fc84f37bd9f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_45033fd6efca34e2c26e61e3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_c9f5222d3bf1cbc0e2331100.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_2cf198fedf251bd11d63f6ea.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2300009f33ed4a36f9145fa0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_b8547037b8bae68f46d0b01b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.266400px;}
.lsc{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.ls17{letter-spacing:-0.125400px;}
.lsd{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.067200px;}
.ls9{letter-spacing:-0.057000px;}
.ls11{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.048960px;}
.lse{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.074160px;}
.ls14{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1e{letter-spacing:0.098400px;}
.ls12{letter-spacing:0.116400px;}
.ls3{letter-spacing:0.134760px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.181200px;}
.ls13{letter-spacing:0.199200px;}
.ls19{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:47.726640px;}
.lsf{letter-spacing:63.566640px;}
.ls1b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.396600px;}
.ws7{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.wse{word-spacing:-13.407600px;}
.ws4{word-spacing:-13.399800px;}
.wsb{word-spacing:-13.342800px;}
.ws11{word-spacing:-13.324800px;}
.wsd{word-spacing:-13.300800px;}
.ws10{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws9{word-spacing:-13.211640px;}
.wsf{word-spacing:-13.101000px;}
.ws5{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._9{margin-left:-3.667801px;}
._8{margin-left:-2.524800px;}
._0{margin-left:-1.110000px;}
._2{width:1.041841px;}
._a{width:2.913600px;}
._7{width:4.208400px;}
._c{width:6.034203px;}
._b{width:7.135200px;}
._6{width:8.283601px;}
._5{width:9.318600px;}
._4{width:10.943880px;}
._3{width:12.024000px;}
._1{width:14.714892px;}
._f{width:16.061702px;}
._11{width:17.555040px;}
._12{width:18.676440px;}
._d{width:20.681400px;}
._e{width:21.703200px;}
._13{width:22.873440px;}
._10{width:23.927760px;}
._1d{width:25.097880px;}
._15{width:26.451480px;}
._14{width:27.474840px;}
._26{width:29.759400px;}
._17{width:36.973800px;}
._16{width:38.236320px;}
._1e{width:39.258360px;}
._1f{width:40.941960px;}
._19{width:45.029880px;}
._18{width:46.112040px;}
._27{width:53.350200px;}
._25{width:78.585720px;}
._24{width:79.987440px;}
._1a{width:85.550760px;}
._1c{width:86.762040px;}
._22{width:109.117800px;}
._23{width:110.280840px;}
._20{width:122.103720px;}
._21{width:123.108000px;}
._1b{width:137.133720px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y7a{bottom:111.720000px;}
.yd2{bottom:112.170000px;}
.ya5{bottom:115.680000px;}
.yf4{bottom:119.910000px;}
.y145{bottom:123.150000px;}
.y11d{bottom:128.910000px;}
.y79{bottom:129.270000px;}
.yd1{bottom:129.720000px;}
.yf3{bottom:137.460000px;}
.y27{bottom:139.800000px;}
.y181{bottom:143.580000px;}
.y11c{bottom:146.460000px;}
.yd0{bottom:147.270000px;}
.y144{bottom:149.700000px;}
.ya4{bottom:151.320000px;}
.y169{bottom:152.130000px;}
.yf2{bottom:155.100000px;}
.y26{bottom:157.350000px;}
.y180{bottom:161.130000px;}
.y58{bottom:162.030000px;}
.y11b{bottom:164.100000px;}
.y78{bottom:164.910000px;}
.y143{bottom:167.250000px;}
.y168{bottom:169.680000px;}
.yf1{bottom:172.650000px;}
.y25{bottom:174.990000px;}
.y57{bottom:179.580000px;}
.y77{bottom:182.460000px;}
.y142{bottom:184.890000px;}
.ya3{bottom:186.870000px;}
.y167{bottom:187.320000px;}
.y17f{bottom:187.680000px;}
.y56{bottom:197.130000px;}
.yf0{bottom:199.200000px;}
.y11a{bottom:199.650000px;}
.y76{bottom:200.100000px;}
.ycf{bottom:200.460000px;}
.y141{bottom:202.440000px;}
.ya2{bottom:204.510000px;}
.y17e{bottom:205.320000px;}
.y24{bottom:210.540000px;}
.y166{bottom:213.870000px;}
.y55{bottom:214.770000px;}
.y119{bottom:217.200000px;}
.y75{bottom:217.650000px;}
.yce{bottom:218.100000px;}
.ya1{bottom:222.060000px;}
.y23{bottom:228.090000px;}
.y140{bottom:229.080000px;}
.y165{bottom:231.510000px;}
.y17d{bottom:231.870000px;}
.y54{bottom:232.320000px;}
.yef{bottom:234.840000px;}
.y74{bottom:235.200000px;}
.ycd{bottom:235.650000px;}
.ya0{bottom:239.610000px;}
.y22{bottom:245.730000px;}
.y13f{bottom:246.630000px;}
.y164{bottom:249.060000px;}
.y17c{bottom:249.510000px;}
.yee{bottom:252.390000px;}
.y95{bottom:252.840000px;}
.ycc{bottom:253.200000px;}
.y9f{bottom:257.250000px;}
.y21{bottom:263.280000px;}
.y13e{bottom:264.180000px;}
.y17b{bottom:267.060000px;}
.y53{bottom:267.960000px;}
.yed{bottom:269.940000px;}
.y73{bottom:270.840000px;}
.y9e{bottom:274.800000px;}
.y163{bottom:275.610000px;}
.y94{bottom:279.750000px;}
.y52{bottom:285.510000px;}
.y72{bottom:288.390000px;}
.y13d{bottom:290.820000px;}
.y9d{bottom:292.440000px;}
.y162{bottom:293.250000px;}
.y17a{bottom:293.610000px;}
.yec{bottom:296.580000px;}
.y20{bottom:298.920000px;}
.y51{bottom:303.060000px;}
.y118{bottom:305.580000px;}
.y71{bottom:305.940000px;}
.ycb{bottom:306.390000px;}
.y13c{bottom:308.370000px;}
.y9c{bottom:309.990000px;}
.y179{bottom:311.250000px;}
.y1f{bottom:316.470000px;}
.y161{bottom:319.800000px;}
.y50{bottom:320.700000px;}
.y117{bottom:323.130000px;}
.y70{bottom:323.580000px;}
.yca{bottom:323.940000px;}
.y93{bottom:327.990000px;}
.y178{bottom:328.800000px;}
.yeb{bottom:332.130000px;}
.y1e{bottom:334.020000px;}
.y13b{bottom:335.010000px;}
.y4f{bottom:338.250000px;}
.y116{bottom:340.770000px;}
.yc9{bottom:341.580000px;}
.y92{bottom:345.540000px;}
.y160{bottom:346.440000px;}
.yea{bottom:349.770000px;}
.y1d{bottom:351.660000px;}
.y13a{bottom:352.560000px;}
.y4e{bottom:355.800000px;}
.y115{bottom:358.320000px;}
.y6f{bottom:359.130000px;}
.y91{bottom:363.180000px;}
.y15f{bottom:363.990000px;}
.ye9{bottom:367.320000px;}
.y1c{bottom:369.210000px;}
.y177{bottom:372.990000px;}
.y114{bottom:375.870000px;}
.y6e{bottom:376.770000px;}
.y139{bottom:379.110000px;}
.y90{bottom:380.730000px;}
.y15e{bottom:381.540000px;}
.y4d{bottom:382.710000px;}
.ye8{bottom:384.870000px;}
.y1b{bottom:386.850000px;}
.y176{bottom:390.540000px;}
.y113{bottom:393.510000px;}
.y6d{bottom:394.320000px;}
.y138{bottom:396.750000px;}
.y8f{bottom:398.370000px;}
.y15d{bottom:408.180000px;}
.ye7{bottom:411.510000px;}
.y6c{bottom:411.870000px;}
.yc8{bottom:412.320000px;}
.y1a{bottom:413.760000px;}
.y137{bottom:414.300000px;}
.y9b{bottom:415.920000px;}
.y15c{bottom:425.730000px;}
.y112{bottom:429.060000px;}
.y6b{bottom:429.510000px;}
.yc7{bottom:429.870000px;}
.y4c{bottom:431.040000px;}
.y8e{bottom:433.920000px;}
.y175{bottom:434.730000px;}
.y136{bottom:440.940000px;}
.y15b{bottom:443.370000px;}
.y111{bottom:446.700000px;}
.ye6{bottom:447.060000px;}
.yc6{bottom:447.510000px;}
.y4b{bottom:448.590000px;}
.y8d{bottom:451.470000px;}
.y174{bottom:452.370000px;}
.y6a{bottom:456.420000px;}
.y135{bottom:458.490000px;}
.y15a{bottom:460.920000px;}
.y19{bottom:462.360000px;}
.y110{bottom:464.250000px;}
.ye5{bottom:464.700000px;}
.yc5{bottom:465.060000px;}
.y4a{bottom:466.230000px;}
.y8c{bottom:469.110000px;}
.y134{bottom:476.070000px;}
.y173{bottom:478.950000px;}
.y10f{bottom:481.830000px;}
.ye4{bottom:482.280000px;}
.y8b{bottom:486.690000px;}
.y159{bottom:487.500000px;}
.y172{bottom:496.500000px;}
.y18{bottom:499.380000px;}
.y10e{bottom:499.470000px;}
.yc4{bottom:500.730000px;}
.y49{bottom:501.810000px;}
.y133{bottom:502.710000px;}
.y9a{bottom:504.330000px;}
.y69{bottom:504.690000px;}
.y158{bottom:505.140000px;}
.ye3{bottom:508.830000px;}
.y171{bottom:514.140000px;}
.y17{bottom:516.930000px;}
.yc3{bottom:518.280000px;}
.y48{bottom:519.360000px;}
.y132{bottom:520.260000px;}
.y68{bottom:522.330000px;}
.y157{bottom:522.690000px;}
.y170{bottom:531.690000px;}
.y16{bottom:534.570000px;}
.y10d{bottom:535.020000px;}
.yc2{bottom:535.830000px;}
.y47{bottom:537.000000px;}
.y131{bottom:537.900000px;}
.y67{bottom:539.880000px;}
.ye2{bottom:544.470000px;}
.y156{bottom:549.330000px;}
.y15{bottom:552.120000px;}
.y10c{bottom:552.660000px;}
.yc1{bottom:553.470000px;}
.y130{bottom:555.450000px;}
.y66{bottom:557.430000px;}
.ye1{bottom:562.020000px;}
.y155{bottom:566.880000px;}
.y14{bottom:569.670000px;}
.y10b{bottom:570.210000px;}
.yc0{bottom:571.020000px;}
.y46{bottom:572.460000px;}
.y8a{bottom:575.070000px;}
.y16f{bottom:575.880000px;}
.ye0{bottom:579.660000px;}
.y12f{bottom:582.000000px;}
.y154{bottom:584.430000px;}
.y13{bottom:587.310000px;}
.y10a{bottom:587.760000px;}
.y45{bottom:590.910000px;}
.y99{bottom:592.620000px;}
.y65{bottom:593.070000px;}
.y16e{bottom:593.430000px;}
.ydf{bottom:597.210000px;}
.y12e{bottom:599.640000px;}
.y153{bottom:602.070000px;}
.y12{bottom:604.860000px;}
.y109{bottom:605.400000px;}
.ybf{bottom:606.660000px;}
.y44{bottom:609.360000px;}
.y64{bottom:610.620000px;}
.y16d{bottom:611.070000px;}
.y11{bottom:622.500000px;}
.yde{bottom:623.760000px;}
.ybe{bottom:624.210000px;}
.y12d{bottom:626.190000px;}
.y43{bottom:627.810000px;}
.y63{bottom:628.260000px;}
.y152{bottom:628.620000px;}
.y108{bottom:632.310000px;}
.y10{bottom:640.050000px;}
.ybd{bottom:641.760000px;}
.y12c{bottom:643.830000px;}
.y89{bottom:645.810000px;}
.y151{bottom:646.260000px;}
.y16c{bottom:655.260000px;}
.yf{bottom:657.600000px;}
.ybc{bottom:659.400000px;}
.y12b{bottom:661.380000px;}
.y88{bottom:663.360000px;}
.y62{bottom:663.810000px;}
.y42{bottom:664.260000px;}
.y16b{bottom:672.810000px;}
.ye{bottom:675.240000px;}
.ybb{bottom:676.950000px;}
.y107{bottom:680.550000px;}
.y87{bottom:681.000000px;}
.y61{bottom:681.360000px;}
.y41{bottom:681.810000px;}
.y12a{bottom:687.930000px;}
.y150{bottom:690.360000px;}
.yd{bottom:692.790000px;}
.ydd{bottom:694.590000px;}
.y106{bottom:698.190000px;}
.y98{bottom:698.550000px;}
.y60{bottom:699.000000px;}
.y40{bottom:699.360000px;}
.y129{bottom:705.570000px;}
.y14f{bottom:708.000000px;}
.yc{bottom:710.430000px;}
.ydc{bottom:712.140000px;}
.yba{bottom:712.590000px;}
.y105{bottom:715.740000px;}
.y5f{bottom:716.550000px;}
.y3f{bottom:717.000000px;}
.y128{bottom:723.120000px;}
.y14e{bottom:725.550000px;}
.yb{bottom:727.980000px;}
.yb9{bottom:730.140000px;}
.y86{bottom:734.190000px;}
.y3e{bottom:734.550000px;}
.ydb{bottom:738.690000px;}
.yb8{bottom:747.690000px;}
.y127{bottom:749.670000px;}
.y104{bottom:751.290000px;}
.y85{bottom:751.740000px;}
.y3d{bottom:752.190000px;}
.ya{bottom:754.890000px;}
.yb7{bottom:765.330000px;}
.y126{bottom:767.310000px;}
.y103{bottom:768.930000px;}
.y84{bottom:769.290000px;}
.y3c{bottom:769.740000px;}
.yda{bottom:774.330000px;}
.yb6{bottom:782.880000px;}
.y125{bottom:784.860000px;}
.y102{bottom:786.480000px;}
.y83{bottom:786.930000px;}
.y3b{bottom:787.290000px;}
.yd9{bottom:791.880000px;}
.y16a{bottom:796.290000px;}
.yb5{bottom:800.520000px;}
.y9{bottom:803.130000px;}
.y101{bottom:804.030000px;}
.y5e{bottom:804.930000px;}
.yd8{bottom:809.520000px;}
.y124{bottom:811.500000px;}
.y14d{bottom:813.930000px;}
.y100{bottom:821.670000px;}
.y82{bottom:822.480000px;}
.y3a{bottom:822.930000px;}
.yd7{bottom:827.070000px;}
.y123{bottom:829.050000px;}
.y14c{bottom:831.480000px;}
.yb4{bottom:836.070000px;}
.y8{bottom:838.950000px;}
.y81{bottom:840.030000px;}
.y39{bottom:840.480000px;}
.yd6{bottom:844.620000px;}
.y122{bottom:846.600000px;}
.yff{bottom:848.220000px;}
.y14b{bottom:849.030000px;}
.yb3{bottom:853.620000px;}
.y80{bottom:857.670000px;}
.y38{bottom:858.030000px;}
.y14a{bottom:866.670000px;}
.yb2{bottom:871.260000px;}
.y121{bottom:873.510000px;}
.y7{bottom:874.950000px;}
.y7f{bottom:875.220000px;}
.y37{bottom:875.670000px;}
.yfe{bottom:883.860000px;}
.yb1{bottom:888.810000px;}
.y36{bottom:893.220000px;}
.yfd{bottom:901.410000px;}
.yb0{bottom:906.450000px;}
.yd5{bottom:906.810000px;}
.y35{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.yfc{bottom:918.960000px;}
.y120{bottom:921.840000px;}
.yd4{bottom:924.450000px;}
.y7e{bottom:928.410000px;}
.y5d{bottom:928.860000px;}
.y182{bottom:937.410000px;}
.yaf{bottom:942.000000px;}
.yfb{bottom:945.600000px;}
.y7d{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y11f{bottom:948.750000px;}
.y149{bottom:954.960000px;}
.yae{bottom:959.550000px;}
.y7c{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.y148{bottom:972.600000px;}
.yad{bottom:977.190000px;}
.y97{bottom:981.150000px;}
.y32{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y11e{bottom:986.100000px;}
.yd3{bottom:986.460000px;}
.y147{bottom:990.150000px;}
.yac{bottom:994.740000px;}
.yfa{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.y3{bottom:1010.070000px;}
.yab{bottom:1012.320000px;}
.yf9{bottom:1016.370000px;}
.y30{bottom:1016.820000px;}
.y5c{bottom:1017.180000px;}
.y2f{bottom:1034.370000px;}
.y5b{bottom:1034.820000px;}
.yf8{bottom:1042.920000px;}
.yaa{bottom:1047.960000px;}
.y2e{bottom:1051.920000px;}
.y5a{bottom:1052.370000px;}
.y146{bottom:1060.920000px;}
.ya9{bottom:1065.510000px;}
.y7b{bottom:1069.560000px;}
.y59{bottom:1069.920000px;}
.yf7{bottom:1078.560000px;}
.ya8{bottom:1083.150000px;}
.y96{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.yf6{bottom:1096.110000px;}
.ya7{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.yf5{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.ya6{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.ha{height:61.793886px;}
.hc{height:62.585859px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x5{left:111.239987px;}
.x2{left:211.079987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.236800pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls17{letter-spacing:-0.111467pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.059733pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls11{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.065920pt;}
.ls14{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1e{letter-spacing:0.087467pt;}
.ls12{letter-spacing:0.103467pt;}
.ls3{letter-spacing:0.119787pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.161067pt;}
.ls13{letter-spacing:0.177067pt;}
.ls19{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:42.423680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.352533pt;}
.ws7{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.wse{word-spacing:-11.917867pt;}
.ws4{word-spacing:-11.910933pt;}
.wsb{word-spacing:-11.860267pt;}
.ws11{word-spacing:-11.844267pt;}
.wsd{word-spacing:-11.822933pt;}
.ws10{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws9{word-spacing:-11.743680pt;}
.wsf{word-spacing:-11.645333pt;}
.ws5{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._9{margin-left:-3.260268pt;}
._8{margin-left:-2.244266pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.926081pt;}
._a{width:2.589867pt;}
._7{width:3.740800pt;}
._c{width:5.363736pt;}
._b{width:6.342400pt;}
._6{width:7.363201pt;}
._5{width:8.283200pt;}
._4{width:9.727894pt;}
._3{width:10.688000pt;}
._1{width:13.079904pt;}
._f{width:14.277068pt;}
._11{width:15.604480pt;}
._12{width:16.601280pt;}
._d{width:18.383467pt;}
._e{width:19.291733pt;}
._13{width:20.331947pt;}
._10{width:21.269120pt;}
._1d{width:22.309227pt;}
._15{width:23.512427pt;}
._14{width:24.422080pt;}
._26{width:26.452800pt;}
._17{width:32.865600pt;}
._16{width:33.987840pt;}
._1e{width:34.896320pt;}
._1f{width:36.392853pt;}
._19{width:40.026560pt;}
._18{width:40.988480pt;}
._27{width:47.422400pt;}
._25{width:69.853973pt;}
._24{width:71.099947pt;}
._1a{width:76.045120pt;}
._1c{width:77.121813pt;}
._22{width:96.993600pt;}
._23{width:98.027413pt;}
._20{width:108.536640pt;}
._21{width:109.429333pt;}
._1b{width:121.896640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y7a{bottom:99.306667pt;}
.yd2{bottom:99.706667pt;}
.ya5{bottom:102.826667pt;}
.yf4{bottom:106.586667pt;}
.y145{bottom:109.466667pt;}
.y11d{bottom:114.586667pt;}
.y79{bottom:114.906667pt;}
.yd1{bottom:115.306667pt;}
.yf3{bottom:122.186667pt;}
.y27{bottom:124.266667pt;}
.y181{bottom:127.626667pt;}
.y11c{bottom:130.186667pt;}
.yd0{bottom:130.906667pt;}
.y144{bottom:133.066667pt;}
.ya4{bottom:134.506667pt;}
.y169{bottom:135.226667pt;}
.yf2{bottom:137.866667pt;}
.y26{bottom:139.866667pt;}
.y180{bottom:143.226667pt;}
.y58{bottom:144.026667pt;}
.y11b{bottom:145.866667pt;}
.y78{bottom:146.586667pt;}
.y143{bottom:148.666667pt;}
.y168{bottom:150.826667pt;}
.yf1{bottom:153.466667pt;}
.y25{bottom:155.546667pt;}
.y57{bottom:159.626667pt;}
.y77{bottom:162.186667pt;}
.y142{bottom:164.346667pt;}
.ya3{bottom:166.106667pt;}
.y167{bottom:166.506667pt;}
.y17f{bottom:166.826667pt;}
.y56{bottom:175.226667pt;}
.yf0{bottom:177.066667pt;}
.y11a{bottom:177.466667pt;}
.y76{bottom:177.866667pt;}
.ycf{bottom:178.186667pt;}
.y141{bottom:179.946667pt;}
.ya2{bottom:181.786667pt;}
.y17e{bottom:182.506667pt;}
.y24{bottom:187.146667pt;}
.y166{bottom:190.106667pt;}
.y55{bottom:190.906667pt;}
.y119{bottom:193.066667pt;}
.y75{bottom:193.466667pt;}
.yce{bottom:193.866667pt;}
.ya1{bottom:197.386667pt;}
.y23{bottom:202.746667pt;}
.y140{bottom:203.626667pt;}
.y165{bottom:205.786667pt;}
.y17d{bottom:206.106667pt;}
.y54{bottom:206.506667pt;}
.yef{bottom:208.746667pt;}
.y74{bottom:209.066667pt;}
.ycd{bottom:209.466667pt;}
.ya0{bottom:212.986667pt;}
.y22{bottom:218.426667pt;}
.y13f{bottom:219.226667pt;}
.y164{bottom:221.386667pt;}
.y17c{bottom:221.786667pt;}
.yee{bottom:224.346667pt;}
.y95{bottom:224.746667pt;}
.ycc{bottom:225.066667pt;}
.y9f{bottom:228.666667pt;}
.y21{bottom:234.026667pt;}
.y13e{bottom:234.826667pt;}
.y17b{bottom:237.386667pt;}
.y53{bottom:238.186667pt;}
.yed{bottom:239.946667pt;}
.y73{bottom:240.746667pt;}
.y9e{bottom:244.266667pt;}
.y163{bottom:244.986667pt;}
.y94{bottom:248.666667pt;}
.y52{bottom:253.786667pt;}
.y72{bottom:256.346667pt;}
.y13d{bottom:258.506667pt;}
.y9d{bottom:259.946667pt;}
.y162{bottom:260.666667pt;}
.y17a{bottom:260.986667pt;}
.yec{bottom:263.626667pt;}
.y20{bottom:265.706667pt;}
.y51{bottom:269.386667pt;}
.y118{bottom:271.626667pt;}
.y71{bottom:271.946667pt;}
.ycb{bottom:272.346667pt;}
.y13c{bottom:274.106667pt;}
.y9c{bottom:275.546667pt;}
.y179{bottom:276.666667pt;}
.y1f{bottom:281.306667pt;}
.y161{bottom:284.266667pt;}
.y50{bottom:285.066667pt;}
.y117{bottom:287.226667pt;}
.y70{bottom:287.626667pt;}
.yca{bottom:287.946667pt;}
.y93{bottom:291.546667pt;}
.y178{bottom:292.266667pt;}
.yeb{bottom:295.226667pt;}
.y1e{bottom:296.906667pt;}
.y13b{bottom:297.786667pt;}
.y4f{bottom:300.666667pt;}
.y116{bottom:302.906667pt;}
.yc9{bottom:303.626667pt;}
.y92{bottom:307.146667pt;}
.y160{bottom:307.946667pt;}
.yea{bottom:310.906667pt;}
.y1d{bottom:312.586667pt;}
.y13a{bottom:313.386667pt;}
.y4e{bottom:316.266667pt;}
.y115{bottom:318.506667pt;}
.y6f{bottom:319.226667pt;}
.y91{bottom:322.826667pt;}
.y15f{bottom:323.546667pt;}
.ye9{bottom:326.506667pt;}
.y1c{bottom:328.186667pt;}
.y177{bottom:331.546667pt;}
.y114{bottom:334.106667pt;}
.y6e{bottom:334.906667pt;}
.y139{bottom:336.986667pt;}
.y90{bottom:338.426667pt;}
.y15e{bottom:339.146667pt;}
.y4d{bottom:340.186667pt;}
.ye8{bottom:342.106667pt;}
.y1b{bottom:343.866667pt;}
.y176{bottom:347.146667pt;}
.y113{bottom:349.786667pt;}
.y6d{bottom:350.506667pt;}
.y138{bottom:352.666667pt;}
.y8f{bottom:354.106667pt;}
.y15d{bottom:362.826667pt;}
.ye7{bottom:365.786667pt;}
.y6c{bottom:366.106667pt;}
.yc8{bottom:366.506667pt;}
.y1a{bottom:367.786667pt;}
.y137{bottom:368.266667pt;}
.y9b{bottom:369.706667pt;}
.y15c{bottom:378.426667pt;}
.y112{bottom:381.386667pt;}
.y6b{bottom:381.786667pt;}
.yc7{bottom:382.106667pt;}
.y4c{bottom:383.146667pt;}
.y8e{bottom:385.706667pt;}
.y175{bottom:386.426667pt;}
.y136{bottom:391.946667pt;}
.y15b{bottom:394.106667pt;}
.y111{bottom:397.066667pt;}
.ye6{bottom:397.386667pt;}
.yc6{bottom:397.786667pt;}
.y4b{bottom:398.746667pt;}
.y8d{bottom:401.306667pt;}
.y174{bottom:402.106667pt;}
.y6a{bottom:405.706667pt;}
.y135{bottom:407.546667pt;}
.y15a{bottom:409.706667pt;}
.y19{bottom:410.986667pt;}
.y110{bottom:412.666667pt;}
.ye5{bottom:413.066667pt;}
.yc5{bottom:413.386667pt;}
.y4a{bottom:414.426667pt;}
.y8c{bottom:416.986667pt;}
.y134{bottom:423.173333pt;}
.y173{bottom:425.733333pt;}
.y10f{bottom:428.293333pt;}
.ye4{bottom:428.693333pt;}
.y8b{bottom:432.613333pt;}
.y159{bottom:433.333333pt;}
.y172{bottom:441.333333pt;}
.y18{bottom:443.893333pt;}
.y10e{bottom:443.973333pt;}
.yc4{bottom:445.093333pt;}
.y49{bottom:446.053333pt;}
.y133{bottom:446.853333pt;}
.y9a{bottom:448.293333pt;}
.y69{bottom:448.613333pt;}
.y158{bottom:449.013333pt;}
.ye3{bottom:452.293333pt;}
.y171{bottom:457.013333pt;}
.y17{bottom:459.493333pt;}
.yc3{bottom:460.693333pt;}
.y48{bottom:461.653333pt;}
.y132{bottom:462.453333pt;}
.y68{bottom:464.293333pt;}
.y157{bottom:464.613333pt;}
.y170{bottom:472.613333pt;}
.y16{bottom:475.173333pt;}
.y10d{bottom:475.573333pt;}
.yc2{bottom:476.293333pt;}
.y47{bottom:477.333333pt;}
.y131{bottom:478.133333pt;}
.y67{bottom:479.893333pt;}
.ye2{bottom:483.973333pt;}
.y156{bottom:488.293333pt;}
.y15{bottom:490.773333pt;}
.y10c{bottom:491.253333pt;}
.yc1{bottom:491.973333pt;}
.y130{bottom:493.733333pt;}
.y66{bottom:495.493333pt;}
.ye1{bottom:499.573333pt;}
.y155{bottom:503.893333pt;}
.y14{bottom:506.373333pt;}
.y10b{bottom:506.853333pt;}
.yc0{bottom:507.573333pt;}
.y46{bottom:508.853333pt;}
.y8a{bottom:511.173333pt;}
.y16f{bottom:511.893333pt;}
.ye0{bottom:515.253333pt;}
.y12f{bottom:517.333333pt;}
.y154{bottom:519.493333pt;}
.y13{bottom:522.053333pt;}
.y10a{bottom:522.453333pt;}
.y45{bottom:525.253333pt;}
.y99{bottom:526.773333pt;}
.y65{bottom:527.173333pt;}
.y16e{bottom:527.493333pt;}
.ydf{bottom:530.853333pt;}
.y12e{bottom:533.013333pt;}
.y153{bottom:535.173333pt;}
.y12{bottom:537.653333pt;}
.y109{bottom:538.133333pt;}
.ybf{bottom:539.253333pt;}
.y44{bottom:541.653333pt;}
.y64{bottom:542.773333pt;}
.y16d{bottom:543.173333pt;}
.y11{bottom:553.333333pt;}
.yde{bottom:554.453333pt;}
.ybe{bottom:554.853333pt;}
.y12d{bottom:556.613333pt;}
.y43{bottom:558.053333pt;}
.y63{bottom:558.453333pt;}
.y152{bottom:558.773333pt;}
.y108{bottom:562.053333pt;}
.y10{bottom:568.933333pt;}
.ybd{bottom:570.453333pt;}
.y12c{bottom:572.293333pt;}
.y89{bottom:574.053333pt;}
.y151{bottom:574.453333pt;}
.y16c{bottom:582.453333pt;}
.yf{bottom:584.533333pt;}
.ybc{bottom:586.133333pt;}
.y12b{bottom:587.893333pt;}
.y88{bottom:589.653333pt;}
.y62{bottom:590.053333pt;}
.y42{bottom:590.453333pt;}
.y16b{bottom:598.053333pt;}
.ye{bottom:600.213333pt;}
.ybb{bottom:601.733333pt;}
.y107{bottom:604.933333pt;}
.y87{bottom:605.333333pt;}
.y61{bottom:605.653333pt;}
.y41{bottom:606.053333pt;}
.y12a{bottom:611.493333pt;}
.y150{bottom:613.653333pt;}
.yd{bottom:615.813333pt;}
.ydd{bottom:617.413333pt;}
.y106{bottom:620.613333pt;}
.y98{bottom:620.933333pt;}
.y60{bottom:621.333333pt;}
.y40{bottom:621.653333pt;}
.y129{bottom:627.173333pt;}
.y14f{bottom:629.333333pt;}
.yc{bottom:631.493333pt;}
.ydc{bottom:633.013333pt;}
.yba{bottom:633.413333pt;}
.y105{bottom:636.213333pt;}
.y5f{bottom:636.933333pt;}
.y3f{bottom:637.333333pt;}
.y128{bottom:642.773333pt;}
.y14e{bottom:644.933333pt;}
.yb{bottom:647.093333pt;}
.yb9{bottom:649.013333pt;}
.y86{bottom:652.613333pt;}
.y3e{bottom:652.933333pt;}
.ydb{bottom:656.613333pt;}
.yb8{bottom:664.613333pt;}
.y127{bottom:666.373333pt;}
.y104{bottom:667.813333pt;}
.y85{bottom:668.213333pt;}
.y3d{bottom:668.613333pt;}
.ya{bottom:671.013333pt;}
.yb7{bottom:680.293333pt;}
.y126{bottom:682.053333pt;}
.y103{bottom:683.493333pt;}
.y84{bottom:683.813333pt;}
.y3c{bottom:684.213333pt;}
.yda{bottom:688.293333pt;}
.yb6{bottom:695.893333pt;}
.y125{bottom:697.653333pt;}
.y102{bottom:699.093333pt;}
.y83{bottom:699.493333pt;}
.y3b{bottom:699.813333pt;}
.yd9{bottom:703.893333pt;}
.y16a{bottom:707.813333pt;}
.yb5{bottom:711.573333pt;}
.y9{bottom:713.893333pt;}
.y101{bottom:714.693333pt;}
.y5e{bottom:715.493333pt;}
.yd8{bottom:719.573333pt;}
.y124{bottom:721.333333pt;}
.y14d{bottom:723.493333pt;}
.y100{bottom:730.373333pt;}
.y82{bottom:731.093333pt;}
.y3a{bottom:731.493333pt;}
.yd7{bottom:735.173333pt;}
.y123{bottom:736.933333pt;}
.y14c{bottom:739.093333pt;}
.yb4{bottom:743.173333pt;}
.y8{bottom:745.733333pt;}
.y81{bottom:746.693333pt;}
.y39{bottom:747.093333pt;}
.yd6{bottom:750.773333pt;}
.y122{bottom:752.533333pt;}
.yff{bottom:753.973333pt;}
.y14b{bottom:754.693333pt;}
.yb3{bottom:758.773333pt;}
.y80{bottom:762.373333pt;}
.y38{bottom:762.693333pt;}
.y14a{bottom:770.373333pt;}
.yb2{bottom:774.453333pt;}
.y121{bottom:776.453333pt;}
.y7{bottom:777.733333pt;}
.y7f{bottom:777.973333pt;}
.y37{bottom:778.373333pt;}
.yfe{bottom:785.653333pt;}
.yb1{bottom:790.053333pt;}
.y36{bottom:793.973333pt;}
.yfd{bottom:801.253333pt;}
.yb0{bottom:805.733333pt;}
.yd5{bottom:806.053333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.yfc{bottom:816.853333pt;}
.y120{bottom:819.413333pt;}
.yd4{bottom:821.733333pt;}
.y7e{bottom:825.253333pt;}
.y5d{bottom:825.653333pt;}
.y182{bottom:833.253333pt;}
.yaf{bottom:837.333333pt;}
.yfb{bottom:840.533333pt;}
.y7d{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y11f{bottom:843.333333pt;}
.y149{bottom:848.853333pt;}
.yae{bottom:852.933333pt;}
.y7c{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.y148{bottom:864.533333pt;}
.yad{bottom:868.613333pt;}
.y97{bottom:872.133333pt;}
.y32{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y11e{bottom:876.533333pt;}
.yd3{bottom:876.853333pt;}
.y147{bottom:880.133333pt;}
.yac{bottom:884.213333pt;}
.yfa{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.y3{bottom:897.840000pt;}
.yab{bottom:899.840000pt;}
.yf9{bottom:903.440000pt;}
.y30{bottom:903.840000pt;}
.y5c{bottom:904.160000pt;}
.y2f{bottom:919.440000pt;}
.y5b{bottom:919.840000pt;}
.yf8{bottom:927.040000pt;}
.yaa{bottom:931.520000pt;}
.y2e{bottom:935.040000pt;}
.y5a{bottom:935.440000pt;}
.y146{bottom:943.040000pt;}
.ya9{bottom:947.120000pt;}
.y7b{bottom:950.720000pt;}
.y59{bottom:951.040000pt;}
.yf7{bottom:958.720000pt;}
.ya8{bottom:962.800000pt;}
.y96{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.yf6{bottom:974.320000pt;}
.ya7{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.yf5{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.ya6{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.ha{height:54.927899pt;}
.hc{height:55.631875pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x5{left:98.879988pt;}
.x2{left:187.626655pt;}
.x3{left:711.413322pt;}
}




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