
    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_a1a52eb864914b3b8d8b865a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_a5ac09d7a750e32373319e4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_56e67c2890177d0111d23f4e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_cb2f6fe4b564833b213d8e87.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.981934;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_8c6544bc418868d601d3686c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_2af895673ffd8993e345a969.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_57db5456e0e95fb72f17fc60.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_146e781e7a3a2b5a1776a31e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.776855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_de7584e24896eba2b8f46682.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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:ffa;src:url('chunks/assets/font_52ef0ede5339a51a3fcca381.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.800293;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:ffb;src:url('chunks/assets/font_698df7fa2247462406d3c1e0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-24.480000px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.v5{vertical-align:31.680000px;}
.v4{vertical-align:46.080000px;}
.ls1b{letter-spacing:-1.320000px;}
.lsf{letter-spacing:-1.080000px;}
.ls2b{letter-spacing:-0.930000px;}
.ls23{letter-spacing:-0.840000px;}
.ls8{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls24{letter-spacing:-0.606000px;}
.ls7{letter-spacing:-0.463800px;}
.ls18{letter-spacing:-0.435000px;}
.ls14{letter-spacing:-0.423600px;}
.ls19{letter-spacing:-0.385800px;}
.lsb{letter-spacing:-0.358800px;}
.lsc{letter-spacing:-0.308400px;}
.ls13{letter-spacing:-0.100800px;}
.lsa{letter-spacing:-0.066000px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.054720px;}
.ls2c{letter-spacing:0.120960px;}
.ls1a{letter-spacing:0.121200px;}
.ls2{letter-spacing:0.288000px;}
.ls25{letter-spacing:0.313800px;}
.ls10{letter-spacing:0.363000px;}
.ls3{letter-spacing:0.427680px;}
.ls1f{letter-spacing:0.463800px;}
.ls1d{letter-spacing:0.489600px;}
.ls2d{letter-spacing:0.512400px;}
.lsd{letter-spacing:0.570240px;}
.ls12{letter-spacing:0.598800px;}
.ls22{letter-spacing:0.630000px;}
.ls2a{letter-spacing:0.731520px;}
.ls20{letter-spacing:0.732000px;}
.ls4{letter-spacing:0.851520px;}
.ls9{letter-spacing:0.870000px;}
.ls0{letter-spacing:1.728000px;}
.ls26{letter-spacing:1.906560px;}
.ls1{letter-spacing:1.920960px;}
.ls15{letter-spacing:2.172000px;}
.ls21{letter-spacing:2.478000px;}
.ls16{letter-spacing:6.226560px;}
.ls29{letter-spacing:11.986560px;}
.ls17{letter-spacing:16.306560px;}
.ls1e{letter-spacing:19.186560px;}
.lse{letter-spacing:22.066560px;}
.ls5{letter-spacing:37.906560px;}
.ls27{letter-spacing:39.346560px;}
.ls28{letter-spacing:42.226560px;}
.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;}
}
.ws14{word-spacing:-62.958000px;}
.ws0{word-spacing:-41.664960px;}
.ws3{word-spacing:-21.738480px;}
.ws4{word-spacing:-21.445680px;}
.wsb{word-spacing:-15.333240px;}
.wsc{word-spacing:-15.024960px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws15{word-spacing:-14.298480px;}
.ws17{word-spacing:-14.267280px;}
.ws12{word-spacing:-14.158080px;}
.ws13{word-spacing:-14.132280px;}
.wsa{word-spacing:-13.890240px;}
.ws18{word-spacing:-13.789680px;}
.ws7{word-spacing:-13.668480px;}
.wsd{word-spacing:-13.567680px;}
.ws8{word-spacing:-13.360080px;}
.wse{word-spacing:-13.244880px;}
.ws16{word-spacing:-13.062480px;}
.ws11{word-spacing:-13.020480px;}
.ws10{word-spacing:-12.919800px;}
.wsf{word-spacing:-12.870600px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.786880px;}
.ws9{word-spacing:0.000000px;}
._7{margin-left:-1447.340880px;}
._4{margin-left:-1328.000640px;}
._6{margin-left:-1000.336080px;}
._8{margin-left:-579.115680px;}
._15{margin-left:-6.142560px;}
._9{margin-left:-4.719840px;}
._5{margin-left:-2.980800px;}
._0{margin-left:-1.391040px;}
._1{width:1.146720px;}
._2{width:2.450880px;}
._3{width:3.749760px;}
._d{width:5.736480px;}
._c{width:6.955200px;}
._12{width:8.016960px;}
._a{width:9.063840px;}
._b{width:10.248480px;}
._f{width:11.251200px;}
._e{width:12.521760px;}
._10{width:15.374880px;}
._16{width:16.401360px;}
._11{width:18.023040px;}
._17{width:20.684160px;}
._13{width:43.780560px;}
._14{width:1700.507520px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:6.840000px;}
.y7f{bottom:6.870000px;}
.y78{bottom:7.200000px;}
.y8f{bottom:8.280000px;}
.ya2{bottom:8.310000px;}
.ya5{bottom:8.640000px;}
.y8e{bottom:9.720000px;}
.ya1{bottom:9.750000px;}
.y6{bottom:61.200000px;}
.y123{bottom:87.516000px;}
.y8a{bottom:89.676000px;}
.yf9{bottom:91.476000px;}
.ybf{bottom:103.716000px;}
.y30{bottom:104.076000px;}
.y10e{bottom:107.316000px;}
.y89{bottom:110.556000px;}
.yf8{bottom:112.356000px;}
.y63{bottom:124.236000px;}
.ybe{bottom:124.596000px;}
.y2f{bottom:125.316000px;}
.y10d{bottom:128.556000px;}
.y88{bottom:131.796000px;}
.yf7{bottom:133.596000px;}
.y62{bottom:145.476000px;}
.ybd{bottom:145.836000px;}
.y2e{bottom:146.196000px;}
.y10c{bottom:149.436000px;}
.y87{bottom:152.670000px;}
.yf6{bottom:154.470000px;}
.y61{bottom:166.350000px;}
.ybc{bottom:166.710000px;}
.y2d{bottom:167.430000px;}
.y10b{bottom:170.670000px;}
.y86{bottom:173.910000px;}
.yf5{bottom:175.710000px;}
.y122{bottom:185.430000px;}
.y60{bottom:187.590000px;}
.ybb{bottom:187.950000px;}
.y2c{bottom:188.310000px;}
.y10a{bottom:191.550000px;}
.y85{bottom:194.835000px;}
.yf4{bottom:196.635000px;}
.y5f{bottom:208.515000px;}
.yba{bottom:208.875000px;}
.y2b{bottom:209.595000px;}
.y109{bottom:212.835000px;}
.y84{bottom:216.075000px;}
.yf3{bottom:217.875000px;}
.yb9{bottom:223.635000px;}
.y5e{bottom:229.755000px;}
.y2a{bottom:230.475000px;}
.y121{bottom:231.915000px;}
.y108{bottom:233.715000px;}
.y83{bottom:236.955000px;}
.yf2{bottom:238.755000px;}
.yb8{bottom:245.595000px;}
.y5d{bottom:250.635000px;}
.y29{bottom:251.715000px;}
.y107{bottom:254.955000px;}
.y120{bottom:255.315000px;}
.y82{bottom:258.195000px;}
.yf1{bottom:259.995000px;}
.yb7{bottom:266.475000px;}
.y5c{bottom:271.875000px;}
.y28{bottom:272.595000px;}
.y106{bottom:275.835000px;}
.y11f{bottom:278.355000px;}
.y81{bottom:279.075000px;}
.yf0{bottom:280.875000px;}
.yb6{bottom:287.715000px;}
.y5b{bottom:292.755000px;}
.y27{bottom:293.835000px;}
.y105{bottom:297.075000px;}
.yd5{bottom:299.235000px;}
.y80{bottom:300.315000px;}
.y11e{bottom:301.395000px;}
.yef{bottom:302.115000px;}
.yb5{bottom:309.315000px;}
.y5a{bottom:313.995000px;}
.y26{bottom:314.715000px;}
.y7e{bottom:315.075000px;}
.y104{bottom:317.955000px;}
.yd4{bottom:320.145000px;}
.yee{bottom:323.025000px;}
.y11d{bottom:324.825000px;}
.y59{bottom:334.905000px;}
.y25{bottom:335.985000px;}
.y7d{bottom:336.705000px;}
.yd3{bottom:337.065000px;}
.yb4{bottom:338.145000px;}
.y103{bottom:339.225000px;}
.yed{bottom:344.265000px;}
.y11c{bottom:347.865000px;}
.y58{bottom:355.785000px;}
.y24{bottom:356.865000px;}
.y7c{bottom:357.945000px;}
.yb3{bottom:359.385000px;}
.y102{bottom:360.105000px;}
.yec{bottom:365.145000px;}
.y11b{bottom:370.905000px;}
.y57{bottom:377.025000px;}
.y23{bottom:378.105000px;}
.y7b{bottom:378.825000px;}
.yb2{bottom:380.265000px;}
.y101{bottom:381.345000px;}
.yeb{bottom:386.385000px;}
.y11a{bottom:394.305000px;}
.y56{bottom:397.905000px;}
.y22{bottom:398.985000px;}
.y79{bottom:400.065000px;}
.yb1{bottom:401.505000px;}
.y100{bottom:402.225000px;}
.yea{bottom:407.265000px;}
.y119{bottom:417.345000px;}
.y55{bottom:419.145000px;}
.y21{bottom:420.225000px;}
.y77{bottom:421.665000px;}
.yb0{bottom:422.385000px;}
.yff{bottom:423.465000px;}
.ye9{bottom:428.505000px;}
.y54{bottom:440.025000px;}
.y118{bottom:440.385000px;}
.y20{bottom:441.105000px;}
.yaf{bottom:443.625000px;}
.yfe{bottom:444.345000px;}
.ye8{bottom:449.430000px;}
.y76{bottom:450.510000px;}
.y53{bottom:461.310000px;}
.y1f{bottom:462.390000px;}
.y117{bottom:463.830000px;}
.yae{bottom:464.550000px;}
.yfd{bottom:465.630000px;}
.ye7{bottom:470.670000px;}
.y75{bottom:471.750000px;}
.y52{bottom:482.190000px;}
.y1e{bottom:483.270000px;}
.yad{bottom:485.790000px;}
.yfc{bottom:486.510000px;}
.y116{bottom:486.870000px;}
.ye6{bottom:491.550000px;}
.y74{bottom:492.630000px;}
.y51{bottom:503.430000px;}
.y1d{bottom:504.150000px;}
.yac{bottom:506.670000px;}
.yfb{bottom:507.750000px;}
.y115{bottom:509.910000px;}
.ye5{bottom:512.790000px;}
.y50{bottom:525.030000px;}
.y1c{bottom:525.390000px;}
.y73{bottom:527.190000px;}
.yab{bottom:527.910000px;}
.yfa{bottom:528.630000px;}
.y114{bottom:533.310000px;}
.ye4{bottom:533.670000px;}
.y72{bottom:535.110000px;}
.y1b{bottom:546.270000px;}
.yaa{bottom:548.790000px;}
.y4f{bottom:549.870000px;}
.ye3{bottom:554.910000px;}
.y113{bottom:556.350000px;}
.y71{bottom:562.830000px;}
.y1a{bottom:569.310000px;}
.ya9{bottom:570.030000px;}
.y4e{bottom:570.750000px;}
.ye2{bottom:575.820000px;}
.y112{bottom:579.420000px;}
.y70{bottom:583.740000px;}
.ya8{bottom:590.940000px;}
.y4d{bottom:592.020000px;}
.ye1{bottom:597.060000px;}
.y19{bottom:599.940000px;}
.y111{bottom:602.820000px;}
.y6f{bottom:604.980000px;}
.ya7{bottom:612.180000px;}
.y4c{bottom:612.900000px;}
.ye0{bottom:617.940000px;}
.y18{bottom:620.820000px;}
.y6e{bottom:625.860000px;}
.ya6{bottom:626.940000px;}
.y4b{bottom:634.140000px;}
.ydf{bottom:639.180000px;}
.y17{bottom:642.060000px;}
.y6d{bottom:647.100000px;}
.ya4{bottom:648.540000px;}
.y110{bottom:648.900000px;}
.y4a{bottom:655.020000px;}
.yde{bottom:660.060000px;}
.y16{bottom:662.940000px;}
.y6c{bottom:667.980000px;}
.ya3{bottom:672.300000px;}
.yd2{bottom:672.660000px;}
.y49{bottom:675.900000px;}
.ydd{bottom:681.300000px;}
.y15{bottom:684.180000px;}
.y6b{bottom:689.220000px;}
.yd1{bottom:693.540000px;}
.y10f{bottom:695.340000px;}
.ya0{bottom:696.060000px;}
.y48{bottom:697.140000px;}
.ydc{bottom:702.210000px;}
.y14{bottom:705.090000px;}
.y6a{bottom:710.130000px;}
.yd0{bottom:714.810000px;}
.y47{bottom:718.050000px;}
.y9f{bottom:719.850000px;}
.ydb{bottom:723.450000px;}
.y13{bottom:726.330000px;}
.y69{bottom:731.370000px;}
.ycf{bottom:735.690000px;}
.y46{bottom:739.290000px;}
.y9e{bottom:743.610000px;}
.yda{bottom:744.330000px;}
.y12{bottom:747.210000px;}
.y68{bottom:752.250000px;}
.yce{bottom:756.930000px;}
.y45{bottom:760.170000px;}
.yd9{bottom:765.570000px;}
.y9d{bottom:767.370000px;}
.y11{bottom:768.450000px;}
.y67{bottom:773.490000px;}
.ycd{bottom:777.810000px;}
.y44{bottom:781.410000px;}
.yd8{bottom:786.450000px;}
.y9c{bottom:788.970000px;}
.y10{bottom:789.330000px;}
.y66{bottom:794.370000px;}
.ycc{bottom:799.050000px;}
.y43{bottom:802.290000px;}
.yd7{bottom:807.690000px;}
.yf{bottom:810.570000px;}
.y65{bottom:815.610000px;}
.y9b{bottom:817.770000px;}
.ycb{bottom:819.930000px;}
.y42{bottom:823.530000px;}
.yd6{bottom:824.250000px;}
.ye{bottom:831.495000px;}
.y64{bottom:836.535000px;}
.y9a{bottom:839.055000px;}
.yca{bottom:841.215000px;}
.y41{bottom:844.455000px;}
.yd{bottom:853.455000px;}
.y99{bottom:859.935000px;}
.yc9{bottom:862.095000px;}
.y40{bottom:865.695000px;}
.yc{bottom:880.095000px;}
.y98{bottom:881.175000px;}
.yc8{bottom:883.335000px;}
.y3f{bottom:886.575000px;}
.yb{bottom:895.935000px;}
.y97{bottom:902.055000px;}
.yc7{bottom:904.215000px;}
.y3e{bottom:907.815000px;}
.ya{bottom:918.975000px;}
.y96{bottom:923.295000px;}
.yc6{bottom:925.455000px;}
.y3d{bottom:928.695000px;}
.y9{bottom:943.455000px;}
.y95{bottom:944.175000px;}
.yc5{bottom:946.335000px;}
.y3c{bottom:949.935000px;}
.yc4{bottom:961.125000px;}
.y94{bottom:965.445000px;}
.y3b{bottom:970.845000px;}
.y8{bottom:977.325000px;}
.yc3{bottom:983.085000px;}
.y93{bottom:986.325000px;}
.y3a{bottom:992.085000px;}
.yc2{bottom:1004.325000px;}
.y92{bottom:1007.565000px;}
.y7{bottom:1011.165000px;}
.y39{bottom:1012.965000px;}
.yc1{bottom:1025.565000px;}
.y91{bottom:1028.445000px;}
.y38{bottom:1034.205000px;}
.y90{bottom:1043.205000px;}
.yc0{bottom:1047.525000px;}
.y5{bottom:1051.125000px;}
.y37{bottom:1055.085000px;}
.y8d{bottom:1065.165000px;}
.y36{bottom:1076.325000px;}
.y4{bottom:1083.210000px;}
.y8c{bottom:1088.970000px;}
.y35{bottom:1097.250000px;}
.y8b{bottom:1110.570000px;}
.y3{bottom:1115.610000px;}
.y34{bottom:1118.490000px;}
.y33{bottom:1139.370000px;}
.y2{bottom:1147.650000px;}
.y32{bottom:1169.970000px;}
.y1{bottom:1182.210000px;}
.y31{bottom:1193.010000px;}
.he{height:20.880000px;}
.hf{height:20.916000px;}
.hd{height:21.240000px;}
.h12{height:21.276000px;}
.h11{height:23.760000px;}
.h10{height:23.796000px;}
.h7{height:34.001016px;}
.h5{height:48.608438px;}
.h9{height:52.890469px;}
.ha{height:53.237812px;}
.h2{height:55.666406px;}
.h3{height:57.927656px;}
.h6{height:58.042969px;}
.h13{height:62.163910px;}
.h8{height:62.960625px;}
.h4{height:77.542031px;}
.hc{height:84.570469px;}
.hb{height:97.287187px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:42.516000px;}
.w10{width:47.916000px;}
.w13{width:63.360000px;}
.w17{width:63.720000px;}
.w12{width:63.756000px;}
.wd{width:74.160000px;}
.w8{width:74.520000px;}
.wc{width:74.556000px;}
.w7{width:75.276000px;}
.we{width:109.152000px;}
.w9{width:119.592000px;}
.w14{width:126.792000px;}
.w18{width:132.192000px;}
.w6{width:163.155000px;}
.w16{width:170.355000px;}
.wb{width:174.675000px;}
.w11{width:175.395000px;}
.wa{width:205.665000px;}
.w3{width:212.865000px;}
.wf{width:217.185000px;}
.w15{width:223.305000px;}
.w4{width:254.625000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.920000px;}
.x29{left:9.720000px;}
.x14{left:11.910000px;}
.x2b{left:13.680000px;}
.x18{left:15.120000px;}
.x1c{left:17.310000px;}
.x16{left:18.360000px;}
.x2e{left:20.190000px;}
.x2f{left:21.285000px;}
.x1e{left:24.120000px;}
.x1f{left:25.560000px;}
.x24{left:26.685000px;}
.x21{left:28.485000px;}
.x20{left:29.565000px;}
.x1b{left:31.725000px;}
.xf{left:33.120000px;}
.x2d{left:35.325000px;}
.x35{left:38.205000px;}
.x25{left:39.285000px;}
.x1{left:54.035987px;}
.x10{left:56.520000px;}
.x11{left:59.040000px;}
.xc{left:69.510000px;}
.xd{left:73.110000px;}
.x2{left:75.275987px;}
.x3c{left:81.035987px;}
.xe{left:83.190000px;}
.x3b{left:86.075987px;}
.x9{left:88.590000px;}
.x5{left:96.515987px;}
.x12{left:97.955987px;}
.xb{left:99.390000px;}
.x3d{left:108.035987px;}
.x26{left:208.155000px;}
.x13{left:209.235000px;}
.x30{left:210.315000px;}
.x8{left:212.835000px;}
.x15{left:251.745000px;}
.x31{left:252.825000px;}
.x27{left:256.065000px;}
.x6{left:302.144987px;}
.x4{left:308.624987px;}
.x37{left:335.669987px;}
.x39{left:360.509987px;}
.x17{left:414.900000px;}
.x32{left:423.180000px;}
.xa{left:425.700000px;}
.x28{left:431.460000px;}
.x3a{left:446.579987px;}
.x7{left:450.899987px;}
.x33{left:486.900000px;}
.x19{left:490.170000px;}
.x2a{left:495.210000px;}
.x22{left:500.970000px;}
.x34{left:550.650000px;}
.x2c{left:558.570000px;}
.x1a{left:564.690000px;}
.x23{left:575.130000px;}
.x38{left:633.494987px;}
.x36{left:634.574987px;}
.x3{left:668.444987px;}
.x3e{left:839.489987px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.v5{vertical-align:28.160000pt;}
.v4{vertical-align:40.960000pt;}
.ls1b{letter-spacing:-1.173333pt;}
.lsf{letter-spacing:-0.960000pt;}
.ls2b{letter-spacing:-0.826667pt;}
.ls23{letter-spacing:-0.746667pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls24{letter-spacing:-0.538667pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls18{letter-spacing:-0.386667pt;}
.ls14{letter-spacing:-0.376533pt;}
.ls19{letter-spacing:-0.342933pt;}
.lsb{letter-spacing:-0.318933pt;}
.lsc{letter-spacing:-0.274133pt;}
.ls13{letter-spacing:-0.089600pt;}
.lsa{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.048640pt;}
.ls2c{letter-spacing:0.107520pt;}
.ls1a{letter-spacing:0.107733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls25{letter-spacing:0.278933pt;}
.ls10{letter-spacing:0.322667pt;}
.ls3{letter-spacing:0.380160pt;}
.ls1f{letter-spacing:0.412267pt;}
.ls1d{letter-spacing:0.435200pt;}
.ls2d{letter-spacing:0.455467pt;}
.lsd{letter-spacing:0.506880pt;}
.ls12{letter-spacing:0.532267pt;}
.ls22{letter-spacing:0.560000pt;}
.ls2a{letter-spacing:0.650240pt;}
.ls20{letter-spacing:0.650667pt;}
.ls4{letter-spacing:0.756907pt;}
.ls9{letter-spacing:0.773333pt;}
.ls0{letter-spacing:1.536000pt;}
.ls26{letter-spacing:1.694720pt;}
.ls1{letter-spacing:1.707520pt;}
.ls15{letter-spacing:1.930667pt;}
.ls21{letter-spacing:2.202667pt;}
.ls16{letter-spacing:5.534720pt;}
.ls29{letter-spacing:10.654720pt;}
.ls17{letter-spacing:14.494720pt;}
.ls1e{letter-spacing:17.054720pt;}
.lse{letter-spacing:19.614720pt;}
.ls5{letter-spacing:33.694720pt;}
.ls27{letter-spacing:34.974720pt;}
.ls28{letter-spacing:37.534720pt;}
.ws14{word-spacing:-55.962667pt;}
.ws0{word-spacing:-37.035520pt;}
.ws3{word-spacing:-19.323093pt;}
.ws4{word-spacing:-19.062827pt;}
.wsb{word-spacing:-13.629547pt;}
.wsc{word-spacing:-13.355520pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws15{word-spacing:-12.709760pt;}
.ws17{word-spacing:-12.682027pt;}
.ws12{word-spacing:-12.584960pt;}
.ws13{word-spacing:-12.562027pt;}
.wsa{word-spacing:-12.346880pt;}
.ws18{word-spacing:-12.257493pt;}
.ws7{word-spacing:-12.149760pt;}
.wsd{word-spacing:-12.060160pt;}
.ws8{word-spacing:-11.875627pt;}
.wse{word-spacing:-11.773227pt;}
.ws16{word-spacing:-11.611093pt;}
.ws11{word-spacing:-11.573760pt;}
.ws10{word-spacing:-11.484267pt;}
.wsf{word-spacing:-11.440533pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.810560pt;}
.ws9{word-spacing:0.000000pt;}
._7{margin-left:-1286.525227pt;}
._4{margin-left:-1180.445013pt;}
._6{margin-left:-889.187627pt;}
._8{margin-left:-514.769493pt;}
._15{margin-left:-5.460053pt;}
._9{margin-left:-4.195413pt;}
._5{margin-left:-2.649600pt;}
._0{margin-left:-1.236480pt;}
._1{width:1.019307pt;}
._2{width:2.178560pt;}
._3{width:3.333120pt;}
._d{width:5.099093pt;}
._c{width:6.182400pt;}
._12{width:7.126187pt;}
._a{width:8.056747pt;}
._b{width:9.109760pt;}
._f{width:10.001067pt;}
._e{width:11.130453pt;}
._10{width:13.666560pt;}
._16{width:14.578987pt;}
._11{width:16.020480pt;}
._17{width:18.385920pt;}
._13{width:38.916053pt;}
._14{width:1511.562240pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:6.080000pt;}
.y7f{bottom:6.106667pt;}
.y78{bottom:6.400000pt;}
.y8f{bottom:7.360000pt;}
.ya2{bottom:7.386667pt;}
.ya5{bottom:7.680000pt;}
.y8e{bottom:8.640000pt;}
.ya1{bottom:8.666667pt;}
.y6{bottom:54.400000pt;}
.y123{bottom:77.792000pt;}
.y8a{bottom:79.712000pt;}
.yf9{bottom:81.312000pt;}
.ybf{bottom:92.192000pt;}
.y30{bottom:92.512000pt;}
.y10e{bottom:95.392000pt;}
.y89{bottom:98.272000pt;}
.yf8{bottom:99.872000pt;}
.y63{bottom:110.432000pt;}
.ybe{bottom:110.752000pt;}
.y2f{bottom:111.392000pt;}
.y10d{bottom:114.272000pt;}
.y88{bottom:117.152000pt;}
.yf7{bottom:118.752000pt;}
.y62{bottom:129.312000pt;}
.ybd{bottom:129.632000pt;}
.y2e{bottom:129.952000pt;}
.y10c{bottom:132.832000pt;}
.y87{bottom:135.706667pt;}
.yf6{bottom:137.306667pt;}
.y61{bottom:147.866667pt;}
.ybc{bottom:148.186667pt;}
.y2d{bottom:148.826667pt;}
.y10b{bottom:151.706667pt;}
.y86{bottom:154.586667pt;}
.yf5{bottom:156.186667pt;}
.y122{bottom:164.826667pt;}
.y60{bottom:166.746667pt;}
.ybb{bottom:167.066667pt;}
.y2c{bottom:167.386667pt;}
.y10a{bottom:170.266667pt;}
.y85{bottom:173.186667pt;}
.yf4{bottom:174.786667pt;}
.y5f{bottom:185.346667pt;}
.yba{bottom:185.666667pt;}
.y2b{bottom:186.306667pt;}
.y109{bottom:189.186667pt;}
.y84{bottom:192.066667pt;}
.yf3{bottom:193.666667pt;}
.yb9{bottom:198.786667pt;}
.y5e{bottom:204.226667pt;}
.y2a{bottom:204.866667pt;}
.y121{bottom:206.146667pt;}
.y108{bottom:207.746667pt;}
.y83{bottom:210.626667pt;}
.yf2{bottom:212.226667pt;}
.yb8{bottom:218.306667pt;}
.y5d{bottom:222.786667pt;}
.y29{bottom:223.746667pt;}
.y107{bottom:226.626667pt;}
.y120{bottom:226.946667pt;}
.y82{bottom:229.506667pt;}
.yf1{bottom:231.106667pt;}
.yb7{bottom:236.866667pt;}
.y5c{bottom:241.666667pt;}
.y28{bottom:242.306667pt;}
.y106{bottom:245.186667pt;}
.y11f{bottom:247.426667pt;}
.y81{bottom:248.066667pt;}
.yf0{bottom:249.666667pt;}
.yb6{bottom:255.746667pt;}
.y5b{bottom:260.226667pt;}
.y27{bottom:261.186667pt;}
.y105{bottom:264.066667pt;}
.yd5{bottom:265.986667pt;}
.y80{bottom:266.946667pt;}
.y11e{bottom:267.906667pt;}
.yef{bottom:268.546667pt;}
.yb5{bottom:274.946667pt;}
.y5a{bottom:279.106667pt;}
.y26{bottom:279.746667pt;}
.y7e{bottom:280.066667pt;}
.y104{bottom:282.626667pt;}
.yd4{bottom:284.573333pt;}
.yee{bottom:287.133333pt;}
.y11d{bottom:288.733333pt;}
.y59{bottom:297.693333pt;}
.y25{bottom:298.653333pt;}
.y7d{bottom:299.293333pt;}
.yd3{bottom:299.613333pt;}
.yb4{bottom:300.573333pt;}
.y103{bottom:301.533333pt;}
.yed{bottom:306.013333pt;}
.y11c{bottom:309.213333pt;}
.y58{bottom:316.253333pt;}
.y24{bottom:317.213333pt;}
.y7c{bottom:318.173333pt;}
.yb3{bottom:319.453333pt;}
.y102{bottom:320.093333pt;}
.yec{bottom:324.573333pt;}
.y11b{bottom:329.693333pt;}
.y57{bottom:335.133333pt;}
.y23{bottom:336.093333pt;}
.y7b{bottom:336.733333pt;}
.yb2{bottom:338.013333pt;}
.y101{bottom:338.973333pt;}
.yeb{bottom:343.453333pt;}
.y11a{bottom:350.493333pt;}
.y56{bottom:353.693333pt;}
.y22{bottom:354.653333pt;}
.y79{bottom:355.613333pt;}
.yb1{bottom:356.893333pt;}
.y100{bottom:357.533333pt;}
.yea{bottom:362.013333pt;}
.y119{bottom:370.973333pt;}
.y55{bottom:372.573333pt;}
.y21{bottom:373.533333pt;}
.y77{bottom:374.813333pt;}
.yb0{bottom:375.453333pt;}
.yff{bottom:376.413333pt;}
.ye9{bottom:380.893333pt;}
.y54{bottom:391.133333pt;}
.y118{bottom:391.453333pt;}
.y20{bottom:392.093333pt;}
.yaf{bottom:394.333333pt;}
.yfe{bottom:394.973333pt;}
.ye8{bottom:399.493333pt;}
.y76{bottom:400.453333pt;}
.y53{bottom:410.053333pt;}
.y1f{bottom:411.013333pt;}
.y117{bottom:412.293333pt;}
.yae{bottom:412.933333pt;}
.yfd{bottom:413.893333pt;}
.ye7{bottom:418.373333pt;}
.y75{bottom:419.333333pt;}
.y52{bottom:428.613333pt;}
.y1e{bottom:429.573333pt;}
.yad{bottom:431.813333pt;}
.yfc{bottom:432.453333pt;}
.y116{bottom:432.773333pt;}
.ye6{bottom:436.933333pt;}
.y74{bottom:437.893333pt;}
.y51{bottom:447.493333pt;}
.y1d{bottom:448.133333pt;}
.yac{bottom:450.373333pt;}
.yfb{bottom:451.333333pt;}
.y115{bottom:453.253333pt;}
.ye5{bottom:455.813333pt;}
.y50{bottom:466.693333pt;}
.y1c{bottom:467.013333pt;}
.y73{bottom:468.613333pt;}
.yab{bottom:469.253333pt;}
.yfa{bottom:469.893333pt;}
.y114{bottom:474.053333pt;}
.ye4{bottom:474.373333pt;}
.y72{bottom:475.653333pt;}
.y1b{bottom:485.573333pt;}
.yaa{bottom:487.813333pt;}
.y4f{bottom:488.773333pt;}
.ye3{bottom:493.253333pt;}
.y113{bottom:494.533333pt;}
.y71{bottom:500.293333pt;}
.y1a{bottom:506.053333pt;}
.ya9{bottom:506.693333pt;}
.y4e{bottom:507.333333pt;}
.ye2{bottom:511.840000pt;}
.y112{bottom:515.040000pt;}
.y70{bottom:518.880000pt;}
.ya8{bottom:525.280000pt;}
.y4d{bottom:526.240000pt;}
.ye1{bottom:530.720000pt;}
.y19{bottom:533.280000pt;}
.y111{bottom:535.840000pt;}
.y6f{bottom:537.760000pt;}
.ya7{bottom:544.160000pt;}
.y4c{bottom:544.800000pt;}
.ye0{bottom:549.280000pt;}
.y18{bottom:551.840000pt;}
.y6e{bottom:556.320000pt;}
.ya6{bottom:557.280000pt;}
.y4b{bottom:563.680000pt;}
.ydf{bottom:568.160000pt;}
.y17{bottom:570.720000pt;}
.y6d{bottom:575.200000pt;}
.ya4{bottom:576.480000pt;}
.y110{bottom:576.800000pt;}
.y4a{bottom:582.240000pt;}
.yde{bottom:586.720000pt;}
.y16{bottom:589.280000pt;}
.y6c{bottom:593.760000pt;}
.ya3{bottom:597.600000pt;}
.yd2{bottom:597.920000pt;}
.y49{bottom:600.800000pt;}
.ydd{bottom:605.600000pt;}
.y15{bottom:608.160000pt;}
.y6b{bottom:612.640000pt;}
.yd1{bottom:616.480000pt;}
.y10f{bottom:618.080000pt;}
.ya0{bottom:618.720000pt;}
.y48{bottom:619.680000pt;}
.ydc{bottom:624.186667pt;}
.y14{bottom:626.746667pt;}
.y6a{bottom:631.226667pt;}
.yd0{bottom:635.386667pt;}
.y47{bottom:638.266667pt;}
.y9f{bottom:639.866667pt;}
.ydb{bottom:643.066667pt;}
.y13{bottom:645.626667pt;}
.y69{bottom:650.106667pt;}
.ycf{bottom:653.946667pt;}
.y46{bottom:657.146667pt;}
.y9e{bottom:660.986667pt;}
.yda{bottom:661.626667pt;}
.y12{bottom:664.186667pt;}
.y68{bottom:668.666667pt;}
.yce{bottom:672.826667pt;}
.y45{bottom:675.706667pt;}
.yd9{bottom:680.506667pt;}
.y9d{bottom:682.106667pt;}
.y11{bottom:683.066667pt;}
.y67{bottom:687.546667pt;}
.ycd{bottom:691.386667pt;}
.y44{bottom:694.586667pt;}
.yd8{bottom:699.066667pt;}
.y9c{bottom:701.306667pt;}
.y10{bottom:701.626667pt;}
.y66{bottom:706.106667pt;}
.ycc{bottom:710.266667pt;}
.y43{bottom:713.146667pt;}
.yd7{bottom:717.946667pt;}
.yf{bottom:720.506667pt;}
.y65{bottom:724.986667pt;}
.y9b{bottom:726.906667pt;}
.ycb{bottom:728.826667pt;}
.y42{bottom:732.026667pt;}
.yd6{bottom:732.666667pt;}
.ye{bottom:739.106667pt;}
.y64{bottom:743.586667pt;}
.y9a{bottom:745.826667pt;}
.yca{bottom:747.746667pt;}
.y41{bottom:750.626667pt;}
.yd{bottom:758.626667pt;}
.y99{bottom:764.386667pt;}
.yc9{bottom:766.306667pt;}
.y40{bottom:769.506667pt;}
.yc{bottom:782.306667pt;}
.y98{bottom:783.266667pt;}
.yc8{bottom:785.186667pt;}
.y3f{bottom:788.066667pt;}
.yb{bottom:796.386667pt;}
.y97{bottom:801.826667pt;}
.yc7{bottom:803.746667pt;}
.y3e{bottom:806.946667pt;}
.ya{bottom:816.866667pt;}
.y96{bottom:820.706667pt;}
.yc6{bottom:822.626667pt;}
.y3d{bottom:825.506667pt;}
.y9{bottom:838.626667pt;}
.y95{bottom:839.266667pt;}
.yc5{bottom:841.186667pt;}
.y3c{bottom:844.386667pt;}
.yc4{bottom:854.333333pt;}
.y94{bottom:858.173333pt;}
.y3b{bottom:862.973333pt;}
.y8{bottom:868.733333pt;}
.yc3{bottom:873.853333pt;}
.y93{bottom:876.733333pt;}
.y3a{bottom:881.853333pt;}
.yc2{bottom:892.733333pt;}
.y92{bottom:895.613333pt;}
.y7{bottom:898.813333pt;}
.y39{bottom:900.413333pt;}
.yc1{bottom:911.613333pt;}
.y91{bottom:914.173333pt;}
.y38{bottom:919.293333pt;}
.y90{bottom:927.293333pt;}
.yc0{bottom:931.133333pt;}
.y5{bottom:934.333333pt;}
.y37{bottom:937.853333pt;}
.y8d{bottom:946.813333pt;}
.y36{bottom:956.733333pt;}
.y4{bottom:962.853333pt;}
.y8c{bottom:967.973333pt;}
.y35{bottom:975.333333pt;}
.y8b{bottom:987.173333pt;}
.y3{bottom:991.653333pt;}
.y34{bottom:994.213333pt;}
.y33{bottom:1012.773333pt;}
.y2{bottom:1020.133333pt;}
.y32{bottom:1039.973333pt;}
.y1{bottom:1050.853333pt;}
.y31{bottom:1060.453333pt;}
.he{height:18.560000pt;}
.hf{height:18.592000pt;}
.hd{height:18.880000pt;}
.h12{height:18.912000pt;}
.h11{height:21.120000pt;}
.h10{height:21.152000pt;}
.h7{height:30.223125pt;}
.h5{height:43.207500pt;}
.h9{height:47.013750pt;}
.ha{height:47.322500pt;}
.h2{height:49.481250pt;}
.h3{height:51.491250pt;}
.h6{height:51.593750pt;}
.h13{height:55.256809pt;}
.h8{height:55.965000pt;}
.h4{height:68.926250pt;}
.hc{height:75.173750pt;}
.hb{height:86.477500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:37.792000pt;}
.w10{width:42.592000pt;}
.w13{width:56.320000pt;}
.w17{width:56.640000pt;}
.w12{width:56.672000pt;}
.wd{width:65.920000pt;}
.w8{width:66.240000pt;}
.wc{width:66.272000pt;}
.w7{width:66.912000pt;}
.we{width:97.024000pt;}
.w9{width:106.304000pt;}
.w14{width:112.704000pt;}
.w18{width:117.504000pt;}
.w6{width:145.026667pt;}
.w16{width:151.426667pt;}
.wb{width:155.266667pt;}
.w11{width:155.906667pt;}
.wa{width:182.813333pt;}
.w3{width:189.213333pt;}
.wf{width:193.053333pt;}
.w15{width:198.493333pt;}
.w4{width:226.333333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:7.040000pt;}
.x29{left:8.640000pt;}
.x14{left:10.586667pt;}
.x2b{left:12.160000pt;}
.x18{left:13.440000pt;}
.x1c{left:15.386667pt;}
.x16{left:16.320000pt;}
.x2e{left:17.946667pt;}
.x2f{left:18.920000pt;}
.x1e{left:21.440000pt;}
.x1f{left:22.720000pt;}
.x24{left:23.720000pt;}
.x21{left:25.320000pt;}
.x20{left:26.280000pt;}
.x1b{left:28.200000pt;}
.xf{left:29.440000pt;}
.x2d{left:31.400000pt;}
.x35{left:33.960000pt;}
.x25{left:34.920000pt;}
.x1{left:48.031988pt;}
.x10{left:50.240000pt;}
.x11{left:52.480000pt;}
.xc{left:61.786667pt;}
.xd{left:64.986667pt;}
.x2{left:66.911988pt;}
.x3c{left:72.031988pt;}
.xe{left:73.946667pt;}
.x3b{left:76.511988pt;}
.x9{left:78.746667pt;}
.x5{left:85.791988pt;}
.x12{left:87.071988pt;}
.xb{left:88.346667pt;}
.x3d{left:96.031988pt;}
.x26{left:185.026667pt;}
.x13{left:185.986667pt;}
.x30{left:186.946667pt;}
.x8{left:189.186667pt;}
.x15{left:223.773333pt;}
.x31{left:224.733333pt;}
.x27{left:227.613333pt;}
.x6{left:268.573322pt;}
.x4{left:274.333322pt;}
.x37{left:298.373322pt;}
.x39{left:320.453322pt;}
.x17{left:368.800000pt;}
.x32{left:376.160000pt;}
.xa{left:378.400000pt;}
.x28{left:383.520000pt;}
.x3a{left:396.959988pt;}
.x7{left:400.799988pt;}
.x33{left:432.800000pt;}
.x19{left:435.706667pt;}
.x2a{left:440.186667pt;}
.x22{left:445.306667pt;}
.x34{left:489.466667pt;}
.x2c{left:496.506667pt;}
.x1a{left:501.946667pt;}
.x23{left:511.226667pt;}
.x38{left:563.106655pt;}
.x36{left:564.066655pt;}
.x3{left:594.173322pt;}
.x3e{left:746.213322pt;}
}




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