
    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_2a6c03a11640688f1326f08a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_e5e09bc78a8a7d3bc8499567.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_61227ab0c4ddd585572b105d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_967cddb6433799a007d4b2a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_37432487b6ddaa461274c444.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.715000;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_947d93b2a4ca6c03ebfb8f3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911133;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_96bf3db9ba65860817804b53.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.379800px;}
.v1{vertical-align:23.976000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009600px;}
.ls2{letter-spacing:0.010200px;}
.ls3{letter-spacing:0.831000px;}
.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:-18.000000px;}
.ws4f{word-spacing:-16.500000px;}
.ws1{word-spacing:-13.500000px;}
.ws4{word-spacing:-11.250000px;}
.ws2{word-spacing:-10.494000px;}
.wsb1{word-spacing:-7.590000px;}
.ws9e{word-spacing:-6.072000px;}
.ws99{word-spacing:-5.016000px;}
.ws34{word-spacing:-4.290000px;}
.ws5b{word-spacing:-3.564000px;}
.ws54{word-spacing:-3.234000px;}
.ws49{word-spacing:-3.102000px;}
.ws37{word-spacing:-2.970000px;}
.wsa7{word-spacing:-2.904000px;}
.ws17{word-spacing:-2.640000px;}
.wsd{word-spacing:-2.592000px;}
.ws67{word-spacing:-2.574000px;}
.ws85{word-spacing:-2.508000px;}
.ws11{word-spacing:-2.322000px;}
.ws73{word-spacing:-2.310000px;}
.wsa8{word-spacing:-2.244000px;}
.ws1f{word-spacing:-2.220000px;}
.ws2a{word-spacing:-2.178000px;}
.ws40{word-spacing:-2.100000px;}
.ws95{word-spacing:-2.046000px;}
.ws45{word-spacing:-1.980000px;}
.wsaf{word-spacing:-1.914000px;}
.ws31{word-spacing:-1.848000px;}
.ws81{word-spacing:-1.782000px;}
.ws1a{word-spacing:-1.650000px;}
.ws32{word-spacing:-1.584000px;}
.ws75{word-spacing:-1.518000px;}
.ws3b{word-spacing:-1.386000px;}
.ws77{word-spacing:-1.320000px;}
.ws7a{word-spacing:-1.254000px;}
.ws86{word-spacing:-1.188000px;}
.wse{word-spacing:-1.134000px;}
.ws1d{word-spacing:-1.122000px;}
.ws5c{word-spacing:-1.056000px;}
.ws82{word-spacing:-0.924000px;}
.ws84{word-spacing:-0.858000px;}
.ws8d{word-spacing:-0.792000px;}
.wsad{word-spacing:-0.660000px;}
.ws9f{word-spacing:-0.594000px;}
.ws5d{word-spacing:-0.528000px;}
.ws94{word-spacing:-0.462000px;}
.ws19{word-spacing:-0.396000px;}
.ws1c{word-spacing:-0.330000px;}
.ws8e{word-spacing:-0.198000px;}
.wsf{word-spacing:-0.162000px;}
.ws22{word-spacing:-0.120000px;}
.ws33{word-spacing:-0.066000px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:0.054000px;}
.ws48{word-spacing:0.066000px;}
.ws52{word-spacing:0.132000px;}
.ws83{word-spacing:0.198000px;}
.ws9{word-spacing:0.216000px;}
.ws5e{word-spacing:0.264000px;}
.wsac{word-spacing:0.330000px;}
.ws61{word-spacing:0.396000px;}
.ws46{word-spacing:0.462000px;}
.ws24{word-spacing:0.528000px;}
.ws47{word-spacing:0.594000px;}
.ws58{word-spacing:0.660000px;}
.ws42{word-spacing:0.720000px;}
.ws4e{word-spacing:0.858000px;}
.ws92{word-spacing:0.924000px;}
.ws7e{word-spacing:0.990000px;}
.ws6c{word-spacing:1.056000px;}
.ws9c{word-spacing:1.122000px;}
.ws57{word-spacing:1.188000px;}
.ws26{word-spacing:1.254000px;}
.ws56{word-spacing:1.320000px;}
.ws7b{word-spacing:1.386000px;}
.ws36{word-spacing:1.452000px;}
.ws91{word-spacing:1.518000px;}
.ws10{word-spacing:1.566000px;}
.wsa1{word-spacing:1.650000px;}
.ws7{word-spacing:1.674000px;}
.ws80{word-spacing:1.782000px;}
.ws96{word-spacing:1.848000px;}
.ws50{word-spacing:1.914000px;}
.ws20{word-spacing:1.920000px;}
.wsa{word-spacing:1.944000px;}
.ws18{word-spacing:1.980000px;}
.ws41{word-spacing:2.040000px;}
.ws4a{word-spacing:2.046000px;}
.ws28{word-spacing:2.178000px;}
.ws1e{word-spacing:2.244000px;}
.ws7d{word-spacing:2.310000px;}
.wsc{word-spacing:2.376000px;}
.ws6{word-spacing:2.430000px;}
.ws9b{word-spacing:2.442000px;}
.ws79{word-spacing:2.508000px;}
.ws64{word-spacing:2.574000px;}
.ws2c{word-spacing:2.640000px;}
.ws4d{word-spacing:2.772000px;}
.ws90{word-spacing:2.904000px;}
.ws68{word-spacing:2.970000px;}
.ws39{word-spacing:3.036000px;}
.ws21{word-spacing:3.060000px;}
.ws55{word-spacing:3.234000px;}
.ws1b{word-spacing:3.300000px;}
.ws93{word-spacing:3.432000px;}
.ws63{word-spacing:3.498000px;}
.ws8b{word-spacing:3.564000px;}
.ws2d{word-spacing:3.696000px;}
.ws51{word-spacing:3.762000px;}
.ws4b{word-spacing:3.828000px;}
.ws30{word-spacing:3.894000px;}
.ws12{word-spacing:3.942000px;}
.ws4c{word-spacing:3.960000px;}
.ws7f{word-spacing:4.026000px;}
.wsb{word-spacing:4.050000px;}
.ws71{word-spacing:4.158000px;}
.ws74{word-spacing:4.356000px;}
.ws9d{word-spacing:4.422000px;}
.ws8a{word-spacing:4.488000px;}
.ws3a{word-spacing:4.620000px;}
.ws87{word-spacing:4.686000px;}
.ws89{word-spacing:5.016000px;}
.ws6d{word-spacing:5.148000px;}
.ws14{word-spacing:5.184000px;}
.ws6f{word-spacing:5.346000px;}
.ws3d{word-spacing:5.478000px;}
.ws70{word-spacing:5.610000px;}
.ws69{word-spacing:5.742000px;}
.ws2b{word-spacing:5.874000px;}
.ws72{word-spacing:6.006000px;}
.ws65{word-spacing:6.138000px;}
.ws3c{word-spacing:6.270000px;}
.ws5f{word-spacing:6.336000px;}
.ws6b{word-spacing:6.402000px;}
.wsb2{word-spacing:6.534000px;}
.ws98{word-spacing:6.600000px;}
.ws62{word-spacing:6.666000px;}
.ws2e{word-spacing:6.732000px;}
.ws88{word-spacing:6.864000px;}
.ws6a{word-spacing:6.930000px;}
.ws5a{word-spacing:7.128000px;}
.ws44{word-spacing:7.200000px;}
.ws43{word-spacing:7.260000px;}
.ws6e{word-spacing:7.458000px;}
.ws38{word-spacing:7.590000px;}
.ws35{word-spacing:7.656000px;}
.ws66{word-spacing:7.722000px;}
.ws3e{word-spacing:7.920000px;}
.ws60{word-spacing:8.184000px;}
.ws8c{word-spacing:8.316000px;}
.ws23{word-spacing:8.340000px;}
.ws29{word-spacing:8.778000px;}
.ws27{word-spacing:9.108000px;}
.ws25{word-spacing:9.240000px;}
.ws59{word-spacing:9.306000px;}
.ws2f{word-spacing:9.504000px;}
.ws97{word-spacing:9.702000px;}
.ws7c{word-spacing:9.966000px;}
.ws8f{word-spacing:10.362000px;}
.wsa0{word-spacing:10.428000px;}
.wsae{word-spacing:10.626000px;}
.ws15{word-spacing:10.638000px;}
.ws78{word-spacing:11.286000px;}
.wsb0{word-spacing:11.418000px;}
.ws53{word-spacing:11.748000px;}
.ws76{word-spacing:11.814000px;}
.ws3f{word-spacing:12.342000px;}
.ws13{word-spacing:12.582000px;}
.ws9a{word-spacing:13.134000px;}
.wsa6{word-spacing:13.728000px;}
.wsaa{word-spacing:16.500000px;}
.wsab{word-spacing:18.744000px;}
.wsa9{word-spacing:27.522000px;}
.wsa3{word-spacing:34.320000px;}
.wsa2{word-spacing:41.250000px;}
.wsa4{word-spacing:49.368000px;}
.wsa5{word-spacing:51.018000px;}
.ws3{word-spacing:657.552000px;}
.ws16{word-spacing:1346.418000px;}
._6{margin-left:-7.722000px;}
._1{margin-left:-5.977800px;}
._2{margin-left:-4.134000px;}
._3{margin-left:-2.796600px;}
._0{margin-left:-1.009800px;}
._9{width:1.201200px;}
._a{width:2.295000px;}
._4{width:3.955200px;}
._7{width:5.299800px;}
._5{width:6.912000px;}
._b{width:8.111400px;}
._c{width:10.276200px;}
._d{width:42.000000px;}
._8{width:578.035200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:41.976000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:58.124400px;}
.y2b{bottom:58.138950px;}
.y2a{bottom:73.044000px;}
.y28{bottom:74.624400px;}
.y12a{bottom:111.457950px;}
.y7f{bottom:115.457100px;}
.yf5{bottom:119.534400px;}
.yc8{bottom:120.417750px;}
.y145{bottom:120.505200px;}
.y27{bottom:125.551200px;}
.y129{bottom:129.457950px;}
.y7e{bottom:133.457100px;}
.y107{bottom:137.425650px;}
.yf4{bottom:137.534400px;}
.yc7{bottom:138.417750px;}
.y144{bottom:138.505200px;}
.y26{bottom:140.551200px;}
.y9d{bottom:143.749350px;}
.y53{bottom:145.409250px;}
.y128{bottom:147.457950px;}
.y7d{bottom:151.457100px;}
.y106{bottom:155.425650px;}
.y25{bottom:155.551200px;}
.yc6{bottom:156.417750px;}
.y143{bottom:156.505200px;}
.y9c{bottom:161.749350px;}
.y52{bottom:163.409250px;}
.yf3{bottom:165.290250px;}
.y127{bottom:165.457950px;}
.y7c{bottom:169.457100px;}
.y24{bottom:170.551200px;}
.yd7{bottom:170.702100px;}
.y105{bottom:173.425650px;}
.yc5{bottom:174.417750px;}
.y142{bottom:174.505200px;}
.y9b{bottom:179.749350px;}
.y51{bottom:181.409250px;}
.y126{bottom:183.457950px;}
.y23{bottom:185.551200px;}
.yd6{bottom:188.702100px;}
.y104{bottom:191.425650px;}
.yc4{bottom:192.417750px;}
.y141{bottom:192.505200px;}
.y7b{bottom:195.961050px;}
.y9a{bottom:197.749350px;}
.y50{bottom:199.409250px;}
.y22{bottom:200.551200px;}
.y125{bottom:201.457950px;}
.yd5{bottom:206.702100px;}
.y103{bottom:209.425650px;}
.y140{bottom:210.505200px;}
.y7a{bottom:213.961050px;}
.y99{bottom:215.749350px;}
.y4f{bottom:217.409250px;}
.yc3{bottom:218.921700px;}
.y124{bottom:219.457950px;}
.yd4{bottom:224.702100px;}
.y102{bottom:227.425650px;}
.y13f{bottom:228.505200px;}
.y79{bottom:231.961050px;}
.y98{bottom:233.749350px;}
.yc2{bottom:236.921700px;}
.y123{bottom:237.457950px;}
.y21{bottom:241.798500px;}
.yd3{bottom:242.702100px;}
.y4e{bottom:243.913200px;}
.y101{bottom:245.425650px;}
.y13e{bottom:246.505200px;}
.y78{bottom:249.961050px;}
.y97{bottom:251.749350px;}
.yc1{bottom:254.921700px;}
.y20{bottom:256.798500px;}
.yd2{bottom:260.702100px;}
.y4d{bottom:261.913200px;}
.y100{bottom:263.425650px;}
.y122{bottom:263.961900px;}
.y13d{bottom:264.505200px;}
.y77{bottom:267.961050px;}
.y96{bottom:269.749350px;}
.yc0{bottom:272.921700px;}
.y112{bottom:278.085450px;}
.yb2{bottom:278.253150px;}
.y4c{bottom:279.913200px;}
.yff{bottom:281.425650px;}
.y121{bottom:281.961900px;}
.y13c{bottom:282.505200px;}
.y76{bottom:285.961050px;}
.y1f{bottom:286.798500px;}
.ye9{bottom:286.929600px;}
.y95{bottom:287.749350px;}
.yd1{bottom:288.457950px;}
.ybf{bottom:290.921700px;}
.y111{bottom:296.085450px;}
.yb1{bottom:296.253150px;}
.y4b{bottom:297.913200px;}
.yfe{bottom:299.425650px;}
.y120{bottom:299.961900px;}
.y13b{bottom:300.505200px;}
.y1e{bottom:301.798500px;}
.y75{bottom:303.961050px;}
.ye8{bottom:304.929600px;}
.y94{bottom:305.749350px;}
.ybe{bottom:308.921700px;}
.y110{bottom:314.085450px;}
.yb0{bottom:314.253150px;}
.y4a{bottom:315.913200px;}
.y1d{bottom:316.798500px;}
.y11f{bottom:317.961900px;}
.y13a{bottom:318.505200px;}
.y74{bottom:321.961050px;}
.ye7{bottom:322.929600px;}
.y93{bottom:323.749350px;}
.ybd{bottom:326.921700px;}
.y1c{bottom:331.798500px;}
.y10f{bottom:332.085450px;}
.yaf{bottom:332.253150px;}
.y49{bottom:333.913200px;}
.y11e{bottom:335.961900px;}
.y139{bottom:336.505200px;}
.y73{bottom:339.961050px;}
.ye6{bottom:340.929600px;}
.y92{bottom:341.749350px;}
.yfd{bottom:342.181500px;}
.ybc{bottom:344.921700px;}
.y10e{bottom:350.085450px;}
.yae{bottom:350.253150px;}
.y48{bottom:351.913200px;}
.y11d{bottom:353.961900px;}
.y138{bottom:354.505200px;}
.y72{bottom:357.961050px;}
.ye5{bottom:358.929600px;}
.y1b{bottom:361.798500px;}
.ybb{bottom:362.921700px;}
.y10d{bottom:368.085450px;}
.yad{bottom:368.253150px;}
.y47{bottom:369.913200px;}
.y11c{bottom:371.961900px;}
.y137{bottom:372.505200px;}
.y91{bottom:376.757100px;}
.y1a{bottom:376.798500px;}
.ye4{bottom:376.929600px;}
.y10c{bottom:386.085450px;}
.yac{bottom:386.253150px;}
.y46{bottom:387.913200px;}
.y71{bottom:388.717050px;}
.yba{bottom:389.425650px;}
.y11b{bottom:389.961900px;}
.y136{bottom:390.505200px;}
.ye3{bottom:394.929600px;}
.y70{bottom:403.717050px;}
.y10b{bottom:404.085450px;}
.yab{bottom:404.253150px;}
.y19{bottom:406.798500px;}
.yb9{bottom:407.425650px;}
.y135{bottom:408.505200px;}
.ye2{bottom:412.929600px;}
.y45{bottom:414.417150px;}
.y11a{bottom:416.465850px;}
.y6f{bottom:418.717050px;}
.y18{bottom:421.798500px;}
.y10a{bottom:422.085450px;}
.yaa{bottom:422.253150px;}
.yb8{bottom:425.425650px;}
.y134{bottom:426.505200px;}
.ye1{bottom:430.929600px;}
.y44{bottom:432.417150px;}
.y6e{bottom:433.717050px;}
.y119{bottom:434.465850px;}
.y17{bottom:436.798500px;}
.y109{bottom:440.085450px;}
.yb7{bottom:443.425650px;}
.y133{bottom:444.505200px;}
.y6d{bottom:448.717050px;}
.ya9{bottom:448.757100px;}
.ye0{bottom:448.929600px;}
.y90{bottom:449.472900px;}
.yf2{bottom:449.581500px;}
.y43{bottom:450.417150px;}
.y16{bottom:451.798500px;}
.y118{bottom:452.465850px;}
.y108{bottom:458.085450px;}
.yb6{bottom:461.425650px;}
.y132{bottom:462.505200px;}
.y6c{bottom:463.717050px;}
.ya8{bottom:466.757100px;}
.y15{bottom:466.798500px;}
.y8f{bottom:467.472900px;}
.y42{bottom:468.417150px;}
.y117{bottom:470.465850px;}
.ydf{bottom:475.433550px;}
.yf1{bottom:476.085450px;}
.y6b{bottom:478.717050px;}
.yb5{bottom:479.425650px;}
.y131{bottom:480.505200px;}
.ya7{bottom:484.757100px;}
.y8e{bottom:485.472900px;}
.y41{bottom:486.417150px;}
.y116{bottom:488.465850px;}
.yde{bottom:493.433550px;}
.y6a{bottom:493.717050px;}
.yf0{bottom:494.085450px;}
.y14{bottom:496.798500px;}
.yb4{bottom:497.425650px;}
.y130{bottom:498.505200px;}
.ya6{bottom:502.757100px;}
.y8d{bottom:503.472900px;}
.y40{bottom:504.417150px;}
.y115{bottom:506.465850px;}
.ydd{bottom:511.433550px;}
.yef{bottom:512.085450px;}
.y12f{bottom:516.505200px;}
.ya5{bottom:520.757100px;}
.y69{bottom:521.472900px;}
.y3f{bottom:522.417150px;}
.y152{bottom:528.701250px;}
.ydc{bottom:529.433550px;}
.yee{bottom:530.085450px;}
.y12e{bottom:534.505200px;}
.ya4{bottom:538.757100px;}
.y68{bottom:539.472900px;}
.yb3{bottom:540.181500px;}
.y3e{bottom:540.417150px;}
.y114{bottom:541.473750px;}
.y13{bottom:544.798500px;}
.y151{bottom:546.701250px;}
.ydb{bottom:547.433550px;}
.yed{bottom:548.085450px;}
.y12d{bottom:552.505200px;}
.ya3{bottom:556.757100px;}
.y67{bottom:557.472900px;}
.y12{bottom:559.798500px;}
.y150{bottom:564.701250px;}
.yda{bottom:565.433550px;}
.yec{bottom:566.085450px;}
.y12c{bottom:570.505200px;}
.y3d{bottom:571.173000px;}
.ya2{bottom:574.757100px;}
.y8c{bottom:575.472900px;}
.yd0{bottom:575.749350px;}
.y14f{bottom:582.701250px;}
.yd9{bottom:583.433550px;}
.y66{bottom:583.976850px;}
.yeb{bottom:584.085450px;}
.y3c{bottom:586.173000px;}
.y11{bottom:589.798500px;}
.ya1{bottom:592.757100px;}
.y8b{bottom:593.472900px;}
.y3b{bottom:601.173000px;}
.y12b{bottom:601.261050px;}
.y65{bottom:601.976850px;}
.ycf{bottom:602.253150px;}
.y10{bottom:604.798500px;}
.y113{bottom:606.937500px;}
.y14e{bottom:609.205200px;}
.ya0{bottom:610.757100px;}
.yd8{bottom:611.189400px;}
.y8a{bottom:611.472900px;}
.yea{bottom:611.841450px;}
.y3a{bottom:616.173000px;}
.yf{bottom:619.798500px;}
.y64{bottom:619.976850px;}
.yce{bottom:620.253150px;}
.yfc{bottom:620.968950px;}
.y14d{bottom:627.205200px;}
.y89{bottom:629.472900px;}
.y39{bottom:631.173000px;}
.ye{bottom:634.798500px;}
.y63{bottom:637.976850px;}
.ycd{bottom:638.253150px;}
.y14c{bottom:645.205200px;}
.y9f{bottom:645.765000px;}
.y38{bottom:646.173000px;}
.y88{bottom:647.472900px;}
.yd{bottom:649.798500px;}
.y62{bottom:655.976850px;}
.ycc{bottom:656.253150px;}
.y14b{bottom:663.205200px;}
.yc{bottom:664.798500px;}
.yfb{bottom:665.472900px;}
.y37{bottom:673.928850px;}
.y61{bottom:673.976850px;}
.ycb{bottom:674.253150px;}
.y14a{bottom:681.205200px;}
.yfa{bottom:683.472900px;}
.y36{bottom:691.928850px;}
.y60{bottom:691.976850px;}
.yca{bottom:692.253150px;}
.yb{bottom:701.398500px;}
.yf9{bottom:701.472900px;}
.y149{bottom:707.709150px;}
.y35{bottom:709.928850px;}
.y5f{bottom:709.976850px;}
.ya{bottom:716.398500px;}
.y9e{bottom:718.480800px;}
.yf8{bottom:719.472900px;}
.y148{bottom:725.709150px;}
.yc9{bottom:727.261050px;}
.y87{bottom:727.976850px;}
.y9{bottom:731.398500px;}
.y34{bottom:736.432800px;}
.y5e{bottom:736.480800px;}
.yf7{bottom:737.472900px;}
.y147{bottom:743.709150px;}
.y86{bottom:745.976850px;}
.y8{bottom:746.398500px;}
.y33{bottom:754.432800px;}
.y5d{bottom:754.480800px;}
.yf6{bottom:755.472900px;}
.y7{bottom:761.398500px;}
.y85{bottom:763.976850px;}
.y32{bottom:772.432950px;}
.y5c{bottom:772.480800px;}
.y6{bottom:776.398500px;}
.y146{bottom:778.717050px;}
.y84{bottom:781.976850px;}
.y31{bottom:790.432950px;}
.y5b{bottom:790.480800px;}
.y5{bottom:791.398500px;}
.y83{bottom:799.976850px;}
.y4{bottom:806.398500px;}
.y30{bottom:808.432950px;}
.y5a{bottom:808.480800px;}
.y82{bottom:817.976850px;}
.y3{bottom:821.398500px;}
.y2f{bottom:826.432950px;}
.y59{bottom:826.480800px;}
.y81{bottom:835.976850px;}
.y2e{bottom:844.432950px;}
.y58{bottom:844.480800px;}
.y80{bottom:853.976850px;}
.y2{bottom:860.150550px;}
.y2d{bottom:862.432950px;}
.y57{bottom:862.480800px;}
.y56{bottom:880.480800px;}
.y1{bottom:891.200550px;}
.y2c{bottom:897.440700px;}
.y55{bottom:898.480800px;}
.y54{bottom:952.301550px;}
.ha{height:39.484863px;}
.hf{height:46.200000px;}
.h4{height:47.381836px;}
.h6{height:47.513672px;}
.h5{height:47.961914px;}
.h8{height:52.646484px;}
.h7{height:52.792969px;}
.hc{height:57.911133px;}
.hd{height:58.072266px;}
.hb{height:58.620117px;}
.h9{height:59.026284px;}
.he{height:59.114569px;}
.h3{height:63.175781px;}
.h2{height:94.763672px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:76.535400px;}
.x9{left:89.291400px;}
.xf{left:93.543300px;}
.x21{left:97.795200px;}
.xb{left:104.291400px;}
.x13{left:106.299150px;}
.x20{left:110.551200px;}
.xa{left:111.712800px;}
.x1e{left:120.543300px;}
.x11{left:129.635400px;}
.x1f{left:133.299150px;}
.x1{left:140.246400px;}
.x15{left:142.391400px;}
.x10{left:146.643300px;}
.x14{left:159.399150px;}
.x2{left:170.608200px;}
.x1d{left:182.968350px;}
.x7{left:269.164500px;}
.x8{left:273.418350px;}
.x3{left:278.120550px;}
.x1c{left:285.273150px;}
.x4{left:294.244050px;}
.x1b{left:299.887050px;}
.x1a{left:307.349100px;}
.x5{left:313.590900px;}
.x17{left:332.617950px;}
.x19{left:345.369750px;}
.xc{left:349.537500px;}
.x18{left:354.624600px;}
.x6{left:366.107850px;}
.x12{left:389.610300px;}
.xd{left:409.005450px;}
.x16{left:622.539450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.670933pt;}
.v1{vertical-align:21.312000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008533pt;}
.ls2{letter-spacing:0.009067pt;}
.ls3{letter-spacing:0.738667pt;}
.ws0{word-spacing:-16.000000pt;}
.ws4f{word-spacing:-14.666667pt;}
.ws1{word-spacing:-12.000000pt;}
.ws4{word-spacing:-10.000000pt;}
.ws2{word-spacing:-9.328000pt;}
.wsb1{word-spacing:-6.746667pt;}
.ws9e{word-spacing:-5.397333pt;}
.ws99{word-spacing:-4.458667pt;}
.ws34{word-spacing:-3.813333pt;}
.ws5b{word-spacing:-3.168000pt;}
.ws54{word-spacing:-2.874667pt;}
.ws49{word-spacing:-2.757333pt;}
.ws37{word-spacing:-2.640000pt;}
.wsa7{word-spacing:-2.581333pt;}
.ws17{word-spacing:-2.346667pt;}
.wsd{word-spacing:-2.304000pt;}
.ws67{word-spacing:-2.288000pt;}
.ws85{word-spacing:-2.229333pt;}
.ws11{word-spacing:-2.064000pt;}
.ws73{word-spacing:-2.053333pt;}
.wsa8{word-spacing:-1.994667pt;}
.ws1f{word-spacing:-1.973333pt;}
.ws2a{word-spacing:-1.936000pt;}
.ws40{word-spacing:-1.866667pt;}
.ws95{word-spacing:-1.818667pt;}
.ws45{word-spacing:-1.760000pt;}
.wsaf{word-spacing:-1.701333pt;}
.ws31{word-spacing:-1.642667pt;}
.ws81{word-spacing:-1.584000pt;}
.ws1a{word-spacing:-1.466667pt;}
.ws32{word-spacing:-1.408000pt;}
.ws75{word-spacing:-1.349333pt;}
.ws3b{word-spacing:-1.232000pt;}
.ws77{word-spacing:-1.173333pt;}
.ws7a{word-spacing:-1.114667pt;}
.ws86{word-spacing:-1.056000pt;}
.wse{word-spacing:-1.008000pt;}
.ws1d{word-spacing:-0.997333pt;}
.ws5c{word-spacing:-0.938667pt;}
.ws82{word-spacing:-0.821333pt;}
.ws84{word-spacing:-0.762667pt;}
.ws8d{word-spacing:-0.704000pt;}
.wsad{word-spacing:-0.586667pt;}
.ws9f{word-spacing:-0.528000pt;}
.ws5d{word-spacing:-0.469333pt;}
.ws94{word-spacing:-0.410667pt;}
.ws19{word-spacing:-0.352000pt;}
.ws1c{word-spacing:-0.293333pt;}
.ws8e{word-spacing:-0.176000pt;}
.wsf{word-spacing:-0.144000pt;}
.ws22{word-spacing:-0.106667pt;}
.ws33{word-spacing:-0.058667pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:0.048000pt;}
.ws48{word-spacing:0.058667pt;}
.ws52{word-spacing:0.117333pt;}
.ws83{word-spacing:0.176000pt;}
.ws9{word-spacing:0.192000pt;}
.ws5e{word-spacing:0.234667pt;}
.wsac{word-spacing:0.293333pt;}
.ws61{word-spacing:0.352000pt;}
.ws46{word-spacing:0.410667pt;}
.ws24{word-spacing:0.469333pt;}
.ws47{word-spacing:0.528000pt;}
.ws58{word-spacing:0.586667pt;}
.ws42{word-spacing:0.640000pt;}
.ws4e{word-spacing:0.762667pt;}
.ws92{word-spacing:0.821333pt;}
.ws7e{word-spacing:0.880000pt;}
.ws6c{word-spacing:0.938667pt;}
.ws9c{word-spacing:0.997333pt;}
.ws57{word-spacing:1.056000pt;}
.ws26{word-spacing:1.114667pt;}
.ws56{word-spacing:1.173333pt;}
.ws7b{word-spacing:1.232000pt;}
.ws36{word-spacing:1.290667pt;}
.ws91{word-spacing:1.349333pt;}
.ws10{word-spacing:1.392000pt;}
.wsa1{word-spacing:1.466667pt;}
.ws7{word-spacing:1.488000pt;}
.ws80{word-spacing:1.584000pt;}
.ws96{word-spacing:1.642667pt;}
.ws50{word-spacing:1.701333pt;}
.ws20{word-spacing:1.706667pt;}
.wsa{word-spacing:1.728000pt;}
.ws18{word-spacing:1.760000pt;}
.ws41{word-spacing:1.813333pt;}
.ws4a{word-spacing:1.818667pt;}
.ws28{word-spacing:1.936000pt;}
.ws1e{word-spacing:1.994667pt;}
.ws7d{word-spacing:2.053333pt;}
.wsc{word-spacing:2.112000pt;}
.ws6{word-spacing:2.160000pt;}
.ws9b{word-spacing:2.170667pt;}
.ws79{word-spacing:2.229333pt;}
.ws64{word-spacing:2.288000pt;}
.ws2c{word-spacing:2.346667pt;}
.ws4d{word-spacing:2.464000pt;}
.ws90{word-spacing:2.581333pt;}
.ws68{word-spacing:2.640000pt;}
.ws39{word-spacing:2.698667pt;}
.ws21{word-spacing:2.720000pt;}
.ws55{word-spacing:2.874667pt;}
.ws1b{word-spacing:2.933333pt;}
.ws93{word-spacing:3.050667pt;}
.ws63{word-spacing:3.109333pt;}
.ws8b{word-spacing:3.168000pt;}
.ws2d{word-spacing:3.285333pt;}
.ws51{word-spacing:3.344000pt;}
.ws4b{word-spacing:3.402667pt;}
.ws30{word-spacing:3.461333pt;}
.ws12{word-spacing:3.504000pt;}
.ws4c{word-spacing:3.520000pt;}
.ws7f{word-spacing:3.578667pt;}
.wsb{word-spacing:3.600000pt;}
.ws71{word-spacing:3.696000pt;}
.ws74{word-spacing:3.872000pt;}
.ws9d{word-spacing:3.930667pt;}
.ws8a{word-spacing:3.989333pt;}
.ws3a{word-spacing:4.106667pt;}
.ws87{word-spacing:4.165333pt;}
.ws89{word-spacing:4.458667pt;}
.ws6d{word-spacing:4.576000pt;}
.ws14{word-spacing:4.608000pt;}
.ws6f{word-spacing:4.752000pt;}
.ws3d{word-spacing:4.869333pt;}
.ws70{word-spacing:4.986667pt;}
.ws69{word-spacing:5.104000pt;}
.ws2b{word-spacing:5.221333pt;}
.ws72{word-spacing:5.338667pt;}
.ws65{word-spacing:5.456000pt;}
.ws3c{word-spacing:5.573333pt;}
.ws5f{word-spacing:5.632000pt;}
.ws6b{word-spacing:5.690667pt;}
.wsb2{word-spacing:5.808000pt;}
.ws98{word-spacing:5.866667pt;}
.ws62{word-spacing:5.925333pt;}
.ws2e{word-spacing:5.984000pt;}
.ws88{word-spacing:6.101333pt;}
.ws6a{word-spacing:6.160000pt;}
.ws5a{word-spacing:6.336000pt;}
.ws44{word-spacing:6.400000pt;}
.ws43{word-spacing:6.453333pt;}
.ws6e{word-spacing:6.629333pt;}
.ws38{word-spacing:6.746667pt;}
.ws35{word-spacing:6.805333pt;}
.ws66{word-spacing:6.864000pt;}
.ws3e{word-spacing:7.040000pt;}
.ws60{word-spacing:7.274667pt;}
.ws8c{word-spacing:7.392000pt;}
.ws23{word-spacing:7.413333pt;}
.ws29{word-spacing:7.802667pt;}
.ws27{word-spacing:8.096000pt;}
.ws25{word-spacing:8.213333pt;}
.ws59{word-spacing:8.272000pt;}
.ws2f{word-spacing:8.448000pt;}
.ws97{word-spacing:8.624000pt;}
.ws7c{word-spacing:8.858667pt;}
.ws8f{word-spacing:9.210667pt;}
.wsa0{word-spacing:9.269333pt;}
.wsae{word-spacing:9.445333pt;}
.ws15{word-spacing:9.456000pt;}
.ws78{word-spacing:10.032000pt;}
.wsb0{word-spacing:10.149333pt;}
.ws53{word-spacing:10.442667pt;}
.ws76{word-spacing:10.501333pt;}
.ws3f{word-spacing:10.970667pt;}
.ws13{word-spacing:11.184000pt;}
.ws9a{word-spacing:11.674667pt;}
.wsa6{word-spacing:12.202667pt;}
.wsaa{word-spacing:14.666667pt;}
.wsab{word-spacing:16.661333pt;}
.wsa9{word-spacing:24.464000pt;}
.wsa3{word-spacing:30.506667pt;}
.wsa2{word-spacing:36.666667pt;}
.wsa4{word-spacing:43.882667pt;}
.wsa5{word-spacing:45.349333pt;}
.ws3{word-spacing:584.490667pt;}
.ws16{word-spacing:1196.816000pt;}
._6{margin-left:-6.864000pt;}
._1{margin-left:-5.313600pt;}
._2{margin-left:-3.674667pt;}
._3{margin-left:-2.485867pt;}
._0{margin-left:-0.897600pt;}
._9{width:1.067733pt;}
._a{width:2.040000pt;}
._4{width:3.515733pt;}
._7{width:4.710933pt;}
._5{width:6.144000pt;}
._b{width:7.210133pt;}
._c{width:9.134400pt;}
._d{width:37.333333pt;}
._8{width:513.809067pt;}
.fs3{font-size:37.312000pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:51.666133pt;}
.y2b{bottom:51.679067pt;}
.y2a{bottom:64.928000pt;}
.y28{bottom:66.332800pt;}
.y12a{bottom:99.073733pt;}
.y7f{bottom:102.628533pt;}
.yf5{bottom:106.252800pt;}
.yc8{bottom:107.038000pt;}
.y145{bottom:107.115733pt;}
.y27{bottom:111.601067pt;}
.y129{bottom:115.073733pt;}
.y7e{bottom:118.628533pt;}
.y107{bottom:122.156133pt;}
.yf4{bottom:122.252800pt;}
.yc7{bottom:123.038000pt;}
.y144{bottom:123.115733pt;}
.y26{bottom:124.934400pt;}
.y9d{bottom:127.777200pt;}
.y53{bottom:129.252667pt;}
.y128{bottom:131.073733pt;}
.y7d{bottom:134.628533pt;}
.y106{bottom:138.156133pt;}
.y25{bottom:138.267733pt;}
.yc6{bottom:139.038000pt;}
.y143{bottom:139.115733pt;}
.y9c{bottom:143.777200pt;}
.y52{bottom:145.252667pt;}
.yf3{bottom:146.924667pt;}
.y127{bottom:147.073733pt;}
.y7c{bottom:150.628533pt;}
.y24{bottom:151.601067pt;}
.yd7{bottom:151.735200pt;}
.y105{bottom:154.156133pt;}
.yc5{bottom:155.038000pt;}
.y142{bottom:155.115733pt;}
.y9b{bottom:159.777200pt;}
.y51{bottom:161.252667pt;}
.y126{bottom:163.073733pt;}
.y23{bottom:164.934400pt;}
.yd6{bottom:167.735200pt;}
.y104{bottom:170.156133pt;}
.yc4{bottom:171.038000pt;}
.y141{bottom:171.115733pt;}
.y7b{bottom:174.187600pt;}
.y9a{bottom:175.777200pt;}
.y50{bottom:177.252667pt;}
.y22{bottom:178.267733pt;}
.y125{bottom:179.073733pt;}
.yd5{bottom:183.735200pt;}
.y103{bottom:186.156133pt;}
.y140{bottom:187.115733pt;}
.y7a{bottom:190.187600pt;}
.y99{bottom:191.777200pt;}
.y4f{bottom:193.252667pt;}
.yc3{bottom:194.597067pt;}
.y124{bottom:195.073733pt;}
.yd4{bottom:199.735200pt;}
.y102{bottom:202.156133pt;}
.y13f{bottom:203.115733pt;}
.y79{bottom:206.187600pt;}
.y98{bottom:207.777200pt;}
.yc2{bottom:210.597067pt;}
.y123{bottom:211.073733pt;}
.y21{bottom:214.932000pt;}
.yd3{bottom:215.735200pt;}
.y4e{bottom:216.811733pt;}
.y101{bottom:218.156133pt;}
.y13e{bottom:219.115733pt;}
.y78{bottom:222.187600pt;}
.y97{bottom:223.777200pt;}
.yc1{bottom:226.597067pt;}
.y20{bottom:228.265333pt;}
.yd2{bottom:231.735200pt;}
.y4d{bottom:232.811733pt;}
.y100{bottom:234.156133pt;}
.y122{bottom:234.632800pt;}
.y13d{bottom:235.115733pt;}
.y77{bottom:238.187600pt;}
.y96{bottom:239.777200pt;}
.yc0{bottom:242.597067pt;}
.y112{bottom:247.187067pt;}
.yb2{bottom:247.336133pt;}
.y4c{bottom:248.811733pt;}
.yff{bottom:250.156133pt;}
.y121{bottom:250.632800pt;}
.y13c{bottom:251.115733pt;}
.y76{bottom:254.187600pt;}
.y1f{bottom:254.932000pt;}
.ye9{bottom:255.048533pt;}
.y95{bottom:255.777200pt;}
.yd1{bottom:256.407067pt;}
.ybf{bottom:258.597067pt;}
.y111{bottom:263.187067pt;}
.yb1{bottom:263.336133pt;}
.y4b{bottom:264.811733pt;}
.yfe{bottom:266.156133pt;}
.y120{bottom:266.632800pt;}
.y13b{bottom:267.115733pt;}
.y1e{bottom:268.265333pt;}
.y75{bottom:270.187600pt;}
.ye8{bottom:271.048533pt;}
.y94{bottom:271.777200pt;}
.ybe{bottom:274.597067pt;}
.y110{bottom:279.187067pt;}
.yb0{bottom:279.336133pt;}
.y4a{bottom:280.811733pt;}
.y1d{bottom:281.598667pt;}
.y11f{bottom:282.632800pt;}
.y13a{bottom:283.115733pt;}
.y74{bottom:286.187600pt;}
.ye7{bottom:287.048533pt;}
.y93{bottom:287.777200pt;}
.ybd{bottom:290.597067pt;}
.y1c{bottom:294.932000pt;}
.y10f{bottom:295.187067pt;}
.yaf{bottom:295.336133pt;}
.y49{bottom:296.811733pt;}
.y11e{bottom:298.632800pt;}
.y139{bottom:299.115733pt;}
.y73{bottom:302.187600pt;}
.ye6{bottom:303.048533pt;}
.y92{bottom:303.777200pt;}
.yfd{bottom:304.161333pt;}
.ybc{bottom:306.597067pt;}
.y10e{bottom:311.187067pt;}
.yae{bottom:311.336133pt;}
.y48{bottom:312.811733pt;}
.y11d{bottom:314.632800pt;}
.y138{bottom:315.115733pt;}
.y72{bottom:318.187600pt;}
.ye5{bottom:319.048533pt;}
.y1b{bottom:321.598667pt;}
.ybb{bottom:322.597067pt;}
.y10d{bottom:327.187067pt;}
.yad{bottom:327.336133pt;}
.y47{bottom:328.811733pt;}
.y11c{bottom:330.632800pt;}
.y137{bottom:331.115733pt;}
.y91{bottom:334.895200pt;}
.y1a{bottom:334.932000pt;}
.ye4{bottom:335.048533pt;}
.y10c{bottom:343.187067pt;}
.yac{bottom:343.336133pt;}
.y46{bottom:344.811733pt;}
.y71{bottom:345.526267pt;}
.yba{bottom:346.156133pt;}
.y11b{bottom:346.632800pt;}
.y136{bottom:347.115733pt;}
.ye3{bottom:351.048533pt;}
.y70{bottom:358.859600pt;}
.y10b{bottom:359.187067pt;}
.yab{bottom:359.336133pt;}
.y19{bottom:361.598667pt;}
.yb9{bottom:362.156133pt;}
.y135{bottom:363.115733pt;}
.ye2{bottom:367.048533pt;}
.y45{bottom:368.370800pt;}
.y11a{bottom:370.191867pt;}
.y6f{bottom:372.192933pt;}
.y18{bottom:374.932000pt;}
.y10a{bottom:375.187067pt;}
.yaa{bottom:375.336133pt;}
.yb8{bottom:378.156133pt;}
.y134{bottom:379.115733pt;}
.ye1{bottom:383.048533pt;}
.y44{bottom:384.370800pt;}
.y6e{bottom:385.526267pt;}
.y119{bottom:386.191867pt;}
.y17{bottom:388.265333pt;}
.y109{bottom:391.187067pt;}
.yb7{bottom:394.156133pt;}
.y133{bottom:395.115733pt;}
.y6d{bottom:398.859600pt;}
.ya9{bottom:398.895200pt;}
.ye0{bottom:399.048533pt;}
.y90{bottom:399.531467pt;}
.yf2{bottom:399.628000pt;}
.y43{bottom:400.370800pt;}
.y16{bottom:401.598667pt;}
.y118{bottom:402.191867pt;}
.y108{bottom:407.187067pt;}
.yb6{bottom:410.156133pt;}
.y132{bottom:411.115733pt;}
.y6c{bottom:412.192933pt;}
.ya8{bottom:414.895200pt;}
.y15{bottom:414.932000pt;}
.y8f{bottom:415.531467pt;}
.y42{bottom:416.370800pt;}
.y117{bottom:418.191867pt;}
.ydf{bottom:422.607600pt;}
.yf1{bottom:423.187067pt;}
.y6b{bottom:425.526267pt;}
.yb5{bottom:426.156133pt;}
.y131{bottom:427.115733pt;}
.ya7{bottom:430.895200pt;}
.y8e{bottom:431.531467pt;}
.y41{bottom:432.370800pt;}
.y116{bottom:434.191867pt;}
.yde{bottom:438.607600pt;}
.y6a{bottom:438.859600pt;}
.yf0{bottom:439.187067pt;}
.y14{bottom:441.598667pt;}
.yb4{bottom:442.156133pt;}
.y130{bottom:443.115733pt;}
.ya6{bottom:446.895200pt;}
.y8d{bottom:447.531467pt;}
.y40{bottom:448.370800pt;}
.y115{bottom:450.191867pt;}
.ydd{bottom:454.607600pt;}
.yef{bottom:455.187067pt;}
.y12f{bottom:459.115733pt;}
.ya5{bottom:462.895200pt;}
.y69{bottom:463.531467pt;}
.y3f{bottom:464.370800pt;}
.y152{bottom:469.956667pt;}
.ydc{bottom:470.607600pt;}
.yee{bottom:471.187067pt;}
.y12e{bottom:475.115733pt;}
.ya4{bottom:478.895200pt;}
.y68{bottom:479.531467pt;}
.yb3{bottom:480.161333pt;}
.y3e{bottom:480.370800pt;}
.y114{bottom:481.310000pt;}
.y13{bottom:484.265333pt;}
.y151{bottom:485.956667pt;}
.ydb{bottom:486.607600pt;}
.yed{bottom:487.187067pt;}
.y12d{bottom:491.115733pt;}
.ya3{bottom:494.895200pt;}
.y67{bottom:495.531467pt;}
.y12{bottom:497.598667pt;}
.y150{bottom:501.956667pt;}
.yda{bottom:502.607600pt;}
.yec{bottom:503.187067pt;}
.y12c{bottom:507.115733pt;}
.y3d{bottom:507.709333pt;}
.ya2{bottom:510.895200pt;}
.y8c{bottom:511.531467pt;}
.yd0{bottom:511.777200pt;}
.y14f{bottom:517.956667pt;}
.yd9{bottom:518.607600pt;}
.y66{bottom:519.090533pt;}
.yeb{bottom:519.187067pt;}
.y3c{bottom:521.042667pt;}
.y11{bottom:524.265333pt;}
.ya1{bottom:526.895200pt;}
.y8b{bottom:527.531467pt;}
.y3b{bottom:534.376000pt;}
.y12b{bottom:534.454267pt;}
.y65{bottom:535.090533pt;}
.ycf{bottom:535.336133pt;}
.y10{bottom:537.598667pt;}
.y113{bottom:539.500000pt;}
.y14e{bottom:541.515733pt;}
.ya0{bottom:542.895200pt;}
.yd8{bottom:543.279467pt;}
.y8a{bottom:543.531467pt;}
.yea{bottom:543.859067pt;}
.y3a{bottom:547.709333pt;}
.yf{bottom:550.932000pt;}
.y64{bottom:551.090533pt;}
.yce{bottom:551.336133pt;}
.yfc{bottom:551.972400pt;}
.y14d{bottom:557.515733pt;}
.y89{bottom:559.531467pt;}
.y39{bottom:561.042667pt;}
.ye{bottom:564.265333pt;}
.y63{bottom:567.090533pt;}
.ycd{bottom:567.336133pt;}
.y14c{bottom:573.515733pt;}
.y9f{bottom:574.013333pt;}
.y38{bottom:574.376000pt;}
.y88{bottom:575.531467pt;}
.yd{bottom:577.598667pt;}
.y62{bottom:583.090533pt;}
.ycc{bottom:583.336133pt;}
.y14b{bottom:589.515733pt;}
.yc{bottom:590.932000pt;}
.yfb{bottom:591.531467pt;}
.y37{bottom:599.047867pt;}
.y61{bottom:599.090533pt;}
.ycb{bottom:599.336133pt;}
.y14a{bottom:605.515733pt;}
.yfa{bottom:607.531467pt;}
.y36{bottom:615.047867pt;}
.y60{bottom:615.090533pt;}
.yca{bottom:615.336133pt;}
.yb{bottom:623.465333pt;}
.yf9{bottom:623.531467pt;}
.y149{bottom:629.074800pt;}
.y35{bottom:631.047867pt;}
.y5f{bottom:631.090533pt;}
.ya{bottom:636.798667pt;}
.y9e{bottom:638.649600pt;}
.yf8{bottom:639.531467pt;}
.y148{bottom:645.074800pt;}
.yc9{bottom:646.454267pt;}
.y87{bottom:647.090533pt;}
.y9{bottom:650.132000pt;}
.y34{bottom:654.606933pt;}
.y5e{bottom:654.649600pt;}
.yf7{bottom:655.531467pt;}
.y147{bottom:661.074800pt;}
.y86{bottom:663.090533pt;}
.y8{bottom:663.465333pt;}
.y33{bottom:670.606933pt;}
.y5d{bottom:670.649600pt;}
.yf6{bottom:671.531467pt;}
.y7{bottom:676.798667pt;}
.y85{bottom:679.090533pt;}
.y32{bottom:686.607067pt;}
.y5c{bottom:686.649600pt;}
.y6{bottom:690.132000pt;}
.y146{bottom:692.192933pt;}
.y84{bottom:695.090533pt;}
.y31{bottom:702.607067pt;}
.y5b{bottom:702.649600pt;}
.y5{bottom:703.465333pt;}
.y83{bottom:711.090533pt;}
.y4{bottom:716.798667pt;}
.y30{bottom:718.607067pt;}
.y5a{bottom:718.649600pt;}
.y82{bottom:727.090533pt;}
.y3{bottom:730.132000pt;}
.y2f{bottom:734.607067pt;}
.y59{bottom:734.649600pt;}
.y81{bottom:743.090533pt;}
.y2e{bottom:750.607067pt;}
.y58{bottom:750.649600pt;}
.y80{bottom:759.090533pt;}
.y2{bottom:764.578267pt;}
.y2d{bottom:766.607067pt;}
.y57{bottom:766.649600pt;}
.y56{bottom:782.649600pt;}
.y1{bottom:792.178267pt;}
.y2c{bottom:797.725067pt;}
.y55{bottom:798.649600pt;}
.y54{bottom:846.490267pt;}
.ha{height:35.097656pt;}
.hf{height:41.066667pt;}
.h4{height:42.117188pt;}
.h6{height:42.234375pt;}
.h5{height:42.632812pt;}
.h8{height:46.796875pt;}
.h7{height:46.927083pt;}
.hc{height:51.476562pt;}
.hd{height:51.619792pt;}
.hb{height:52.106771pt;}
.h9{height:52.467808pt;}
.he{height:52.546283pt;}
.h3{height:56.156250pt;}
.h2{height:84.234375pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:68.031467pt;}
.x9{left:79.370133pt;}
.xf{left:83.149600pt;}
.x21{left:86.929067pt;}
.xb{left:92.703467pt;}
.x13{left:94.488133pt;}
.x20{left:98.267733pt;}
.xa{left:99.300267pt;}
.x1e{left:107.149600pt;}
.x11{left:115.231467pt;}
.x1f{left:118.488133pt;}
.x1{left:124.663467pt;}
.x15{left:126.570133pt;}
.x10{left:130.349600pt;}
.x14{left:141.688133pt;}
.x2{left:151.651733pt;}
.x1d{left:162.638533pt;}
.x7{left:239.257333pt;}
.x8{left:243.038533pt;}
.x3{left:247.218267pt;}
.x1c{left:253.576133pt;}
.x4{left:261.550267pt;}
.x1b{left:266.566267pt;}
.x1a{left:273.199200pt;}
.x5{left:278.747467pt;}
.x17{left:295.660400pt;}
.x19{left:306.995333pt;}
.xc{left:310.700000pt;}
.x18{left:315.221867pt;}
.x6{left:325.429200pt;}
.x12{left:346.320267pt;}
.xd{left:363.560400pt;}
.x16{left:553.368400pt;}
}




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