
    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_201078beffbd1dff298ca61b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_e62442a8193f2a625f17034f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_599ca58a98ed7b00e899feb6.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_07945f286577e94684a4dd7c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8ca50d7f4fb9626d0400e68f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_6250abbe9738d15747156f68.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_6e06110507aaced86ae6c9ce.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_fdb3a02edf7dfc721ba67144.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_291aea8d0e133ab7b6bbbe31.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_9f685f9c338782249243fadb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_6c7bdfd0703fa111b0c491e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734375;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;}
.v3{vertical-align:24.480000px;}
.v2{vertical-align:60.480000px;}
.v1{vertical-align:61.920000px;}
.ls17{letter-spacing:-3.344544px;}
.ls2f{letter-spacing:-1.929312px;}
.ls30{letter-spacing:-1.905120px;}
.ls13{letter-spacing:-1.728000px;}
.lsf{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.439424px;}
.ls31{letter-spacing:-1.296000px;}
.ls32{letter-spacing:-1.152000px;}
.ls2d{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.719712px;}
.lsc{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.504000px;}
.ls23{letter-spacing:-0.483840px;}
.ls3{letter-spacing:-0.386784px;}
.ls2a{letter-spacing:-0.344736px;}
.ls28{letter-spacing:-0.320544px;}
.ls2b{letter-spacing:-0.290304px;}
.lse{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.266112px;}
.ls33{letter-spacing:-0.251856px;}
.ls26{letter-spacing:-0.241920px;}
.ls29{letter-spacing:-0.211680px;}
.ls27{letter-spacing:-0.157248px;}
.ls9{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.133056px;}
.ls5{letter-spacing:-0.113760px;}
.ls2{letter-spacing:-0.056880px;}
.ls2e{letter-spacing:-0.018144px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.113760px;}
.ls18{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.443664px;}
.ls11{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.716688px;}
.ls8{letter-spacing:0.720000px;}
.ls1b{letter-spacing:10.224000px;}
.ls1d{letter-spacing:11.664000px;}
.ls1a{letter-spacing:14.544000px;}
.ls15{letter-spacing:14.866560px;}
.ls1c{letter-spacing:15.984000px;}
.ls16{letter-spacing:23.506560px;}
.ls1e{letter-spacing:30.384000px;}
.ls1f{letter-spacing:31.824000px;}
.ls19{letter-spacing:36.466560px;}
.ls14{letter-spacing:54.864000px;}
.ls12{letter-spacing:63.504000px;}
.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;}
}
.ws1b{word-spacing:-72.000000px;}
.ws6{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.648000px;}
.wsf{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.496000px;}
.ws3{word-spacing:-17.352000px;}
.ws5{word-spacing:-17.280000px;}
.ws15{word-spacing:-17.208000px;}
.ws19{word-spacing:-17.064000px;}
.ws18{word-spacing:-16.848000px;}
.ws17{word-spacing:-16.704000px;}
.ws8{word-spacing:-16.560000px;}
.wse{word-spacing:-15.120000px;}
.ws11{word-spacing:-14.962752px;}
.ws13{word-spacing:-14.908320px;}
.ws10{word-spacing:-13.680576px;}
.ws16{word-spacing:-13.214880px;}
.wsc{word-spacing:-11.775456px;}
.ws1a{word-spacing:-11.628144px;}
.wsb{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:150.593400px;}
.ws14{word-spacing:211.763400px;}
._3{margin-left:-2.388960px;}
._2{margin-left:-1.365120px;}
._0{width:1.137600px;}
._1{width:2.844000px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:24.480000px;}
.fs2{font-size:30.240000px;}
.fs3{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs5{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:3.780000px;}
.yc8{bottom:14.219970px;}
.y64{bottom:14.220000px;}
.ya8{bottom:14.580000px;}
.ya3{bottom:16.020000px;}
.y45{bottom:24.660000px;}
.yc7{bottom:45.179970px;}
.ya5{bottom:45.180000px;}
.yc5{bottom:45.540000px;}
.y9f{bottom:47.520000px;}
.y99{bottom:47.880000px;}
.y63{bottom:53.460000px;}
.y9c{bottom:55.440000px;}
.y9b{bottom:55.800000px;}
.y9e{bottom:63.000000px;}
.y98{bottom:63.360000px;}
.y9a{bottom:71.280000px;}
.ycf{bottom:76.140000px;}
.yc4{bottom:76.500000px;}
.y9d{bottom:78.480000px;}
.y97{bottom:78.840000px;}
.y91{bottom:79.920000px;}
.y62{bottom:92.700000px;}
.y90{bottom:95.400000px;}
.yc3{bottom:107.460000px;}
.y96{bottom:108.720000px;}
.y8f{bottom:110.880000px;}
.y77{bottom:112.800000px;}
.y18{bottom:113.520000px;}
.y93{bottom:116.280000px;}
.y131{bottom:123.240000px;}
.y95{bottom:124.200000px;}
.yc6{bottom:125.940030px;}
.y5c{bottom:126.840000px;}
.y61{bottom:131.580000px;}
.y92{bottom:131.760000px;}
.y17{bottom:136.560000px;}
.y3c{bottom:138.000000px;}
.ycb{bottom:138.420000px;}
.yc2{bottom:138.780000px;}
.y94{bottom:139.680000px;}
.yf3{bottom:141.960000px;}
.yd4{bottom:143.040000px;}
.yd3{bottom:143.400000px;}
.y34{bottom:144.480000px;}
.y8d{bottom:149.160000px;}
.yb7{bottom:153.120000px;}
.y11f{bottom:153.480000px;}
.y76{bottom:154.200000px;}
.y5b{bottom:157.800000px;}
.y130{bottom:164.640000px;}
.y16{bottom:169.320000px;}
.yce{bottom:169.380000px;}
.yc1{bottom:169.740000px;}
.y155{bottom:170.760000px;}
.y43{bottom:175.440000px;}
.yd2{bottom:177.600000px;}
.y3b{bottom:179.400000px;}
.yf2{bottom:183.360000px;}
.ye6{bottom:184.800000px;}
.y33{bottom:185.880000px;}
.yba{bottom:187.860000px;}
.y5a{bottom:188.760000px;}
.y8c{bottom:190.560000px;}
.yd1{bottom:192.180000px;}
.yb6{bottom:194.520000px;}
.y11e{bottom:194.880000px;}
.y75{bottom:195.600000px;}
.y13e{bottom:195.960000px;}
.yc0{bottom:200.700000px;}
.y15{bottom:202.080000px;}
.y12f{bottom:206.040000px;}
.y42{bottom:206.400000px;}
.y154{bottom:212.160000px;}
.y59{bottom:219.720000px;}
.y3a{bottom:220.800000px;}
.yf1{bottom:224.760000px;}
.ye5{bottom:226.200000px;}
.y32{bottom:227.280000px;}
.y13d{bottom:230.160000px;}
.y10a{bottom:230.880000px;}
.ybf{bottom:231.660000px;}
.y8b{bottom:231.960000px;}
.y14{bottom:234.840000px;}
.yb5{bottom:235.560000px;}
.y74{bottom:237.000000px;}
.y12e{bottom:237.360000px;}
.y41{bottom:237.720000px;}
.y153{bottom:243.480000px;}
.y11d{bottom:260.400000px;}
.y58{bottom:261.840000px;}
.y39{bottom:262.200000px;}
.ybe{bottom:262.980000px;}
.yf0{bottom:266.160000px;}
.ye7{bottom:267.240000px;}
.y13{bottom:267.600000px;}
.y31{bottom:268.680000px;}
.y12d{bottom:271.560000px;}
.y109{bottom:272.280000px;}
.y8a{bottom:273.360000px;}
.yb4{bottom:276.960000px;}
.y152{bottom:277.680000px;}
.y73{bottom:278.400000px;}
.y57{bottom:292.800000px;}
.ybd{bottom:293.940000px;}
.y40{bottom:299.640000px;}
.y12{bottom:300.360000px;}
.y11c{bottom:301.800000px;}
.y38{bottom:304.680000px;}
.yef{bottom:307.560000px;}
.ye4{bottom:309.000000px;}
.y30{bottom:310.080000px;}
.y12c{bottom:312.960000px;}
.y89{bottom:314.760000px;}
.yb3{bottom:318.360000px;}
.y151{bottom:319.080000px;}
.y72{bottom:319.800000px;}
.y56{bottom:323.760000px;}
.ybc{bottom:324.900000px;}
.y3f{bottom:330.600000px;}
.y13c{bottom:330.960000px;}
.y11b{bottom:333.120000px;}
.y11{bottom:333.480000px;}
.y108{bottom:335.640000px;}
.y12b{bottom:344.280000px;}
.y37{bottom:347.520000px;}
.yee{bottom:348.960000px;}
.ye9{bottom:350.040000px;}
.ye3{bottom:350.400000px;}
.y2f{bottom:351.480000px;}
.y3e{bottom:354.360000px;}
.y55{bottom:354.720000px;}
.ybb{bottom:355.860000px;}
.y88{bottom:356.160000px;}
.yb2{bottom:359.760000px;}
.y71{bottom:361.200000px;}
.y10{bottom:366.240000px;}
.y11a{bottom:367.320000px;}
.y44{bottom:371.820000px;}
.y13b{bottom:372.360000px;}
.y107{bottom:378.480000px;}
.y150{bottom:384.600000px;}
.y36{bottom:390.360000px;}
.ye2{bottom:391.800000px;}
.y2e{bottom:392.880000px;}
.y54{bottom:396.480000px;}
.y87{bottom:397.560000px;}
.yf{bottom:399.000000px;}
.yb1{bottom:401.160000px;}
.y70{bottom:402.600000px;}
.y119{bottom:408.720000px;}
.yd0{bottom:409.620000px;}
.y106{bottom:409.800000px;}
.y13a{bottom:413.760000px;}
.y12a{bottom:419.880000px;}
.y14f{bottom:426.000000px;}
.y3d{bottom:431.400000px;}
.ye{bottom:431.760000px;}
.y35{bottom:432.840000px;}
.ye1{bottom:433.200000px;}
.y2d{bottom:434.280000px;}
.y86{bottom:438.960000px;}
.y118{bottom:440.040000px;}
.yb0{bottom:442.560000px;}
.y6f{bottom:444.000000px;}
.y53{bottom:444.720000px;}
.y139{bottom:445.080000px;}
.y129{bottom:461.280000px;}
.yd{bottom:464.520000px;}
.y14e{bottom:467.400000px;}
.yed{bottom:473.160000px;}
.ye8{bottom:474.240000px;}
.ye0{bottom:474.600000px;}
.y2c{bottom:475.680000px;}
.y138{bottom:479.280000px;}
.y85{bottom:480.360000px;}
.yaf{bottom:483.960000px;}
.y6e{bottom:485.400000px;}
.yc{bottom:497.280000px;}
.y14d{bottom:498.720000px;}
.y128{bottom:502.680000px;}
.yec{bottom:514.560000px;}
.y117{bottom:515.640000px;}
.ydf{bottom:516.000000px;}
.y2b{bottom:517.080000px;}
.y137{bottom:520.680000px;}
.y84{bottom:521.760000px;}
.yae{bottom:525.360000px;}
.y6d{bottom:526.800000px;}
.yb{bottom:530.040000px;}
.y14c{bottom:532.920000px;}
.y127{bottom:534.000000px;}
.y136{bottom:552.000000px;}
.yeb{bottom:555.960000px;}
.y116{bottom:557.040000px;}
.yde{bottom:557.400000px;}
.y2a{bottom:558.480000px;}
.y15a{bottom:562.080000px;}
.ya{bottom:562.800000px;}
.y83{bottom:563.160000px;}
.yb9{bottom:565.320000px;}
.y6c{bottom:568.200000px;}
.yc9{bottom:571.620000px;}
.y14b{bottom:574.320000px;}
.y105{bottom:586.200000px;}
.y52{bottom:589.440000px;}
.y9{bottom:595.560000px;}
.ycd{bottom:596.100000px;}
.yad{bottom:597.360000px;}
.y115{bottom:598.440000px;}
.ydd{bottom:598.800000px;}
.y29{bottom:599.880000px;}
.y159{bottom:603.480000px;}
.y82{bottom:604.560000px;}
.y6b{bottom:609.600000px;}
.yac{bottom:611.940000px;}
.y14a{bottom:615.720000px;}
.y51{bottom:620.400000px;}
.y104{bottom:627.600000px;}
.y8{bottom:628.320000px;}
.y114{bottom:629.760000px;}
.y158{bottom:634.800000px;}
.yb8{bottom:638.400000px;}
.yea{bottom:638.760000px;}
.ydc{bottom:640.200000px;}
.y126{bottom:640.920000px;}
.y28{bottom:641.280000px;}
.yab{bottom:643.260000px;}
.y81{bottom:645.960000px;}
.y149{bottom:647.040000px;}
.y6a{bottom:651.000000px;}
.y50{bottom:651.720000px;}
.y113{bottom:663.960000px;}
.y103{bottom:669.000000px;}
.y125{bottom:675.120000px;}
.yaa{bottom:676.020000px;}
.y148{bottom:681.240000px;}
.ydb{bottom:681.600000px;}
.y27{bottom:682.680000px;}
.y80{bottom:687.360000px;}
.y69{bottom:692.400000px;}
.y102{bottom:700.320000px;}
.y112{bottom:705.360000px;}
.ya9{bottom:707.340000px;}
.y157{bottom:710.400000px;}
.y124{bottom:716.520000px;}
.y147{bottom:722.640000px;}
.yda{bottom:723.000000px;}
.y26{bottom:724.080000px;}
.y7f{bottom:728.760000px;}
.y68{bottom:733.800000px;}
.y101{bottom:734.520000px;}
.ya7{bottom:740.100000px;}
.y156{bottom:741.720000px;}
.y111{bottom:746.760000px;}
.y146{bottom:753.960000px;}
.y4f{bottom:755.040000px;}
.y123{bottom:757.920000px;}
.yd9{bottom:764.040000px;}
.y25{bottom:765.480000px;}
.y7e{bottom:770.160000px;}
.ya6{bottom:771.420000px;}
.y67{bottom:775.200000px;}
.y100{bottom:775.920000px;}
.ycc{bottom:782.220000px;}
.y4e{bottom:786.000000px;}
.y145{bottom:788.160000px;}
.ya4{bottom:804.180000px;}
.yd8{bottom:805.440000px;}
.y110{bottom:806.160000px;}
.y24{bottom:806.880000px;}
.y135{bottom:807.240000px;}
.y7d{bottom:811.560000px;}
.y66{bottom:812.640000px;}
.y4d{bottom:817.320000px;}
.y144{bottom:829.560000px;}
.y134{bottom:841.440000px;}
.yd7{bottom:846.840000px;}
.y65{bottom:847.200000px;}
.y10f{bottom:847.560000px;}
.y23{bottom:848.280000px;}
.yff{bottom:848.640000px;}
.y7c{bottom:852.960000px;}
.y122{bottom:858.720000px;}
.y60{bottom:861.780000px;}
.ya2{bottom:866.100000px;}
.y143{bottom:870.960000px;}
.y4c{bottom:879.240000px;}
.yfe{bottom:882.840000px;}
.yd6{bottom:888.240000px;}
.y10e{bottom:888.960000px;}
.y22{bottom:889.680000px;}
.y121{bottom:890.040000px;}
.y7b{bottom:890.400000px;}
.ya1{bottom:899.580000px;}
.y142{bottom:902.280000px;}
.y4b{bottom:910.560000px;}
.y7{bottom:912.000000px;}
.y133{bottom:914.160000px;}
.y10d{bottom:920.280000px;}
.yfd{bottom:924.240000px;}
.y7a{bottom:924.600000px;}
.yd5{bottom:929.640000px;}
.y21{bottom:931.080000px;}
.y141{bottom:936.480000px;}
.y6{bottom:940.800000px;}
.y4a{bottom:941.520000px;}
.y132{bottom:948.360000px;}
.y5{bottom:950.520000px;}
.y10c{bottom:954.480000px;}
.yfc{bottom:955.560000px;}
.y79{bottom:959.160000px;}
.ya0{bottom:969.600000px;}
.yf8{bottom:971.040000px;}
.y20{bottom:972.480000px;}
.y8e{bottom:973.200000px;}
.y140{bottom:977.880000px;}
.yfb{bottom:989.760000px;}
.y78{bottom:993.720000px;}
.y10b{bottom:995.880000px;}
.yca{bottom:999.660000px;}
.y49{bottom:1003.440000px;}
.yf7{bottom:1012.440000px;}
.y1f{bottom:1013.880000px;}
.y5f{bottom:1031.160000px;}
.y48{bottom:1034.760000px;}
.y13f{bottom:1037.280000px;}
.yf6{bottom:1053.840000px;}
.y1e{bottom:1055.280000px;}
.y5e{bottom:1062.120000px;}
.y120{bottom:1062.480000px;}
.y47{bottom:1065.720000px;}
.yfa{bottom:1072.560000px;}
.y4{bottom:1085.880000px;}
.y3{bottom:1094.520000px;}
.yf5{bottom:1095.240000px;}
.y1d{bottom:1096.680000px;}
.y5d{bottom:1100.280000px;}
.yf9{bottom:1103.880000px;}
.y46{bottom:1107.120000px;}
.y2{bottom:1107.480000px;}
.yf4{bottom:1136.640000px;}
.y1c{bottom:1138.080000px;}
.y1{bottom:1138.800000px;}
.y1a{bottom:1190.460000px;}
.y19{bottom:1194.600000px;}
.h7{height:19.080000px;}
.h16{height:21.479766px;}
.h3{height:26.858672px;}
.h15{height:31.320000px;}
.h13{height:32.760000px;}
.h1c{height:36.641953px;}
.h4{height:37.090547px;}
.hb{height:41.400000px;}
.hf{height:41.993438px;}
.h1{height:47.988281px;}
.h5{height:48.761719px;}
.ha{height:49.992188px;}
.he{height:53.067656px;}
.hd{height:53.717344px;}
.h6{height:58.121719px;}
.h18{height:61.919970px;}
.h14{height:61.920000px;}
.h9{height:63.175781px;}
.h8{height:63.949219px;}
.h1d{height:66.176016px;}
.h2{height:101.039766px;}
.h12{height:113.547656px;}
.h11{height:114.987656px;}
.hc{height:155.160000px;}
.h10{height:181.800000px;}
.h1a{height:186.120000px;}
.h1b{height:186.480000px;}
.h19{height:217.440000px;}
.h17{height:372.600000px;}
.h0{height:1263.000000px;}
.w1{width:8.280000px;}
.w4{width:16.560000px;}
.wb{width:214.920000px;}
.w7{width:222.120000px;}
.w9{width:244.800000px;}
.w2{width:255.240000px;}
.w8{width:380.880000px;}
.wa{width:419.400000px;}
.w3{width:441.000000px;}
.w5{width:636.480000px;}
.w6{width:892.440000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x18{left:8.100000px;}
.x32{left:10.260000px;}
.x37{left:19.260000px;}
.x1c{left:41.580000px;}
.x34{left:97.380000px;}
.xc{left:108.000000px;}
.x7{left:114.840000px;}
.x1d{left:118.800000px;}
.x14{left:120.960000px;}
.xe{left:129.240000px;}
.x9{left:135.720000px;}
.x3e{left:140.040000px;}
.x15{left:142.200000px;}
.x16{left:150.480000px;}
.x12{left:156.240000px;}
.x11{left:162.000000px;}
.x17{left:171.720000px;}
.x22{left:176.056350px;}
.x13{left:183.240000px;}
.x23{left:186.061350px;}
.x1a{left:192.960000px;}
.x1f{left:203.760000px;}
.x40{left:208.440000px;}
.x8{left:214.200000px;}
.x3d{left:216.000000px;}
.x5{left:225.720000px;}
.x20{left:230.760000px;}
.x41{left:231.840000px;}
.xa{left:238.320000px;}
.x2{left:250.200000px;}
.xb{left:253.800000px;}
.x3b{left:255.240000px;}
.x21{left:257.760000px;}
.x25{left:267.218100px;}
.x24{left:269.925600px;}
.x2b{left:271.729950px;}
.x2a{left:276.942450px;}
.x6{left:290.880000px;}
.x36{left:323.100000px;}
.x39{left:327.600000px;}
.x35{left:342.180000px;}
.x3f{left:343.800000px;}
.x38{left:345.240000px;}
.x3c{left:360.000000px;}
.x19{left:363.420000px;}
.x3a{left:366.480000px;}
.x33{left:372.780000px;}
.x1{left:377.640000px;}
.x2c{left:387.808350px;}
.x43{left:390.240000px;}
.x10{left:396.000000px;}
.x42{left:398.520000px;}
.x26{left:400.641000px;}
.x2d{left:406.573350px;}
.xf{left:422.640000px;}
.x3{left:446.400000px;}
.x4{left:514.800000px;}
.x2e{left:544.846200px;}
.x27{left:672.393600px;}
.x28{left:680.523600px;}
.x30{left:693.277200px;}
.x2f{left:695.369700px;}
.x29{left:702.408600px;}
.x31{left:707.872200px;}
.x1b{left:768.060000px;}
.xd{left:776.340000px;}
.x1e{left:806.040000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.760000pt;}
.v2{vertical-align:53.760000pt;}
.v1{vertical-align:55.040000pt;}
.ls17{letter-spacing:-2.972928pt;}
.ls2f{letter-spacing:-1.714944pt;}
.ls30{letter-spacing:-1.693440pt;}
.ls13{letter-spacing:-1.536000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-1.279488pt;}
.ls31{letter-spacing:-1.152000pt;}
.ls32{letter-spacing:-1.024000pt;}
.ls2d{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.639744pt;}
.lsc{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls23{letter-spacing:-0.430080pt;}
.ls3{letter-spacing:-0.343808pt;}
.ls2a{letter-spacing:-0.306432pt;}
.ls28{letter-spacing:-0.284928pt;}
.ls2b{letter-spacing:-0.258048pt;}
.lse{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.236544pt;}
.ls33{letter-spacing:-0.223872pt;}
.ls26{letter-spacing:-0.215040pt;}
.ls29{letter-spacing:-0.188160pt;}
.ls27{letter-spacing:-0.139776pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.118272pt;}
.ls5{letter-spacing:-0.101120pt;}
.ls2{letter-spacing:-0.050560pt;}
.ls2e{letter-spacing:-0.016128pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.101120pt;}
.ls18{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.394368pt;}
.ls11{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.637056pt;}
.ls8{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:9.088000pt;}
.ls1d{letter-spacing:10.368000pt;}
.ls1a{letter-spacing:12.928000pt;}
.ls15{letter-spacing:13.214720pt;}
.ls1c{letter-spacing:14.208000pt;}
.ls16{letter-spacing:20.894720pt;}
.ls1e{letter-spacing:27.008000pt;}
.ls1f{letter-spacing:28.288000pt;}
.ls19{letter-spacing:32.414720pt;}
.ls14{letter-spacing:48.768000pt;}
.ls12{letter-spacing:56.448000pt;}
.ws1b{word-spacing:-64.000000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.576000pt;}
.wsf{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.552000pt;}
.ws3{word-spacing:-15.424000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws15{word-spacing:-15.296000pt;}
.ws19{word-spacing:-15.168000pt;}
.ws18{word-spacing:-14.976000pt;}
.ws17{word-spacing:-14.848000pt;}
.ws8{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.300224pt;}
.ws13{word-spacing:-13.251840pt;}
.ws10{word-spacing:-12.160512pt;}
.ws16{word-spacing:-11.746560pt;}
.wsc{word-spacing:-10.467072pt;}
.ws1a{word-spacing:-10.336128pt;}
.wsb{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:133.860800pt;}
.ws14{word-spacing:188.234133pt;}
._3{margin-left:-2.123520pt;}
._2{margin-left:-1.213440pt;}
._0{width:1.011200pt;}
._1{width:2.528000pt;}
.fs6{font-size:21.760000pt;}
.fs2{font-size:26.880000pt;}
.fs3{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs5{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:3.360000pt;}
.yc8{bottom:12.639973pt;}
.y64{bottom:12.640000pt;}
.ya8{bottom:12.960000pt;}
.ya3{bottom:14.240000pt;}
.y45{bottom:21.920000pt;}
.yc7{bottom:40.159973pt;}
.ya5{bottom:40.160000pt;}
.yc5{bottom:40.480000pt;}
.y9f{bottom:42.240000pt;}
.y99{bottom:42.560000pt;}
.y63{bottom:47.520000pt;}
.y9c{bottom:49.280000pt;}
.y9b{bottom:49.600000pt;}
.y9e{bottom:56.000000pt;}
.y98{bottom:56.320000pt;}
.y9a{bottom:63.360000pt;}
.ycf{bottom:67.680000pt;}
.yc4{bottom:68.000000pt;}
.y9d{bottom:69.760000pt;}
.y97{bottom:70.080000pt;}
.y91{bottom:71.040000pt;}
.y62{bottom:82.400000pt;}
.y90{bottom:84.800000pt;}
.yc3{bottom:95.520000pt;}
.y96{bottom:96.640000pt;}
.y8f{bottom:98.560000pt;}
.y77{bottom:100.266667pt;}
.y18{bottom:100.906667pt;}
.y93{bottom:103.360000pt;}
.y131{bottom:109.546667pt;}
.y95{bottom:110.400000pt;}
.yc6{bottom:111.946693pt;}
.y5c{bottom:112.746667pt;}
.y61{bottom:116.960000pt;}
.y92{bottom:117.120000pt;}
.y17{bottom:121.386667pt;}
.y3c{bottom:122.666667pt;}
.ycb{bottom:123.040000pt;}
.yc2{bottom:123.360000pt;}
.y94{bottom:124.160000pt;}
.yf3{bottom:126.186667pt;}
.yd4{bottom:127.146667pt;}
.yd3{bottom:127.466667pt;}
.y34{bottom:128.426667pt;}
.y8d{bottom:132.586667pt;}
.yb7{bottom:136.106667pt;}
.y11f{bottom:136.426667pt;}
.y76{bottom:137.066667pt;}
.y5b{bottom:140.266667pt;}
.y130{bottom:146.346667pt;}
.y16{bottom:150.506667pt;}
.yce{bottom:150.560000pt;}
.yc1{bottom:150.880000pt;}
.y155{bottom:151.786667pt;}
.y43{bottom:155.946667pt;}
.yd2{bottom:157.866667pt;}
.y3b{bottom:159.466667pt;}
.yf2{bottom:162.986667pt;}
.ye6{bottom:164.266667pt;}
.y33{bottom:165.226667pt;}
.yba{bottom:166.986667pt;}
.y5a{bottom:167.786667pt;}
.y8c{bottom:169.386667pt;}
.yd1{bottom:170.826667pt;}
.yb6{bottom:172.906667pt;}
.y11e{bottom:173.226667pt;}
.y75{bottom:173.866667pt;}
.y13e{bottom:174.186667pt;}
.yc0{bottom:178.400000pt;}
.y15{bottom:179.626667pt;}
.y12f{bottom:183.146667pt;}
.y42{bottom:183.466667pt;}
.y154{bottom:188.586667pt;}
.y59{bottom:195.306667pt;}
.y3a{bottom:196.266667pt;}
.yf1{bottom:199.786667pt;}
.ye5{bottom:201.066667pt;}
.y32{bottom:202.026667pt;}
.y13d{bottom:204.586667pt;}
.y10a{bottom:205.226667pt;}
.ybf{bottom:205.920000pt;}
.y8b{bottom:206.186667pt;}
.y14{bottom:208.746667pt;}
.yb5{bottom:209.386667pt;}
.y74{bottom:210.666667pt;}
.y12e{bottom:210.986667pt;}
.y41{bottom:211.306667pt;}
.y153{bottom:216.426667pt;}
.y11d{bottom:231.466667pt;}
.y58{bottom:232.746667pt;}
.y39{bottom:233.066667pt;}
.ybe{bottom:233.760000pt;}
.yf0{bottom:236.586667pt;}
.ye7{bottom:237.546667pt;}
.y13{bottom:237.866667pt;}
.y31{bottom:238.826667pt;}
.y12d{bottom:241.386667pt;}
.y109{bottom:242.026667pt;}
.y8a{bottom:242.986667pt;}
.yb4{bottom:246.186667pt;}
.y152{bottom:246.826667pt;}
.y73{bottom:247.466667pt;}
.y57{bottom:260.266667pt;}
.ybd{bottom:261.280000pt;}
.y40{bottom:266.346667pt;}
.y12{bottom:266.986667pt;}
.y11c{bottom:268.266667pt;}
.y38{bottom:270.826667pt;}
.yef{bottom:273.386667pt;}
.ye4{bottom:274.666667pt;}
.y30{bottom:275.626667pt;}
.y12c{bottom:278.186667pt;}
.y89{bottom:279.786667pt;}
.yb3{bottom:282.986667pt;}
.y151{bottom:283.626667pt;}
.y72{bottom:284.266667pt;}
.y56{bottom:287.786667pt;}
.ybc{bottom:288.800000pt;}
.y3f{bottom:293.866667pt;}
.y13c{bottom:294.186667pt;}
.y11b{bottom:296.106667pt;}
.y11{bottom:296.426667pt;}
.y108{bottom:298.346667pt;}
.y12b{bottom:306.026667pt;}
.y37{bottom:308.906667pt;}
.yee{bottom:310.186667pt;}
.ye9{bottom:311.146667pt;}
.ye3{bottom:311.466667pt;}
.y2f{bottom:312.426667pt;}
.y3e{bottom:314.986667pt;}
.y55{bottom:315.306667pt;}
.ybb{bottom:316.320000pt;}
.y88{bottom:316.586667pt;}
.yb2{bottom:319.786667pt;}
.y71{bottom:321.066667pt;}
.y10{bottom:325.546667pt;}
.y11a{bottom:326.506667pt;}
.y44{bottom:330.506667pt;}
.y13b{bottom:330.986667pt;}
.y107{bottom:336.426667pt;}
.y150{bottom:341.866667pt;}
.y36{bottom:346.986667pt;}
.ye2{bottom:348.266667pt;}
.y2e{bottom:349.226667pt;}
.y54{bottom:352.426667pt;}
.y87{bottom:353.386667pt;}
.yf{bottom:354.666667pt;}
.yb1{bottom:356.586667pt;}
.y70{bottom:357.866667pt;}
.y119{bottom:363.306667pt;}
.yd0{bottom:364.106667pt;}
.y106{bottom:364.266667pt;}
.y13a{bottom:367.786667pt;}
.y12a{bottom:373.226667pt;}
.y14f{bottom:378.666667pt;}
.y3d{bottom:383.466667pt;}
.ye{bottom:383.786667pt;}
.y35{bottom:384.746667pt;}
.ye1{bottom:385.066667pt;}
.y2d{bottom:386.026667pt;}
.y86{bottom:390.186667pt;}
.y118{bottom:391.146667pt;}
.yb0{bottom:393.386667pt;}
.y6f{bottom:394.666667pt;}
.y53{bottom:395.306667pt;}
.y139{bottom:395.626667pt;}
.y129{bottom:410.026667pt;}
.yd{bottom:412.906667pt;}
.y14e{bottom:415.466667pt;}
.yed{bottom:420.586667pt;}
.ye8{bottom:421.546667pt;}
.ye0{bottom:421.866667pt;}
.y2c{bottom:422.826667pt;}
.y138{bottom:426.026667pt;}
.y85{bottom:426.986667pt;}
.yaf{bottom:430.186667pt;}
.y6e{bottom:431.466667pt;}
.yc{bottom:442.026667pt;}
.y14d{bottom:443.306667pt;}
.y128{bottom:446.826667pt;}
.yec{bottom:457.386667pt;}
.y117{bottom:458.346667pt;}
.ydf{bottom:458.666667pt;}
.y2b{bottom:459.626667pt;}
.y137{bottom:462.826667pt;}
.y84{bottom:463.786667pt;}
.yae{bottom:466.986667pt;}
.y6d{bottom:468.266667pt;}
.yb{bottom:471.146667pt;}
.y14c{bottom:473.706667pt;}
.y127{bottom:474.666667pt;}
.y136{bottom:490.666667pt;}
.yeb{bottom:494.186667pt;}
.y116{bottom:495.146667pt;}
.yde{bottom:495.466667pt;}
.y2a{bottom:496.426667pt;}
.y15a{bottom:499.626667pt;}
.ya{bottom:500.266667pt;}
.y83{bottom:500.586667pt;}
.yb9{bottom:502.506667pt;}
.y6c{bottom:505.066667pt;}
.yc9{bottom:508.106667pt;}
.y14b{bottom:510.506667pt;}
.y105{bottom:521.066667pt;}
.y52{bottom:523.946667pt;}
.y9{bottom:529.386667pt;}
.ycd{bottom:529.866667pt;}
.yad{bottom:530.986667pt;}
.y115{bottom:531.946667pt;}
.ydd{bottom:532.266667pt;}
.y29{bottom:533.226667pt;}
.y159{bottom:536.426667pt;}
.y82{bottom:537.386667pt;}
.y6b{bottom:541.866667pt;}
.yac{bottom:543.946667pt;}
.y14a{bottom:547.306667pt;}
.y51{bottom:551.466667pt;}
.y104{bottom:557.866667pt;}
.y8{bottom:558.506667pt;}
.y114{bottom:559.786667pt;}
.y158{bottom:564.266667pt;}
.yb8{bottom:567.466667pt;}
.yea{bottom:567.786667pt;}
.ydc{bottom:569.066667pt;}
.y126{bottom:569.706667pt;}
.y28{bottom:570.026667pt;}
.yab{bottom:571.786667pt;}
.y81{bottom:574.186667pt;}
.y149{bottom:575.146667pt;}
.y6a{bottom:578.666667pt;}
.y50{bottom:579.306667pt;}
.y113{bottom:590.186667pt;}
.y103{bottom:594.666667pt;}
.y125{bottom:600.106667pt;}
.yaa{bottom:600.906667pt;}
.y148{bottom:605.546667pt;}
.ydb{bottom:605.866667pt;}
.y27{bottom:606.826667pt;}
.y80{bottom:610.986667pt;}
.y69{bottom:615.466667pt;}
.y102{bottom:622.506667pt;}
.y112{bottom:626.986667pt;}
.ya9{bottom:628.746667pt;}
.y157{bottom:631.466667pt;}
.y124{bottom:636.906667pt;}
.y147{bottom:642.346667pt;}
.yda{bottom:642.666667pt;}
.y26{bottom:643.626667pt;}
.y7f{bottom:647.786667pt;}
.y68{bottom:652.266667pt;}
.y101{bottom:652.906667pt;}
.ya7{bottom:657.866667pt;}
.y156{bottom:659.306667pt;}
.y111{bottom:663.786667pt;}
.y146{bottom:670.186667pt;}
.y4f{bottom:671.146667pt;}
.y123{bottom:673.706667pt;}
.yd9{bottom:679.146667pt;}
.y25{bottom:680.426667pt;}
.y7e{bottom:684.586667pt;}
.ya6{bottom:685.706667pt;}
.y67{bottom:689.066667pt;}
.y100{bottom:689.706667pt;}
.ycc{bottom:695.306667pt;}
.y4e{bottom:698.666667pt;}
.y145{bottom:700.586667pt;}
.ya4{bottom:714.826667pt;}
.yd8{bottom:715.946667pt;}
.y110{bottom:716.586667pt;}
.y24{bottom:717.226667pt;}
.y135{bottom:717.546667pt;}
.y7d{bottom:721.386667pt;}
.y66{bottom:722.346667pt;}
.y4d{bottom:726.506667pt;}
.y144{bottom:737.386667pt;}
.y134{bottom:747.946667pt;}
.yd7{bottom:752.746667pt;}
.y65{bottom:753.066667pt;}
.y10f{bottom:753.386667pt;}
.y23{bottom:754.026667pt;}
.yff{bottom:754.346667pt;}
.y7c{bottom:758.186667pt;}
.y122{bottom:763.306667pt;}
.y60{bottom:766.026667pt;}
.ya2{bottom:769.866667pt;}
.y143{bottom:774.186667pt;}
.y4c{bottom:781.546667pt;}
.yfe{bottom:784.746667pt;}
.yd6{bottom:789.546667pt;}
.y10e{bottom:790.186667pt;}
.y22{bottom:790.826667pt;}
.y121{bottom:791.146667pt;}
.y7b{bottom:791.466667pt;}
.ya1{bottom:799.626667pt;}
.y142{bottom:802.026667pt;}
.y4b{bottom:809.386667pt;}
.y7{bottom:810.666667pt;}
.y133{bottom:812.586667pt;}
.y10d{bottom:818.026667pt;}
.yfd{bottom:821.546667pt;}
.y7a{bottom:821.866667pt;}
.yd5{bottom:826.346667pt;}
.y21{bottom:827.626667pt;}
.y141{bottom:832.426667pt;}
.y6{bottom:836.266667pt;}
.y4a{bottom:836.906667pt;}
.y132{bottom:842.986667pt;}
.y5{bottom:844.906667pt;}
.y10c{bottom:848.426667pt;}
.yfc{bottom:849.386667pt;}
.y79{bottom:852.586667pt;}
.ya0{bottom:861.866667pt;}
.yf8{bottom:863.146667pt;}
.y20{bottom:864.426667pt;}
.y8e{bottom:865.066667pt;}
.y140{bottom:869.226667pt;}
.yfb{bottom:879.786667pt;}
.y78{bottom:883.306667pt;}
.y10b{bottom:885.226667pt;}
.yca{bottom:888.586667pt;}
.y49{bottom:891.946667pt;}
.yf7{bottom:899.946667pt;}
.y1f{bottom:901.226667pt;}
.y5f{bottom:916.586667pt;}
.y48{bottom:919.786667pt;}
.y13f{bottom:922.026667pt;}
.yf6{bottom:936.746667pt;}
.y1e{bottom:938.026667pt;}
.y5e{bottom:944.106667pt;}
.y120{bottom:944.426667pt;}
.y47{bottom:947.306667pt;}
.yfa{bottom:953.386667pt;}
.y4{bottom:965.226667pt;}
.y3{bottom:972.906667pt;}
.yf5{bottom:973.546667pt;}
.y1d{bottom:974.826667pt;}
.y5d{bottom:978.026667pt;}
.yf9{bottom:981.226667pt;}
.y46{bottom:984.106667pt;}
.y2{bottom:984.426667pt;}
.yf4{bottom:1010.346667pt;}
.y1c{bottom:1011.626667pt;}
.y1{bottom:1012.266667pt;}
.y1a{bottom:1058.186667pt;}
.y19{bottom:1061.866667pt;}
.h7{height:16.960000pt;}
.h16{height:19.093125pt;}
.h3{height:23.874375pt;}
.h15{height:27.840000pt;}
.h13{height:29.120000pt;}
.h1c{height:32.570625pt;}
.h4{height:32.969375pt;}
.hb{height:36.800000pt;}
.hf{height:37.327500pt;}
.h1{height:42.656250pt;}
.h5{height:43.343750pt;}
.ha{height:44.437500pt;}
.he{height:47.171250pt;}
.hd{height:47.748750pt;}
.h6{height:51.663750pt;}
.h18{height:55.039973pt;}
.h14{height:55.040000pt;}
.h9{height:56.156250pt;}
.h8{height:56.843750pt;}
.h1d{height:58.823125pt;}
.h2{height:89.813125pt;}
.h12{height:100.931250pt;}
.h11{height:102.211250pt;}
.hc{height:137.920000pt;}
.h10{height:161.600000pt;}
.h1a{height:165.440000pt;}
.h1b{height:165.760000pt;}
.h19{height:193.280000pt;}
.h17{height:331.200000pt;}
.h0{height:1122.666667pt;}
.w1{width:7.360000pt;}
.w4{width:14.720000pt;}
.wb{width:191.040000pt;}
.w7{width:197.440000pt;}
.w9{width:217.600000pt;}
.w2{width:226.880000pt;}
.w8{width:338.560000pt;}
.wa{width:372.800000pt;}
.w3{width:392.000000pt;}
.w5{width:565.760000pt;}
.w6{width:793.280000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x18{left:7.200000pt;}
.x32{left:9.120000pt;}
.x37{left:17.120000pt;}
.x1c{left:36.960000pt;}
.x34{left:86.560000pt;}
.xc{left:96.000000pt;}
.x7{left:102.080000pt;}
.x1d{left:105.600000pt;}
.x14{left:107.520000pt;}
.xe{left:114.880000pt;}
.x9{left:120.640000pt;}
.x3e{left:124.480000pt;}
.x15{left:126.400000pt;}
.x16{left:133.760000pt;}
.x12{left:138.880000pt;}
.x11{left:144.000000pt;}
.x17{left:152.640000pt;}
.x22{left:156.494533pt;}
.x13{left:162.880000pt;}
.x23{left:165.387867pt;}
.x1a{left:171.520000pt;}
.x1f{left:181.120000pt;}
.x40{left:185.280000pt;}
.x8{left:190.400000pt;}
.x3d{left:192.000000pt;}
.x5{left:200.640000pt;}
.x20{left:205.120000pt;}
.x41{left:206.080000pt;}
.xa{left:211.840000pt;}
.x2{left:222.400000pt;}
.xb{left:225.600000pt;}
.x3b{left:226.880000pt;}
.x21{left:229.120000pt;}
.x25{left:237.527200pt;}
.x24{left:239.933867pt;}
.x2b{left:241.537733pt;}
.x2a{left:246.171067pt;}
.x6{left:258.560000pt;}
.x36{left:287.200000pt;}
.x39{left:291.200000pt;}
.x35{left:304.160000pt;}
.x3f{left:305.600000pt;}
.x38{left:306.880000pt;}
.x3c{left:320.000000pt;}
.x19{left:323.040000pt;}
.x3a{left:325.760000pt;}
.x33{left:331.360000pt;}
.x1{left:335.680000pt;}
.x2c{left:344.718533pt;}
.x43{left:346.880000pt;}
.x10{left:352.000000pt;}
.x42{left:354.240000pt;}
.x26{left:356.125333pt;}
.x2d{left:361.398533pt;}
.xf{left:375.680000pt;}
.x3{left:396.800000pt;}
.x4{left:457.600000pt;}
.x2e{left:484.307733pt;}
.x27{left:597.683200pt;}
.x28{left:604.909867pt;}
.x30{left:616.246400pt;}
.x2f{left:618.106400pt;}
.x29{left:624.363200pt;}
.x31{left:629.219733pt;}
.x1b{left:682.720000pt;}
.xd{left:690.080000pt;}
.x1e{left:716.480000pt;}
}




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