
    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_4e72104da8fcb4a91ac4cb7c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.040039;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_2cd201f3d3e4b9aa45ead7ed.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_63b7e3d38667196f29048b8d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7f18c4806e7fe9cfcf499aa3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5dede9592775f8331705f77f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_3b39d7a3b16dbb51cbf7b7dc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ef2d55e2bdf0c9cfb96bac34.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a5b8ce3559ab63d47bf79586.woff')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_bb848c9ea4334181f7592226.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-12.780000px;}
.lsa{letter-spacing:-0.942000px;}
.lsb{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.226200px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.269400px;}
.ls9{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.334080px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:13.860000px;}
.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;}
}
.ws2{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.824000px;}
.ws9{word-spacing:-13.608000px;}
.ws1{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.140000px;}
.ws5{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.118000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-10.213800px;}
.ws0{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.080000px;}
._1{width:1.195920px;}
._5{width:3.024000px;}
._a{width:4.320000px;}
._10{width:5.724000px;}
._e{width:7.020000px;}
._8{width:8.694000px;}
._7{width:9.882000px;}
._6{width:11.448000px;}
._b{width:13.196160px;}
._2{width:14.546160px;}
._9{width:16.184160px;}
._4{width:17.280000px;}
._3{width:18.414000px;}
._1d{width:19.486080px;}
._15{width:20.628000px;}
._16{width:21.708000px;}
._12{width:23.652000px;}
._11{width:24.948000px;}
._1a{width:26.136000px;}
._1c{width:27.972000px;}
._14{width:29.052000px;}
._19{width:30.186000px;}
._1b{width:31.212000px;}
._18{width:32.940000px;}
._d{width:34.398000px;}
._c{width:35.856000px;}
._f{width:37.638000px;}
._1e{width:38.988000px;}
._1f{width:40.932000px;}
._13{width:42.930000px;}
._20{width:47.952000px;}
._24{width:49.608000px;}
._23{width:55.404000px;}
._21{width:59.886000px;}
._22{width:65.934000px;}
._17{width:75.492000px;}
.fc4{color:transparent;}
.fc3{color:rgb(47,84,150);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(128,128,128);}
.fc1{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:56.920429px;}
.fs4{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.y3f{bottom:-3.960000px;}
.y7f{bottom:-3.420000px;}
.y0{bottom:0.000000px;}
.y26{bottom:2.340000px;}
.y21{bottom:2.880000px;}
.yd{bottom:3.780000px;}
.y80{bottom:3.960000px;}
.y3c{bottom:5.220000px;}
.ybc{bottom:5.400000px;}
.y7b{bottom:6.120000px;}
.y7c{bottom:6.480000px;}
.y25{bottom:14.400000px;}
.y20{bottom:18.360000px;}
.y4{bottom:20.340000px;}
.y1f{bottom:34.020000px;}
.y24{bottom:35.460000px;}
.y40{bottom:43.560000px;}
.y23{bottom:47.520000px;}
.y1e{bottom:49.500000px;}
.y3{bottom:53.640000px;}
.y1d{bottom:64.980000px;}
.y3e{bottom:69.840000px;}
.y7e{bottom:72.000000px;}
.y3a{bottom:78.840000px;}
.y1c{bottom:80.460000px;}
.y79{bottom:86.400000px;}
.yf6{bottom:93.060000px;}
.y39{bottom:93.960000px;}
.y11e{bottom:95.400000px;}
.y1b{bottom:96.120000px;}
.yba{bottom:97.200000px;}
.y38{bottom:99.180000px;}
.y78{bottom:101.880000px;}
.yf5{bottom:108.540000px;}
.y11d{bottom:110.880000px;}
.y1a{bottom:111.630000px;}
.yb9{bottom:112.680000px;}
.y77{bottom:117.360000px;}
.yf4{bottom:124.020000px;}
.y11c{bottom:126.540000px;}
.y37{bottom:126.720000px;}
.y19{bottom:127.110000px;}
.yb8{bottom:128.160000px;}
.y76{bottom:132.840000px;}
.yf3{bottom:139.500000px;}
.y11b{bottom:142.020000px;}
.y18{bottom:142.590000px;}
.yb7{bottom:143.640000px;}
.y75{bottom:148.500000px;}
.yf2{bottom:155.160000px;}
.y36{bottom:155.700000px;}
.y11a{bottom:157.500000px;}
.y17{bottom:158.250000px;}
.yb6{bottom:159.300000px;}
.y74{bottom:163.980000px;}
.yf1{bottom:170.640000px;}
.y35{bottom:172.800000px;}
.y119{bottom:172.980000px;}
.y16{bottom:173.730000px;}
.yb5{bottom:174.780000px;}
.y73{bottom:179.460000px;}
.y146{bottom:180.540000px;}
.yf0{bottom:186.120000px;}
.y118{bottom:188.640000px;}
.y15{bottom:189.210000px;}
.y34{bottom:190.080000px;}
.yb4{bottom:190.260000px;}
.y145{bottom:194.400000px;}
.y72{bottom:194.940000px;}
.yef{bottom:201.630000px;}
.y117{bottom:204.150000px;}
.y14{bottom:204.690000px;}
.yb3{bottom:205.770000px;}
.y33{bottom:207.390000px;}
.y144{bottom:208.290000px;}
.y71{bottom:210.630000px;}
.yee{bottom:217.290000px;}
.y116{bottom:219.630000px;}
.y13{bottom:220.350000px;}
.yb2{bottom:221.430000px;}
.y143{bottom:221.970000px;}
.y32{bottom:224.670000px;}
.y70{bottom:226.110000px;}
.yed{bottom:232.770000px;}
.y115{bottom:235.110000px;}
.y12{bottom:235.830000px;}
.yb1{bottom:236.910000px;}
.y6f{bottom:241.590000px;}
.y31{bottom:241.950000px;}
.yec{bottom:248.250000px;}
.y142{bottom:249.690000px;}
.y114{bottom:250.770000px;}
.y11{bottom:251.310000px;}
.yb0{bottom:252.390000px;}
.y6e{bottom:257.070000px;}
.y30{bottom:259.230000px;}
.y141{bottom:263.370000px;}
.yeb{bottom:263.730000px;}
.y113{bottom:266.250000px;}
.y10{bottom:266.790000px;}
.yaf{bottom:267.870000px;}
.y6d{bottom:272.730000px;}
.y2f{bottom:276.330000px;}
.y140{bottom:277.230000px;}
.yea{bottom:279.390000px;}
.y112{bottom:281.730000px;}
.yf{bottom:282.450000px;}
.yae{bottom:283.530000px;}
.y6c{bottom:288.210000px;}
.y13f{bottom:290.910000px;}
.y2e{bottom:293.610000px;}
.ye9{bottom:294.870000px;}
.y111{bottom:297.210000px;}
.yad{bottom:299.010000px;}
.y6b{bottom:303.690000px;}
.y13e{bottom:304.770000px;}
.ye8{bottom:310.350000px;}
.y2d{bottom:310.890000px;}
.y110{bottom:312.870000px;}
.yac{bottom:314.490000px;}
.y13d{bottom:318.630000px;}
.y6a{bottom:319.170000px;}
.ye7{bottom:325.830000px;}
.y2c{bottom:328.170000px;}
.y10f{bottom:328.350000px;}
.yab{bottom:329.970000px;}
.y13c{bottom:332.310000px;}
.y69{bottom:334.830000px;}
.ye6{bottom:341.490000px;}
.y10e{bottom:343.830000px;}
.y2b{bottom:345.450000px;}
.yaa{bottom:345.630000px;}
.y13b{bottom:346.170000px;}
.y68{bottom:350.310000px;}
.ye5{bottom:356.970000px;}
.y10d{bottom:359.310000px;}
.y13a{bottom:360.030000px;}
.ya9{bottom:361.110000px;}
.y2a{bottom:362.730000px;}
.y67{bottom:365.790000px;}
.ye4{bottom:372.450000px;}
.y139{bottom:373.710000px;}
.y10c{bottom:374.970000px;}
.ya8{bottom:376.590000px;}
.y29{bottom:379.830000px;}
.y66{bottom:381.270000px;}
.y138{bottom:387.570000px;}
.ye3{bottom:387.930000px;}
.y10b{bottom:390.450000px;}
.ya7{bottom:392.070000px;}
.y65{bottom:396.930000px;}
.y28{bottom:397.110000px;}
.y137{bottom:401.430000px;}
.ye2{bottom:403.635000px;}
.y10a{bottom:405.975000px;}
.ya6{bottom:407.775000px;}
.y64{bottom:412.455000px;}
.y27{bottom:415.155000px;}
.ye1{bottom:419.115000px;}
.y109{bottom:421.455000px;}
.ya5{bottom:423.255000px;}
.y63{bottom:427.935000px;}
.y136{bottom:429.015000px;}
.y22{bottom:434.235000px;}
.ye0{bottom:434.595000px;}
.y108{bottom:437.115000px;}
.ya4{bottom:438.735000px;}
.y135{bottom:442.875000px;}
.y62{bottom:443.415000px;}
.ydf{bottom:450.075000px;}
.y107{bottom:452.595000px;}
.ya3{bottom:454.215000px;}
.y134{bottom:456.555000px;}
.y61{bottom:458.895000px;}
.yde{bottom:465.735000px;}
.y106{bottom:468.075000px;}
.ya2{bottom:469.875000px;}
.y133{bottom:470.415000px;}
.y60{bottom:474.555000px;}
.ydd{bottom:481.215000px;}
.y105{bottom:483.555000px;}
.y132{bottom:484.275000px;}
.ya1{bottom:485.355000px;}
.y5f{bottom:490.035000px;}
.ye{bottom:496.695000px;}
.y131{bottom:497.955000px;}
.y104{bottom:499.035000px;}
.ya0{bottom:500.835000px;}
.y5e{bottom:505.515000px;}
.y130{bottom:511.815000px;}
.ydc{bottom:512.175000px;}
.y103{bottom:514.695000px;}
.y9f{bottom:516.315000px;}
.y5d{bottom:520.995000px;}
.y12f{bottom:525.675000px;}
.ydb{bottom:527.835000px;}
.y102{bottom:530.175000px;}
.y9e{bottom:531.975000px;}
.y5c{bottom:536.655000px;}
.y12e{bottom:539.355000px;}
.yda{bottom:543.315000px;}
.y101{bottom:545.655000px;}
.y9d{bottom:547.455000px;}
.y5b{bottom:552.135000px;}
.y12d{bottom:553.215000px;}
.yd9{bottom:558.795000px;}
.y100{bottom:561.135000px;}
.y9c{bottom:562.935000px;}
.y12c{bottom:567.075000px;}
.y5a{bottom:567.615000px;}
.yd8{bottom:574.275000px;}
.yff{bottom:576.795000px;}
.y9b{bottom:578.415000px;}
.y12b{bottom:580.755000px;}
.y59{bottom:583.095000px;}
.yd7{bottom:589.935000px;}
.yfe{bottom:592.275000px;}
.y9a{bottom:594.075000px;}
.y12a{bottom:594.615000px;}
.y58{bottom:598.755000px;}
.yd6{bottom:605.415000px;}
.yfd{bottom:607.785000px;}
.y129{bottom:608.505000px;}
.y99{bottom:609.585000px;}
.y57{bottom:614.265000px;}
.yd5{bottom:620.925000px;}
.y128{bottom:622.185000px;}
.yfc{bottom:623.265000px;}
.y98{bottom:625.065000px;}
.y56{bottom:629.745000px;}
.y127{bottom:636.045000px;}
.yd4{bottom:636.405000px;}
.yfb{bottom:638.925000px;}
.y97{bottom:640.545000px;}
.y55{bottom:645.225000px;}
.y126{bottom:649.905000px;}
.yd3{bottom:651.885000px;}
.yfa{bottom:654.405000px;}
.y96{bottom:656.025000px;}
.y54{bottom:660.885000px;}
.y125{bottom:663.585000px;}
.yd2{bottom:667.545000px;}
.yf9{bottom:669.885000px;}
.y95{bottom:671.685000px;}
.y53{bottom:676.365000px;}
.y124{bottom:677.445000px;}
.yd1{bottom:683.025000px;}
.yf8{bottom:685.365000px;}
.y94{bottom:687.165000px;}
.y123{bottom:691.305000px;}
.y52{bottom:691.845000px;}
.yd0{bottom:698.505000px;}
.yf7{bottom:701.205000px;}
.y93{bottom:702.645000px;}
.y122{bottom:704.985000px;}
.y51{bottom:707.325000px;}
.ycf{bottom:713.985000px;}
.y92{bottom:718.125000px;}
.y121{bottom:718.845000px;}
.y50{bottom:722.985000px;}
.yce{bottom:729.645000px;}
.y120{bottom:732.705000px;}
.y91{bottom:733.785000px;}
.y4f{bottom:738.465000px;}
.ycd{bottom:745.125000px;}
.y11f{bottom:746.385000px;}
.y90{bottom:749.265000px;}
.y4e{bottom:753.945000px;}
.ycc{bottom:760.605000px;}
.y8f{bottom:764.745000px;}
.y4d{bottom:769.425000px;}
.ycb{bottom:776.085000px;}
.y8e{bottom:780.225000px;}
.y4c{bottom:785.085000px;}
.yca{bottom:791.745000px;}
.yc{bottom:793.905000px;}
.y8d{bottom:795.885000px;}
.y4b{bottom:800.565000px;}
.yc9{bottom:807.225000px;}
.y8c{bottom:811.365000px;}
.y4a{bottom:816.090000px;}
.yb{bottom:818.070000px;}
.yc8{bottom:822.750000px;}
.y8b{bottom:826.890000px;}
.y49{bottom:831.570000px;}
.yc7{bottom:838.230000px;}
.ya{bottom:838.410000px;}
.y8a{bottom:842.370000px;}
.y48{bottom:847.230000px;}
.y9{bottom:848.130000px;}
.yc6{bottom:853.890000px;}
.y89{bottom:858.030000px;}
.y47{bottom:862.710000px;}
.y7{bottom:863.070000px;}
.yc5{bottom:869.370000px;}
.y8{bottom:869.910000px;}
.y88{bottom:873.510000px;}
.y46{bottom:878.190000px;}
.yc4{bottom:884.850000px;}
.y87{bottom:888.990000px;}
.y45{bottom:893.670000px;}
.y6{bottom:897.990000px;}
.yc3{bottom:900.330000px;}
.y86{bottom:904.470000px;}
.y44{bottom:909.330000px;}
.yc2{bottom:915.990000px;}
.y85{bottom:920.130000px;}
.y5{bottom:923.910000px;}
.y43{bottom:925.170000px;}
.yc1{bottom:931.470000px;}
.y84{bottom:935.610000px;}
.y42{bottom:942.270000px;}
.yc0{bottom:946.950000px;}
.y83{bottom:951.090000px;}
.y41{bottom:959.550000px;}
.ybf{bottom:962.430000px;}
.y82{bottom:966.570000px;}
.ybe{bottom:978.090000px;}
.y81{bottom:982.230000px;}
.y2{bottom:983.490000px;}
.y3d{bottom:994.110000px;}
.y3b{bottom:1008.870000px;}
.ybd{bottom:1011.210000px;}
.y7d{bottom:1014.450000px;}
.y1{bottom:1016.610000px;}
.y7a{bottom:1024.740000px;}
.ybb{bottom:1025.820000px;}
.h1a{height:8.640000px;}
.h1f{height:9.180000px;}
.h1b{height:15.480000px;}
.h20{height:17.640000px;}
.h19{height:17.856000px;}
.h21{height:18.000000px;}
.h1d{height:19.080000px;}
.hb{height:19.116000px;}
.h17{height:25.998047px;}
.h15{height:29.158594px;}
.h9{height:32.045625px;}
.h3{height:33.683203px;}
.h14{height:34.419375px;}
.h1e{height:36.344883px;}
.hf{height:36.571289px;}
.h11{height:37.494141px;}
.he{height:37.705078px;}
.h4{height:38.100586px;}
.h10{height:39.521899px;}
.h2{height:39.760312px;}
.h16{height:41.493516px;}
.h13{height:41.726953px;}
.h1c{height:42.164648px;}
.h18{height:43.156758px;}
.ha{height:44.507812px;}
.h8{height:45.024258px;}
.hc{height:46.736719px;}
.h7{height:50.273438px;}
.h12{height:60.300000px;}
.h5{height:63.500977px;}
.h6{height:67.120312px;}
.hd{height:295.050000px;}
.h1{height:1113.750000px;}
.h0{height:1114.020000px;}
.w4{width:174.810000px;}
.wb{width:345.855000px;}
.wa{width:355.965000px;}
.w9{width:358.995000px;}
.wd{width:359.355000px;}
.w8{width:360.105000px;}
.wc{width:360.465000px;}
.w5{width:524.490000px;}
.w6{width:699.300000px;}
.w7{width:701.820000px;}
.w3{width:816.479976px;}
.w2{width:816.479988px;}
.w0{width:816.480000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.xc{left:29.376000px;}
.x9{left:47.160000px;}
.x2{left:55.259988px;}
.x10{left:60.299988px;}
.xe{left:72.036000px;}
.x3{left:95.255988px;}
.xd{left:106.770000px;}
.xf{left:121.715988px;}
.x8{left:178.409988px;}
.xb{left:221.970000px;}
.x5{left:289.514988px;}
.x4{left:316.334988px;}
.x14{left:330.915000px;}
.x11{left:350.355000px;}
.x13{left:403.125000px;}
.x1{left:406.184988px;}
.x12{left:433.184988px;}
.x6{left:516.884976px;}
.x7{left:522.824988px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-11.360000pt;}
.lsa{letter-spacing:-0.837333pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.201067pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.239467pt;}
.ls9{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.296960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:12.320000pt;}
.ws2{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.288000pt;}
.ws9{word-spacing:-12.096000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws7{word-spacing:-9.882667pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-9.078933pt;}
.ws0{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.063040pt;}
._5{width:2.688000pt;}
._a{width:3.840000pt;}
._10{width:5.088000pt;}
._e{width:6.240000pt;}
._8{width:7.728000pt;}
._7{width:8.784000pt;}
._6{width:10.176000pt;}
._b{width:11.729920pt;}
._2{width:12.929920pt;}
._9{width:14.385920pt;}
._4{width:15.360000pt;}
._3{width:16.368000pt;}
._1d{width:17.320960pt;}
._15{width:18.336000pt;}
._16{width:19.296000pt;}
._12{width:21.024000pt;}
._11{width:22.176000pt;}
._1a{width:23.232000pt;}
._1c{width:24.864000pt;}
._14{width:25.824000pt;}
._19{width:26.832000pt;}
._1b{width:27.744000pt;}
._18{width:29.280000pt;}
._d{width:30.576000pt;}
._c{width:31.872000pt;}
._f{width:33.456000pt;}
._1e{width:34.656000pt;}
._1f{width:36.384000pt;}
._13{width:38.160000pt;}
._20{width:42.624000pt;}
._24{width:44.096000pt;}
._23{width:49.248000pt;}
._21{width:53.232000pt;}
._22{width:58.608000pt;}
._17{width:67.104000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:50.595937pt;}
.fs4{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.y3f{bottom:-3.520000pt;}
.y7f{bottom:-3.040000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:2.080000pt;}
.y21{bottom:2.560000pt;}
.yd{bottom:3.360000pt;}
.y80{bottom:3.520000pt;}
.y3c{bottom:4.640000pt;}
.ybc{bottom:4.800000pt;}
.y7b{bottom:5.440000pt;}
.y7c{bottom:5.760000pt;}
.y25{bottom:12.800000pt;}
.y20{bottom:16.320000pt;}
.y4{bottom:18.080000pt;}
.y1f{bottom:30.240000pt;}
.y24{bottom:31.520000pt;}
.y40{bottom:38.720000pt;}
.y23{bottom:42.240000pt;}
.y1e{bottom:44.000000pt;}
.y3{bottom:47.680000pt;}
.y1d{bottom:57.760000pt;}
.y3e{bottom:62.080000pt;}
.y7e{bottom:64.000000pt;}
.y3a{bottom:70.080000pt;}
.y1c{bottom:71.520000pt;}
.y79{bottom:76.800000pt;}
.yf6{bottom:82.720000pt;}
.y39{bottom:83.520000pt;}
.y11e{bottom:84.800000pt;}
.y1b{bottom:85.440000pt;}
.yba{bottom:86.400000pt;}
.y38{bottom:88.160000pt;}
.y78{bottom:90.560000pt;}
.yf5{bottom:96.480000pt;}
.y11d{bottom:98.560000pt;}
.y1a{bottom:99.226667pt;}
.yb9{bottom:100.160000pt;}
.y77{bottom:104.320000pt;}
.yf4{bottom:110.240000pt;}
.y11c{bottom:112.480000pt;}
.y37{bottom:112.640000pt;}
.y19{bottom:112.986667pt;}
.yb8{bottom:113.920000pt;}
.y76{bottom:118.080000pt;}
.yf3{bottom:124.000000pt;}
.y11b{bottom:126.240000pt;}
.y18{bottom:126.746667pt;}
.yb7{bottom:127.680000pt;}
.y75{bottom:132.000000pt;}
.yf2{bottom:137.920000pt;}
.y36{bottom:138.400000pt;}
.y11a{bottom:140.000000pt;}
.y17{bottom:140.666667pt;}
.yb6{bottom:141.600000pt;}
.y74{bottom:145.760000pt;}
.yf1{bottom:151.680000pt;}
.y35{bottom:153.600000pt;}
.y119{bottom:153.760000pt;}
.y16{bottom:154.426667pt;}
.yb5{bottom:155.360000pt;}
.y73{bottom:159.520000pt;}
.y146{bottom:160.480000pt;}
.yf0{bottom:165.440000pt;}
.y118{bottom:167.680000pt;}
.y15{bottom:168.186667pt;}
.y34{bottom:168.960000pt;}
.yb4{bottom:169.120000pt;}
.y145{bottom:172.800000pt;}
.y72{bottom:173.280000pt;}
.yef{bottom:179.226667pt;}
.y117{bottom:181.466667pt;}
.y14{bottom:181.946667pt;}
.yb3{bottom:182.906667pt;}
.y33{bottom:184.346667pt;}
.y144{bottom:185.146667pt;}
.y71{bottom:187.226667pt;}
.yee{bottom:193.146667pt;}
.y116{bottom:195.226667pt;}
.y13{bottom:195.866667pt;}
.yb2{bottom:196.826667pt;}
.y143{bottom:197.306667pt;}
.y32{bottom:199.706667pt;}
.y70{bottom:200.986667pt;}
.yed{bottom:206.906667pt;}
.y115{bottom:208.986667pt;}
.y12{bottom:209.626667pt;}
.yb1{bottom:210.586667pt;}
.y6f{bottom:214.746667pt;}
.y31{bottom:215.066667pt;}
.yec{bottom:220.666667pt;}
.y142{bottom:221.946667pt;}
.y114{bottom:222.906667pt;}
.y11{bottom:223.386667pt;}
.yb0{bottom:224.346667pt;}
.y6e{bottom:228.506667pt;}
.y30{bottom:230.426667pt;}
.y141{bottom:234.106667pt;}
.yeb{bottom:234.426667pt;}
.y113{bottom:236.666667pt;}
.y10{bottom:237.146667pt;}
.yaf{bottom:238.106667pt;}
.y6d{bottom:242.426667pt;}
.y2f{bottom:245.626667pt;}
.y140{bottom:246.426667pt;}
.yea{bottom:248.346667pt;}
.y112{bottom:250.426667pt;}
.yf{bottom:251.066667pt;}
.yae{bottom:252.026667pt;}
.y6c{bottom:256.186667pt;}
.y13f{bottom:258.586667pt;}
.y2e{bottom:260.986667pt;}
.ye9{bottom:262.106667pt;}
.y111{bottom:264.186667pt;}
.yad{bottom:265.786667pt;}
.y6b{bottom:269.946667pt;}
.y13e{bottom:270.906667pt;}
.ye8{bottom:275.866667pt;}
.y2d{bottom:276.346667pt;}
.y110{bottom:278.106667pt;}
.yac{bottom:279.546667pt;}
.y13d{bottom:283.226667pt;}
.y6a{bottom:283.706667pt;}
.ye7{bottom:289.626667pt;}
.y2c{bottom:291.706667pt;}
.y10f{bottom:291.866667pt;}
.yab{bottom:293.306667pt;}
.y13c{bottom:295.386667pt;}
.y69{bottom:297.626667pt;}
.ye6{bottom:303.546667pt;}
.y10e{bottom:305.626667pt;}
.y2b{bottom:307.066667pt;}
.yaa{bottom:307.226667pt;}
.y13b{bottom:307.706667pt;}
.y68{bottom:311.386667pt;}
.ye5{bottom:317.306667pt;}
.y10d{bottom:319.386667pt;}
.y13a{bottom:320.026667pt;}
.ya9{bottom:320.986667pt;}
.y2a{bottom:322.426667pt;}
.y67{bottom:325.146667pt;}
.ye4{bottom:331.066667pt;}
.y139{bottom:332.186667pt;}
.y10c{bottom:333.306667pt;}
.ya8{bottom:334.746667pt;}
.y29{bottom:337.626667pt;}
.y66{bottom:338.906667pt;}
.y138{bottom:344.506667pt;}
.ye3{bottom:344.826667pt;}
.y10b{bottom:347.066667pt;}
.ya7{bottom:348.506667pt;}
.y65{bottom:352.826667pt;}
.y28{bottom:352.986667pt;}
.y137{bottom:356.826667pt;}
.ye2{bottom:358.786667pt;}
.y10a{bottom:360.866667pt;}
.ya6{bottom:362.466667pt;}
.y64{bottom:366.626667pt;}
.y27{bottom:369.026667pt;}
.ye1{bottom:372.546667pt;}
.y109{bottom:374.626667pt;}
.ya5{bottom:376.226667pt;}
.y63{bottom:380.386667pt;}
.y136{bottom:381.346667pt;}
.y22{bottom:385.986667pt;}
.ye0{bottom:386.306667pt;}
.y108{bottom:388.546667pt;}
.ya4{bottom:389.986667pt;}
.y135{bottom:393.666667pt;}
.y62{bottom:394.146667pt;}
.ydf{bottom:400.066667pt;}
.y107{bottom:402.306667pt;}
.ya3{bottom:403.746667pt;}
.y134{bottom:405.826667pt;}
.y61{bottom:407.906667pt;}
.yde{bottom:413.986667pt;}
.y106{bottom:416.066667pt;}
.ya2{bottom:417.666667pt;}
.y133{bottom:418.146667pt;}
.y60{bottom:421.826667pt;}
.ydd{bottom:427.746667pt;}
.y105{bottom:429.826667pt;}
.y132{bottom:430.466667pt;}
.ya1{bottom:431.426667pt;}
.y5f{bottom:435.586667pt;}
.ye{bottom:441.506667pt;}
.y131{bottom:442.626667pt;}
.y104{bottom:443.586667pt;}
.ya0{bottom:445.186667pt;}
.y5e{bottom:449.346667pt;}
.y130{bottom:454.946667pt;}
.ydc{bottom:455.266667pt;}
.y103{bottom:457.506667pt;}
.y9f{bottom:458.946667pt;}
.y5d{bottom:463.106667pt;}
.y12f{bottom:467.266667pt;}
.ydb{bottom:469.186667pt;}
.y102{bottom:471.266667pt;}
.y9e{bottom:472.866667pt;}
.y5c{bottom:477.026667pt;}
.y12e{bottom:479.426667pt;}
.yda{bottom:482.946667pt;}
.y101{bottom:485.026667pt;}
.y9d{bottom:486.626667pt;}
.y5b{bottom:490.786667pt;}
.y12d{bottom:491.746667pt;}
.yd9{bottom:496.706667pt;}
.y100{bottom:498.786667pt;}
.y9c{bottom:500.386667pt;}
.y12c{bottom:504.066667pt;}
.y5a{bottom:504.546667pt;}
.yd8{bottom:510.466667pt;}
.yff{bottom:512.706667pt;}
.y9b{bottom:514.146667pt;}
.y12b{bottom:516.226667pt;}
.y59{bottom:518.306667pt;}
.yd7{bottom:524.386667pt;}
.yfe{bottom:526.466667pt;}
.y9a{bottom:528.066667pt;}
.y12a{bottom:528.546667pt;}
.y58{bottom:532.226667pt;}
.yd6{bottom:538.146667pt;}
.yfd{bottom:540.253333pt;}
.y129{bottom:540.893333pt;}
.y99{bottom:541.853333pt;}
.y57{bottom:546.013333pt;}
.yd5{bottom:551.933333pt;}
.y128{bottom:553.053333pt;}
.yfc{bottom:554.013333pt;}
.y98{bottom:555.613333pt;}
.y56{bottom:559.773333pt;}
.y127{bottom:565.373333pt;}
.yd4{bottom:565.693333pt;}
.yfb{bottom:567.933333pt;}
.y97{bottom:569.373333pt;}
.y55{bottom:573.533333pt;}
.y126{bottom:577.693333pt;}
.yd3{bottom:579.453333pt;}
.yfa{bottom:581.693333pt;}
.y96{bottom:583.133333pt;}
.y54{bottom:587.453333pt;}
.y125{bottom:589.853333pt;}
.yd2{bottom:593.373333pt;}
.yf9{bottom:595.453333pt;}
.y95{bottom:597.053333pt;}
.y53{bottom:601.213333pt;}
.y124{bottom:602.173333pt;}
.yd1{bottom:607.133333pt;}
.yf8{bottom:609.213333pt;}
.y94{bottom:610.813333pt;}
.y123{bottom:614.493333pt;}
.y52{bottom:614.973333pt;}
.yd0{bottom:620.893333pt;}
.yf7{bottom:623.293333pt;}
.y93{bottom:624.573333pt;}
.y122{bottom:626.653333pt;}
.y51{bottom:628.733333pt;}
.ycf{bottom:634.653333pt;}
.y92{bottom:638.333333pt;}
.y121{bottom:638.973333pt;}
.y50{bottom:642.653333pt;}
.yce{bottom:648.573333pt;}
.y120{bottom:651.293333pt;}
.y91{bottom:652.253333pt;}
.y4f{bottom:656.413333pt;}
.ycd{bottom:662.333333pt;}
.y11f{bottom:663.453333pt;}
.y90{bottom:666.013333pt;}
.y4e{bottom:670.173333pt;}
.ycc{bottom:676.093333pt;}
.y8f{bottom:679.773333pt;}
.y4d{bottom:683.933333pt;}
.ycb{bottom:689.853333pt;}
.y8e{bottom:693.533333pt;}
.y4c{bottom:697.853333pt;}
.yca{bottom:703.773333pt;}
.yc{bottom:705.693333pt;}
.y8d{bottom:707.453333pt;}
.y4b{bottom:711.613333pt;}
.yc9{bottom:717.533333pt;}
.y8c{bottom:721.213333pt;}
.y4a{bottom:725.413333pt;}
.yb{bottom:727.173333pt;}
.yc8{bottom:731.333333pt;}
.y8b{bottom:735.013333pt;}
.y49{bottom:739.173333pt;}
.yc7{bottom:745.093333pt;}
.ya{bottom:745.253333pt;}
.y8a{bottom:748.773333pt;}
.y48{bottom:753.093333pt;}
.y9{bottom:753.893333pt;}
.yc6{bottom:759.013333pt;}
.y89{bottom:762.693333pt;}
.y47{bottom:766.853333pt;}
.y7{bottom:767.173333pt;}
.yc5{bottom:772.773333pt;}
.y8{bottom:773.253333pt;}
.y88{bottom:776.453333pt;}
.y46{bottom:780.613333pt;}
.yc4{bottom:786.533333pt;}
.y87{bottom:790.213333pt;}
.y45{bottom:794.373333pt;}
.y6{bottom:798.213333pt;}
.yc3{bottom:800.293333pt;}
.y86{bottom:803.973333pt;}
.y44{bottom:808.293333pt;}
.yc2{bottom:814.213333pt;}
.y85{bottom:817.893333pt;}
.y5{bottom:821.253333pt;}
.y43{bottom:822.373333pt;}
.yc1{bottom:827.973333pt;}
.y84{bottom:831.653333pt;}
.y42{bottom:837.573333pt;}
.yc0{bottom:841.733333pt;}
.y83{bottom:845.413333pt;}
.y41{bottom:852.933333pt;}
.ybf{bottom:855.493333pt;}
.y82{bottom:859.173333pt;}
.ybe{bottom:869.413333pt;}
.y81{bottom:873.093333pt;}
.y2{bottom:874.213333pt;}
.y3d{bottom:883.653333pt;}
.y3b{bottom:896.773333pt;}
.ybd{bottom:898.853333pt;}
.y7d{bottom:901.733333pt;}
.y1{bottom:903.653333pt;}
.y7a{bottom:910.880000pt;}
.ybb{bottom:911.840000pt;}
.h1a{height:7.680000pt;}
.h1f{height:8.160000pt;}
.h1b{height:13.760000pt;}
.h20{height:15.680000pt;}
.h19{height:15.872000pt;}
.h21{height:16.000000pt;}
.h1d{height:16.960000pt;}
.hb{height:16.992000pt;}
.h17{height:23.109375pt;}
.h15{height:25.918750pt;}
.h9{height:28.485000pt;}
.h3{height:29.940625pt;}
.h14{height:30.595000pt;}
.h1e{height:32.306562pt;}
.hf{height:32.507812pt;}
.h11{height:33.328125pt;}
.he{height:33.515625pt;}
.h4{height:33.867188pt;}
.h10{height:35.130577pt;}
.h2{height:35.342500pt;}
.h16{height:36.883125pt;}
.h13{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h18{height:38.361562pt;}
.ha{height:39.562500pt;}
.h8{height:40.021563pt;}
.hc{height:41.543750pt;}
.h7{height:44.687500pt;}
.h12{height:53.600000pt;}
.h5{height:56.445312pt;}
.h6{height:59.662500pt;}
.hd{height:262.266667pt;}
.h1{height:990.000000pt;}
.h0{height:990.240000pt;}
.w4{width:155.386667pt;}
.wb{width:307.426667pt;}
.wa{width:316.413333pt;}
.w9{width:319.106667pt;}
.wd{width:319.426667pt;}
.w8{width:320.093333pt;}
.wc{width:320.413333pt;}
.w5{width:466.213333pt;}
.w6{width:621.600000pt;}
.w7{width:623.840000pt;}
.w3{width:725.759978pt;}
.w2{width:725.759989pt;}
.w0{width:725.760000pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.xc{left:26.112000pt;}
.x9{left:41.920000pt;}
.x2{left:49.119989pt;}
.x10{left:53.599989pt;}
.xe{left:64.032000pt;}
.x3{left:84.671989pt;}
.xd{left:94.906667pt;}
.xf{left:108.191989pt;}
.x8{left:158.586656pt;}
.xb{left:197.306667pt;}
.x5{left:257.346656pt;}
.x4{left:281.186656pt;}
.x14{left:294.146667pt;}
.x11{left:311.426667pt;}
.x13{left:358.333333pt;}
.x1{left:361.053323pt;}
.x12{left:385.053323pt;}
.x6{left:459.453312pt;}
.x7{left:464.733323pt;}
}




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