
    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_c440be3397ffa75fcdac410b.woff2')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_39ce3e6f6d33dc6849b63eaf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c6ec105fc949e80d253890c4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cafb03520d0e800ee288c20d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_649cfec5d1636ba715682289.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a0bd494fa3e0785a09c6b56d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_75d28f028a8fa5f4a3a2d736.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8703e38be3796c5706a6a354.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_9f1d3ecfd820f923b2d875cf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.480000px;}
.lsf{letter-spacing:-1.728000px;}
.ls9{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.468000px;}
.ls7{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.001440px;}
.ls5{letter-spacing:0.015840px;}
.lsa{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.044640px;}
.ls1{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.720000px;}
.lsd{letter-spacing:86.688000px;}
.ls3{letter-spacing:88.128000px;}
.ls0{letter-spacing:1431.216000px;}
.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;}
}
.ws8{word-spacing:-19.457280px;}
.ws9{word-spacing:-19.431360px;}
.ws5{word-spacing:-18.504000px;}
.ws3{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.712000px;}
.wsa{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws4{word-spacing:-13.680000px;}
.ws6{word-spacing:-11.895840px;}
.wsf{word-spacing:-10.740960px;}
.wsd{word-spacing:-10.739520px;}
.wsc{word-spacing:-10.281720px;}
.wse{word-spacing:-10.271520px;}
.ws7{word-spacing:0.000000px;}
._3a{margin-left:-5.501280px;}
._6{margin-left:-3.669120px;}
._2{margin-left:-2.251680px;}
._0{margin-left:-1.130400px;}
._1{width:1.774560px;}
._5{width:2.895360px;}
._3{width:4.277280px;}
._7{width:5.376480px;}
._10{width:7.219680px;}
._12{width:8.500800px;}
._13{width:9.648000px;}
._f{width:11.518080px;}
._b{width:13.320000px;}
._a{width:14.347680px;}
._c{width:15.811200px;}
._d{width:16.819200px;}
._1a{width:17.832000px;}
._11{width:19.800000px;}
._e{width:21.434400px;}
._8{width:22.968000px;}
._9{width:24.552000px;}
._1c{width:25.854720px;}
._43{width:26.943360px;}
._1b{width:28.032960px;}
._16{width:29.160000px;}
._15{width:30.187680px;}
._17{width:31.392000px;}
._1d{width:33.382080px;}
._27{width:35.761920px;}
._26{width:37.851840px;}
._14{width:39.600000px;}
._29{width:40.605120px;}
._2a{width:41.742240px;}
._1e{width:44.404320px;}
._1f{width:45.615360px;}
._25{width:48.028320px;}
._24{width:49.282080px;}
._32{width:50.664480px;}
._31{width:52.466400px;}
._35{width:55.840320px;}
._2c{width:57.722400px;}
._23{width:59.195520px;}
._22{width:61.091040px;}
._21{width:63.259200px;}
._20{width:65.184480px;}
._38{width:69.220320px;}
._39{width:70.413600px;}
._36{width:81.015840px;}
._37{width:82.199040px;}
._28{width:85.785120px;}
._30{width:94.921920px;}
._2f{width:96.118560px;}
._18{width:108.845760px;}
._34{width:114.665760px;}
._41{width:117.216000px;}
._3e{width:119.664000px;}
._3f{width:120.907680px;}
._45{width:138.650400px;}
._40{width:145.656000px;}
._19{width:147.185280px;}
._33{width:148.642560px;}
._2d{width:150.563520px;}
._2e{width:152.947680px;}
._2b{width:161.507040px;}
._44{width:176.184000px;}
._3d{width:282.076320px;}
._3c{width:283.843680px;}
._3b{width:297.486240px;}
._42{width:403.272000px;}
._46{width:470.376480px;}
._4{width:1438.565760px;}
.fc3{color:rgb(79,129,189);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs6{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:83.520000px;}
.fs5{font-size:96.480000px;}
.y3b{bottom:-71.310000px;}
.y0{bottom:0.000000px;}
.y49{bottom:2.520000px;}
.y10{bottom:3.240000px;}
.y9{bottom:3.960000px;}
.y41{bottom:4.320000px;}
.yc{bottom:5.070000px;}
.y3a{bottom:5.760000px;}
.yb9{bottom:6.120000px;}
.ya8{bottom:6.480000px;}
.y4c{bottom:14.760000px;}
.ye{bottom:15.120000px;}
.y48{bottom:16.560000px;}
.yf4{bottom:18.045000px;}
.y4a{bottom:21.960000px;}
.y8{bottom:23.040000px;}
.y9b{bottom:24.480000px;}
.yb{bottom:24.870000px;}
.y40{bottom:28.080000px;}
.yfd{bottom:28.440000px;}
.y39{bottom:29.520000px;}
.y47{bottom:30.600000px;}
.yf{bottom:33.120000px;}
.y43{bottom:34.560000px;}
.y45{bottom:34.920000px;}
.yea{bottom:37.125000px;}
.y44{bottom:37.800000px;}
.y42{bottom:38.160000px;}
.yf3{bottom:39.645000px;}
.y46{bottom:46.080000px;}
.y9a{bottom:46.125000px;}
.yb8{bottom:49.680000px;}
.yc7{bottom:49.710000px;}
.yc2{bottom:49.725000px;}
.ybf{bottom:50.034000px;}
.ya7{bottom:50.040000px;}
.ycd{bottom:50.070000px;}
.y3f{bottom:51.840000px;}
.y38{bottom:53.280000px;}
.y100{bottom:55.080000px;}
.y7{bottom:57.600000px;}
.yf2{bottom:61.605000px;}
.yd2{bottom:71.634000px;}
.ya6{bottom:71.640000px;}
.yb7{bottom:71.670000px;}
.yc1{bottom:71.685000px;}
.ybe{bottom:71.994000px;}
.yfc{bottom:72.030000px;}
.yc5{bottom:72.045000px;}
.yf1{bottom:83.565000px;}
.yff{bottom:88.245000px;}
.ybd{bottom:93.594000px;}
.yd5{bottom:93.600000px;}
.yb6{bottom:93.630000px;}
.ya5{bottom:93.645000px;}
.yfb{bottom:93.990000px;}
.yce{bottom:100.836000px;}
.yba{bottom:101.196000px;}
.yf0{bottom:105.165000px;}
.ye8{bottom:108.756000px;}
.y6b{bottom:110.916000px;}
.y103{bottom:112.356000px;}
.y96{bottom:113.796000px;}
.yb5{bottom:115.230000px;}
.yd1{bottom:115.239000px;}
.yd4{bottom:115.245000px;}
.yd9{bottom:115.590000px;}
.ybc{bottom:115.599000px;}
.ya4{bottom:115.605000px;}
.y92{bottom:116.316000px;}
.y36{bottom:119.556000px;}
.yef{bottom:127.155000px;}
.yb4{bottom:137.190000px;}
.yd0{bottom:137.199000px;}
.ya3{bottom:137.205000px;}
.yfa{bottom:137.550000px;}
.ybb{bottom:137.559000px;}
.ye7{bottom:140.076000px;}
.y35{bottom:140.796000px;}
.y6a{bottom:142.236000px;}
.y102{bottom:143.676000px;}
.y95{bottom:144.756000px;}
.y91{bottom:147.276000px;}
.yee{bottom:148.755000px;}
.yb3{bottom:158.790000px;}
.ycc{bottom:159.150000px;}
.ycf{bottom:159.159000px;}
.ya2{bottom:159.165000px;}
.yf9{bottom:159.180000px;}
.y101{bottom:159.195000px;}
.y34{bottom:161.310000px;}
.yed{bottom:170.715000px;}
.ye6{bottom:171.030000px;}
.y69{bottom:173.190000px;}
.y7c{bottom:174.270000px;}
.y94{bottom:175.710000px;}
.y90{bottom:178.230000px;}
.yb2{bottom:180.750000px;}
.ya1{bottom:180.765000px;}
.ycb{bottom:180.795000px;}
.yc4{bottom:181.125000px;}
.yf8{bottom:181.140000px;}
.y33{bottom:182.190000px;}
.yec{bottom:192.675000px;}
.ye5{bottom:201.990000px;}
.y32{bottom:202.710000px;}
.ya0{bottom:202.725000px;}
.yb1{bottom:202.755000px;}
.yf7{bottom:203.100000px;}
.y68{bottom:204.195000px;}
.y7b{bottom:206.715000px;}
.y8f{bottom:209.595000px;}
.y31{bottom:223.635000px;}
.yb0{bottom:224.355000px;}
.yf6{bottom:224.700000px;}
.y9f{bottom:224.715000px;}
.y109{bottom:232.635000px;}
.ye4{bottom:232.995000px;}
.y67{bottom:235.155000px;}
.y7a{bottom:238.035000px;}
.y8e{bottom:240.555000px;}
.y30{bottom:244.155000px;}
.y9e{bottom:246.315000px;}
.yf5{bottom:246.660000px;}
.ya9{bottom:254.955000px;}
.ye3{bottom:264.315000px;}
.y2f{bottom:265.035000px;}
.y66{bottom:266.475000px;}
.y9d{bottom:268.275000px;}
.y79{bottom:268.995000px;}
.y8d{bottom:271.515000px;}
.yc8{bottom:276.195000px;}
.y2e{bottom:285.555000px;}
.y108{bottom:288.435000px;}
.yaf{bottom:289.875000px;}
.yca{bottom:289.905000px;}
.ye2{bottom:295.275000px;}
.y65{bottom:297.435000px;}
.y78{bottom:299.955000px;}
.y8c{bottom:302.475000px;}
.y107{bottom:305.355000px;}
.yd8{bottom:311.835000px;}
.yae{bottom:311.865000px;}
.y106{bottom:322.305000px;}
.ye1{bottom:326.265000px;}
.y64{bottom:328.425000px;}
.y77{bottom:330.945000px;}
.y8b{bottom:333.465000px;}
.yd7{bottom:333.795000px;}
.yc9{bottom:333.825000px;}
.y2d{bottom:334.905000px;}
.y105{bottom:338.865000px;}
.y2c{bottom:352.185000px;}
.yad{bottom:355.425000px;}
.ye0{bottom:357.225000px;}
.y63{bottom:359.385000px;}
.y76{bottom:362.265000px;}
.y8a{bottom:364.785000px;}
.y2b{bottom:371.985000px;}
.yac{bottom:377.385000px;}
.yfe{bottom:380.625000px;}
.ydf{bottom:388.545000px;}
.y62{bottom:391.785000px;}
.y2a{bottom:392.145000px;}
.y75{bottom:393.225000px;}
.y89{bottom:395.745000px;}
.yab{bottom:398.985000px;}
.y29{bottom:413.025000px;}
.yde{bottom:419.505000px;}
.yaa{bottom:420.975000px;}
.y61{bottom:424.185000px;}
.y88{bottom:426.705000px;}
.y28{bottom:436.830000px;}
.ydd{bottom:450.510000px;}
.y60{bottom:455.190000px;}
.y87{bottom:457.710000px;}
.y27{bottom:460.590000px;}
.ydc{bottom:481.470000px;}
.y26{bottom:484.350000px;}
.y5f{bottom:486.510000px;}
.y3d{bottom:487.230000px;}
.y3e{bottom:487.590000px;}
.y86{bottom:489.030000px;}
.y25{bottom:508.110000px;}
.ydb{bottom:512.790000px;}
.y5e{bottom:517.470000px;}
.y93{bottom:518.550000px;}
.y85{bottom:519.990000px;}
.y24{bottom:531.870000px;}
.yda{bottom:543.750000px;}
.y5d{bottom:548.430000px;}
.y84{bottom:550.950000px;}
.y23{bottom:555.660000px;}
.yd6{bottom:561.420000px;}
.y22{bottom:579.420000px;}
.y83{bottom:581.940000px;}
.y21{bottom:603.540000px;}
.y5c{bottom:610.380000px;}
.y3c{bottom:611.820000px;}
.y37{bottom:612.180000px;}
.y82{bottom:613.260000px;}
.yc6{bottom:626.220000px;}
.y20{bottom:628.380000px;}
.y5b{bottom:641.700000px;}
.y81{bottom:644.220000px;}
.y1f{bottom:652.500000px;}
.y5a{bottom:672.690000px;}
.y1e{bottom:675.210000px;}
.y9c{bottom:692.130000px;}
.y1d{bottom:695.010000px;}
.y59{bottom:703.650000px;}
.y97{bottom:704.730000px;}
.y80{bottom:706.170000px;}
.yc3{bottom:714.090000px;}
.y1c{bottom:717.330000px;}
.y58{bottom:734.610000px;}
.y104{bottom:736.050000px;}
.y7f{bottom:737.490000px;}
.y1b{bottom:745.050000px;}
.y57{bottom:765.930000px;}
.y7e{bottom:768.450000px;}
.y1a{bottom:773.130000px;}
.yeb{bottom:776.010000px;}
.y56{bottom:796.935000px;}
.y74{bottom:798.015000px;}
.y7d{bottom:799.455000px;}
.y19{bottom:800.895000px;}
.y55{bottom:827.895000px;}
.y18{bottom:828.615000px;}
.y73{bottom:830.415000px;}
.y17{bottom:856.335000px;}
.y54{bottom:858.855000px;}
.y72{bottom:861.735000px;}
.y16{bottom:884.055000px;}
.y53{bottom:890.175000px;}
.y71{bottom:892.695000px;}
.yd3{bottom:911.445000px;}
.y15{bottom:911.805000px;}
.y52{bottom:921.165000px;}
.y70{bottom:923.685000px;}
.y14{bottom:939.525000px;}
.y51{bottom:952.125000px;}
.y6f{bottom:954.645000px;}
.y13{bottom:965.445000px;}
.y99{bottom:976.605000px;}
.yc0{bottom:976.965000px;}
.y50{bottom:983.085000px;}
.ye9{bottom:985.245000px;}
.y6e{bottom:985.965000px;}
.y12{bottom:987.405000px;}
.y11{bottom:1009.005000px;}
.y4f{bottom:1014.405000px;}
.y6d{bottom:1016.925000px;}
.y6{bottom:1028.850000px;}
.y4e{bottom:1046.490000px;}
.y6c{bottom:1047.930000px;}
.y5{bottom:1049.010000px;}
.y98{bottom:1050.810000px;}
.y4b{bottom:1067.370000px;}
.y4{bottom:1069.170000px;}
.yd{bottom:1070.610000px;}
.y3{bottom:1089.330000px;}
.y2{bottom:1109.490000px;}
.ya{bottom:1129.290000px;}
.y1{bottom:1129.650000px;}
.y4d{bottom:1130.730000px;}
.h7{height:17.280000px;}
.h18{height:38.880000px;}
.h4{height:38.916000px;}
.h5{height:42.480000px;}
.h2b{height:47.264766px;}
.h17{height:47.891250px;}
.h26{height:52.596000px;}
.h2c{height:53.704687px;}
.h16{height:55.147500px;}
.h13{height:58.680000px;}
.h15{height:58.716000px;}
.h9{height:59.328281px;}
.h3{height:59.357813px;}
.hd{height:60.952500px;}
.h1b{height:61.596000px;}
.h1a{height:64.546875px;}
.h1e{height:64.978594px;}
.h6{height:65.010937px;}
.h1{height:65.884219px;}
.h1c{height:66.757500px;}
.h2{height:67.824844px;}
.h12{height:68.796000px;}
.hf{height:70.236000px;}
.ha{height:70.664062px;}
.hb{height:71.613281px;}
.hc{height:72.562500px;}
.h11{height:73.998281px;}
.he{height:74.004654px;}
.h10{height:74.118281px;}
.h19{height:78.367500px;}
.h8{height:81.929531px;}
.h21{height:87.156000px;}
.h14{height:98.788359px;}
.h29{height:131.076000px;}
.h25{height:152.670000px;}
.h20{height:153.030000px;}
.h24{height:174.630000px;}
.h27{height:208.155000px;}
.h2a{height:218.235000px;}
.h22{height:261.795000px;}
.h28{height:262.155000px;}
.h1d{height:283.755000px;}
.h23{height:349.305000px;}
.h1f{height:436.470000px;}
.h0{height:1188.000000px;}
.w8{width:76.320000px;}
.w9{width:76.356000px;}
.wf{width:84.996000px;}
.wc{width:88.596000px;}
.wd{width:96.156000px;}
.w10{width:106.236000px;}
.w11{width:264.345000px;}
.w12{width:324.870000px;}
.w5{width:335.310000px;}
.w6{width:368.790000px;}
.w7{width:369.150000px;}
.w2{width:377.070000px;}
.w4{width:421.710000px;}
.we{width:482.940000px;}
.wa{width:666.645000px;}
.wb{width:778.290000px;}
.w3{width:781.170000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:6.480000px;}
.x2d{left:7.956000px;}
.x5{left:10.800000px;}
.x31{left:16.560000px;}
.x26{left:20.916000px;}
.x1b{left:26.280000px;}
.x19{left:34.956000px;}
.x23{left:41.040000px;}
.x9{left:43.560000px;}
.x21{left:54.756000px;}
.x1a{left:59.439000px;}
.x22{left:62.316000px;}
.x6{left:65.196000px;}
.x27{left:69.519000px;}
.x1f{left:70.590000px;}
.x2a{left:74.199000px;}
.x7{left:75.636000px;}
.x25{left:80.310000px;}
.x1e{left:82.110000px;}
.x20{left:83.556000px;}
.x4{left:88.596000px;}
.x1{left:95.795986px;}
.x17{left:99.395986px;}
.x16{left:100.475986px;}
.x18{left:101.916000px;}
.x10{left:106.955986px;}
.x35{left:109.475986px;}
.x14{left:112.355986px;}
.xf{left:120.275986px;}
.x2c{left:122.796000px;}
.x13{left:124.955986px;}
.xd{left:132.551986px;}
.x2b{left:137.231986px;}
.x15{left:149.831986px;}
.x32{left:151.635000px;}
.x30{left:164.594986px;}
.x28{left:175.395000px;}
.x2e{left:212.115000px;}
.x8{left:240.585000px;}
.x33{left:258.585000px;}
.x36{left:272.624986px;}
.x12{left:278.024986px;}
.x2{left:302.504986px;}
.x2f{left:309.030000px;}
.x1c{left:311.904000px;}
.x37{left:349.349986px;}
.xe{left:369.509986px;}
.x11{left:424.619986px;}
.x1d{left:454.140000px;}
.x3{left:457.379986px;}
.x24{left:462.060000px;}
.x34{left:523.650000px;}
.xc{left:651.134986px;}
.xb{left:684.644986px;}
.xa{left:818.969986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.426667pt;}
.lsf{letter-spacing:-1.536000pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.416000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.001280pt;}
.ls5{letter-spacing:0.014080pt;}
.lsa{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.039680pt;}
.ls1{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.640000pt;}
.lsd{letter-spacing:77.056000pt;}
.ls3{letter-spacing:78.336000pt;}
.ls0{letter-spacing:1272.192000pt;}
.ws8{word-spacing:-17.295360pt;}
.ws9{word-spacing:-17.272320pt;}
.ws5{word-spacing:-16.448000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws4{word-spacing:-12.160000pt;}
.ws6{word-spacing:-10.574080pt;}
.wsf{word-spacing:-9.547520pt;}
.wsd{word-spacing:-9.546240pt;}
.wsc{word-spacing:-9.139307pt;}
.wse{word-spacing:-9.130240pt;}
.ws7{word-spacing:0.000000pt;}
._3a{margin-left:-4.890027pt;}
._6{margin-left:-3.261440pt;}
._2{margin-left:-2.001493pt;}
._0{margin-left:-1.004800pt;}
._1{width:1.577387pt;}
._5{width:2.573653pt;}
._3{width:3.802027pt;}
._7{width:4.779093pt;}
._10{width:6.417493pt;}
._12{width:7.556267pt;}
._13{width:8.576000pt;}
._f{width:10.238293pt;}
._b{width:11.840000pt;}
._a{width:12.753493pt;}
._c{width:14.054400pt;}
._d{width:14.950400pt;}
._1a{width:15.850667pt;}
._11{width:17.600000pt;}
._e{width:19.052800pt;}
._8{width:20.416000pt;}
._9{width:21.824000pt;}
._1c{width:22.981973pt;}
._43{width:23.949653pt;}
._1b{width:24.918187pt;}
._16{width:25.920000pt;}
._15{width:26.833493pt;}
._17{width:27.904000pt;}
._1d{width:29.672960pt;}
._27{width:31.788373pt;}
._26{width:33.646080pt;}
._14{width:35.200000pt;}
._29{width:36.093440pt;}
._2a{width:37.104213pt;}
._1e{width:39.470507pt;}
._1f{width:40.546987pt;}
._25{width:42.691840pt;}
._24{width:43.806293pt;}
._32{width:45.035093pt;}
._31{width:46.636800pt;}
._35{width:49.635840pt;}
._2c{width:51.308800pt;}
._23{width:52.618240pt;}
._22{width:54.303147pt;}
._21{width:56.230400pt;}
._20{width:57.941760pt;}
._38{width:61.529173pt;}
._39{width:62.589867pt;}
._36{width:72.014080pt;}
._37{width:73.065813pt;}
._28{width:76.253440pt;}
._30{width:84.375040pt;}
._2f{width:85.438720pt;}
._18{width:96.751787pt;}
._34{width:101.925120pt;}
._41{width:104.192000pt;}
._3e{width:106.368000pt;}
._3f{width:107.473493pt;}
._45{width:123.244800pt;}
._40{width:129.472000pt;}
._19{width:130.831360pt;}
._33{width:132.126720pt;}
._2d{width:133.834240pt;}
._2e{width:135.953493pt;}
._2b{width:143.561813pt;}
._44{width:156.608000pt;}
._3d{width:250.734507pt;}
._3c{width:252.305493pt;}
._3b{width:264.432213pt;}
._42{width:358.464000pt;}
._46{width:418.112427pt;}
._4{width:1278.725120pt;}
.fs4{font-size:42.240000pt;}
.fs6{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.240000pt;}
.fs5{font-size:85.760000pt;}
.y3b{bottom:-63.386667pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.240000pt;}
.y10{bottom:2.880000pt;}
.y9{bottom:3.520000pt;}
.y41{bottom:3.840000pt;}
.yc{bottom:4.506667pt;}
.y3a{bottom:5.120000pt;}
.yb9{bottom:5.440000pt;}
.ya8{bottom:5.760000pt;}
.y4c{bottom:13.120000pt;}
.ye{bottom:13.440000pt;}
.y48{bottom:14.720000pt;}
.yf4{bottom:16.040000pt;}
.y4a{bottom:19.520000pt;}
.y8{bottom:20.480000pt;}
.y9b{bottom:21.760000pt;}
.yb{bottom:22.106667pt;}
.y40{bottom:24.960000pt;}
.yfd{bottom:25.280000pt;}
.y39{bottom:26.240000pt;}
.y47{bottom:27.200000pt;}
.yf{bottom:29.440000pt;}
.y43{bottom:30.720000pt;}
.y45{bottom:31.040000pt;}
.yea{bottom:33.000000pt;}
.y44{bottom:33.600000pt;}
.y42{bottom:33.920000pt;}
.yf3{bottom:35.240000pt;}
.y46{bottom:40.960000pt;}
.y9a{bottom:41.000000pt;}
.yb8{bottom:44.160000pt;}
.yc7{bottom:44.186667pt;}
.yc2{bottom:44.200000pt;}
.ybf{bottom:44.474667pt;}
.ya7{bottom:44.480000pt;}
.ycd{bottom:44.506667pt;}
.y3f{bottom:46.080000pt;}
.y38{bottom:47.360000pt;}
.y100{bottom:48.960000pt;}
.y7{bottom:51.200000pt;}
.yf2{bottom:54.760000pt;}
.yd2{bottom:63.674667pt;}
.ya6{bottom:63.680000pt;}
.yb7{bottom:63.706667pt;}
.yc1{bottom:63.720000pt;}
.ybe{bottom:63.994667pt;}
.yfc{bottom:64.026667pt;}
.yc5{bottom:64.040000pt;}
.yf1{bottom:74.280000pt;}
.yff{bottom:78.440000pt;}
.ybd{bottom:83.194667pt;}
.yd5{bottom:83.200000pt;}
.yb6{bottom:83.226667pt;}
.ya5{bottom:83.240000pt;}
.yfb{bottom:83.546667pt;}
.yce{bottom:89.632000pt;}
.yba{bottom:89.952000pt;}
.yf0{bottom:93.480000pt;}
.ye8{bottom:96.672000pt;}
.y6b{bottom:98.592000pt;}
.y103{bottom:99.872000pt;}
.y96{bottom:101.152000pt;}
.yb5{bottom:102.426667pt;}
.yd1{bottom:102.434667pt;}
.yd4{bottom:102.440000pt;}
.yd9{bottom:102.746667pt;}
.ybc{bottom:102.754667pt;}
.ya4{bottom:102.760000pt;}
.y92{bottom:103.392000pt;}
.y36{bottom:106.272000pt;}
.yef{bottom:113.026667pt;}
.yb4{bottom:121.946667pt;}
.yd0{bottom:121.954667pt;}
.ya3{bottom:121.960000pt;}
.yfa{bottom:122.266667pt;}
.ybb{bottom:122.274667pt;}
.ye7{bottom:124.512000pt;}
.y35{bottom:125.152000pt;}
.y6a{bottom:126.432000pt;}
.y102{bottom:127.712000pt;}
.y95{bottom:128.672000pt;}
.y91{bottom:130.912000pt;}
.yee{bottom:132.226667pt;}
.yb3{bottom:141.146667pt;}
.ycc{bottom:141.466667pt;}
.ycf{bottom:141.474667pt;}
.ya2{bottom:141.480000pt;}
.yf9{bottom:141.493333pt;}
.y101{bottom:141.506667pt;}
.y34{bottom:143.386667pt;}
.yed{bottom:151.746667pt;}
.ye6{bottom:152.026667pt;}
.y69{bottom:153.946667pt;}
.y7c{bottom:154.906667pt;}
.y94{bottom:156.186667pt;}
.y90{bottom:158.426667pt;}
.yb2{bottom:160.666667pt;}
.ya1{bottom:160.680000pt;}
.ycb{bottom:160.706667pt;}
.yc4{bottom:161.000000pt;}
.yf8{bottom:161.013333pt;}
.y33{bottom:161.946667pt;}
.yec{bottom:171.266667pt;}
.ye5{bottom:179.546667pt;}
.y32{bottom:180.186667pt;}
.ya0{bottom:180.200000pt;}
.yb1{bottom:180.226667pt;}
.yf7{bottom:180.533333pt;}
.y68{bottom:181.506667pt;}
.y7b{bottom:183.746667pt;}
.y8f{bottom:186.306667pt;}
.y31{bottom:198.786667pt;}
.yb0{bottom:199.426667pt;}
.yf6{bottom:199.733333pt;}
.y9f{bottom:199.746667pt;}
.y109{bottom:206.786667pt;}
.ye4{bottom:207.106667pt;}
.y67{bottom:209.026667pt;}
.y7a{bottom:211.586667pt;}
.y8e{bottom:213.826667pt;}
.y30{bottom:217.026667pt;}
.y9e{bottom:218.946667pt;}
.yf5{bottom:219.253333pt;}
.ya9{bottom:226.626667pt;}
.ye3{bottom:234.946667pt;}
.y2f{bottom:235.586667pt;}
.y66{bottom:236.866667pt;}
.y9d{bottom:238.466667pt;}
.y79{bottom:239.106667pt;}
.y8d{bottom:241.346667pt;}
.yc8{bottom:245.506667pt;}
.y2e{bottom:253.826667pt;}
.y108{bottom:256.386667pt;}
.yaf{bottom:257.666667pt;}
.yca{bottom:257.693333pt;}
.ye2{bottom:262.466667pt;}
.y65{bottom:264.386667pt;}
.y78{bottom:266.626667pt;}
.y8c{bottom:268.866667pt;}
.y107{bottom:271.426667pt;}
.yd8{bottom:277.186667pt;}
.yae{bottom:277.213333pt;}
.y106{bottom:286.493333pt;}
.ye1{bottom:290.013333pt;}
.y64{bottom:291.933333pt;}
.y77{bottom:294.173333pt;}
.y8b{bottom:296.413333pt;}
.yd7{bottom:296.706667pt;}
.yc9{bottom:296.733333pt;}
.y2d{bottom:297.693333pt;}
.y105{bottom:301.213333pt;}
.y2c{bottom:313.053333pt;}
.yad{bottom:315.933333pt;}
.ye0{bottom:317.533333pt;}
.y63{bottom:319.453333pt;}
.y76{bottom:322.013333pt;}
.y8a{bottom:324.253333pt;}
.y2b{bottom:330.653333pt;}
.yac{bottom:335.453333pt;}
.yfe{bottom:338.333333pt;}
.ydf{bottom:345.373333pt;}
.y62{bottom:348.253333pt;}
.y2a{bottom:348.573333pt;}
.y75{bottom:349.533333pt;}
.y89{bottom:351.773333pt;}
.yab{bottom:354.653333pt;}
.y29{bottom:367.133333pt;}
.yde{bottom:372.893333pt;}
.yaa{bottom:374.200000pt;}
.y61{bottom:377.053333pt;}
.y88{bottom:379.293333pt;}
.y28{bottom:388.293333pt;}
.ydd{bottom:400.453333pt;}
.y60{bottom:404.613333pt;}
.y87{bottom:406.853333pt;}
.y27{bottom:409.413333pt;}
.ydc{bottom:427.973333pt;}
.y26{bottom:430.533333pt;}
.y5f{bottom:432.453333pt;}
.y3d{bottom:433.093333pt;}
.y3e{bottom:433.413333pt;}
.y86{bottom:434.693333pt;}
.y25{bottom:451.653333pt;}
.ydb{bottom:455.813333pt;}
.y5e{bottom:459.973333pt;}
.y93{bottom:460.933333pt;}
.y85{bottom:462.213333pt;}
.y24{bottom:472.773333pt;}
.yda{bottom:483.333333pt;}
.y5d{bottom:487.493333pt;}
.y84{bottom:489.733333pt;}
.y23{bottom:493.920000pt;}
.yd6{bottom:499.040000pt;}
.y22{bottom:515.040000pt;}
.y83{bottom:517.280000pt;}
.y21{bottom:536.480000pt;}
.y5c{bottom:542.560000pt;}
.y3c{bottom:543.840000pt;}
.y37{bottom:544.160000pt;}
.y82{bottom:545.120000pt;}
.yc6{bottom:556.640000pt;}
.y20{bottom:558.560000pt;}
.y5b{bottom:570.400000pt;}
.y81{bottom:572.640000pt;}
.y1f{bottom:580.000000pt;}
.y5a{bottom:597.946667pt;}
.y1e{bottom:600.186667pt;}
.y9c{bottom:615.226667pt;}
.y1d{bottom:617.786667pt;}
.y59{bottom:625.466667pt;}
.y97{bottom:626.426667pt;}
.y80{bottom:627.706667pt;}
.yc3{bottom:634.746667pt;}
.y1c{bottom:637.626667pt;}
.y58{bottom:652.986667pt;}
.y104{bottom:654.266667pt;}
.y7f{bottom:655.546667pt;}
.y1b{bottom:662.266667pt;}
.y57{bottom:680.826667pt;}
.y7e{bottom:683.066667pt;}
.y1a{bottom:687.226667pt;}
.yeb{bottom:689.786667pt;}
.y56{bottom:708.386667pt;}
.y74{bottom:709.346667pt;}
.y7d{bottom:710.626667pt;}
.y19{bottom:711.906667pt;}
.y55{bottom:735.906667pt;}
.y18{bottom:736.546667pt;}
.y73{bottom:738.146667pt;}
.y17{bottom:761.186667pt;}
.y54{bottom:763.426667pt;}
.y72{bottom:765.986667pt;}
.y16{bottom:785.826667pt;}
.y53{bottom:791.266667pt;}
.y71{bottom:793.506667pt;}
.yd3{bottom:810.173333pt;}
.y15{bottom:810.493333pt;}
.y52{bottom:818.813333pt;}
.y70{bottom:821.053333pt;}
.y14{bottom:835.133333pt;}
.y51{bottom:846.333333pt;}
.y6f{bottom:848.573333pt;}
.y13{bottom:858.173333pt;}
.y99{bottom:868.093333pt;}
.yc0{bottom:868.413333pt;}
.y50{bottom:873.853333pt;}
.ye9{bottom:875.773333pt;}
.y6e{bottom:876.413333pt;}
.y12{bottom:877.693333pt;}
.y11{bottom:896.893333pt;}
.y4f{bottom:901.693333pt;}
.y6d{bottom:903.933333pt;}
.y6{bottom:914.533333pt;}
.y4e{bottom:930.213333pt;}
.y6c{bottom:931.493333pt;}
.y5{bottom:932.453333pt;}
.y98{bottom:934.053333pt;}
.y4b{bottom:948.773333pt;}
.y4{bottom:950.373333pt;}
.yd{bottom:951.653333pt;}
.y3{bottom:968.293333pt;}
.y2{bottom:986.213333pt;}
.ya{bottom:1003.813333pt;}
.y1{bottom:1004.133333pt;}
.y4d{bottom:1005.093333pt;}
.h7{height:15.360000pt;}
.h18{height:34.560000pt;}
.h4{height:34.592000pt;}
.h5{height:37.760000pt;}
.h2b{height:42.013125pt;}
.h17{height:42.570000pt;}
.h26{height:46.752000pt;}
.h2c{height:47.737500pt;}
.h16{height:49.020000pt;}
.h13{height:52.160000pt;}
.h15{height:52.192000pt;}
.h9{height:52.736250pt;}
.h3{height:52.762500pt;}
.hd{height:54.180000pt;}
.h1b{height:54.752000pt;}
.h1a{height:57.375000pt;}
.h1e{height:57.758750pt;}
.h6{height:57.787500pt;}
.h1{height:58.563750pt;}
.h1c{height:59.340000pt;}
.h2{height:60.288750pt;}
.h12{height:61.152000pt;}
.hf{height:62.432000pt;}
.ha{height:62.812500pt;}
.hb{height:63.656250pt;}
.hc{height:64.500000pt;}
.h11{height:65.776250pt;}
.he{height:65.781915pt;}
.h10{height:65.882917pt;}
.h19{height:69.660000pt;}
.h8{height:72.826250pt;}
.h21{height:77.472000pt;}
.h14{height:87.811875pt;}
.h29{height:116.512000pt;}
.h25{height:135.706667pt;}
.h20{height:136.026667pt;}
.h24{height:155.226667pt;}
.h27{height:185.026667pt;}
.h2a{height:193.986667pt;}
.h22{height:232.706667pt;}
.h28{height:233.026667pt;}
.h1d{height:252.226667pt;}
.h23{height:310.493333pt;}
.h1f{height:387.973333pt;}
.h0{height:1056.000000pt;}
.w8{width:67.840000pt;}
.w9{width:67.872000pt;}
.wf{width:75.552000pt;}
.wc{width:78.752000pt;}
.wd{width:85.472000pt;}
.w10{width:94.432000pt;}
.w11{width:234.973333pt;}
.w12{width:288.773333pt;}
.w5{width:298.053333pt;}
.w6{width:327.813333pt;}
.w7{width:328.133333pt;}
.w2{width:335.173333pt;}
.w4{width:374.853333pt;}
.we{width:429.280000pt;}
.wa{width:592.573333pt;}
.wb{width:691.813333pt;}
.w3{width:694.373333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:5.760000pt;}
.x2d{left:7.072000pt;}
.x5{left:9.600000pt;}
.x31{left:14.720000pt;}
.x26{left:18.592000pt;}
.x1b{left:23.360000pt;}
.x19{left:31.072000pt;}
.x23{left:36.480000pt;}
.x9{left:38.720000pt;}
.x21{left:48.672000pt;}
.x1a{left:52.834667pt;}
.x22{left:55.392000pt;}
.x6{left:57.952000pt;}
.x27{left:61.794667pt;}
.x1f{left:62.746667pt;}
.x2a{left:65.954667pt;}
.x7{left:67.232000pt;}
.x25{left:71.386667pt;}
.x1e{left:72.986667pt;}
.x20{left:74.272000pt;}
.x4{left:78.752000pt;}
.x1{left:85.151988pt;}
.x17{left:88.351988pt;}
.x16{left:89.311988pt;}
.x18{left:90.592000pt;}
.x10{left:95.071988pt;}
.x35{left:97.311988pt;}
.x14{left:99.871988pt;}
.xf{left:106.911988pt;}
.x2c{left:109.152000pt;}
.x13{left:111.071988pt;}
.xd{left:117.823988pt;}
.x2b{left:121.983988pt;}
.x15{left:133.183988pt;}
.x32{left:134.786667pt;}
.x30{left:146.306655pt;}
.x28{left:155.906667pt;}
.x2e{left:188.546667pt;}
.x8{left:213.853333pt;}
.x33{left:229.853333pt;}
.x36{left:242.333321pt;}
.x12{left:247.133321pt;}
.x2{left:268.893321pt;}
.x2f{left:274.693333pt;}
.x1c{left:277.248000pt;}
.x37{left:310.533321pt;}
.xe{left:328.453321pt;}
.x11{left:377.439988pt;}
.x1d{left:403.680000pt;}
.x3{left:406.559988pt;}
.x24{left:410.720000pt;}
.x34{left:465.466667pt;}
.xc{left:578.786655pt;}
.xb{left:608.573321pt;}
.xa{left:727.973321pt;}
}




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