
    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_8a70a3105271eea2d351d0e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934082;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_1099db09b3982d3a5578b3c8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_50c9eb8e07d4ab6c466ead68.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cc14159d89c9919be0650113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c0c4faada75e629701097da9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_e9a84f3b8f11ef9e12322413.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_899cabea4ebf53f468fd51dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.719238;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_df9c30ced92109469610b83e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9e88f1f3f5a56cb61bfe03d1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.084961;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:ffd;src:url('chunks/assets/font_2951b345b12f8004e9279595.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v5{vertical-align:-5.760000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440000px;}
.v3{vertical-align:2.880000px;}
.v2{vertical-align:25.200000px;}
.lsb{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.ls3{letter-spacing:8.100000px;}
.ls9{letter-spacing:64.002720px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws6{word-spacing:-59.760000px;}
.ws9{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.860000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-17.280000px;}
._1d{margin-left:-15.840000px;}
._c{margin-left:-4.336800px;}
._a{margin-left:-2.599920px;}
._0{margin-left:-1.523520px;}
._2{width:1.195920px;}
._3{width:2.220960px;}
._d{width:3.286800px;}
._8{width:4.421520px;}
._7{width:5.557680px;}
._b{width:6.632640px;}
._5{width:7.827840px;}
._6{width:9.024480px;}
._4{width:10.935360px;}
._16{width:12.608640px;}
._1a{width:14.544000px;}
._1b{width:15.624000px;}
._9{width:16.670880px;}
._1f{width:17.686080px;}
._11{width:19.163520px;}
._14{width:20.232000px;}
._15{width:21.479520px;}
._17{width:23.223600px;}
._18{width:24.577200px;}
._23{width:26.352000px;}
._21{width:28.035840px;}
._22{width:29.430720px;}
._20{width:30.475200px;}
._19{width:31.680000px;}
._12{width:32.832000px;}
._13{width:34.344000px;}
._24{width:36.000000px;}
._25{width:37.224000px;}
._26{width:38.736000px;}
._2c{width:43.257600px;}
._27{width:44.424000px;}
._2a{width:45.624000px;}
._2b{width:46.824000px;}
._1c{width:48.110400px;}
._28{width:54.936000px;}
._29{width:56.304000px;}
._2d{width:122.279040px;}
._2e{width:123.405120px;}
._e{width:150.805920px;}
._10{width:197.976000px;}
._1e{width:199.416000px;}
._1{width:1257.838080px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:6.840000px;}
.ya3{bottom:7.020000px;}
.ya7{bottom:7.200000px;}
.y136{bottom:8.820000px;}
.y2{bottom:9.180000px;}
.yf1{bottom:14.400000px;}
.y135{bottom:24.660000px;}
.yf0{bottom:30.240000px;}
.ya2{bottom:30.780000px;}
.ya9{bottom:30.825000px;}
.ya5{bottom:30.960000px;}
.y4{bottom:55.800000px;}
.yee{bottom:116.496000px;}
.y3d{bottom:117.576000px;}
.y9d{bottom:117.936000px;}
.y153{bottom:128.556000px;}
.y10f{bottom:133.416000px;}
.y68{bottom:138.276000px;}
.yc6{bottom:138.816000px;}
.yed{bottom:140.256000px;}
.y133{bottom:141.156000px;}
.y3c{bottom:141.336000px;}
.y9c{bottom:141.696000px;}
.y152{bottom:150.330000px;}
.y71{bottom:155.190000px;}
.y10e{bottom:157.350000px;}
.y67{bottom:162.030000px;}
.yc5{bottom:162.570000px;}
.yec{bottom:164.010000px;}
.y132{bottom:164.910000px;}
.y3b{bottom:165.090000px;}
.y9b{bottom:165.450000px;}
.y151{bottom:172.290000px;}
.y70{bottom:177.150000px;}
.y10d{bottom:181.110000px;}
.y66{bottom:185.790000px;}
.yc4{bottom:186.510000px;}
.yeb{bottom:187.770000px;}
.y131{bottom:188.670000px;}
.y3a{bottom:188.850000px;}
.y9a{bottom:189.210000px;}
.y150{bottom:194.070000px;}
.y6f{bottom:198.930000px;}
.y10c{bottom:204.870000px;}
.y65{bottom:209.730000px;}
.yc3{bottom:210.270000px;}
.yea{bottom:211.530000px;}
.y130{bottom:212.430000px;}
.y39{bottom:212.610000px;}
.y99{bottom:212.970000px;}
.y14f{bottom:216.030000px;}
.y6e{bottom:220.890000px;}
.y10b{bottom:228.630000px;}
.y64{bottom:233.490000px;}
.yc2{bottom:234.030000px;}
.ye9{bottom:235.470000px;}
.y38{bottom:235.650000px;}
.y12f{bottom:236.370000px;}
.y98{bottom:236.910000px;}
.y14e{bottom:237.810000px;}
.y6d{bottom:242.670000px;}
.y10a{bottom:252.570000px;}
.y63{bottom:257.250000px;}
.yc1{bottom:257.790000px;}
.y37{bottom:258.330000px;}
.ye8{bottom:259.230000px;}
.y14d{bottom:259.590000px;}
.y12e{bottom:260.130000px;}
.y97{bottom:260.670000px;}
.y6c{bottom:264.630000px;}
.y109{bottom:276.330000px;}
.y36{bottom:277.770000px;}
.y62{bottom:281.010000px;}
.y14c{bottom:281.550000px;}
.yc0{bottom:281.730000px;}
.ye7{bottom:282.990000px;}
.y12d{bottom:283.890000px;}
.y96{bottom:284.430000px;}
.y6b{bottom:286.410000px;}
.y35{bottom:291.630000px;}
.y108{bottom:300.090000px;}
.y14b{bottom:303.330000px;}
.y61{bottom:304.950000px;}
.ybf{bottom:305.490000px;}
.y34{bottom:306.570000px;}
.ye6{bottom:306.750000px;}
.y12c{bottom:307.650000px;}
.y6a{bottom:308.190000px;}
.y107{bottom:323.850000px;}
.y33{bottom:324.030000px;}
.y14a{bottom:325.290000px;}
.y60{bottom:328.710000px;}
.ybe{bottom:329.250000px;}
.y69{bottom:329.790000px;}
.ye5{bottom:330.690000px;}
.y12b{bottom:331.590000px;}
.y95{bottom:332.130000px;}
.y32{bottom:341.175000px;}
.y149{bottom:347.115000px;}
.y106{bottom:347.835000px;}
.y5f{bottom:352.515000px;}
.ybd{bottom:353.055000px;}
.ye4{bottom:354.495000px;}
.y12a{bottom:355.395000px;}
.y94{bottom:355.935000px;}
.y31{bottom:358.815000px;}
.y148{bottom:369.075000px;}
.y105{bottom:371.595000px;}
.y30{bottom:376.095000px;}
.y5e{bottom:376.275000px;}
.ybc{bottom:376.995000px;}
.ye3{bottom:378.255000px;}
.y129{bottom:379.155000px;}
.y93{bottom:379.695000px;}
.y147{bottom:390.855000px;}
.y2f{bottom:393.555000px;}
.y104{bottom:395.355000px;}
.y5d{bottom:400.215000px;}
.ybb{bottom:400.755000px;}
.ye2{bottom:402.015000px;}
.y128{bottom:402.915000px;}
.y92{bottom:403.455000px;}
.y2e{bottom:410.835000px;}
.y146{bottom:412.815000px;}
.y103{bottom:419.115000px;}
.y5c{bottom:423.975000px;}
.yba{bottom:424.515000px;}
.ye1{bottom:425.955000px;}
.y127{bottom:426.675000px;}
.y91{bottom:427.395000px;}
.y2d{bottom:428.115000px;}
.y145{bottom:434.595000px;}
.y102{bottom:443.055000px;}
.y2c{bottom:445.575000px;}
.y5b{bottom:447.735000px;}
.yb9{bottom:448.275000px;}
.ye0{bottom:449.715000px;}
.y126{bottom:450.615000px;}
.y90{bottom:451.155000px;}
.y144{bottom:456.375000px;}
.y2b{bottom:462.855000px;}
.y101{bottom:466.815000px;}
.y5a{bottom:471.495000px;}
.yb8{bottom:472.035000px;}
.ydf{bottom:473.475000px;}
.y125{bottom:474.375000px;}
.y8f{bottom:474.915000px;}
.y143{bottom:478.335000px;}
.y2a{bottom:480.315000px;}
.y100{bottom:490.575000px;}
.y59{bottom:495.435000px;}
.yb7{bottom:495.975000px;}
.yde{bottom:497.235000px;}
.y29{bottom:497.595000px;}
.y124{bottom:498.135000px;}
.y8e{bottom:498.675000px;}
.y142{bottom:500.115000px;}
.yff{bottom:514.335000px;}
.y28{bottom:514.875000px;}
.y58{bottom:519.195000px;}
.yb6{bottom:519.735000px;}
.ydd{bottom:521.175000px;}
.y123{bottom:521.895000px;}
.y141{bottom:522.075000px;}
.y8d{bottom:522.615000px;}
.y27{bottom:532.335000px;}
.yfe{bottom:538.095000px;}
.y57{bottom:542.955000px;}
.yb5{bottom:543.495000px;}
.y140{bottom:543.855000px;}
.ydc{bottom:544.935000px;}
.y122{bottom:545.835000px;}
.y8c{bottom:546.375000px;}
.y26{bottom:549.615000px;}
.yfd{bottom:562.035000px;}
.y13f{bottom:565.815000px;}
.y56{bottom:566.715000px;}
.y25{bottom:567.075000px;}
.yb4{bottom:567.255000px;}
.ydb{bottom:568.695000px;}
.y121{bottom:569.595000px;}
.y8b{bottom:570.135000px;}
.y24{bottom:584.355000px;}
.yfc{bottom:585.795000px;}
.y13e{bottom:587.595000px;}
.y55{bottom:590.655000px;}
.yb3{bottom:591.195000px;}
.yda{bottom:592.455000px;}
.y120{bottom:592.815000px;}
.y8a{bottom:593.895000px;}
.y23{bottom:601.635000px;}
.yfb{bottom:609.585000px;}
.y54{bottom:614.445000px;}
.y11f{bottom:614.805000px;}
.yb2{bottom:614.985000px;}
.yd9{bottom:616.425000px;}
.y89{bottom:617.865000px;}
.y22{bottom:618.945000px;}
.y13d{bottom:631.365000px;}
.yfa{bottom:633.345000px;}
.y21{bottom:636.225000px;}
.y11e{bottom:636.585000px;}
.yef{bottom:636.765000px;}
.y53{bottom:638.205000px;}
.yb1{bottom:638.745000px;}
.yd8{bottom:640.185000px;}
.y88{bottom:641.625000px;}
.y13c{bottom:653.325000px;}
.y20{bottom:653.865000px;}
.yf9{bottom:657.285000px;}
.y11d{bottom:658.545000px;}
.y52{bottom:661.965000px;}
.yb0{bottom:662.505000px;}
.yd7{bottom:663.945000px;}
.y87{bottom:665.385000px;}
.y1f{bottom:671.145000px;}
.y13b{bottom:675.105000px;}
.y11c{bottom:680.325000px;}
.yf8{bottom:681.045000px;}
.y51{bottom:685.725000px;}
.yaf{bottom:686.445000px;}
.yd6{bottom:687.705000px;}
.y1e{bottom:688.605000px;}
.y86{bottom:689.145000px;}
.y13a{bottom:696.885000px;}
.y11b{bottom:702.285000px;}
.yf7{bottom:704.805000px;}
.y1d{bottom:705.885000px;}
.y50{bottom:709.665000px;}
.yae{bottom:710.205000px;}
.yd5{bottom:711.465000px;}
.y85{bottom:713.085000px;}
.y139{bottom:718.845000px;}
.y1c{bottom:723.165000px;}
.y11a{bottom:724.065000px;}
.y4f{bottom:733.425000px;}
.yad{bottom:733.965000px;}
.yd4{bottom:735.405000px;}
.y84{bottom:736.845000px;}
.yf6{bottom:739.365000px;}
.y1b{bottom:740.625000px;}
.y119{bottom:745.845000px;}
.yac{bottom:757.005000px;}
.y4e{bottom:757.185000px;}
.y1a{bottom:757.905000px;}
.yd3{bottom:759.165000px;}
.y83{bottom:760.605000px;}
.y138{bottom:762.585000px;}
.y118{bottom:767.805000px;}
.y19{bottom:775.365000px;}
.yab{bottom:778.785000px;}
.y4d{bottom:780.945000px;}
.yd2{bottom:782.925000px;}
.y137{bottom:784.005000px;}
.y82{bottom:784.365000px;}
.y117{bottom:789.585000px;}
.y18{bottom:792.645000px;}
.yaa{bottom:795.165000px;}
.y4c{bottom:804.885000px;}
.yd1{bottom:806.685000px;}
.y81{bottom:808.125000px;}
.y17{bottom:809.925000px;}
.y116{bottom:811.545000px;}
.y16{bottom:827.385000px;}
.y4b{bottom:828.645000px;}
.yd0{bottom:830.625000px;}
.y80{bottom:832.065000px;}
.y115{bottom:833.325000px;}
.y134{bottom:839.445000px;}
.ya8{bottom:843.585000px;}
.y15{bottom:844.665000px;}
.y4a{bottom:852.405000px;}
.ycf{bottom:854.385000px;}
.y7f{bottom:854.925000px;}
.y114{bottom:855.285000px;}
.y14{bottom:862.125000px;}
.y49{bottom:876.210000px;}
.y7e{bottom:876.930000px;}
.y113{bottom:877.110000px;}
.yce{bottom:878.190000px;}
.y13{bottom:879.450000px;}
.ya6{bottom:891.870000px;}
.y12{bottom:896.550000px;}
.y7d{bottom:898.710000px;}
.y112{bottom:899.070000px;}
.y48{bottom:900.150000px;}
.ycd{bottom:901.950000px;}
.y11{bottom:914.550000px;}
.y7c{bottom:920.490000px;}
.y111{bottom:920.850000px;}
.y47{bottom:923.910000px;}
.ycc{bottom:925.890000px;}
.y10{bottom:934.890000px;}
.ya4{bottom:940.290000px;}
.y7b{bottom:942.810000px;}
.y46{bottom:947.670000px;}
.ycb{bottom:949.650000px;}
.yf{bottom:952.170000px;}
.y7a{bottom:964.590000px;}
.ye{bottom:969.630000px;}
.y45{bottom:971.430000px;}
.yca{bottom:973.410000px;}
.y79{bottom:986.550000px;}
.ya1{bottom:988.710000px;}
.yd{bottom:989.250000px;}
.y44{bottom:995.370000px;}
.yc9{bottom:997.170000px;}
.yc{bottom:1004.730000px;}
.y78{bottom:1008.330000px;}
.y43{bottom:1019.130000px;}
.yc8{bottom:1021.110000px;}
.yb{bottom:1027.230000px;}
.y77{bottom:1030.290000px;}
.y9f{bottom:1036.950000px;}
.y42{bottom:1042.890000px;}
.yc7{bottom:1044.870000px;}
.ya{bottom:1049.550000px;}
.y76{bottom:1052.070000px;}
.y41{bottom:1066.650000px;}
.y9e{bottom:1067.730000px;}
.yf5{bottom:1068.630000px;}
.y9{bottom:1071.330000px;}
.y75{bottom:1074.030000px;}
.y8{bottom:1088.790000px;}
.y40{bottom:1090.590000px;}
.yf4{bottom:1092.390000px;}
.y74{bottom:1095.810000px;}
.y7{bottom:1106.070000px;}
.y3f{bottom:1114.350000px;}
.yf3{bottom:1116.330000px;}
.y110{bottom:1117.410000px;}
.y73{bottom:1117.770000px;}
.y6{bottom:1123.530000px;}
.y3e{bottom:1138.140000px;}
.yf2{bottom:1139.220000px;}
.y72{bottom:1139.580000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1164.780000px;}
.y1{bottom:1181.160000px;}
.h18{height:23.940000px;}
.h2{height:28.620000px;}
.h10{height:33.683203px;}
.ha{height:34.036523px;}
.h1e{height:37.296000px;}
.h5{height:39.760312px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.h7{height:42.446953px;}
.h1c{height:42.840000px;}
.h1d{height:43.822266px;}
.h15{height:46.251562px;}
.h17{height:46.736719px;}
.h19{height:47.520000px;}
.h1b{height:47.556000px;}
.h11{height:47.691563px;}
.h1a{height:47.700000px;}
.hf{height:49.255313px;}
.he{height:49.975312px;}
.h3{height:50.068125px;}
.hd{height:50.273438px;}
.h14{height:50.800781px;}
.h12{height:53.153437px;}
.h16{height:54.475312px;}
.h1f{height:54.596250px;}
.h8{height:54.864844px;}
.h9{height:55.735313px;}
.hb{height:59.236523px;}
.h13{height:59.343750px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.w5{width:254.010000px;}
.w8{width:283.350000px;}
.w7{width:318.495000px;}
.w6{width:420.735000px;}
.w3{width:606.165000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x2{left:9.720000px;}
.xf{left:103.854000px;}
.x1{left:108.036000px;}
.x11{left:114.690000px;}
.x6{left:117.395987px;}
.xd{left:135.035987px;}
.x3{left:161.130000px;}
.x15{left:167.249987px;}
.x9{left:192.269987px;}
.x13{left:200.909987px;}
.xe{left:202.529987px;}
.x8{left:217.469987px;}
.xa{left:257.969987px;}
.x12{left:275.610000px;}
.x14{left:304.815000px;}
.x10{left:363.675000px;}
.x7{left:382.394987px;}
.xc{left:418.574987px;}
.xb{left:420.194987px;}
.x5{left:446.474987px;}
@media print{
.v5{vertical-align:-5.120000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280000pt;}
.v3{vertical-align:2.560000pt;}
.v2{vertical-align:22.400000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls3{letter-spacing:7.200000pt;}
.ls9{letter-spacing:56.891307pt;}
.wsa{word-spacing:-58.880000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-15.360000pt;}
._1d{margin-left:-14.080000pt;}
._c{margin-left:-3.854933pt;}
._a{margin-left:-2.311040pt;}
._0{margin-left:-1.354240pt;}
._2{width:1.063040pt;}
._3{width:1.974187pt;}
._d{width:2.921600pt;}
._8{width:3.930240pt;}
._7{width:4.940160pt;}
._b{width:5.895680pt;}
._5{width:6.958080pt;}
._6{width:8.021760pt;}
._4{width:9.720320pt;}
._16{width:11.207680pt;}
._1a{width:12.928000pt;}
._1b{width:13.888000pt;}
._9{width:14.818560pt;}
._1f{width:15.720960pt;}
._11{width:17.034240pt;}
._14{width:17.984000pt;}
._15{width:19.092907pt;}
._17{width:20.643200pt;}
._18{width:21.846400pt;}
._23{width:23.424000pt;}
._21{width:24.920747pt;}
._22{width:26.160640pt;}
._20{width:27.089067pt;}
._19{width:28.160000pt;}
._12{width:29.184000pt;}
._13{width:30.528000pt;}
._24{width:32.000000pt;}
._25{width:33.088000pt;}
._26{width:34.432000pt;}
._2c{width:38.451200pt;}
._27{width:39.488000pt;}
._2a{width:40.554667pt;}
._2b{width:41.621333pt;}
._1c{width:42.764800pt;}
._28{width:48.832000pt;}
._29{width:50.048000pt;}
._2d{width:108.692480pt;}
._2e{width:109.693440pt;}
._e{width:134.049707pt;}
._10{width:175.978667pt;}
._1e{width:177.258667pt;}
._1{width:1118.078293pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:6.080000pt;}
.ya3{bottom:6.240000pt;}
.ya7{bottom:6.400000pt;}
.y136{bottom:7.840000pt;}
.y2{bottom:8.160000pt;}
.yf1{bottom:12.800000pt;}
.y135{bottom:21.920000pt;}
.yf0{bottom:26.880000pt;}
.ya2{bottom:27.360000pt;}
.ya9{bottom:27.400000pt;}
.ya5{bottom:27.520000pt;}
.y4{bottom:49.600000pt;}
.yee{bottom:103.552000pt;}
.y3d{bottom:104.512000pt;}
.y9d{bottom:104.832000pt;}
.y153{bottom:114.272000pt;}
.y10f{bottom:118.592000pt;}
.y68{bottom:122.912000pt;}
.yc6{bottom:123.392000pt;}
.yed{bottom:124.672000pt;}
.y133{bottom:125.472000pt;}
.y3c{bottom:125.632000pt;}
.y9c{bottom:125.952000pt;}
.y152{bottom:133.626667pt;}
.y71{bottom:137.946667pt;}
.y10e{bottom:139.866667pt;}
.y67{bottom:144.026667pt;}
.yc5{bottom:144.506667pt;}
.yec{bottom:145.786667pt;}
.y132{bottom:146.586667pt;}
.y3b{bottom:146.746667pt;}
.y9b{bottom:147.066667pt;}
.y151{bottom:153.146667pt;}
.y70{bottom:157.466667pt;}
.y10d{bottom:160.986667pt;}
.y66{bottom:165.146667pt;}
.yc4{bottom:165.786667pt;}
.yeb{bottom:166.906667pt;}
.y131{bottom:167.706667pt;}
.y3a{bottom:167.866667pt;}
.y9a{bottom:168.186667pt;}
.y150{bottom:172.506667pt;}
.y6f{bottom:176.826667pt;}
.y10c{bottom:182.106667pt;}
.y65{bottom:186.426667pt;}
.yc3{bottom:186.906667pt;}
.yea{bottom:188.026667pt;}
.y130{bottom:188.826667pt;}
.y39{bottom:188.986667pt;}
.y99{bottom:189.306667pt;}
.y14f{bottom:192.026667pt;}
.y6e{bottom:196.346667pt;}
.y10b{bottom:203.226667pt;}
.y64{bottom:207.546667pt;}
.yc2{bottom:208.026667pt;}
.ye9{bottom:209.306667pt;}
.y38{bottom:209.466667pt;}
.y12f{bottom:210.106667pt;}
.y98{bottom:210.586667pt;}
.y14e{bottom:211.386667pt;}
.y6d{bottom:215.706667pt;}
.y10a{bottom:224.506667pt;}
.y63{bottom:228.666667pt;}
.yc1{bottom:229.146667pt;}
.y37{bottom:229.626667pt;}
.ye8{bottom:230.426667pt;}
.y14d{bottom:230.746667pt;}
.y12e{bottom:231.226667pt;}
.y97{bottom:231.706667pt;}
.y6c{bottom:235.226667pt;}
.y109{bottom:245.626667pt;}
.y36{bottom:246.906667pt;}
.y62{bottom:249.786667pt;}
.y14c{bottom:250.266667pt;}
.yc0{bottom:250.426667pt;}
.ye7{bottom:251.546667pt;}
.y12d{bottom:252.346667pt;}
.y96{bottom:252.826667pt;}
.y6b{bottom:254.586667pt;}
.y35{bottom:259.226667pt;}
.y108{bottom:266.746667pt;}
.y14b{bottom:269.626667pt;}
.y61{bottom:271.066667pt;}
.ybf{bottom:271.546667pt;}
.y34{bottom:272.506667pt;}
.ye6{bottom:272.666667pt;}
.y12c{bottom:273.466667pt;}
.y6a{bottom:273.946667pt;}
.y107{bottom:287.866667pt;}
.y33{bottom:288.026667pt;}
.y14a{bottom:289.146667pt;}
.y60{bottom:292.186667pt;}
.ybe{bottom:292.666667pt;}
.y69{bottom:293.146667pt;}
.ye5{bottom:293.946667pt;}
.y12b{bottom:294.746667pt;}
.y95{bottom:295.226667pt;}
.y32{bottom:303.266667pt;}
.y149{bottom:308.546667pt;}
.y106{bottom:309.186667pt;}
.y5f{bottom:313.346667pt;}
.ybd{bottom:313.826667pt;}
.ye4{bottom:315.106667pt;}
.y12a{bottom:315.906667pt;}
.y94{bottom:316.386667pt;}
.y31{bottom:318.946667pt;}
.y148{bottom:328.066667pt;}
.y105{bottom:330.306667pt;}
.y30{bottom:334.306667pt;}
.y5e{bottom:334.466667pt;}
.ybc{bottom:335.106667pt;}
.ye3{bottom:336.226667pt;}
.y129{bottom:337.026667pt;}
.y93{bottom:337.506667pt;}
.y147{bottom:347.426667pt;}
.y2f{bottom:349.826667pt;}
.y104{bottom:351.426667pt;}
.y5d{bottom:355.746667pt;}
.ybb{bottom:356.226667pt;}
.ye2{bottom:357.346667pt;}
.y128{bottom:358.146667pt;}
.y92{bottom:358.626667pt;}
.y2e{bottom:365.186667pt;}
.y146{bottom:366.946667pt;}
.y103{bottom:372.546667pt;}
.y5c{bottom:376.866667pt;}
.yba{bottom:377.346667pt;}
.ye1{bottom:378.626667pt;}
.y127{bottom:379.266667pt;}
.y91{bottom:379.906667pt;}
.y2d{bottom:380.546667pt;}
.y145{bottom:386.306667pt;}
.y102{bottom:393.826667pt;}
.y2c{bottom:396.066667pt;}
.y5b{bottom:397.986667pt;}
.yb9{bottom:398.466667pt;}
.ye0{bottom:399.746667pt;}
.y126{bottom:400.546667pt;}
.y90{bottom:401.026667pt;}
.y144{bottom:405.666667pt;}
.y2b{bottom:411.426667pt;}
.y101{bottom:414.946667pt;}
.y5a{bottom:419.106667pt;}
.yb8{bottom:419.586667pt;}
.ydf{bottom:420.866667pt;}
.y125{bottom:421.666667pt;}
.y8f{bottom:422.146667pt;}
.y143{bottom:425.186667pt;}
.y2a{bottom:426.946667pt;}
.y100{bottom:436.066667pt;}
.y59{bottom:440.386667pt;}
.yb7{bottom:440.866667pt;}
.yde{bottom:441.986667pt;}
.y29{bottom:442.306667pt;}
.y124{bottom:442.786667pt;}
.y8e{bottom:443.266667pt;}
.y142{bottom:444.546667pt;}
.yff{bottom:457.186667pt;}
.y28{bottom:457.666667pt;}
.y58{bottom:461.506667pt;}
.yb6{bottom:461.986667pt;}
.ydd{bottom:463.266667pt;}
.y123{bottom:463.906667pt;}
.y141{bottom:464.066667pt;}
.y8d{bottom:464.546667pt;}
.y27{bottom:473.186667pt;}
.yfe{bottom:478.306667pt;}
.y57{bottom:482.626667pt;}
.yb5{bottom:483.106667pt;}
.y140{bottom:483.426667pt;}
.ydc{bottom:484.386667pt;}
.y122{bottom:485.186667pt;}
.y8c{bottom:485.666667pt;}
.y26{bottom:488.546667pt;}
.yfd{bottom:499.586667pt;}
.y13f{bottom:502.946667pt;}
.y56{bottom:503.746667pt;}
.y25{bottom:504.066667pt;}
.yb4{bottom:504.226667pt;}
.ydb{bottom:505.506667pt;}
.y121{bottom:506.306667pt;}
.y8b{bottom:506.786667pt;}
.y24{bottom:519.426667pt;}
.yfc{bottom:520.706667pt;}
.y13e{bottom:522.306667pt;}
.y55{bottom:525.026667pt;}
.yb3{bottom:525.506667pt;}
.yda{bottom:526.626667pt;}
.y120{bottom:526.946667pt;}
.y8a{bottom:527.906667pt;}
.y23{bottom:534.786667pt;}
.yfb{bottom:541.853333pt;}
.y54{bottom:546.173333pt;}
.y11f{bottom:546.493333pt;}
.yb2{bottom:546.653333pt;}
.yd9{bottom:547.933333pt;}
.y89{bottom:549.213333pt;}
.y22{bottom:550.173333pt;}
.y13d{bottom:561.213333pt;}
.yfa{bottom:562.973333pt;}
.y21{bottom:565.533333pt;}
.y11e{bottom:565.853333pt;}
.yef{bottom:566.013333pt;}
.y53{bottom:567.293333pt;}
.yb1{bottom:567.773333pt;}
.yd8{bottom:569.053333pt;}
.y88{bottom:570.333333pt;}
.y13c{bottom:580.733333pt;}
.y20{bottom:581.213333pt;}
.yf9{bottom:584.253333pt;}
.y11d{bottom:585.373333pt;}
.y52{bottom:588.413333pt;}
.yb0{bottom:588.893333pt;}
.yd7{bottom:590.173333pt;}
.y87{bottom:591.453333pt;}
.y1f{bottom:596.573333pt;}
.y13b{bottom:600.093333pt;}
.y11c{bottom:604.733333pt;}
.yf8{bottom:605.373333pt;}
.y51{bottom:609.533333pt;}
.yaf{bottom:610.173333pt;}
.yd6{bottom:611.293333pt;}
.y1e{bottom:612.093333pt;}
.y86{bottom:612.573333pt;}
.y13a{bottom:619.453333pt;}
.y11b{bottom:624.253333pt;}
.yf7{bottom:626.493333pt;}
.y1d{bottom:627.453333pt;}
.y50{bottom:630.813333pt;}
.yae{bottom:631.293333pt;}
.yd5{bottom:632.413333pt;}
.y85{bottom:633.853333pt;}
.y139{bottom:638.973333pt;}
.y1c{bottom:642.813333pt;}
.y11a{bottom:643.613333pt;}
.y4f{bottom:651.933333pt;}
.yad{bottom:652.413333pt;}
.yd4{bottom:653.693333pt;}
.y84{bottom:654.973333pt;}
.yf6{bottom:657.213333pt;}
.y1b{bottom:658.333333pt;}
.y119{bottom:662.973333pt;}
.yac{bottom:672.893333pt;}
.y4e{bottom:673.053333pt;}
.y1a{bottom:673.693333pt;}
.yd3{bottom:674.813333pt;}
.y83{bottom:676.093333pt;}
.y138{bottom:677.853333pt;}
.y118{bottom:682.493333pt;}
.y19{bottom:689.213333pt;}
.yab{bottom:692.253333pt;}
.y4d{bottom:694.173333pt;}
.yd2{bottom:695.933333pt;}
.y137{bottom:696.893333pt;}
.y82{bottom:697.213333pt;}
.y117{bottom:701.853333pt;}
.y18{bottom:704.573333pt;}
.yaa{bottom:706.813333pt;}
.y4c{bottom:715.453333pt;}
.yd1{bottom:717.053333pt;}
.y81{bottom:718.333333pt;}
.y17{bottom:719.933333pt;}
.y116{bottom:721.373333pt;}
.y16{bottom:735.453333pt;}
.y4b{bottom:736.573333pt;}
.yd0{bottom:738.333333pt;}
.y80{bottom:739.613333pt;}
.y115{bottom:740.733333pt;}
.y134{bottom:746.173333pt;}
.ya8{bottom:749.853333pt;}
.y15{bottom:750.813333pt;}
.y4a{bottom:757.693333pt;}
.ycf{bottom:759.453333pt;}
.y7f{bottom:759.933333pt;}
.y114{bottom:760.253333pt;}
.y14{bottom:766.333333pt;}
.y49{bottom:778.853333pt;}
.y7e{bottom:779.493333pt;}
.y113{bottom:779.653333pt;}
.yce{bottom:780.613333pt;}
.y13{bottom:781.733333pt;}
.ya6{bottom:792.773333pt;}
.y12{bottom:796.933333pt;}
.y7d{bottom:798.853333pt;}
.y112{bottom:799.173333pt;}
.y48{bottom:800.133333pt;}
.ycd{bottom:801.733333pt;}
.y11{bottom:812.933333pt;}
.y7c{bottom:818.213333pt;}
.y111{bottom:818.533333pt;}
.y47{bottom:821.253333pt;}
.ycc{bottom:823.013333pt;}
.y10{bottom:831.013333pt;}
.ya4{bottom:835.813333pt;}
.y7b{bottom:838.053333pt;}
.y46{bottom:842.373333pt;}
.ycb{bottom:844.133333pt;}
.yf{bottom:846.373333pt;}
.y7a{bottom:857.413333pt;}
.ye{bottom:861.893333pt;}
.y45{bottom:863.493333pt;}
.yca{bottom:865.253333pt;}
.y79{bottom:876.933333pt;}
.ya1{bottom:878.853333pt;}
.yd{bottom:879.333333pt;}
.y44{bottom:884.773333pt;}
.yc9{bottom:886.373333pt;}
.yc{bottom:893.093333pt;}
.y78{bottom:896.293333pt;}
.y43{bottom:905.893333pt;}
.yc8{bottom:907.653333pt;}
.yb{bottom:913.093333pt;}
.y77{bottom:915.813333pt;}
.y9f{bottom:921.733333pt;}
.y42{bottom:927.013333pt;}
.yc7{bottom:928.773333pt;}
.ya{bottom:932.933333pt;}
.y76{bottom:935.173333pt;}
.y41{bottom:948.133333pt;}
.y9e{bottom:949.093333pt;}
.yf5{bottom:949.893333pt;}
.y9{bottom:952.293333pt;}
.y75{bottom:954.693333pt;}
.y8{bottom:967.813333pt;}
.y40{bottom:969.413333pt;}
.yf4{bottom:971.013333pt;}
.y74{bottom:974.053333pt;}
.y7{bottom:983.173333pt;}
.y3f{bottom:990.533333pt;}
.yf3{bottom:992.293333pt;}
.y110{bottom:993.253333pt;}
.y73{bottom:993.573333pt;}
.y6{bottom:998.693333pt;}
.y3e{bottom:1011.680000pt;}
.yf2{bottom:1012.640000pt;}
.y72{bottom:1012.960000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1035.360000pt;}
.y1{bottom:1049.920000pt;}
.h18{height:21.280000pt;}
.h2{height:25.440000pt;}
.h10{height:29.940625pt;}
.ha{height:30.254687pt;}
.h1e{height:33.152000pt;}
.h5{height:35.342500pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.h7{height:37.730625pt;}
.h1c{height:38.080000pt;}
.h1d{height:38.953125pt;}
.h15{height:41.112500pt;}
.h17{height:41.543750pt;}
.h19{height:42.240000pt;}
.h1b{height:42.272000pt;}
.h11{height:42.392500pt;}
.h1a{height:42.400000pt;}
.hf{height:43.782500pt;}
.he{height:44.422500pt;}
.h3{height:44.505000pt;}
.hd{height:44.687500pt;}
.h14{height:45.156250pt;}
.h12{height:47.247500pt;}
.h16{height:48.422500pt;}
.h1f{height:48.530000pt;}
.h8{height:48.768750pt;}
.h9{height:49.542500pt;}
.hb{height:52.654688pt;}
.h13{height:52.750000pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.w5{width:225.786667pt;}
.w8{width:251.866667pt;}
.w7{width:283.106667pt;}
.w6{width:373.986667pt;}
.w3{width:538.813333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x2{left:8.640000pt;}
.xf{left:92.314667pt;}
.x1{left:96.032000pt;}
.x11{left:101.946667pt;}
.x6{left:104.351988pt;}
.xd{left:120.031988pt;}
.x3{left:143.226667pt;}
.x15{left:148.666655pt;}
.x9{left:170.906655pt;}
.x13{left:178.586655pt;}
.xe{left:180.026655pt;}
.x8{left:193.306655pt;}
.xa{left:229.306655pt;}
.x12{left:244.986667pt;}
.x14{left:270.946667pt;}
.x10{left:323.266667pt;}
.x7{left:339.906655pt;}
.xc{left:372.066655pt;}
.xb{left:373.506655pt;}
.x5{left:396.866655pt;}
}




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