
    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_ab938930090a05a6145f3875.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7595eec807803c26b2686f9a.woff')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_ddcc1f12f6094307a2ba2652.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4b6b8f0a108ebd9d3d1a5b4d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4a2ec2de3e6eeaa82443eebf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.051270;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_e868bf45404099d61b770bfb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.660000px;}
.ls2a{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.463800px;}
.ls6{letter-spacing:-0.310800px;}
.lsb{letter-spacing:-0.240600px;}
.ls21{letter-spacing:-0.226800px;}
.ls15{letter-spacing:-0.186600px;}
.ls1a{letter-spacing:-0.172200px;}
.ls4{letter-spacing:-0.132600px;}
.ls1f{letter-spacing:-0.078600px;}
.ls1b{letter-spacing:-0.069600px;}
.lsa{letter-spacing:-0.064800px;}
.lsd{letter-spacing:-0.058320px;}
.ls29{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.038880px;}
.ls17{letter-spacing:0.044640px;}
.ls28{letter-spacing:0.060600px;}
.ls8{letter-spacing:0.066000px;}
.ls14{letter-spacing:0.067200px;}
.ls1d{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.150000px;}
.ls23{letter-spacing:0.169200px;}
.ls18{letter-spacing:0.174240px;}
.ls27{letter-spacing:0.179280px;}
.ls1e{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.186600px;}
.ls16{letter-spacing:0.195000px;}
.ls7{letter-spacing:0.210000px;}
.ls9{letter-spacing:0.256200px;}
.ls10{letter-spacing:0.306000px;}
.lsc{letter-spacing:0.393600px;}
.ls19{letter-spacing:0.492000px;}
.ls12{letter-spacing:0.654000px;}
.ls22{letter-spacing:0.744000px;}
.ls11{letter-spacing:0.858000px;}
.ls13{letter-spacing:0.900000px;}
.lse{letter-spacing:1.116000px;}
.ls25{letter-spacing:38.826720px;}
.ls1c{letter-spacing:46.026720px;}
.ls26{letter-spacing:48.348000px;}
.ls20{letter-spacing:69.066720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws7{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws3{word-spacing:-14.659440px;}
.ws2{word-spacing:-14.506440px;}
.wse{word-spacing:-13.700760px;}
.wsb{word-spacing:-13.692360px;}
.ws15{word-spacing:-13.685040px;}
.wsc{word-spacing:-13.572960px;}
.wsf{word-spacing:-13.550400px;}
.ws5{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.447440px;}
.ws8{word-spacing:-13.440960px;}
.ws11{word-spacing:-13.436160px;}
.ws12{word-spacing:-13.427160px;}
.ws10{word-spacing:-13.333560px;}
.wsd{word-spacing:-13.319160px;}
.ws13{word-spacing:-13.278960px;}
.ws9{word-spacing:-13.265160px;}
.ws14{word-spacing:-12.186000px;}
.ws6{word-spacing:0.000000px;}
._1f{margin-left:-532.378560px;}
._21{margin-left:-525.220560px;}
._1{margin-left:-485.598240px;}
._7{margin-left:-407.814240px;}
._a{margin-left:-307.041120px;}
._5{margin-left:-289.118160px;}
._6{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._9{margin-left:-273.882720px;}
._d{margin-left:-240.510240px;}
._14{margin-left:-232.410240px;}
._19{margin-left:-226.537200px;}
._18{margin-left:-219.674640px;}
._11{margin-left:-202.290240px;}
._1a{margin-left:-199.946880px;}
._23{margin-left:-196.208640px;}
._22{margin-left:-188.893440px;}
._10{margin-left:-171.054720px;}
._27{margin-left:-168.582240px;}
._f{margin-left:-165.490560px;}
._b{margin-left:-153.774720px;}
._4{margin-left:-150.188400px;}
._c{margin-left:-148.690080px;}
._26{margin-left:-143.335440px;}
._12{margin-left:-141.299040px;}
._e{margin-left:-134.192160px;}
._13{margin-left:-116.062560px;}
._25{margin-left:-109.434240px;}
._1e{margin-left:-102.349440px;}
._8{margin-left:-91.638240px;}
._1d{margin-left:-86.399760px;}
._1c{margin-left:-83.700000px;}
._15{margin-left:-82.131840px;}
._17{margin-left:-66.703680px;}
._24{margin-left:-54.085440px;}
._16{margin-left:-49.343280px;}
._1b{margin-left:-30.597360px;}
._28{margin-left:-3.771000px;}
._2{margin-left:-2.274480px;}
._3{margin-left:-1.179360px;}
._20{width:1.082160px;}
._2b{width:2.430240px;}
._2a{width:3.691200px;}
._2e{width:4.967280px;}
._2f{width:5.976000px;}
._30{width:7.410240px;}
._36{width:8.576640px;}
._2c{width:9.617040px;}
._29{width:10.820880px;}
._35{width:12.223440px;}
._2d{width:15.418080px;}
._32{width:17.151120px;}
._31{width:18.286560px;}
._39{width:19.698480px;}
._38{width:20.777760px;}
._37{width:21.798720px;}
._33{width:23.605200px;}
._34{width:24.900480px;}
._3b{width:26.004000px;}
._41{width:27.056160px;}
._3a{width:28.386000px;}
._44{width:29.767680px;}
._45{width:31.376400px;}
._3c{width:41.890080px;}
._3f{width:65.123040px;}
._3e{width:66.393360px;}
._42{width:67.821120px;}
._43{width:69.092400px;}
._3d{width:101.113920px;}
._40{width:102.246240px;}
.fc4{color:rgb(70,120,134);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:3.960000px;}
.y8b{bottom:3.990000px;}
.yba{bottom:4.500000px;}
.ye6{bottom:4.680000px;}
.y102{bottom:4.860000px;}
.ybd{bottom:5.220000px;}
.yf9{bottom:5.400000px;}
.yd6{bottom:6.660000px;}
.yca{bottom:8.820000px;}
.ya3{bottom:18.180000px;}
.yae{bottom:18.360000px;}
.y6{bottom:61.596000px;}
.yd4{bottom:89.136000px;}
.y51{bottom:92.196000px;}
.y106{bottom:98.496000px;}
.yd3{bottom:108.216000px;}
.y30{bottom:113.256000px;}
.y7d{bottom:118.476000px;}
.y105{bottom:119.556000px;}
.yd2{bottom:133.956000px;}
.y2f{bottom:134.316000px;}
.ya0{bottom:134.676000px;}
.y104{bottom:134.856000px;}
.y7c{bottom:139.536000px;}
.y103{bottom:154.650000px;}
.yd1{bottom:155.010000px;}
.y2e{bottom:155.370000px;}
.y9f{bottom:155.730000px;}
.y7b{bottom:160.590000px;}
.y101{bottom:173.550000px;}
.yd0{bottom:176.070000px;}
.y2d{bottom:176.430000px;}
.y9e{bottom:176.790000px;}
.y7a{bottom:181.650000px;}
.y9d{bottom:191.910000px;}
.y100{bottom:193.350000px;}
.ycf{bottom:196.950000px;}
.y2c{bottom:197.490000px;}
.y79{bottom:202.710000px;}
.y9c{bottom:210.990000px;}
.yce{bottom:218.010000px;}
.y2b{bottom:218.550000px;}
.yff{bottom:219.090000px;}
.y78{bottom:223.770000px;}
.y9b{bottom:230.070000px;}
.ycd{bottom:239.070000px;}
.y2a{bottom:239.610000px;}
.yfe{bottom:240.150000px;}
.y77{bottom:244.830000px;}
.y9a{bottom:249.150000px;}
.ycc{bottom:254.370000px;}
.y29{bottom:260.670000px;}
.yfd{bottom:261.210000px;}
.y76{bottom:265.890000px;}
.y99{bottom:268.050000px;}
.ycb{bottom:278.355000px;}
.y28{bottom:281.775000px;}
.yfc{bottom:282.315000px;}
.y75{bottom:286.815000px;}
.y98{bottom:293.835000px;}
.yc9{bottom:297.255000px;}
.y27{bottom:302.835000px;}
.yfb{bottom:303.375000px;}
.y74{bottom:307.875000px;}
.y97{bottom:314.895000px;}
.y26{bottom:323.895000px;}
.yfa{bottom:324.435000px;}
.yc8{bottom:327.855000px;}
.y73{bottom:328.935000px;}
.y96{bottom:335.955000px;}
.yf8{bottom:339.555000px;}
.y25{bottom:344.955000px;}
.yc7{bottom:348.915000px;}
.y72{bottom:349.995000px;}
.y95{bottom:357.015000px;}
.yf7{bottom:360.075000px;}
.y24{bottom:366.015000px;}
.yc6{bottom:369.975000px;}
.y71{bottom:371.055000px;}
.y94{bottom:378.075000px;}
.yf6{bottom:379.695000px;}
.y23{bottom:387.075000px;}
.yc5{bottom:391.035000px;}
.y70{bottom:392.115000px;}
.y93{bottom:399.135000px;}
.yf5{bottom:399.315000px;}
.y22{bottom:408.135000px;}
.yc4{bottom:412.095000px;}
.y6f{bottom:413.175000px;}
.yf4{bottom:419.655000px;}
.y92{bottom:420.195000px;}
.y21{bottom:429.195000px;}
.yc3{bottom:433.155000px;}
.y6e{bottom:434.235000px;}
.yf3{bottom:439.455000px;}
.y91{bottom:441.255000px;}
.y20{bottom:450.255000px;}
.yc2{bottom:454.215000px;}
.y6d{bottom:455.295000px;}
.yf2{bottom:459.795000px;}
.y90{bottom:462.315000px;}
.y1f{bottom:471.315000px;}
.yc1{bottom:475.275000px;}
.y6c{bottom:476.355000px;}
.y8f{bottom:477.435000px;}
.yf1{bottom:486.075000px;}
.yc0{bottom:490.395000px;}
.y1e{bottom:492.375000px;}
.y8e{bottom:496.515000px;}
.y6b{bottom:497.415000px;}
.yf0{bottom:507.135000px;}
.ybf{bottom:510.015000px;}
.y1d{bottom:513.435000px;}
.y8d{bottom:515.595000px;}
.y6a{bottom:518.475000px;}
.yef{bottom:528.195000px;}
.ybe{bottom:530.355000px;}
.y1c{bottom:534.495000px;}
.y8c{bottom:534.675000px;}
.y69{bottom:539.535000px;}
.yee{bottom:549.255000px;}
.ybc{bottom:549.975000px;}
.y8a{bottom:553.755000px;}
.y50{bottom:555.555000px;}
.y1b{bottom:557.925000px;}
.y68{bottom:560.625000px;}
.ybb{bottom:570.345000px;}
.y89{bottom:572.865000px;}
.y4f{bottom:576.645000px;}
.y67{bottom:581.685000px;}
.y1a{bottom:587.805000px;}
.yb9{bottom:589.785000px;}
.yed{bottom:591.405000px;}
.y88{bottom:591.945000px;}
.y4e{bottom:597.705000px;}
.y66{bottom:602.745000px;}
.y19{bottom:608.865000px;}
.y87{bottom:611.025000px;}
.yb8{bottom:616.065000px;}
.y4d{bottom:618.765000px;}
.yec{bottom:621.465000px;}
.y65{bottom:623.805000px;}
.y18{bottom:629.925000px;}
.yb7{bottom:637.125000px;}
.y4c{bottom:639.825000px;}
.yeb{bottom:642.525000px;}
.y64{bottom:644.865000px;}
.y86{bottom:649.005000px;}
.y17{bottom:650.985000px;}
.yb6{bottom:658.185000px;}
.y4b{bottom:660.885000px;}
.yea{bottom:663.585000px;}
.y63{bottom:665.925000px;}
.y85{bottom:668.085000px;}
.y16{bottom:672.045000px;}
.yb5{bottom:679.245000px;}
.y4a{bottom:681.945000px;}
.ye9{bottom:684.645000px;}
.y62{bottom:686.985000px;}
.y84{bottom:687.165000px;}
.y15{bottom:693.105000px;}
.ye8{bottom:699.765000px;}
.yb4{bottom:700.305000px;}
.y49{bottom:703.005000px;}
.y83{bottom:706.245000px;}
.y61{bottom:708.045000px;}
.y14{bottom:714.165000px;}
.ye7{bottom:719.565000px;}
.yb3{bottom:721.365000px;}
.y48{bottom:724.065000px;}
.y82{bottom:725.325000px;}
.y60{bottom:729.105000px;}
.y13{bottom:735.225000px;}
.ye5{bottom:738.645000px;}
.yb2{bottom:742.425000px;}
.y81{bottom:744.405000px;}
.y47{bottom:745.125000px;}
.y5f{bottom:750.165000px;}
.y12{bottom:756.285000px;}
.yb1{bottom:757.545000px;}
.ye4{bottom:758.445000px;}
.y80{bottom:763.485000px;}
.y46{bottom:766.005000px;}
.y5e{bottom:771.225000px;}
.yb0{bottom:776.625000px;}
.y11{bottom:777.345000px;}
.y7e{bottom:782.565000px;}
.ye3{bottom:784.185000px;}
.y45{bottom:787.065000px;}
.y5d{bottom:792.285000px;}
.yaf{bottom:795.705000px;}
.y10{bottom:798.405000px;}
.ye2{bottom:805.245000px;}
.y44{bottom:808.125000px;}
.y5c{bottom:813.345000px;}
.yad{bottom:814.785000px;}
.yf{bottom:819.465000px;}
.ye1{bottom:826.305000px;}
.y43{bottom:829.185000px;}
.yac{bottom:833.865000px;}
.y5b{bottom:834.405000px;}
.ye{bottom:840.570000px;}
.ye0{bottom:847.410000px;}
.y42{bottom:850.290000px;}
.y5a{bottom:855.510000px;}
.yab{bottom:859.650000px;}
.yd{bottom:861.630000px;}
.ydf{bottom:868.470000px;}
.y41{bottom:871.350000px;}
.y59{bottom:876.570000px;}
.yaa{bottom:880.710000px;}
.yc{bottom:884.850000px;}
.yde{bottom:889.530000px;}
.y40{bottom:892.410000px;}
.y58{bottom:897.630000px;}
.ya9{bottom:901.770000px;}
.yb{bottom:905.910000px;}
.ydd{bottom:910.590000px;}
.y3f{bottom:913.470000px;}
.y57{bottom:918.690000px;}
.ya8{bottom:922.830000px;}
.ya{bottom:927.870000px;}
.ydc{bottom:931.650000px;}
.y3e{bottom:934.530000px;}
.y56{bottom:939.750000px;}
.ya7{bottom:943.890000px;}
.y9{bottom:950.190000px;}
.ydb{bottom:952.710000px;}
.y3d{bottom:955.590000px;}
.ya6{bottom:959.010000px;}
.y55{bottom:960.810000px;}
.yda{bottom:973.770000px;}
.y8{bottom:975.390000px;}
.y3c{bottom:976.650000px;}
.ya5{bottom:978.090000px;}
.y54{bottom:981.870000px;}
.yd9{bottom:994.830000px;}
.ya4{bottom:997.170000px;}
.y3b{bottom:997.710000px;}
.y53{bottom:1002.930000px;}
.y7{bottom:1009.050000px;}
.yd8{bottom:1009.950000px;}
.ya2{bottom:1016.250000px;}
.y3a{bottom:1018.770000px;}
.y52{bottom:1020.030000px;}
.yd7{bottom:1031.730000px;}
.ya1{bottom:1035.150000px;}
.y39{bottom:1039.830000px;}
.y5{bottom:1049.190000px;}
.y31{bottom:1050.000000px;}
.yd5{bottom:1053.510000px;}
.y38{bottom:1060.890000px;}
.y4{bottom:1081.410000px;}
.y37{bottom:1081.950000px;}
.y36{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.y35{bottom:1124.100000px;}
.y34{bottom:1145.160000px;}
.y2{bottom:1145.700000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.ha{height:18.180000px;}
.hb{height:18.360000px;}
.hc{height:18.396000px;}
.he{height:18.720000px;}
.hd{height:18.900000px;}
.h14{height:19.080000px;}
.h10{height:19.620000px;}
.hf{height:19.656000px;}
.h15{height:19.800000px;}
.h13{height:21.060000px;}
.h12{height:23.076000px;}
.h11{height:23.220000px;}
.h8{height:52.173281px;}
.h9{height:52.260820px;}
.h5{height:59.439023px;}
.h7{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:30.420000px;}
.we{width:49.500000px;}
.wd{width:49.536000px;}
.wf{width:49.680000px;}
.wc{width:49.716000px;}
.w9{width:50.400000px;}
.w1a{width:54.180000px;}
.w18{width:54.360000px;}
.w1f{width:59.040000px;}
.w20{width:62.100000px;}
.w27{width:66.636000px;}
.w14{width:71.460000px;}
.w15{width:74.700000px;}
.w5{width:77.760000px;}
.w6{width:77.796000px;}
.w3{width:77.940000px;}
.w4{width:77.976000px;}
.w24{width:82.440000px;}
.w25{width:85.176000px;}
.w26{width:86.220000px;}
.w1b{width:86.436000px;}
.w23{width:92.340000px;}
.w28{width:95.400000px;}
.w19{width:96.336000px;}
.wa{width:96.516000px;}
.w21{width:100.116000px;}
.w2e{width:103.896000px;}
.w1e{width:106.956000px;}
.w32{width:107.856000px;}
.w16{width:120.996000px;}
.w1c{width:121.320000px;}
.w2f{width:121.536000px;}
.w29{width:123.156000px;}
.w1d{width:123.696000px;}
.w2b{width:124.596000px;}
.w30{width:125.280000px;}
.w2d{width:126.216000px;}
.w11{width:127.980000px;}
.w13{width:128.736000px;}
.w31{width:147.096000px;}
.wb{width:147.780000px;}
.w22{width:155.370000px;}
.w12{width:163.830000px;}
.w7{width:170.670000px;}
.w2a{width:201.630000px;}
.w8{width:221.430000px;}
.w17{width:241.770000px;}
.w2c{width:287.490000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:7.560000px;}
.x6{left:53.999987px;}
.x3e{left:60.839987px;}
.x3d{left:80.999987px;}
.x3f{left:94.499987px;}
.x1f{left:100.836000px;}
.x5{left:151.049987px;}
.x7{left:159.000000px;}
.x2f{left:160.590000px;}
.x11{left:162.210000px;}
.xb{left:164.550000px;}
.x35{left:173.010000px;}
.x25{left:178.590000px;}
.x38{left:187.050000px;}
.x3a{left:194.610000px;}
.x20{left:229.710000px;}
.x16{left:234.930000px;}
.xd{left:243.210000px;}
.x1a{left:244.650000px;}
.x36{left:269.130000px;}
.x3{left:271.469987px;}
.x2a{left:280.110000px;}
.x30{left:316.695000px;}
.xe{left:322.095000px;}
.x9{left:336.494987px;}
.x2{left:350.534987px;}
.x12{left:384.375000px;}
.x37{left:393.015000px;}
.x21{left:394.275000px;}
.xf{left:400.575000px;}
.x2b{left:404.535000px;}
.x31{left:409.755000px;}
.x4{left:418.214987px;}
.x26{left:421.095000px;}
.x13{left:435.495000px;}
.x3b{left:442.875000px;}
.xa{left:446.474987px;}
.x17{left:457.275000px;}
.x1b{left:466.815000px;}
.x27{left:476.175000px;}
.x1{left:478.514987px;}
.x32{left:492.915000px;}
.x18{left:507.705000px;}
.x2c{left:512.205000px;}
.x1c{left:517.245000px;}
.x22{left:523.725000px;}
.x14{left:532.725000px;}
.x10{left:557.925000px;}
.x1d{left:567.645000px;}
.x2d{left:571.965000px;}
.x28{left:573.225000px;}
.x33{left:578.985000px;}
.x3c{left:590.685000px;}
.x23{left:595.905000px;}
.x39{left:602.205000px;}
.x19{left:608.505000px;}
.x1e{left:618.045000px;}
.x29{left:628.125000px;}
.x2e{left:634.785000px;}
.x8{left:664.484987px;}
.x34{left:665.925000px;}
.x24{left:671.325000px;}
.x15{left:681.225000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.586667pt;}
.ls2a{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls6{letter-spacing:-0.276267pt;}
.lsb{letter-spacing:-0.213867pt;}
.ls21{letter-spacing:-0.201600pt;}
.ls15{letter-spacing:-0.165867pt;}
.ls1a{letter-spacing:-0.153067pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls1f{letter-spacing:-0.069867pt;}
.ls1b{letter-spacing:-0.061867pt;}
.lsa{letter-spacing:-0.057600pt;}
.lsd{letter-spacing:-0.051840pt;}
.ls29{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.034560pt;}
.ls17{letter-spacing:0.039680pt;}
.ls28{letter-spacing:0.053867pt;}
.ls8{letter-spacing:0.058667pt;}
.ls14{letter-spacing:0.059733pt;}
.ls1d{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.133333pt;}
.ls23{letter-spacing:0.150400pt;}
.ls18{letter-spacing:0.154880pt;}
.ls27{letter-spacing:0.159360pt;}
.ls1e{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.165867pt;}
.ls16{letter-spacing:0.173333pt;}
.ls7{letter-spacing:0.186667pt;}
.ls9{letter-spacing:0.227733pt;}
.ls10{letter-spacing:0.272000pt;}
.lsc{letter-spacing:0.349867pt;}
.ls19{letter-spacing:0.437333pt;}
.ls12{letter-spacing:0.581333pt;}
.ls22{letter-spacing:0.661333pt;}
.ls11{letter-spacing:0.762667pt;}
.ls13{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.992000pt;}
.ls25{letter-spacing:34.512640pt;}
.ls1c{letter-spacing:40.912640pt;}
.ls26{letter-spacing:42.976000pt;}
.ls20{letter-spacing:61.392640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws7{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws3{word-spacing:-13.030613pt;}
.ws2{word-spacing:-12.894613pt;}
.wse{word-spacing:-12.178453pt;}
.wsb{word-spacing:-12.170987pt;}
.ws15{word-spacing:-12.164480pt;}
.wsc{word-spacing:-12.064853pt;}
.wsf{word-spacing:-12.044800pt;}
.ws5{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.953280pt;}
.ws8{word-spacing:-11.947520pt;}
.ws11{word-spacing:-11.943253pt;}
.ws12{word-spacing:-11.935253pt;}
.ws10{word-spacing:-11.852053pt;}
.wsd{word-spacing:-11.839253pt;}
.ws13{word-spacing:-11.803520pt;}
.ws9{word-spacing:-11.791253pt;}
.ws14{word-spacing:-10.832000pt;}
.ws6{word-spacing:0.000000pt;}
._1f{margin-left:-473.225387pt;}
._21{margin-left:-466.862720pt;}
._1{margin-left:-431.642880pt;}
._7{margin-left:-362.501547pt;}
._a{margin-left:-272.925440pt;}
._5{margin-left:-256.993920pt;}
._6{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._9{margin-left:-243.451307pt;}
._d{margin-left:-213.786880pt;}
._14{margin-left:-206.586880pt;}
._19{margin-left:-201.366400pt;}
._18{margin-left:-195.266347pt;}
._11{margin-left:-179.813547pt;}
._1a{margin-left:-177.730560pt;}
._23{margin-left:-174.407680pt;}
._22{margin-left:-167.905280pt;}
._10{margin-left:-152.048640pt;}
._27{margin-left:-149.850880pt;}
._f{margin-left:-147.102720pt;}
._b{margin-left:-136.688640pt;}
._4{margin-left:-133.500800pt;}
._c{margin-left:-132.168960pt;}
._26{margin-left:-127.409280pt;}
._12{margin-left:-125.599147pt;}
._e{margin-left:-119.281920pt;}
._13{margin-left:-103.166720pt;}
._25{margin-left:-97.274880pt;}
._1e{margin-left:-90.977280pt;}
._8{margin-left:-81.456213pt;}
._1d{margin-left:-76.799787pt;}
._1c{margin-left:-74.400000pt;}
._15{margin-left:-73.006080pt;}
._17{margin-left:-59.292160pt;}
._24{margin-left:-48.075947pt;}
._16{margin-left:-43.860693pt;}
._1b{margin-left:-27.197653pt;}
._28{margin-left:-3.352000pt;}
._2{margin-left:-2.021760pt;}
._3{margin-left:-1.048320pt;}
._20{width:0.961920pt;}
._2b{width:2.160213pt;}
._2a{width:3.281067pt;}
._2e{width:4.415360pt;}
._2f{width:5.312000pt;}
._30{width:6.586880pt;}
._36{width:7.623680pt;}
._2c{width:8.548480pt;}
._29{width:9.618560pt;}
._35{width:10.865280pt;}
._2d{width:13.704960pt;}
._32{width:15.245440pt;}
._31{width:16.254720pt;}
._39{width:17.509760pt;}
._38{width:18.469120pt;}
._37{width:19.376640pt;}
._33{width:20.982400pt;}
._34{width:22.133760pt;}
._3b{width:23.114667pt;}
._41{width:24.049920pt;}
._3a{width:25.232000pt;}
._44{width:26.460160pt;}
._45{width:27.890133pt;}
._3c{width:37.235627pt;}
._3f{width:57.887147pt;}
._3e{width:59.016320pt;}
._42{width:60.285440pt;}
._43{width:61.415467pt;}
._3d{width:89.879040pt;}
._40{width:90.885547pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:3.520000pt;}
.y8b{bottom:3.546667pt;}
.yba{bottom:4.000000pt;}
.ye6{bottom:4.160000pt;}
.y102{bottom:4.320000pt;}
.ybd{bottom:4.640000pt;}
.yf9{bottom:4.800000pt;}
.yd6{bottom:5.920000pt;}
.yca{bottom:7.840000pt;}
.ya3{bottom:16.160000pt;}
.yae{bottom:16.320000pt;}
.y6{bottom:54.752000pt;}
.yd4{bottom:79.232000pt;}
.y51{bottom:81.952000pt;}
.y106{bottom:87.552000pt;}
.yd3{bottom:96.192000pt;}
.y30{bottom:100.672000pt;}
.y7d{bottom:105.312000pt;}
.y105{bottom:106.272000pt;}
.yd2{bottom:119.072000pt;}
.y2f{bottom:119.392000pt;}
.ya0{bottom:119.712000pt;}
.y104{bottom:119.872000pt;}
.y7c{bottom:124.032000pt;}
.y103{bottom:137.466667pt;}
.yd1{bottom:137.786667pt;}
.y2e{bottom:138.106667pt;}
.y9f{bottom:138.426667pt;}
.y7b{bottom:142.746667pt;}
.y101{bottom:154.266667pt;}
.yd0{bottom:156.506667pt;}
.y2d{bottom:156.826667pt;}
.y9e{bottom:157.146667pt;}
.y7a{bottom:161.466667pt;}
.y9d{bottom:170.586667pt;}
.y100{bottom:171.866667pt;}
.ycf{bottom:175.066667pt;}
.y2c{bottom:175.546667pt;}
.y79{bottom:180.186667pt;}
.y9c{bottom:187.546667pt;}
.yce{bottom:193.786667pt;}
.y2b{bottom:194.266667pt;}
.yff{bottom:194.746667pt;}
.y78{bottom:198.906667pt;}
.y9b{bottom:204.506667pt;}
.ycd{bottom:212.506667pt;}
.y2a{bottom:212.986667pt;}
.yfe{bottom:213.466667pt;}
.y77{bottom:217.626667pt;}
.y9a{bottom:221.466667pt;}
.ycc{bottom:226.106667pt;}
.y29{bottom:231.706667pt;}
.yfd{bottom:232.186667pt;}
.y76{bottom:236.346667pt;}
.y99{bottom:238.266667pt;}
.ycb{bottom:247.426667pt;}
.y28{bottom:250.466667pt;}
.yfc{bottom:250.946667pt;}
.y75{bottom:254.946667pt;}
.y98{bottom:261.186667pt;}
.yc9{bottom:264.226667pt;}
.y27{bottom:269.186667pt;}
.yfb{bottom:269.666667pt;}
.y74{bottom:273.666667pt;}
.y97{bottom:279.906667pt;}
.y26{bottom:287.906667pt;}
.yfa{bottom:288.386667pt;}
.yc8{bottom:291.426667pt;}
.y73{bottom:292.386667pt;}
.y96{bottom:298.626667pt;}
.yf8{bottom:301.826667pt;}
.y25{bottom:306.626667pt;}
.yc7{bottom:310.146667pt;}
.y72{bottom:311.106667pt;}
.y95{bottom:317.346667pt;}
.yf7{bottom:320.066667pt;}
.y24{bottom:325.346667pt;}
.yc6{bottom:328.866667pt;}
.y71{bottom:329.826667pt;}
.y94{bottom:336.066667pt;}
.yf6{bottom:337.506667pt;}
.y23{bottom:344.066667pt;}
.yc5{bottom:347.586667pt;}
.y70{bottom:348.546667pt;}
.y93{bottom:354.786667pt;}
.yf5{bottom:354.946667pt;}
.y22{bottom:362.786667pt;}
.yc4{bottom:366.306667pt;}
.y6f{bottom:367.266667pt;}
.yf4{bottom:373.026667pt;}
.y92{bottom:373.506667pt;}
.y21{bottom:381.506667pt;}
.yc3{bottom:385.026667pt;}
.y6e{bottom:385.986667pt;}
.yf3{bottom:390.626667pt;}
.y91{bottom:392.226667pt;}
.y20{bottom:400.226667pt;}
.yc2{bottom:403.746667pt;}
.y6d{bottom:404.706667pt;}
.yf2{bottom:408.706667pt;}
.y90{bottom:410.946667pt;}
.y1f{bottom:418.946667pt;}
.yc1{bottom:422.466667pt;}
.y6c{bottom:423.426667pt;}
.y8f{bottom:424.386667pt;}
.yf1{bottom:432.066667pt;}
.yc0{bottom:435.906667pt;}
.y1e{bottom:437.666667pt;}
.y8e{bottom:441.346667pt;}
.y6b{bottom:442.146667pt;}
.yf0{bottom:450.786667pt;}
.ybf{bottom:453.346667pt;}
.y1d{bottom:456.386667pt;}
.y8d{bottom:458.306667pt;}
.y6a{bottom:460.866667pt;}
.yef{bottom:469.506667pt;}
.ybe{bottom:471.426667pt;}
.y1c{bottom:475.106667pt;}
.y8c{bottom:475.266667pt;}
.y69{bottom:479.586667pt;}
.yee{bottom:488.226667pt;}
.ybc{bottom:488.866667pt;}
.y8a{bottom:492.226667pt;}
.y50{bottom:493.826667pt;}
.y1b{bottom:495.933333pt;}
.y68{bottom:498.333333pt;}
.ybb{bottom:506.973333pt;}
.y89{bottom:509.213333pt;}
.y4f{bottom:512.573333pt;}
.y67{bottom:517.053333pt;}
.y1a{bottom:522.493333pt;}
.yb9{bottom:524.253333pt;}
.yed{bottom:525.693333pt;}
.y88{bottom:526.173333pt;}
.y4e{bottom:531.293333pt;}
.y66{bottom:535.773333pt;}
.y19{bottom:541.213333pt;}
.y87{bottom:543.133333pt;}
.yb8{bottom:547.613333pt;}
.y4d{bottom:550.013333pt;}
.yec{bottom:552.413333pt;}
.y65{bottom:554.493333pt;}
.y18{bottom:559.933333pt;}
.yb7{bottom:566.333333pt;}
.y4c{bottom:568.733333pt;}
.yeb{bottom:571.133333pt;}
.y64{bottom:573.213333pt;}
.y86{bottom:576.893333pt;}
.y17{bottom:578.653333pt;}
.yb6{bottom:585.053333pt;}
.y4b{bottom:587.453333pt;}
.yea{bottom:589.853333pt;}
.y63{bottom:591.933333pt;}
.y85{bottom:593.853333pt;}
.y16{bottom:597.373333pt;}
.yb5{bottom:603.773333pt;}
.y4a{bottom:606.173333pt;}
.ye9{bottom:608.573333pt;}
.y62{bottom:610.653333pt;}
.y84{bottom:610.813333pt;}
.y15{bottom:616.093333pt;}
.ye8{bottom:622.013333pt;}
.yb4{bottom:622.493333pt;}
.y49{bottom:624.893333pt;}
.y83{bottom:627.773333pt;}
.y61{bottom:629.373333pt;}
.y14{bottom:634.813333pt;}
.ye7{bottom:639.613333pt;}
.yb3{bottom:641.213333pt;}
.y48{bottom:643.613333pt;}
.y82{bottom:644.733333pt;}
.y60{bottom:648.093333pt;}
.y13{bottom:653.533333pt;}
.ye5{bottom:656.573333pt;}
.yb2{bottom:659.933333pt;}
.y81{bottom:661.693333pt;}
.y47{bottom:662.333333pt;}
.y5f{bottom:666.813333pt;}
.y12{bottom:672.253333pt;}
.yb1{bottom:673.373333pt;}
.ye4{bottom:674.173333pt;}
.y80{bottom:678.653333pt;}
.y46{bottom:680.893333pt;}
.y5e{bottom:685.533333pt;}
.yb0{bottom:690.333333pt;}
.y11{bottom:690.973333pt;}
.y7e{bottom:695.613333pt;}
.ye3{bottom:697.053333pt;}
.y45{bottom:699.613333pt;}
.y5d{bottom:704.253333pt;}
.yaf{bottom:707.293333pt;}
.y10{bottom:709.693333pt;}
.ye2{bottom:715.773333pt;}
.y44{bottom:718.333333pt;}
.y5c{bottom:722.973333pt;}
.yad{bottom:724.253333pt;}
.yf{bottom:728.413333pt;}
.ye1{bottom:734.493333pt;}
.y43{bottom:737.053333pt;}
.yac{bottom:741.213333pt;}
.y5b{bottom:741.693333pt;}
.ye{bottom:747.173333pt;}
.ye0{bottom:753.253333pt;}
.y42{bottom:755.813333pt;}
.y5a{bottom:760.453333pt;}
.yab{bottom:764.133333pt;}
.yd{bottom:765.893333pt;}
.ydf{bottom:771.973333pt;}
.y41{bottom:774.533333pt;}
.y59{bottom:779.173333pt;}
.yaa{bottom:782.853333pt;}
.yc{bottom:786.533333pt;}
.yde{bottom:790.693333pt;}
.y40{bottom:793.253333pt;}
.y58{bottom:797.893333pt;}
.ya9{bottom:801.573333pt;}
.yb{bottom:805.253333pt;}
.ydd{bottom:809.413333pt;}
.y3f{bottom:811.973333pt;}
.y57{bottom:816.613333pt;}
.ya8{bottom:820.293333pt;}
.ya{bottom:824.773333pt;}
.ydc{bottom:828.133333pt;}
.y3e{bottom:830.693333pt;}
.y56{bottom:835.333333pt;}
.ya7{bottom:839.013333pt;}
.y9{bottom:844.613333pt;}
.ydb{bottom:846.853333pt;}
.y3d{bottom:849.413333pt;}
.ya6{bottom:852.453333pt;}
.y55{bottom:854.053333pt;}
.yda{bottom:865.573333pt;}
.y8{bottom:867.013333pt;}
.y3c{bottom:868.133333pt;}
.ya5{bottom:869.413333pt;}
.y54{bottom:872.773333pt;}
.yd9{bottom:884.293333pt;}
.ya4{bottom:886.373333pt;}
.y3b{bottom:886.853333pt;}
.y53{bottom:891.493333pt;}
.y7{bottom:896.933333pt;}
.yd8{bottom:897.733333pt;}
.ya2{bottom:903.333333pt;}
.y3a{bottom:905.573333pt;}
.y52{bottom:906.693333pt;}
.yd7{bottom:917.093333pt;}
.ya1{bottom:920.133333pt;}
.y39{bottom:924.293333pt;}
.y5{bottom:932.613333pt;}
.y31{bottom:933.333333pt;}
.yd5{bottom:936.453333pt;}
.y38{bottom:943.013333pt;}
.y4{bottom:961.253333pt;}
.y37{bottom:961.733333pt;}
.y36{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.y35{bottom:999.200000pt;}
.y34{bottom:1017.920000pt;}
.y2{bottom:1018.400000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.ha{height:16.160000pt;}
.hb{height:16.320000pt;}
.hc{height:16.352000pt;}
.he{height:16.640000pt;}
.hd{height:16.800000pt;}
.h14{height:16.960000pt;}
.h10{height:17.440000pt;}
.hf{height:17.472000pt;}
.h15{height:17.600000pt;}
.h13{height:18.720000pt;}
.h12{height:20.512000pt;}
.h11{height:20.640000pt;}
.h8{height:46.376250pt;}
.h9{height:46.454062pt;}
.h5{height:52.834688pt;}
.h7{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:27.040000pt;}
.we{width:44.000000pt;}
.wd{width:44.032000pt;}
.wf{width:44.160000pt;}
.wc{width:44.192000pt;}
.w9{width:44.800000pt;}
.w1a{width:48.160000pt;}
.w18{width:48.320000pt;}
.w1f{width:52.480000pt;}
.w20{width:55.200000pt;}
.w27{width:59.232000pt;}
.w14{width:63.520000pt;}
.w15{width:66.400000pt;}
.w5{width:69.120000pt;}
.w6{width:69.152000pt;}
.w3{width:69.280000pt;}
.w4{width:69.312000pt;}
.w24{width:73.280000pt;}
.w25{width:75.712000pt;}
.w26{width:76.640000pt;}
.w1b{width:76.832000pt;}
.w23{width:82.080000pt;}
.w28{width:84.800000pt;}
.w19{width:85.632000pt;}
.wa{width:85.792000pt;}
.w21{width:88.992000pt;}
.w2e{width:92.352000pt;}
.w1e{width:95.072000pt;}
.w32{width:95.872000pt;}
.w16{width:107.552000pt;}
.w1c{width:107.840000pt;}
.w2f{width:108.032000pt;}
.w29{width:109.472000pt;}
.w1d{width:109.952000pt;}
.w2b{width:110.752000pt;}
.w30{width:111.360000pt;}
.w2d{width:112.192000pt;}
.w11{width:113.760000pt;}
.w13{width:114.432000pt;}
.w31{width:130.752000pt;}
.wb{width:131.360000pt;}
.w22{width:138.106667pt;}
.w12{width:145.626667pt;}
.w7{width:151.706667pt;}
.w2a{width:179.226667pt;}
.w8{width:196.826667pt;}
.w17{width:214.906667pt;}
.w2c{width:255.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:6.720000pt;}
.x6{left:47.999988pt;}
.x3e{left:54.079988pt;}
.x3d{left:71.999988pt;}
.x3f{left:83.999988pt;}
.x1f{left:89.632000pt;}
.x5{left:134.266655pt;}
.x7{left:141.333333pt;}
.x2f{left:142.746667pt;}
.x11{left:144.186667pt;}
.xb{left:146.266667pt;}
.x35{left:153.786667pt;}
.x25{left:158.746667pt;}
.x38{left:166.266667pt;}
.x3a{left:172.986667pt;}
.x20{left:204.186667pt;}
.x16{left:208.826667pt;}
.xd{left:216.186667pt;}
.x1a{left:217.466667pt;}
.x36{left:239.226667pt;}
.x3{left:241.306655pt;}
.x2a{left:248.986667pt;}
.x30{left:281.506667pt;}
.xe{left:286.306667pt;}
.x9{left:299.106655pt;}
.x2{left:311.586655pt;}
.x12{left:341.666667pt;}
.x37{left:349.346667pt;}
.x21{left:350.466667pt;}
.xf{left:356.066667pt;}
.x2b{left:359.586667pt;}
.x31{left:364.226667pt;}
.x4{left:371.746655pt;}
.x26{left:374.306667pt;}
.x13{left:387.106667pt;}
.x3b{left:393.666667pt;}
.xa{left:396.866655pt;}
.x17{left:406.466667pt;}
.x1b{left:414.946667pt;}
.x27{left:423.266667pt;}
.x1{left:425.346655pt;}
.x32{left:438.146667pt;}
.x18{left:451.293333pt;}
.x2c{left:455.293333pt;}
.x1c{left:459.773333pt;}
.x22{left:465.533333pt;}
.x14{left:473.533333pt;}
.x10{left:495.933333pt;}
.x1d{left:504.573333pt;}
.x2d{left:508.413333pt;}
.x28{left:509.533333pt;}
.x33{left:514.653333pt;}
.x3c{left:525.053333pt;}
.x23{left:529.693333pt;}
.x39{left:535.293333pt;}
.x19{left:540.893333pt;}
.x1e{left:549.373333pt;}
.x29{left:558.333333pt;}
.x2e{left:564.253333pt;}
.x8{left:590.653322pt;}
.x34{left:591.933333pt;}
.x24{left:596.733333pt;}
.x15{left:605.533333pt;}
}




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