
    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_1eb8557c1717e11e0f62a7a9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_a0a9a7e7ce45a2b71497603f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_99979de54f4dcd3caf98b914.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_1f3c658ac5b4e8bce858b964.woff2')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_b541f0f8d98b096d768238c5.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_6736dc304be9693153674c0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_def43216598ae7a67c4c27ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_9880b86d493947d39535eb69.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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-8.220000px;}
.ls3{letter-spacing:-0.389400px;}
.ls19{letter-spacing:-0.341400px;}
.ls7{letter-spacing:-0.325200px;}
.ls14{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000006px;}
.ls24{letter-spacing:0.043920px;}
.ls21{letter-spacing:0.101400px;}
.ls22{letter-spacing:0.134400px;}
.ls6{letter-spacing:0.162600px;}
.ls23{letter-spacing:0.181200px;}
.ls25{letter-spacing:0.181440px;}
.ls12{letter-spacing:0.197400px;}
.ls10{letter-spacing:0.245400px;}
.ls15{letter-spacing:0.247800px;}
.ls4{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.295800px;}
.ls13{letter-spacing:0.295920px;}
.lse{letter-spacing:0.325200px;}
.ls11{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.389400px;}
.ls16{letter-spacing:0.469200px;}
.ls5{letter-spacing:0.504000px;}
.lsa{letter-spacing:54.038496px;}
.ls9{letter-spacing:54.118560px;}
.ls1{letter-spacing:58.477536px;}
.lsb{letter-spacing:58.605840px;}
.ls1d{letter-spacing:97.902000px;}
.ls20{letter-spacing:98.193600px;}
.ls1f{letter-spacing:98.244000px;}
.ls8{letter-spacing:105.516000px;}
.ls1e{letter-spacing:128.854800px;}
.ls1c{letter-spacing:152.939232px;}
.ls1b{letter-spacing:153.046800px;}
.ls1a{letter-spacing:182.854800px;}
.ls18{letter-spacing:205.902000px;}
.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;}
}
.ws27{word-spacing:-46.677312px;}
.ws2a{word-spacing:-46.637280px;}
.ws0{word-spacing:-43.434720px;}
.ws2{word-spacing:-41.976000px;}
.wse{word-spacing:-41.940000px;}
.ws1f{word-spacing:-40.032000px;}
.ws74{word-spacing:-36.629280px;}
.ws21{word-spacing:-33.466752px;}
.ws20{word-spacing:-33.426720px;}
.ws70{word-spacing:-23.458752px;}
.ws6f{word-spacing:-23.418720px;}
.ws72{word-spacing:-23.077320px;}
.ws6d{word-spacing:-20.056032px;}
.ws6e{word-spacing:-20.016000px;}
.ws1e{word-spacing:-16.613280px;}
.ws75{word-spacing:-4.453920px;}
.ws1d{word-spacing:-0.912960px;}
.ws5a{word-spacing:-0.748800px;}
.ws28{word-spacing:-0.162000px;}
.ws6c{word-spacing:-0.077280px;}
.ws1{word-spacing:0.000000px;}
.ws77{word-spacing:1.114320px;}
.ws29{word-spacing:1.190160px;}
.ws59{word-spacing:2.280000px;}
.ws76{word-spacing:2.652480px;}
.ws73{word-spacing:2.723832px;}
.ws68{word-spacing:2.938752px;}
.ws6{word-spacing:3.035520px;}
.wsb{word-spacing:4.222560px;}
.ws9{word-spacing:4.534560px;}
.ws7{word-spacing:4.546560px;}
.ws34{word-spacing:4.878000px;}
.wsc{word-spacing:4.929480px;}
.wsa{word-spacing:5.003280px;}
.ws36{word-spacing:5.133240px;}
.ws35{word-spacing:5.365440px;}
.wsd{word-spacing:5.503440px;}
.ws33{word-spacing:5.897520px;}
.ws8{word-spacing:5.976480px;}
.ws47{word-spacing:7.792632px;}
.ws44{word-spacing:7.797240px;}
.ws45{word-spacing:7.920480px;}
.ws48{word-spacing:8.364096px;}
.ws46{word-spacing:8.392512px;}
.ws65{word-spacing:21.310080px;}
.ws67{word-spacing:21.618000px;}
.ws64{word-spacing:23.074320px;}
.ws66{word-spacing:23.386080px;}
.ws13{word-spacing:25.458624px;}
.ws37{word-spacing:25.758000px;}
.ws39{word-spacing:25.792560px;}
.ws3b{word-spacing:25.966320px;}
.ws3c{word-spacing:26.043120px;}
.ws24{word-spacing:26.617176px;}
.ws3a{word-spacing:27.100080px;}
.ws10{word-spacing:27.276192px;}
.wsf{word-spacing:27.391968px;}
.ws38{word-spacing:27.444720px;}
.ws26{word-spacing:27.481152px;}
.ws22{word-spacing:27.957240px;}
.ws11{word-spacing:28.045512px;}
.ws12{word-spacing:28.060224px;}
.ws25{word-spacing:28.062912px;}
.ws23{word-spacing:29.155008px;}
.ws4a{word-spacing:36.528720px;}
.ws49{word-spacing:37.112160px;}
.ws4b{word-spacing:37.350720px;}
.ws3d{word-spacing:37.870080px;}
.ws41{word-spacing:37.928160px;}
.ws3f{word-spacing:37.998000px;}
.ws43{word-spacing:38.178240px;}
.ws40{word-spacing:39.527280px;}
.ws3e{word-spacing:39.729360px;}
.ws42{word-spacing:40.157760px;}
.ws1b{word-spacing:44.134560px;}
.ws14{word-spacing:44.820000px;}
.ws1c{word-spacing:45.250320px;}
.ws18{word-spacing:45.574560px;}
.ws1a{word-spacing:45.596160px;}
.ws54{word-spacing:45.968160px;}
.ws19{word-spacing:45.992880px;}
.ws58{word-spacing:46.098000px;}
.ws56{word-spacing:46.818000px;}
.ws57{word-spacing:46.902960px;}
.ws53{word-spacing:47.080800px;}
.ws55{word-spacing:47.110320px;}
.ws51{word-spacing:61.032576px;}
.ws50{word-spacing:61.062240px;}
.ws52{word-spacing:61.570656px;}
.ws4f{word-spacing:69.608160px;}
.ws4c{word-spacing:69.678000px;}
.ws4e{word-spacing:69.678240px;}
.ws4d{word-spacing:70.832880px;}
.ws30{word-spacing:71.061240px;}
.ws2d{word-spacing:71.118000px;}
.ws32{word-spacing:71.373240px;}
.ws2b{word-spacing:71.838000px;}
.ws31{word-spacing:71.945280px;}
.ws2c{word-spacing:72.065280px;}
.ws2e{word-spacing:72.490320px;}
.ws2f{word-spacing:72.592560px;}
.ws61{word-spacing:79.362240px;}
.ws60{word-spacing:79.629840px;}
.ws62{word-spacing:79.688160px;}
.ws69{word-spacing:80.478000px;}
.ws5f{word-spacing:81.040080px;}
.ws63{word-spacing:81.090720px;}
.ws5{word-spacing:81.101184px;}
.ws3{word-spacing:81.142560px;}
.ws6a{word-spacing:81.469920px;}
.ws6b{word-spacing:81.636960px;}
.ws4{word-spacing:82.765512px;}
.ws16{word-spacing:92.554560px;}
.ws17{word-spacing:93.247200px;}
.ws15{word-spacing:94.819200px;}
.ws5b{word-spacing:107.157240px;}
.ws5d{word-spacing:107.337240px;}
.ws5e{word-spacing:108.034848px;}
.ws5c{word-spacing:108.110208px;}
.ws71{word-spacing:3124.544640px;}
._3{margin-left:-17.045856px;}
._15{margin-left:-10.775808px;}
._1{margin-left:-9.070272px;}
._17{margin-left:-7.497360px;}
._16{margin-left:-5.138640px;}
._2{margin-left:-2.814912px;}
._4{margin-left:-1.729152px;}
._0{width:1.678320px;}
._c{width:3.483072px;}
._b{width:42.467280px;}
._5{width:46.193760px;}
._14{width:47.939040px;}
._6{width:49.152672px;}
._12{width:50.978928px;}
._13{width:52.268592px;}
._e{width:55.965456px;}
._d{width:75.258384px;}
._7{width:84.981120px;}
._8{width:88.144032px;}
._11{width:94.679040px;}
._10{width:108.916128px;}
._f{width:118.437840px;}
._a{width:136.354512px;}
._9{width:137.367360px;}
.fc4{color:rgb(126,0,33);}
.fc3{color:transparent;}
.fc2{color:rgb(102,0,0);}
.fc1{color:rgb(66,0,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs11{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs13{font-size:72.000000px;}
.fs14{font-size:72.144000px;}
.fs17{font-size:75.600000px;}
.fs18{font-size:75.744000px;}
.fs12{font-size:84.240000px;}
.fs16{font-size:84.384000px;}
.fs15{font-size:95.760000px;}
.fs0{font-size:108.000000px;}
.fsc{font-size:120.240000px;}
.fsd{font-size:120.384000px;}
.fs19{font-size:131.760000px;}
.fs1a{font-size:131.904000px;}
.fsf{font-size:138.240000px;}
.fsa{font-size:144.000000px;}
.fs9{font-size:144.144000px;}
.fs3{font-size:156.240000px;}
.fs2{font-size:156.384000px;}
.fs6{font-size:167.760000px;}
.fs5{font-size:167.904000px;}
.fsb{font-size:192.240000px;}
.fs10{font-size:192.384000px;}
.fse{font-size:216.000000px;}
.fs4{font-size:216.144000px;}
.fs1{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:4.356000px;}
.y5d{bottom:9.936000px;}
.y4{bottom:14.652000px;}
.yb3{bottom:27.936000px;}
.y26{bottom:30.312000px;}
.y8d{bottom:34.344000px;}
.y81{bottom:39.852000px;}
.y1{bottom:40.392000px;}
.ye{bottom:43.200000px;}
.y43{bottom:45.612000px;}
.y56{bottom:47.268000px;}
.y13{bottom:60.552000px;}
.y94{bottom:60.912000px;}
.y3{bottom:61.488000px;}
.y79{bottom:65.412000px;}
.yb2{bottom:67.572000px;}
.y9c{bottom:68.364000px;}
.y49{bottom:79.272000px;}
.y25{bottom:80.712000px;}
.y8c{bottom:82.224000px;}
.y29{bottom:88.200000px;}
.y42{bottom:92.052000px;}
.y80{bottom:99.252000px;}
.y9b{bottom:100.764000px;}
.y48{bottom:104.472000px;}
.yb1{bottom:107.172000px;}
.y78{bottom:115.812000px;}
.y73{bottom:118.692000px;}
.y93{bottom:120.312000px;}
.y62{bottom:123.480000px;}
.ya8{bottom:126.972000px;}
.y28{bottom:129.600000px;}
.y8b{bottom:130.320000px;}
.y24{bottom:131.112000px;}
.yd{bottom:137.340000px;}
.y41{bottom:138.492000px;}
.y4d{bottom:145.116000px;}
.yb0{bottom:146.772000px;}
.y72{bottom:157.425000px;}
.y7f{bottom:158.655000px;}
.y61{bottom:162.180000px;}
.ya7{bottom:170.175000px;}
.y40{bottom:174.495000px;}
.y77{bottom:176.655000px;}
.y8a{bottom:178.380000px;}
.y4c{bottom:178.590000px;}
.y92{bottom:179.715000px;}
.y23{bottom:181.515000px;}
.yf{bottom:192.090000px;}
.y30{bottom:193.245000px;}
.y71{bottom:196.125000px;}
.yaf{bottom:198.255000px;}
.y1b{bottom:200.235000px;}
.y4b{bottom:212.295000px;}
.ya6{bottom:213.375000px;}
.y7e{bottom:218.085000px;}
.y3f{bottom:221.145000px;}
.y89{bottom:226.260000px;}
.y22{bottom:231.945000px;}
.yb9{bottom:235.650000px;}
.y76{bottom:237.525000px;}
.yae{bottom:237.885000px;}
.y91{bottom:239.145000px;}
.yc{bottom:242.355000px;}
.y2f{bottom:243.645000px;}
.y4a{bottom:245.955000px;}
.y34{bottom:255.525000px;}
.y88{bottom:262.260000px;}
.y3e{bottom:267.585000px;}
.ya5{bottom:268.665000px;}
.y47{bottom:274.890000px;}
.yb8{bottom:275.295000px;}
.y7d{bottom:277.485000px;}
.y1a{bottom:278.385000px;}
.y12{bottom:279.390000px;}
.y75{bottom:287.925000px;}
.y2e{bottom:294.045000px;}
.y21{bottom:294.225000px;}
.y90{bottom:298.545000px;}
.y46{bottom:300.090000px;}
.y33{bottom:305.925000px;}
.y87{bottom:310.350000px;}
.y66{bottom:310.650000px;}
.ya4{bottom:311.865000px;}
.y3d{bottom:314.025000px;}
.y70{bottom:314.310000px;}
.yb{bottom:322.230000px;}
.yb7{bottom:326.775000px;}
.yad{bottom:329.145000px;}
.y7c{bottom:338.325000px;}
.y50{bottom:343.695000px;}
.y2d{bottom:344.445000px;}
.y20{bottom:344.625000px;}
.y74{bottom:348.990000px;}
.y65{bottom:349.350000px;}
.y6f{bottom:353.010000px;}
.ya3{bottom:355.065000px;}
.y32{bottom:356.370000px;}
.y86{bottom:358.410000px;}
.y3c{bottom:360.690000px;}
.y4f{bottom:365.325000px;}
.yb6{bottom:366.375000px;}
.ya{bottom:373.065000px;}
.y19{bottom:374.325000px;}
.y59{bottom:378.210000px;}
.y6e{bottom:391.710000px;}
.y2c{bottom:394.890000px;}
.y1f{bottom:395.070000px;}
.y4e{bottom:398.985000px;}
.y7b{bottom:399.390000px;}
.y5a{bottom:403.230000px;}
.y31{bottom:406.770000px;}
.y99{bottom:407.490000px;}
.ya2{bottom:410.370000px;}
.y14{bottom:410.685000px;}
.y8f{bottom:423.330000px;}
.y9{bottom:423.510000px;}
.y45{bottom:428.115000px;}
.yac{bottom:432.330000px;}
.y9a{bottom:440.355000px;}
.y1e{bottom:445.470000px;}
.y98{bottom:450.690000px;}
.y18{bottom:452.310000px;}
.y44{bottom:453.315000px;}
.ya1{bottom:453.570000px;}
.y2b{bottom:457.170000px;}
.yb5{bottom:469.725000px;}
.y85{bottom:471.495000px;}
.y3b{bottom:473.730000px;}
.y8{bottom:473.910000px;}
.y6d{bottom:475.950000px;}
.yab{bottom:483.990000px;}
.y2{bottom:485.175000px;}
.y64{bottom:489.165000px;}
.y54{bottom:492.195000px;}
.y97{bottom:493.890000px;}
.ya0{bottom:496.770000px;}
.y5f{bottom:500.040000px;}
.y2a{bottom:507.600000px;}
.y1d{bottom:507.960000px;}
.yb4{bottom:509.325000px;}
.y53{bottom:513.795000px;}
.y6c{bottom:514.695000px;}
.y84{bottom:521.895000px;}
.yaa{bottom:523.620000px;}
.y3a{bottom:524.160000px;}
.y7{bottom:524.310000px;}
.y63{bottom:527.865000px;}
.y17{bottom:530.430000px;}
.y11{bottom:532.770000px;}
.y96{bottom:537.120000px;}
.y52{bottom:547.485000px;}
.y9f{bottom:553.320000px;}
.y6b{bottom:553.395000px;}
.y51{bottom:569.085000px;}
.y83{bottom:572.295000px;}
.y60{bottom:572.940000px;}
.y39{bottom:574.560000px;}
.y6{bottom:574.740000px;}
.ya9{bottom:575.280000px;}
.y95{bottom:580.320000px;}
.y55{bottom:595.950000px;}
.y6a{bottom:620.565000px;}
.y58{bottom:626.115000px;}
.y16{bottom:626.400000px;}
.y9e{bottom:657.105000px;}
.y1c{bottom:658.050000px;}
.y68{bottom:659.265000px;}
.y38{bottom:664.530000px;}
.y57{bottom:665.355000px;}
.y36{bottom:670.650000px;}
.y5{bottom:675.105000px;}
.y82{bottom:693.330000px;}
.y67{bottom:697.965000px;}
.y5c{bottom:702.435000px;}
.y35{bottom:721.080000px;}
.y9d{bottom:721.905000px;}
.y10{bottom:722.010000px;}
.y37{bottom:722.160000px;}
.y27{bottom:722.850000px;}
.y15{bottom:738.465000px;}
.y5b{bottom:741.675000px;}
.y8e{bottom:750.345000px;}
.y69{bottom:758.730000px;}
.y5e{bottom:788.370000px;}
.h8{height:43.554375px;}
.h9{height:62.327813px;}
.h18{height:75.093750px;}
.h19{height:75.243937px;}
.h17{height:87.859687px;}
.h1b{height:88.009875px;}
.h1a{height:99.874688px;}
.h1{height:112.640625px;}
.hd{height:125.406562px;}
.he{height:125.556750px;}
.h1f{height:129.093750px;}
.h1e{height:129.222844px;}
.h13{height:135.675000px;}
.h20{height:137.421562px;}
.h21{height:137.571750px;}
.h12{height:139.320000px;}
.hb{height:150.187500px;}
.ha{height:150.337688px;}
.h4{height:162.953438px;}
.h3{height:163.103625px;}
.h7{height:164.647266px;}
.h10{height:164.788594px;}
.h6{height:169.215750px;}
.h15{height:174.968437px;}
.h14{height:175.118625px;}
.hc{height:200.500313px;}
.h16{height:200.650500px;}
.h5{height:212.133516px;}
.h11{height:217.687500px;}
.hf{height:217.832625px;}
.h1c{height:225.281250px;}
.h1d{height:225.431438px;}
.h2{height:250.062187px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x13{left:11.555984px;}
.x4f{left:21.131984px;}
.x4e{left:22.679984px;}
.x4c{left:23.759984px;}
.x4a{left:34.991984px;}
.x49{left:38.951984px;}
.x4b{left:46.511984px;}
.x4d{left:50.759984px;}
.x5c{left:53.999984px;}
.x5d{left:55.439984px;}
.x3{left:60.839984px;}
.x11{left:62.279984px;}
.x16{left:64.655984px;}
.x17{left:66.275984px;}
.x5b{left:67.643984px;}
.x59{left:72.323984px;}
.x6{left:74.411984px;}
.x5{left:80.387984px;}
.x14{left:84.383984px;}
.x5e{left:94.319984px;}
.xf{left:97.523984px;}
.x58{left:101.951984px;}
.x18{left:105.155984px;}
.x12{left:114.299984px;}
.x4{left:126.395984px;}
.x10{left:128.411984px;}
.x2{left:144.827984px;}
.x5a{left:150.404984px;}
.x19{left:172.649984px;}
.xb{left:179.459984px;}
.x48{left:196.484984px;}
.x1a{left:238.529984px;}
.x45{left:264.989984px;}
.x57{left:280.694984px;}
.x42{left:283.964984px;}
.x40{left:295.634984px;}
.x35{left:300.524984px;}
.x23{left:309.419984px;}
.x24{left:311.579984px;}
.x22{left:313.919984px;}
.x21{left:316.079984px;}
.x36{left:318.524984px;}
.x32{left:320.189984px;}
.x31{left:326.669984px;}
.x46{left:329.579984px;}
.x34{left:337.424984px;}
.x1f{left:338.654984px;}
.x37{left:346.784984px;}
.x15{left:356.939984px;}
.x33{left:367.019984px;}
.x41{left:391.679984px;}
.x1b{left:395.744984px;}
.x1e{left:405.464984px;}
.x1d{left:407.804984px;}
.x20{left:423.284984px;}
.x26{left:428.114984px;}
.x25{left:429.374984px;}
.x27{left:430.634984px;}
.x1c{left:435.344984px;}
.x3a{left:462.704984px;}
.x3b{left:468.824984px;}
.x9{left:475.949984px;}
.x43{left:479.489984px;}
.xe{left:489.854984px;}
.x39{left:495.284984px;}
.x38{left:503.384984px;}
.x8{left:537.089984px;}
.x2a{left:544.139984px;}
.x29{left:550.079984px;}
.x28{left:554.219984px;}
.xa{left:563.909984px;}
.xd{left:571.034984px;}
.x2f{left:591.479984px;}
.x7{left:615.494984px;}
.x30{left:617.939984px;}
.xc{left:637.814984px;}
.x3d{left:641.984984px;}
.x3e{left:650.624984px;}
.x2c{left:663.944984px;}
.x3c{left:673.484984px;}
.x3f{left:677.804984px;}
.x2d{left:679.424984px;}
.x2e{left:681.584984px;}
.x2b{left:685.904984px;}
.x1{left:784.769984px;}
.x44{left:817.814984px;}
.x47{left:868.829984px;}
.x50{left:941.219984px;}
.x55{left:943.019984px;}
.x56{left:948.419984px;}
.x52{left:949.499984px;}
.x54{left:954.719984px;}
.x51{left:964.619984px;}
.x53{left:966.959984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-7.306667pt;}
.ls3{letter-spacing:-0.346133pt;}
.ls19{letter-spacing:-0.303467pt;}
.ls7{letter-spacing:-0.289067pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000005pt;}
.ls24{letter-spacing:0.039040pt;}
.ls21{letter-spacing:0.090133pt;}
.ls22{letter-spacing:0.119467pt;}
.ls6{letter-spacing:0.144533pt;}
.ls23{letter-spacing:0.161067pt;}
.ls25{letter-spacing:0.161280pt;}
.ls12{letter-spacing:0.175467pt;}
.ls10{letter-spacing:0.218133pt;}
.ls15{letter-spacing:0.220267pt;}
.ls4{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.262933pt;}
.ls13{letter-spacing:0.263040pt;}
.lse{letter-spacing:0.289067pt;}
.ls11{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.346133pt;}
.ls16{letter-spacing:0.417067pt;}
.ls5{letter-spacing:0.448000pt;}
.lsa{letter-spacing:48.034219pt;}
.ls9{letter-spacing:48.105387pt;}
.ls1{letter-spacing:51.980032pt;}
.lsb{letter-spacing:52.094080pt;}
.ls1d{letter-spacing:87.024000pt;}
.ls20{letter-spacing:87.283200pt;}
.ls1f{letter-spacing:87.328000pt;}
.ls8{letter-spacing:93.792000pt;}
.ls1e{letter-spacing:114.537600pt;}
.ls1c{letter-spacing:135.945984pt;}
.ls1b{letter-spacing:136.041600pt;}
.ls1a{letter-spacing:162.537600pt;}
.ls18{letter-spacing:183.024000pt;}
.ws27{word-spacing:-41.490944pt;}
.ws2a{word-spacing:-41.455360pt;}
.ws0{word-spacing:-38.608640pt;}
.ws2{word-spacing:-37.312000pt;}
.wse{word-spacing:-37.280000pt;}
.ws1f{word-spacing:-35.584000pt;}
.ws74{word-spacing:-32.559360pt;}
.ws21{word-spacing:-29.748224pt;}
.ws20{word-spacing:-29.712640pt;}
.ws70{word-spacing:-20.852224pt;}
.ws6f{word-spacing:-20.816640pt;}
.ws72{word-spacing:-20.513173pt;}
.ws6d{word-spacing:-17.827584pt;}
.ws6e{word-spacing:-17.792000pt;}
.ws1e{word-spacing:-14.767360pt;}
.ws75{word-spacing:-3.959040pt;}
.ws1d{word-spacing:-0.811520pt;}
.ws5a{word-spacing:-0.665600pt;}
.ws28{word-spacing:-0.144000pt;}
.ws6c{word-spacing:-0.068693pt;}
.ws1{word-spacing:0.000000pt;}
.ws77{word-spacing:0.990507pt;}
.ws29{word-spacing:1.057920pt;}
.ws59{word-spacing:2.026667pt;}
.ws76{word-spacing:2.357760pt;}
.ws73{word-spacing:2.421184pt;}
.ws68{word-spacing:2.612224pt;}
.ws6{word-spacing:2.698240pt;}
.wsb{word-spacing:3.753387pt;}
.ws9{word-spacing:4.030720pt;}
.ws7{word-spacing:4.041387pt;}
.ws34{word-spacing:4.336000pt;}
.wsc{word-spacing:4.381760pt;}
.wsa{word-spacing:4.447360pt;}
.ws36{word-spacing:4.562880pt;}
.ws35{word-spacing:4.769280pt;}
.wsd{word-spacing:4.891947pt;}
.ws33{word-spacing:5.242240pt;}
.ws8{word-spacing:5.312427pt;}
.ws47{word-spacing:6.926784pt;}
.ws44{word-spacing:6.930880pt;}
.ws45{word-spacing:7.040427pt;}
.ws48{word-spacing:7.434752pt;}
.ws46{word-spacing:7.460011pt;}
.ws65{word-spacing:18.942293pt;}
.ws67{word-spacing:19.216000pt;}
.ws64{word-spacing:20.510507pt;}
.ws66{word-spacing:20.787627pt;}
.ws13{word-spacing:22.629888pt;}
.ws37{word-spacing:22.896000pt;}
.ws39{word-spacing:22.926720pt;}
.ws3b{word-spacing:23.081173pt;}
.ws3c{word-spacing:23.149440pt;}
.ws24{word-spacing:23.659712pt;}
.ws3a{word-spacing:24.088960pt;}
.ws10{word-spacing:24.245504pt;}
.wsf{word-spacing:24.348416pt;}
.ws38{word-spacing:24.395307pt;}
.ws26{word-spacing:24.427691pt;}
.ws22{word-spacing:24.850880pt;}
.ws11{word-spacing:24.929344pt;}
.ws12{word-spacing:24.942421pt;}
.ws25{word-spacing:24.944811pt;}
.ws23{word-spacing:25.915563pt;}
.ws4a{word-spacing:32.469973pt;}
.ws49{word-spacing:32.988587pt;}
.ws4b{word-spacing:33.200640pt;}
.ws3d{word-spacing:33.662293pt;}
.ws41{word-spacing:33.713920pt;}
.ws3f{word-spacing:33.776000pt;}
.ws43{word-spacing:33.936213pt;}
.ws40{word-spacing:35.135360pt;}
.ws3e{word-spacing:35.314987pt;}
.ws42{word-spacing:35.695787pt;}
.ws1b{word-spacing:39.230720pt;}
.ws14{word-spacing:39.840000pt;}
.ws1c{word-spacing:40.222507pt;}
.ws18{word-spacing:40.510720pt;}
.ws1a{word-spacing:40.529920pt;}
.ws54{word-spacing:40.860587pt;}
.ws19{word-spacing:40.882560pt;}
.ws58{word-spacing:40.976000pt;}
.ws56{word-spacing:41.616000pt;}
.ws57{word-spacing:41.691520pt;}
.ws53{word-spacing:41.849600pt;}
.ws55{word-spacing:41.875840pt;}
.ws51{word-spacing:54.251179pt;}
.ws50{word-spacing:54.277547pt;}
.ws52{word-spacing:54.729472pt;}
.ws4f{word-spacing:61.873920pt;}
.ws4c{word-spacing:61.936000pt;}
.ws4e{word-spacing:61.936213pt;}
.ws4d{word-spacing:62.962560pt;}
.ws30{word-spacing:63.165547pt;}
.ws2d{word-spacing:63.216000pt;}
.ws32{word-spacing:63.442880pt;}
.ws2b{word-spacing:63.856000pt;}
.ws31{word-spacing:63.951360pt;}
.ws2c{word-spacing:64.058027pt;}
.ws2e{word-spacing:64.435840pt;}
.ws2f{word-spacing:64.526720pt;}
.ws61{word-spacing:70.544213pt;}
.ws60{word-spacing:70.782080pt;}
.ws62{word-spacing:70.833920pt;}
.ws69{word-spacing:71.536000pt;}
.ws5f{word-spacing:72.035627pt;}
.ws63{word-spacing:72.080640pt;}
.ws5{word-spacing:72.089941pt;}
.ws3{word-spacing:72.126720pt;}
.ws6a{word-spacing:72.417707pt;}
.ws6b{word-spacing:72.566187pt;}
.ws4{word-spacing:73.569344pt;}
.ws16{word-spacing:82.270720pt;}
.ws17{word-spacing:82.886400pt;}
.ws15{word-spacing:84.283733pt;}
.ws5b{word-spacing:95.250880pt;}
.ws5d{word-spacing:95.410880pt;}
.ws5e{word-spacing:96.030976pt;}
.ws5c{word-spacing:96.097963pt;}
.ws71{word-spacing:2777.373013pt;}
._3{margin-left:-15.151872pt;}
._15{margin-left:-9.578496pt;}
._1{margin-left:-8.062464pt;}
._17{margin-left:-6.664320pt;}
._16{margin-left:-4.567680pt;}
._2{margin-left:-2.502144pt;}
._4{margin-left:-1.537024pt;}
._0{width:1.491840pt;}
._c{width:3.096064pt;}
._b{width:37.748693pt;}
._5{width:41.061120pt;}
._14{width:42.612480pt;}
._6{width:43.691264pt;}
._12{width:45.314603pt;}
._13{width:46.460971pt;}
._e{width:49.747072pt;}
._d{width:66.896341pt;}
._7{width:75.538773pt;}
._8{width:78.350251pt;}
._11{width:84.159147pt;}
._10{width:96.814336pt;}
._f{width:105.278080pt;}
._a{width:121.204011pt;}
._9{width:122.104320pt;}
.fs7{font-size:37.120000pt;}
.fs11{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs13{font-size:64.000000pt;}
.fs14{font-size:64.128000pt;}
.fs17{font-size:67.200000pt;}
.fs18{font-size:67.328000pt;}
.fs12{font-size:74.880000pt;}
.fs16{font-size:75.008000pt;}
.fs15{font-size:85.120000pt;}
.fs0{font-size:96.000000pt;}
.fsc{font-size:106.880000pt;}
.fsd{font-size:107.008000pt;}
.fs19{font-size:117.120000pt;}
.fs1a{font-size:117.248000pt;}
.fsf{font-size:122.880000pt;}
.fsa{font-size:128.000000pt;}
.fs9{font-size:128.128000pt;}
.fs3{font-size:138.880000pt;}
.fs2{font-size:139.008000pt;}
.fs6{font-size:149.120000pt;}
.fs5{font-size:149.248000pt;}
.fsb{font-size:170.880000pt;}
.fs10{font-size:171.008000pt;}
.fse{font-size:192.000000pt;}
.fs4{font-size:192.128000pt;}
.fs1{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:3.872000pt;}
.y5d{bottom:8.832000pt;}
.y4{bottom:13.024000pt;}
.yb3{bottom:24.832000pt;}
.y26{bottom:26.944000pt;}
.y8d{bottom:30.528000pt;}
.y81{bottom:35.424000pt;}
.y1{bottom:35.904000pt;}
.ye{bottom:38.400000pt;}
.y43{bottom:40.544000pt;}
.y56{bottom:42.016000pt;}
.y13{bottom:53.824000pt;}
.y94{bottom:54.144000pt;}
.y3{bottom:54.656000pt;}
.y79{bottom:58.144000pt;}
.yb2{bottom:60.064000pt;}
.y9c{bottom:60.768000pt;}
.y49{bottom:70.464000pt;}
.y25{bottom:71.744000pt;}
.y8c{bottom:73.088000pt;}
.y29{bottom:78.400000pt;}
.y42{bottom:81.824000pt;}
.y80{bottom:88.224000pt;}
.y9b{bottom:89.568000pt;}
.y48{bottom:92.864000pt;}
.yb1{bottom:95.264000pt;}
.y78{bottom:102.944000pt;}
.y73{bottom:105.504000pt;}
.y93{bottom:106.944000pt;}
.y62{bottom:109.760000pt;}
.ya8{bottom:112.864000pt;}
.y28{bottom:115.200000pt;}
.y8b{bottom:115.840000pt;}
.y24{bottom:116.544000pt;}
.yd{bottom:122.080000pt;}
.y41{bottom:123.104000pt;}
.y4d{bottom:128.992000pt;}
.yb0{bottom:130.464000pt;}
.y72{bottom:139.933333pt;}
.y7f{bottom:141.026667pt;}
.y61{bottom:144.160000pt;}
.ya7{bottom:151.266667pt;}
.y40{bottom:155.106667pt;}
.y77{bottom:157.026667pt;}
.y8a{bottom:158.560000pt;}
.y4c{bottom:158.746667pt;}
.y92{bottom:159.746667pt;}
.y23{bottom:161.346667pt;}
.yf{bottom:170.746667pt;}
.y30{bottom:171.773333pt;}
.y71{bottom:174.333333pt;}
.yaf{bottom:176.226667pt;}
.y1b{bottom:177.986667pt;}
.y4b{bottom:188.706667pt;}
.ya6{bottom:189.666667pt;}
.y7e{bottom:193.853333pt;}
.y3f{bottom:196.573333pt;}
.y89{bottom:201.120000pt;}
.y22{bottom:206.173333pt;}
.yb9{bottom:209.466667pt;}
.y76{bottom:211.133333pt;}
.yae{bottom:211.453333pt;}
.y91{bottom:212.573333pt;}
.yc{bottom:215.426667pt;}
.y2f{bottom:216.573333pt;}
.y4a{bottom:218.626667pt;}
.y34{bottom:227.133333pt;}
.y88{bottom:233.120000pt;}
.y3e{bottom:237.853333pt;}
.ya5{bottom:238.813333pt;}
.y47{bottom:244.346667pt;}
.yb8{bottom:244.706667pt;}
.y7d{bottom:246.653333pt;}
.y1a{bottom:247.453333pt;}
.y12{bottom:248.346667pt;}
.y75{bottom:255.933333pt;}
.y2e{bottom:261.373333pt;}
.y21{bottom:261.533333pt;}
.y90{bottom:265.373333pt;}
.y46{bottom:266.746667pt;}
.y33{bottom:271.933333pt;}
.y87{bottom:275.866667pt;}
.y66{bottom:276.133333pt;}
.ya4{bottom:277.213333pt;}
.y3d{bottom:279.133333pt;}
.y70{bottom:279.386667pt;}
.yb{bottom:286.426667pt;}
.yb7{bottom:290.466667pt;}
.yad{bottom:292.573333pt;}
.y7c{bottom:300.733333pt;}
.y50{bottom:305.506667pt;}
.y2d{bottom:306.173333pt;}
.y20{bottom:306.333333pt;}
.y74{bottom:310.213333pt;}
.y65{bottom:310.533333pt;}
.y6f{bottom:313.786667pt;}
.ya3{bottom:315.613333pt;}
.y32{bottom:316.773333pt;}
.y86{bottom:318.586667pt;}
.y3c{bottom:320.613333pt;}
.y4f{bottom:324.733333pt;}
.yb6{bottom:325.666667pt;}
.ya{bottom:331.613333pt;}
.y19{bottom:332.733333pt;}
.y59{bottom:336.186667pt;}
.y6e{bottom:348.186667pt;}
.y2c{bottom:351.013333pt;}
.y1f{bottom:351.173333pt;}
.y4e{bottom:354.653333pt;}
.y7b{bottom:355.013333pt;}
.y5a{bottom:358.426667pt;}
.y31{bottom:361.573333pt;}
.y99{bottom:362.213333pt;}
.ya2{bottom:364.773333pt;}
.y14{bottom:365.053333pt;}
.y8f{bottom:376.293333pt;}
.y9{bottom:376.453333pt;}
.y45{bottom:380.546667pt;}
.yac{bottom:384.293333pt;}
.y9a{bottom:391.426667pt;}
.y1e{bottom:395.973333pt;}
.y98{bottom:400.613333pt;}
.y18{bottom:402.053333pt;}
.y44{bottom:402.946667pt;}
.ya1{bottom:403.173333pt;}
.y2b{bottom:406.373333pt;}
.yb5{bottom:417.533333pt;}
.y85{bottom:419.106667pt;}
.y3b{bottom:421.093333pt;}
.y8{bottom:421.253333pt;}
.y6d{bottom:423.066667pt;}
.yab{bottom:430.213333pt;}
.y2{bottom:431.266667pt;}
.y64{bottom:434.813333pt;}
.y54{bottom:437.506667pt;}
.y97{bottom:439.013333pt;}
.ya0{bottom:441.573333pt;}
.y5f{bottom:444.480000pt;}
.y2a{bottom:451.200000pt;}
.y1d{bottom:451.520000pt;}
.yb4{bottom:452.733333pt;}
.y53{bottom:456.706667pt;}
.y6c{bottom:457.506667pt;}
.y84{bottom:463.906667pt;}
.yaa{bottom:465.440000pt;}
.y3a{bottom:465.920000pt;}
.y7{bottom:466.053333pt;}
.y63{bottom:469.213333pt;}
.y17{bottom:471.493333pt;}
.y11{bottom:473.573333pt;}
.y96{bottom:477.440000pt;}
.y52{bottom:486.653333pt;}
.y9f{bottom:491.840000pt;}
.y6b{bottom:491.906667pt;}
.y51{bottom:505.853333pt;}
.y83{bottom:508.706667pt;}
.y60{bottom:509.280000pt;}
.y39{bottom:510.720000pt;}
.y6{bottom:510.880000pt;}
.ya9{bottom:511.360000pt;}
.y95{bottom:515.840000pt;}
.y55{bottom:529.733333pt;}
.y6a{bottom:551.613333pt;}
.y58{bottom:556.546667pt;}
.y16{bottom:556.800000pt;}
.y9e{bottom:584.093333pt;}
.y1c{bottom:584.933333pt;}
.y68{bottom:586.013333pt;}
.y38{bottom:590.693333pt;}
.y57{bottom:591.426667pt;}
.y36{bottom:596.133333pt;}
.y5{bottom:600.093333pt;}
.y82{bottom:616.293333pt;}
.y67{bottom:620.413333pt;}
.y5c{bottom:624.386667pt;}
.y35{bottom:640.960000pt;}
.y9d{bottom:641.693333pt;}
.y10{bottom:641.786667pt;}
.y37{bottom:641.920000pt;}
.y27{bottom:642.533333pt;}
.y15{bottom:656.413333pt;}
.y5b{bottom:659.266667pt;}
.y8e{bottom:666.973333pt;}
.y69{bottom:674.426667pt;}
.y5e{bottom:700.773333pt;}
.h8{height:38.715000pt;}
.h9{height:55.402500pt;}
.h18{height:66.750000pt;}
.h19{height:66.883500pt;}
.h17{height:78.097500pt;}
.h1b{height:78.231000pt;}
.h1a{height:88.777500pt;}
.h1{height:100.125000pt;}
.hd{height:111.472500pt;}
.he{height:111.606000pt;}
.h1f{height:114.750000pt;}
.h1e{height:114.864750pt;}
.h13{height:120.600000pt;}
.h20{height:122.152500pt;}
.h21{height:122.286000pt;}
.h12{height:123.840000pt;}
.hb{height:133.500000pt;}
.ha{height:133.633500pt;}
.h4{height:144.847500pt;}
.h3{height:144.981000pt;}
.h7{height:146.353125pt;}
.h10{height:146.478750pt;}
.h6{height:150.414000pt;}
.h15{height:155.527500pt;}
.h14{height:155.661000pt;}
.hc{height:178.222500pt;}
.h16{height:178.356000pt;}
.h5{height:188.563125pt;}
.h11{height:193.500000pt;}
.hf{height:193.629000pt;}
.h1c{height:200.250000pt;}
.h1d{height:200.383500pt;}
.h2{height:222.277500pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x13{left:10.271986pt;}
.x4f{left:18.783986pt;}
.x4e{left:20.159986pt;}
.x4c{left:21.119986pt;}
.x4a{left:31.103986pt;}
.x49{left:34.623986pt;}
.x4b{left:41.343986pt;}
.x4d{left:45.119986pt;}
.x5c{left:47.999986pt;}
.x5d{left:49.279986pt;}
.x3{left:54.079986pt;}
.x11{left:55.359986pt;}
.x16{left:57.471986pt;}
.x17{left:58.911986pt;}
.x5b{left:60.127986pt;}
.x59{left:64.287986pt;}
.x6{left:66.143986pt;}
.x5{left:71.455986pt;}
.x14{left:75.007986pt;}
.x5e{left:83.839986pt;}
.xf{left:86.687986pt;}
.x58{left:90.623986pt;}
.x18{left:93.471986pt;}
.x12{left:101.599986pt;}
.x4{left:112.351986pt;}
.x10{left:114.143986pt;}
.x2{left:128.735986pt;}
.x5a{left:133.693319pt;}
.x19{left:153.466652pt;}
.xb{left:159.519986pt;}
.x48{left:174.653319pt;}
.x1a{left:212.026652pt;}
.x45{left:235.546652pt;}
.x57{left:249.506652pt;}
.x42{left:252.413319pt;}
.x40{left:262.786652pt;}
.x35{left:267.133319pt;}
.x23{left:275.039986pt;}
.x24{left:276.959986pt;}
.x22{left:279.039986pt;}
.x21{left:280.959986pt;}
.x36{left:283.133319pt;}
.x32{left:284.613319pt;}
.x31{left:290.373319pt;}
.x46{left:292.959986pt;}
.x34{left:299.933319pt;}
.x1f{left:301.026652pt;}
.x37{left:308.253319pt;}
.x15{left:317.279986pt;}
.x33{left:326.239986pt;}
.x41{left:348.159986pt;}
.x1b{left:351.773319pt;}
.x1e{left:360.413319pt;}
.x1d{left:362.493319pt;}
.x20{left:376.253319pt;}
.x26{left:380.546652pt;}
.x25{left:381.666652pt;}
.x27{left:382.786652pt;}
.x1c{left:386.973319pt;}
.x3a{left:411.293319pt;}
.x3b{left:416.733319pt;}
.x9{left:423.066652pt;}
.x43{left:426.213319pt;}
.xe{left:435.426652pt;}
.x39{left:440.253319pt;}
.x38{left:447.453319pt;}
.x8{left:477.413319pt;}
.x2a{left:483.679986pt;}
.x29{left:488.959986pt;}
.x28{left:492.639986pt;}
.xa{left:501.253319pt;}
.xd{left:507.586652pt;}
.x2f{left:525.759986pt;}
.x7{left:547.106652pt;}
.x30{left:549.279986pt;}
.xc{left:566.946652pt;}
.x3d{left:570.653319pt;}
.x3e{left:578.333319pt;}
.x2c{left:590.173319pt;}
.x3c{left:598.653319pt;}
.x3f{left:602.493319pt;}
.x2d{left:603.933319pt;}
.x2e{left:605.853319pt;}
.x2b{left:609.693319pt;}
.x1{left:697.573319pt;}
.x44{left:726.946652pt;}
.x47{left:772.293319pt;}
.x50{left:836.639986pt;}
.x55{left:838.239986pt;}
.x56{left:843.039986pt;}
.x52{left:843.999986pt;}
.x54{left:848.639986pt;}
.x51{left:857.439986pt;}
.x53{left:859.519986pt;}
}




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