
    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_5720e269a3731f936992fc2d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_edcdc6fe4466847f8673782a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.727539;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_71ea8f96a512fb25926f076e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_cdf846f896af953e777175fe.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_491f28f5bed12e7b733915f4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4c559a3ed202b919cb556809.woff')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249894,0.000000,0.000000,0.250000,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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.031680px;}
.ls5{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.174000px;}
.ls8{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.274800px;}
.ls4{letter-spacing:0.306000px;}
.ls10{letter-spacing:0.393600px;}
.lsf{letter-spacing:0.479520px;}
.ls0{letter-spacing:0.894240px;}
.ls2{letter-spacing:10.116000px;}
.ls11{letter-spacing:97.866720px;}
.lse{letter-spacing:128.826720px;}
.lsa{letter-spacing:328.494240px;}
.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;}
}
.ws6{word-spacing:-16.488000px;}
.ws8{word-spacing:-13.899360px;}
.ws7{word-spacing:-13.780560px;}
.ws0{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.447440px;}
.ws3{word-spacing:-12.402000px;}
.ws1{word-spacing:-12.204000px;}
.ws2{word-spacing:-12.186000px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-2.958720px;}
._1{margin-left:-1.769040px;}
._3{width:1.236240px;}
._7{width:2.569680px;}
._6{width:3.884400px;}
._16{width:4.903920px;}
._10{width:6.114240px;}
._11{width:7.309440px;}
._e{width:8.426160px;}
._f{width:9.433200px;}
._9{width:11.005680px;}
._b{width:12.489840px;}
._22{width:14.340960px;}
._d{width:15.719040px;}
._c{width:17.509680px;}
._8{width:19.182960px;}
._5{width:20.378160px;}
._4{width:21.453840px;}
._1b{width:22.746240px;}
._a{width:24.501600px;}
._18{width:25.655760px;}
._26{width:27.393120px;}
._21{width:28.728000px;}
._1e{width:29.862000px;}
._1a{width:31.852080px;}
._2b{width:33.006240px;}
._1c{width:34.146000px;}
._1d{width:35.280000px;}
._27{width:36.752400px;}
._36{width:37.887840px;}
._17{width:39.381840px;}
._38{width:41.024160px;}
._33{width:42.627600px;}
._19{width:44.024400px;}
._13{width:45.197280px;}
._29{width:46.373760px;}
._28{width:47.748240px;}
._30{width:49.619520px;}
._2a{width:50.915520px;}
._34{width:52.110720px;}
._15{width:53.282160px;}
._14{width:54.381600px;}
._32{width:55.636560px;}
._31{width:56.831760px;}
._39{width:58.105440px;}
._2d{width:59.760000px;}
._2f{width:64.959120px;}
._2e{width:69.680160px;}
._2{width:72.881760px;}
._2c{width:76.212720px;}
._37{width:77.600880px;}
._3c{width:86.831280px;}
._3a{width:97.946640px;}
._20{width:113.832000px;}
._1f{width:115.817040px;}
._3b{width:181.849680px;}
._35{width:597.659760px;}
._23{width:849.954480px;}
._25{width:1059.609120px;}
._24{width:1417.176000px;}
._0{width:1431.065760px;}
.fc6{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(240,23,6);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:66.215738px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y55{bottom:-1116.180000px;}
.y0{bottom:0.000000px;}
.y53{bottom:0.000092px;}
.y5a{bottom:3.060000px;}
.yd{bottom:3.960000px;}
.y8a{bottom:5.400000px;}
.y8d{bottom:5.580000px;}
.yba{bottom:6.300000px;}
.ybc{bottom:6.330000px;}
.y9a{bottom:6.480000px;}
.ycc{bottom:6.525000px;}
.y95{bottom:6.660000px;}
.yde{bottom:7.380000px;}
.y97{bottom:7.560000px;}
.ye0{bottom:8.640000px;}
.yd8{bottom:15.120000px;}
.y81{bottom:22.140000px;}
.y24{bottom:22.320000px;}
.y52{bottom:28.620000px;}
.yd7{bottom:33.480000px;}
.y80{bottom:40.500000px;}
.y23{bottom:40.680000px;}
.y51{bottom:46.440000px;}
.y2{bottom:56.520000px;}
.y58{bottom:57.060000px;}
.y22{bottom:59.040000px;}
.y50{bottom:64.260000px;}
.y59{bottom:71.820000px;}
.y21{bottom:77.220000px;}
.y92{bottom:78.120000px;}
.yab{bottom:79.020000px;}
.y4f{bottom:82.080000px;}
.y86{bottom:87.660000px;}
.y38{bottom:88.560000px;}
.y20{bottom:95.580000px;}
.yc5{bottom:95.985000px;}
.yb8{bottom:96.120000px;}
.y91{bottom:96.480000px;}
.yaa{bottom:97.380000px;}
.y4e{bottom:99.720000px;}
.y85{bottom:105.840000px;}
.y37{bottom:106.920000px;}
.ydc{bottom:113.760000px;}
.y1f{bottom:113.940000px;}
.yc4{bottom:114.345000px;}
.y9f{bottom:114.480000px;}
.y90{bottom:114.840000px;}
.ya9{bottom:115.605000px;}
.y4d{bottom:117.540000px;}
.y84{bottom:124.245000px;}
.y36{bottom:125.100000px;}
.yd0{bottom:125.460000px;}
.y139{bottom:129.240000px;}
.y1e{bottom:132.300000px;}
.yb7{bottom:132.690000px;}
.yc3{bottom:132.705000px;}
.y9e{bottom:132.840000px;}
.ya8{bottom:133.965000px;}
.y4c{bottom:135.360000px;}
.yda{bottom:137.700000px;}
.y83{bottom:142.605000px;}
.y35{bottom:143.460000px;}
.ycf{bottom:143.820000px;}
.y138{bottom:149.040000px;}
.y1d{bottom:150.480000px;}
.y111{bottom:150.660000px;}
.yb6{bottom:151.050000px;}
.yc2{bottom:151.065000px;}
.y9d{bottom:151.200000px;}
.ya7{bottom:152.325000px;}
.y8f{bottom:152.850000px;}
.y4b{bottom:153.180000px;}
.yd9{bottom:160.410000px;}
.y34{bottom:161.850000px;}
.yce{bottom:162.180000px;}
.y1c{bottom:168.840000px;}
.y137{bottom:168.870000px;}
.y110{bottom:169.050000px;}
.y4a{bottom:171.000000px;}
.y99{bottom:174.450000px;}
.y33{bottom:180.210000px;}
.ycd{bottom:181.830000px;}
.y1b{bottom:187.200000px;}
.y10f{bottom:187.410000px;}
.y49{bottom:188.640000px;}
.y136{bottom:188.670000px;}
.y98{bottom:196.050000px;}
.y32{bottom:198.390000px;}
.y1a{bottom:205.410000px;}
.y10e{bottom:205.590000px;}
.y48{bottom:206.490000px;}
.y135{bottom:208.290000px;}
.y31{bottom:216.750000px;}
.y96{bottom:217.830000px;}
.y19{bottom:223.770000px;}
.y10d{bottom:223.950000px;}
.y134{bottom:228.090000px;}
.yd6{bottom:230.430000px;}
.y47{bottom:233.130000px;}
.y30{bottom:235.110000px;}
.y94{bottom:240.510000px;}
.y18{bottom:242.130000px;}
.y10c{bottom:242.310000px;}
.y133{bottom:247.890000px;}
.yd5{bottom:251.850000px;}
.y2f{bottom:253.290000px;}
.y17{bottom:260.490000px;}
.y10b{bottom:260.670000px;}
.y93{bottom:262.110000px;}
.y132{bottom:267.690000px;}
.y2e{bottom:271.650000px;}
.yd4{bottom:273.270000px;}
.y16{bottom:278.670000px;}
.y10a{bottom:278.850000px;}
.y82{bottom:282.810000px;}
.y131{bottom:287.490000px;}
.y2d{bottom:290.010000px;}
.yd3{bottom:294.690000px;}
.y15{bottom:297.030000px;}
.y109{bottom:297.210000px;}
.y130{bottom:307.110000px;}
.y2c{bottom:308.370000px;}
.y14{bottom:315.390000px;}
.y108{bottom:315.570000px;}
.yd2{bottom:316.110000px;}
.y46{bottom:317.550000px;}
.y8e{bottom:320.070000px;}
.y2b{bottom:326.550000px;}
.y12f{bottom:326.910000px;}
.y13{bottom:333.570000px;}
.y107{bottom:333.750000px;}
.y45{bottom:333.930000px;}
.yd1{bottom:337.710000px;}
.y8c{bottom:340.590000px;}
.y2a{bottom:344.910000px;}
.y12e{bottom:346.710000px;}
.y44{bottom:350.490000px;}
.y12{bottom:351.930000px;}
.y106{bottom:352.110000px;}
.yc1{bottom:359.130000px;}
.y8b{bottom:361.290000px;}
.y29{bottom:363.270000px;}
.y12d{bottom:366.510000px;}
.y43{bottom:366.870000px;}
.y11{bottom:370.290000px;}
.y105{bottom:370.470000px;}
.y28{bottom:381.630000px;}
.y89{bottom:381.810000px;}
.y42{bottom:383.430000px;}
.y12c{bottom:386.130000px;}
.y10{bottom:388.650000px;}
.y104{bottom:388.830000px;}
.ycb{bottom:396.390000px;}
.y27{bottom:399.810000px;}
.y88{bottom:402.375000px;}
.y12b{bottom:405.975000px;}
.yf{bottom:406.830000px;}
.y103{bottom:407.055000px;}
.yca{bottom:418.035000px;}
.y26{bottom:418.215000px;}
.y87{bottom:421.455000px;}
.y41{bottom:425.370000px;}
.y102{bottom:425.415000px;}
.y12a{bottom:425.775000px;}
.y25{bottom:436.575000px;}
.yc9{bottom:439.455000px;}
.y7f{bottom:440.535000px;}
.y101{bottom:443.775000px;}
.y129{bottom:445.575000px;}
.ye{bottom:450.795000px;}
.y40{bottom:455.295000px;}
.y54{bottom:455.831387px;}
.y39{bottom:456.915000px;}
.yc8{bottom:460.875000px;}
.y100{bottom:462.135000px;}
.y128{bottom:465.375000px;}
.yff{bottom:480.315000px;}
.yc7{bottom:482.295000px;}
.y3f{bottom:484.995000px;}
.yfe{bottom:498.675000px;}
.y7e{bottom:500.115000px;}
.y3e{bottom:502.635000px;}
.yc6{bottom:503.715000px;}
.y127{bottom:504.795000px;}
.yfd{bottom:517.035000px;}
.y7d{bottom:518.475000px;}
.y3d{bottom:520.455000px;}
.y126{bottom:524.595000px;}
.yb5{bottom:525.135000px;}
.yfc{bottom:535.215000px;}
.y7c{bottom:536.655000px;}
.y3c{bottom:538.275000px;}
.y125{bottom:544.395000px;}
.yfb{bottom:553.575000px;}
.y7b{bottom:555.015000px;}
.y3b{bottom:556.095000px;}
.yc0{bottom:562.575000px;}
.y124{bottom:564.015000px;}
.yfa{bottom:571.935000px;}
.y7a{bottom:573.375000px;}
.y3a{bottom:581.835000px;}
.y123{bottom:583.815000px;}
.ybf{bottom:583.995000px;}
.yf9{bottom:590.295000px;}
.y79{bottom:591.735000px;}
.y122{bottom:603.615000px;}
.ybe{bottom:605.415000px;}
.yf8{bottom:608.475000px;}
.y78{bottom:609.915000px;}
.y121{bottom:623.415000px;}
.yf7{bottom:626.835000px;}
.ybd{bottom:627.015000px;}
.y77{bottom:628.275000px;}
.y120{bottom:643.215000px;}
.yf6{bottom:645.195000px;}
.y76{bottom:646.635000px;}
.ybb{bottom:648.435000px;}
.y11f{bottom:662.865000px;}
.yf5{bottom:663.585000px;}
.y75{bottom:665.025000px;}
.yb9{bottom:669.885000px;}
.yf4{bottom:681.765000px;}
.y11e{bottom:682.665000px;}
.y74{bottom:683.205000px;}
.yb4{bottom:691.305000px;}
.yf3{bottom:700.125000px;}
.y73{bottom:701.565000px;}
.y11d{bottom:702.465000px;}
.yf2{bottom:718.485000px;}
.y72{bottom:719.925000px;}
.y11c{bottom:722.265000px;}
.yf1{bottom:736.665000px;}
.y71{bottom:738.105000px;}
.y11b{bottom:741.885000px;}
.yb3{bottom:750.885000px;}
.yf0{bottom:755.025000px;}
.y70{bottom:756.465000px;}
.y11a{bottom:761.685000px;}
.yb2{bottom:769.245000px;}
.yef{bottom:773.385000px;}
.y6f{bottom:774.825000px;}
.y119{bottom:781.485000px;}
.ya6{bottom:784.365000px;}
.yee{bottom:791.745000px;}
.y6e{bottom:793.185000px;}
.y118{bottom:801.285000px;}
.yed{bottom:809.925000px;}
.y6d{bottom:811.365000px;}
.y117{bottom:821.085000px;}
.yb1{bottom:821.805000px;}
.yec{bottom:828.285000px;}
.y6c{bottom:829.725000px;}
.y116{bottom:840.705000px;}
.yb0{bottom:843.405000px;}
.yeb{bottom:846.645000px;}
.y6b{bottom:848.085000px;}
.y115{bottom:860.505000px;}
.yea{bottom:865.005000px;}
.yaf{bottom:866.085000px;}
.y6a{bottom:866.445000px;}
.yc{bottom:872.025000px;}
.y114{bottom:880.305000px;}
.ye9{bottom:883.185000px;}
.y69{bottom:884.625000px;}
.yae{bottom:887.865000px;}
.yb{bottom:894.885000px;}
.y113{bottom:900.150000px;}
.ye8{bottom:901.590000px;}
.y68{bottom:903.030000px;}
.yad{bottom:909.510000px;}
.ya{bottom:914.550000px;}
.y112{bottom:919.770000px;}
.ye7{bottom:919.950000px;}
.y67{bottom:921.390000px;}
.yac{bottom:931.290000px;}
.y9{bottom:932.730000px;}
.ye6{bottom:938.130000px;}
.y66{bottom:939.570000px;}
.y8{bottom:951.270000px;}
.y9c{bottom:951.810000px;}
.ye5{bottom:956.490000px;}
.y65{bottom:957.930000px;}
.y7{bottom:973.230000px;}
.ye4{bottom:974.850000px;}
.y64{bottom:976.290000px;}
.y141{bottom:982.950000px;}
.ya5{bottom:989.070000px;}
.y6{bottom:991.410000px;}
.ye3{bottom:993.210000px;}
.y63{bottom:994.650000px;}
.y140{bottom:1002.750000px;}
.ya4{bottom:1010.850000px;}
.y5{bottom:1011.390000px;}
.y62{bottom:1012.830000px;}
.y13f{bottom:1022.370000px;}
.ydb{bottom:1026.510000px;}
.y61{bottom:1031.190000px;}
.ya3{bottom:1032.450000px;}
.y4{bottom:1037.130000px;}
.y13e{bottom:1042.170000px;}
.y60{bottom:1049.550000px;}
.ya2{bottom:1054.230000px;}
.y3{bottom:1061.610000px;}
.y13d{bottom:1061.970000px;}
.ye2{bottom:1063.950000px;}
.y5f{bottom:1067.910000px;}
.ya1{bottom:1075.830000px;}
.y13c{bottom:1081.770000px;}
.y5e{bottom:1086.090000px;}
.ye1{bottom:1086.450000px;}
.ya0{bottom:1097.430000px;}
.y13b{bottom:1101.570000px;}
.y1{bottom:1102.110000px;}
.y5d{bottom:1104.450000px;}
.ydf{bottom:1109.130000px;}
.y9b{bottom:1118.130000px;}
.y13a{bottom:1121.190000px;}
.y5c{bottom:1122.810000px;}
.ydd{bottom:1132.890000px;}
.y5b{bottom:1140.990000px;}
.y57{bottom:1159.020000px;}
.y56{bottom:1175.940000px;}
.h7{height:18.360000px;}
.h14{height:19.800000px;}
.h13{height:19.836000px;}
.hf{height:20.160000px;}
.h1f{height:20.700000px;}
.h20{height:20.736000px;}
.h17{height:20.880000px;}
.h1d{height:20.916000px;}
.h19{height:21.060000px;}
.h28{height:21.780000px;}
.h25{height:21.816000px;}
.h18{height:21.960000px;}
.h27{height:23.040000px;}
.h15{height:36.540000px;}
.h1a{height:36.576000px;}
.h21{height:36.720000px;}
.h3{height:47.415937px;}
.h24{height:47.880000px;}
.hc{height:47.980898px;}
.hb{height:53.709961px;}
.h11{height:54.900000px;}
.ha{height:55.291992px;}
.h6{height:59.439023px;}
.h5{height:61.189805px;}
.he{height:65.860087px;}
.h2{height:65.884219px;}
.h10{height:73.722656px;}
.h4{height:86.255508px;}
.h26{height:128.196000px;}
.h16{height:129.060000px;}
.h12{height:156.990000px;}
.h22{height:165.270000px;}
.h1b{height:165.420000px;}
.h1e{height:165.450000px;}
.h1c{height:166.710000px;}
.h23{height:176.580000px;}
.h8{height:421.230000px;}
.hd{height:471.665585px;}
.h9{height:596.235000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:49.500000px;}
.w9{width:72.180000px;}
.wa{width:101.376000px;}
.wb{width:145.080000px;}
.w8{width:167.250000px;}
.w4{width:216.750000px;}
.w7{width:232.590000px;}
.w5{width:254.694110px;}
.w3{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x6{left:10.800000px;}
.x1{left:84.995987px;}
.xa{left:145.655987px;}
.xc{left:156.089987px;}
.x7{left:202.005000px;}
.x9{left:265.575000px;}
.xd{left:319.215000px;}
.x4{left:473.144987px;}
.xe{left:487.185000px;}
.xf{left:560.085000px;}
.x5{left:586.365000px;}
.x8{left:597.164959px;}
.x10{left:662.190000px;}
.xb{left:756.330000px;}
.x2{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.028160pt;}
.ls5{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.154667pt;}
.ls8{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.244267pt;}
.ls4{letter-spacing:0.272000pt;}
.ls10{letter-spacing:0.349867pt;}
.lsf{letter-spacing:0.426240pt;}
.ls0{letter-spacing:0.794880pt;}
.ls2{letter-spacing:8.992000pt;}
.ls11{letter-spacing:86.992640pt;}
.lse{letter-spacing:114.512640pt;}
.lsa{letter-spacing:291.994880pt;}
.ws6{word-spacing:-14.656000pt;}
.ws8{word-spacing:-12.354987pt;}
.ws7{word-spacing:-12.249387pt;}
.ws0{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.953280pt;}
.ws3{word-spacing:-11.024000pt;}
.ws1{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.832000pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-2.629973pt;}
._1{margin-left:-1.572480pt;}
._3{width:1.098880pt;}
._7{width:2.284160pt;}
._6{width:3.452800pt;}
._16{width:4.359040pt;}
._10{width:5.434880pt;}
._11{width:6.497280pt;}
._e{width:7.489920pt;}
._f{width:8.385067pt;}
._9{width:9.782827pt;}
._b{width:11.102080pt;}
._22{width:12.747520pt;}
._d{width:13.972480pt;}
._c{width:15.564160pt;}
._8{width:17.051520pt;}
._5{width:18.113920pt;}
._4{width:19.070080pt;}
._1b{width:20.218880pt;}
._a{width:21.779200pt;}
._18{width:22.805120pt;}
._26{width:24.349440pt;}
._21{width:25.536000pt;}
._1e{width:26.544000pt;}
._1a{width:28.312960pt;}
._2b{width:29.338880pt;}
._1c{width:30.352000pt;}
._1d{width:31.360000pt;}
._27{width:32.668800pt;}
._36{width:33.678080pt;}
._17{width:35.006080pt;}
._38{width:36.465920pt;}
._33{width:37.891200pt;}
._19{width:39.132800pt;}
._13{width:40.175360pt;}
._29{width:41.221120pt;}
._28{width:42.442880pt;}
._30{width:44.106240pt;}
._2a{width:45.258240pt;}
._34{width:46.320640pt;}
._15{width:47.361920pt;}
._14{width:48.339200pt;}
._32{width:49.454720pt;}
._31{width:50.517120pt;}
._39{width:51.649280pt;}
._2d{width:53.120000pt;}
._2f{width:57.741440pt;}
._2e{width:61.937920pt;}
._2{width:64.783787pt;}
._2c{width:67.744640pt;}
._37{width:68.978560pt;}
._3c{width:77.183360pt;}
._3a{width:87.063680pt;}
._20{width:101.184000pt;}
._1f{width:102.948480pt;}
._3b{width:161.644160pt;}
._35{width:531.253120pt;}
._23{width:755.515093pt;}
._25{width:941.874773pt;}
._24{width:1259.712000pt;}
._0{width:1272.058453pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:58.858433pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y55{bottom:-992.160000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:0.000081pt;}
.y5a{bottom:2.720000pt;}
.yd{bottom:3.520000pt;}
.y8a{bottom:4.800000pt;}
.y8d{bottom:4.960000pt;}
.yba{bottom:5.600000pt;}
.ybc{bottom:5.626667pt;}
.y9a{bottom:5.760000pt;}
.ycc{bottom:5.800000pt;}
.y95{bottom:5.920000pt;}
.yde{bottom:6.560000pt;}
.y97{bottom:6.720000pt;}
.ye0{bottom:7.680000pt;}
.yd8{bottom:13.440000pt;}
.y81{bottom:19.680000pt;}
.y24{bottom:19.840000pt;}
.y52{bottom:25.440000pt;}
.yd7{bottom:29.760000pt;}
.y80{bottom:36.000000pt;}
.y23{bottom:36.160000pt;}
.y51{bottom:41.280000pt;}
.y2{bottom:50.240000pt;}
.y58{bottom:50.720000pt;}
.y22{bottom:52.480000pt;}
.y50{bottom:57.120000pt;}
.y59{bottom:63.840000pt;}
.y21{bottom:68.640000pt;}
.y92{bottom:69.440000pt;}
.yab{bottom:70.240000pt;}
.y4f{bottom:72.960000pt;}
.y86{bottom:77.920000pt;}
.y38{bottom:78.720000pt;}
.y20{bottom:84.960000pt;}
.yc5{bottom:85.320000pt;}
.yb8{bottom:85.440000pt;}
.y91{bottom:85.760000pt;}
.yaa{bottom:86.560000pt;}
.y4e{bottom:88.640000pt;}
.y85{bottom:94.080000pt;}
.y37{bottom:95.040000pt;}
.ydc{bottom:101.120000pt;}
.y1f{bottom:101.280000pt;}
.yc4{bottom:101.640000pt;}
.y9f{bottom:101.760000pt;}
.y90{bottom:102.080000pt;}
.ya9{bottom:102.760000pt;}
.y4d{bottom:104.480000pt;}
.y84{bottom:110.440000pt;}
.y36{bottom:111.200000pt;}
.yd0{bottom:111.520000pt;}
.y139{bottom:114.880000pt;}
.y1e{bottom:117.600000pt;}
.yb7{bottom:117.946667pt;}
.yc3{bottom:117.960000pt;}
.y9e{bottom:118.080000pt;}
.ya8{bottom:119.080000pt;}
.y4c{bottom:120.320000pt;}
.yda{bottom:122.400000pt;}
.y83{bottom:126.760000pt;}
.y35{bottom:127.520000pt;}
.ycf{bottom:127.840000pt;}
.y138{bottom:132.480000pt;}
.y1d{bottom:133.760000pt;}
.y111{bottom:133.920000pt;}
.yb6{bottom:134.266667pt;}
.yc2{bottom:134.280000pt;}
.y9d{bottom:134.400000pt;}
.ya7{bottom:135.400000pt;}
.y8f{bottom:135.866667pt;}
.y4b{bottom:136.160000pt;}
.yd9{bottom:142.586667pt;}
.y34{bottom:143.866667pt;}
.yce{bottom:144.160000pt;}
.y1c{bottom:150.080000pt;}
.y137{bottom:150.106667pt;}
.y110{bottom:150.266667pt;}
.y4a{bottom:152.000000pt;}
.y99{bottom:155.066667pt;}
.y33{bottom:160.186667pt;}
.ycd{bottom:161.626667pt;}
.y1b{bottom:166.400000pt;}
.y10f{bottom:166.586667pt;}
.y49{bottom:167.680000pt;}
.y136{bottom:167.706667pt;}
.y98{bottom:174.266667pt;}
.y32{bottom:176.346667pt;}
.y1a{bottom:182.586667pt;}
.y10e{bottom:182.746667pt;}
.y48{bottom:183.546667pt;}
.y135{bottom:185.146667pt;}
.y31{bottom:192.666667pt;}
.y96{bottom:193.626667pt;}
.y19{bottom:198.906667pt;}
.y10d{bottom:199.066667pt;}
.y134{bottom:202.746667pt;}
.yd6{bottom:204.826667pt;}
.y47{bottom:207.226667pt;}
.y30{bottom:208.986667pt;}
.y94{bottom:213.786667pt;}
.y18{bottom:215.226667pt;}
.y10c{bottom:215.386667pt;}
.y133{bottom:220.346667pt;}
.yd5{bottom:223.866667pt;}
.y2f{bottom:225.146667pt;}
.y17{bottom:231.546667pt;}
.y10b{bottom:231.706667pt;}
.y93{bottom:232.986667pt;}
.y132{bottom:237.946667pt;}
.y2e{bottom:241.466667pt;}
.yd4{bottom:242.906667pt;}
.y16{bottom:247.706667pt;}
.y10a{bottom:247.866667pt;}
.y82{bottom:251.386667pt;}
.y131{bottom:255.546667pt;}
.y2d{bottom:257.786667pt;}
.yd3{bottom:261.946667pt;}
.y15{bottom:264.026667pt;}
.y109{bottom:264.186667pt;}
.y130{bottom:272.986667pt;}
.y2c{bottom:274.106667pt;}
.y14{bottom:280.346667pt;}
.y108{bottom:280.506667pt;}
.yd2{bottom:280.986667pt;}
.y46{bottom:282.266667pt;}
.y8e{bottom:284.506667pt;}
.y2b{bottom:290.266667pt;}
.y12f{bottom:290.586667pt;}
.y13{bottom:296.506667pt;}
.y107{bottom:296.666667pt;}
.y45{bottom:296.826667pt;}
.yd1{bottom:300.186667pt;}
.y8c{bottom:302.746667pt;}
.y2a{bottom:306.586667pt;}
.y12e{bottom:308.186667pt;}
.y44{bottom:311.546667pt;}
.y12{bottom:312.826667pt;}
.y106{bottom:312.986667pt;}
.yc1{bottom:319.226667pt;}
.y8b{bottom:321.146667pt;}
.y29{bottom:322.906667pt;}
.y12d{bottom:325.786667pt;}
.y43{bottom:326.106667pt;}
.y11{bottom:329.146667pt;}
.y105{bottom:329.306667pt;}
.y28{bottom:339.226667pt;}
.y89{bottom:339.386667pt;}
.y42{bottom:340.826667pt;}
.y12c{bottom:343.226667pt;}
.y10{bottom:345.466667pt;}
.y104{bottom:345.626667pt;}
.ycb{bottom:352.346667pt;}
.y27{bottom:355.386667pt;}
.y88{bottom:357.666667pt;}
.y12b{bottom:360.866667pt;}
.yf{bottom:361.626667pt;}
.y103{bottom:361.826667pt;}
.yca{bottom:371.586667pt;}
.y26{bottom:371.746667pt;}
.y87{bottom:374.626667pt;}
.y41{bottom:378.106667pt;}
.y102{bottom:378.146667pt;}
.y12a{bottom:378.466667pt;}
.y25{bottom:388.066667pt;}
.yc9{bottom:390.626667pt;}
.y7f{bottom:391.586667pt;}
.y101{bottom:394.466667pt;}
.y129{bottom:396.066667pt;}
.ye{bottom:400.706667pt;}
.y40{bottom:404.706667pt;}
.y54{bottom:405.183455pt;}
.y39{bottom:406.146667pt;}
.yc8{bottom:409.666667pt;}
.y100{bottom:410.786667pt;}
.y128{bottom:413.666667pt;}
.yff{bottom:426.946667pt;}
.yc7{bottom:428.706667pt;}
.y3f{bottom:431.106667pt;}
.yfe{bottom:443.266667pt;}
.y7e{bottom:444.546667pt;}
.y3e{bottom:446.786667pt;}
.yc6{bottom:447.746667pt;}
.y127{bottom:448.706667pt;}
.yfd{bottom:459.586667pt;}
.y7d{bottom:460.866667pt;}
.y3d{bottom:462.626667pt;}
.y126{bottom:466.306667pt;}
.yb5{bottom:466.786667pt;}
.yfc{bottom:475.746667pt;}
.y7c{bottom:477.026667pt;}
.y3c{bottom:478.466667pt;}
.y125{bottom:483.906667pt;}
.yfb{bottom:492.066667pt;}
.y7b{bottom:493.346667pt;}
.y3b{bottom:494.306667pt;}
.yc0{bottom:500.066667pt;}
.y124{bottom:501.346667pt;}
.yfa{bottom:508.386667pt;}
.y7a{bottom:509.666667pt;}
.y3a{bottom:517.186667pt;}
.y123{bottom:518.946667pt;}
.ybf{bottom:519.106667pt;}
.yf9{bottom:524.706667pt;}
.y79{bottom:525.986667pt;}
.y122{bottom:536.546667pt;}
.ybe{bottom:538.146667pt;}
.yf8{bottom:540.866667pt;}
.y78{bottom:542.146667pt;}
.y121{bottom:554.146667pt;}
.yf7{bottom:557.186667pt;}
.ybd{bottom:557.346667pt;}
.y77{bottom:558.466667pt;}
.y120{bottom:571.746667pt;}
.yf6{bottom:573.506667pt;}
.y76{bottom:574.786667pt;}
.ybb{bottom:576.386667pt;}
.y11f{bottom:589.213333pt;}
.yf5{bottom:589.853333pt;}
.y75{bottom:591.133333pt;}
.yb9{bottom:595.453333pt;}
.yf4{bottom:606.013333pt;}
.y11e{bottom:606.813333pt;}
.y74{bottom:607.293333pt;}
.yb4{bottom:614.493333pt;}
.yf3{bottom:622.333333pt;}
.y73{bottom:623.613333pt;}
.y11d{bottom:624.413333pt;}
.yf2{bottom:638.653333pt;}
.y72{bottom:639.933333pt;}
.y11c{bottom:642.013333pt;}
.yf1{bottom:654.813333pt;}
.y71{bottom:656.093333pt;}
.y11b{bottom:659.453333pt;}
.yb3{bottom:667.453333pt;}
.yf0{bottom:671.133333pt;}
.y70{bottom:672.413333pt;}
.y11a{bottom:677.053333pt;}
.yb2{bottom:683.773333pt;}
.yef{bottom:687.453333pt;}
.y6f{bottom:688.733333pt;}
.y119{bottom:694.653333pt;}
.ya6{bottom:697.213333pt;}
.yee{bottom:703.773333pt;}
.y6e{bottom:705.053333pt;}
.y118{bottom:712.253333pt;}
.yed{bottom:719.933333pt;}
.y6d{bottom:721.213333pt;}
.y117{bottom:729.853333pt;}
.yb1{bottom:730.493333pt;}
.yec{bottom:736.253333pt;}
.y6c{bottom:737.533333pt;}
.y116{bottom:747.293333pt;}
.yb0{bottom:749.693333pt;}
.yeb{bottom:752.573333pt;}
.y6b{bottom:753.853333pt;}
.y115{bottom:764.893333pt;}
.yea{bottom:768.893333pt;}
.yaf{bottom:769.853333pt;}
.y6a{bottom:770.173333pt;}
.yc{bottom:775.133333pt;}
.y114{bottom:782.493333pt;}
.ye9{bottom:785.053333pt;}
.y69{bottom:786.333333pt;}
.yae{bottom:789.213333pt;}
.yb{bottom:795.453333pt;}
.y113{bottom:800.133333pt;}
.ye8{bottom:801.413333pt;}
.y68{bottom:802.693333pt;}
.yad{bottom:808.453333pt;}
.ya{bottom:812.933333pt;}
.y112{bottom:817.573333pt;}
.ye7{bottom:817.733333pt;}
.y67{bottom:819.013333pt;}
.yac{bottom:827.813333pt;}
.y9{bottom:829.093333pt;}
.ye6{bottom:833.893333pt;}
.y66{bottom:835.173333pt;}
.y8{bottom:845.573333pt;}
.y9c{bottom:846.053333pt;}
.ye5{bottom:850.213333pt;}
.y65{bottom:851.493333pt;}
.y7{bottom:865.093333pt;}
.ye4{bottom:866.533333pt;}
.y64{bottom:867.813333pt;}
.y141{bottom:873.733333pt;}
.ya5{bottom:879.173333pt;}
.y6{bottom:881.253333pt;}
.ye3{bottom:882.853333pt;}
.y63{bottom:884.133333pt;}
.y140{bottom:891.333333pt;}
.ya4{bottom:898.533333pt;}
.y5{bottom:899.013333pt;}
.y62{bottom:900.293333pt;}
.y13f{bottom:908.773333pt;}
.ydb{bottom:912.453333pt;}
.y61{bottom:916.613333pt;}
.ya3{bottom:917.733333pt;}
.y4{bottom:921.893333pt;}
.y13e{bottom:926.373333pt;}
.y60{bottom:932.933333pt;}
.ya2{bottom:937.093333pt;}
.y3{bottom:943.653333pt;}
.y13d{bottom:943.973333pt;}
.ye2{bottom:945.733333pt;}
.y5f{bottom:949.253333pt;}
.ya1{bottom:956.293333pt;}
.y13c{bottom:961.573333pt;}
.y5e{bottom:965.413333pt;}
.ye1{bottom:965.733333pt;}
.ya0{bottom:975.493333pt;}
.y13b{bottom:979.173333pt;}
.y1{bottom:979.653333pt;}
.y5d{bottom:981.733333pt;}
.ydf{bottom:985.893333pt;}
.y9b{bottom:993.893333pt;}
.y13a{bottom:996.613333pt;}
.y5c{bottom:998.053333pt;}
.ydd{bottom:1007.013333pt;}
.y5b{bottom:1014.213333pt;}
.y57{bottom:1030.240000pt;}
.y56{bottom:1045.280000pt;}
.h7{height:16.320000pt;}
.h14{height:17.600000pt;}
.h13{height:17.632000pt;}
.hf{height:17.920000pt;}
.h1f{height:18.400000pt;}
.h20{height:18.432000pt;}
.h17{height:18.560000pt;}
.h1d{height:18.592000pt;}
.h19{height:18.720000pt;}
.h28{height:19.360000pt;}
.h25{height:19.392000pt;}
.h18{height:19.520000pt;}
.h27{height:20.480000pt;}
.h15{height:32.480000pt;}
.h1a{height:32.512000pt;}
.h21{height:32.640000pt;}
.h3{height:42.147500pt;}
.h24{height:42.560000pt;}
.hc{height:42.649687pt;}
.hb{height:47.742188pt;}
.h11{height:48.800000pt;}
.ha{height:49.148438pt;}
.h6{height:52.834688pt;}
.h5{height:54.390938pt;}
.he{height:58.542299pt;}
.h2{height:58.563750pt;}
.h10{height:65.531250pt;}
.h4{height:76.671562pt;}
.h26{height:113.952000pt;}
.h16{height:114.720000pt;}
.h12{height:139.546667pt;}
.h22{height:146.906667pt;}
.h1b{height:147.040000pt;}
.h1e{height:147.066667pt;}
.h1c{height:148.186667pt;}
.h23{height:156.960000pt;}
.h8{height:374.426667pt;}
.hd{height:419.258298pt;}
.h9{height:529.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:44.000000pt;}
.w9{width:64.160000pt;}
.wa{width:90.112000pt;}
.wb{width:128.960000pt;}
.w8{width:148.666667pt;}
.w4{width:192.666667pt;}
.w7{width:206.746667pt;}
.w5{width:226.394764pt;}
.w3{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x6{left:9.600000pt;}
.x1{left:75.551988pt;}
.xa{left:129.471988pt;}
.xc{left:138.746655pt;}
.x7{left:179.560000pt;}
.x9{left:236.066667pt;}
.xd{left:283.746667pt;}
.x4{left:420.573322pt;}
.xe{left:433.053333pt;}
.xf{left:497.853333pt;}
.x5{left:521.213333pt;}
.x8{left:530.813297pt;}
.x10{left:588.613333pt;}
.xb{left:672.293333pt;}
.x2{left:718.239988pt;}
}




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