
    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_d215b65cfe26cab5a7058516.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6b90fa51c8ef2e091e6792fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cd843ce302e4bbe931549b09.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_02cdf9b5e98b2dbfb38a3e0e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.930664;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_d8e0b802124c549a71f378c3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_85ae8b03f826b639b3db60e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.680176;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_e5539bb8219eb58ac5432d31.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1b9c236a408515da74fea5fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1c534dd115a19c035fa497c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_6971d53d15d080e48771c23e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680176;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_74e729d74136e2e081a4f4b5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ba96be2569a79bd29020e7ff.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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);}
.v4{vertical-align:-3.600000px;}
.v2{vertical-align:-1.140000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.140000px;}
.v3{vertical-align:3.600000px;}
.ls19{letter-spacing:-10.020000px;}
.ls17{letter-spacing:-7.644000px;}
.ls15{letter-spacing:-7.200000px;}
.ls18{letter-spacing:-6.420000px;}
.ls21{letter-spacing:-6.060000px;}
.ls22{letter-spacing:-5.178000px;}
.ls16{letter-spacing:-4.380000px;}
.ls1a{letter-spacing:-2.400000px;}
.ls1{letter-spacing:-1.200000px;}
.lsc{letter-spacing:-0.768000px;}
.ls1c{letter-spacing:-0.432000px;}
.ls1f{letter-spacing:-0.408000px;}
.ls24{letter-spacing:-0.384000px;}
.ls23{letter-spacing:-0.024000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.024000px;}
.ls6{letter-spacing:0.347976px;}
.ls5{letter-spacing:0.348000px;}
.ls9{letter-spacing:0.354000px;}
.ls4{letter-spacing:0.384000px;}
.lsb{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.444000px;}
.ls7{letter-spacing:0.570000px;}
.ls11{letter-spacing:0.762000px;}
.ls1b{letter-spacing:0.768000px;}
.ls20{letter-spacing:0.870000px;}
.lsf{letter-spacing:0.930000px;}
.lse{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.200000px;}
.lsa{letter-spacing:1.728000px;}
.ls10{letter-spacing:3.600000px;}
.ls2{letter-spacing:6.000000px;}
.ls13{letter-spacing:9.462000px;}
.ls12{letter-spacing:14.736024px;}
.ls1e{letter-spacing:16.800000px;}
.ls14{letter-spacing:19.962000px;}
.ls3{letter-spacing:21.600000px;}
.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;}
}
.ws1a{word-spacing:-19.080000px;}
.ws2f{word-spacing:-18.432000px;}
.ws5{word-spacing:-18.384000px;}
.ws6{word-spacing:-18.347976px;}
.ws2b{word-spacing:-18.024000px;}
.ws0{word-spacing:-18.000000px;}
.ws2d{word-spacing:-17.976000px;}
.ws2e{word-spacing:-17.616000px;}
.ws1b{word-spacing:-15.600000px;}
.wsa{word-spacing:-1.224000px;}
.ws9{word-spacing:-0.432000px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:0.360000px;}
.ws2{word-spacing:1.116000px;}
.ws1c{word-spacing:1.152000px;}
.wsb{word-spacing:1.518000px;}
.ws8{word-spacing:2.304000px;}
.ws7{word-spacing:3.528000px;}
.ws2a{word-spacing:4.212000px;}
.ws1f{word-spacing:4.752000px;}
.ws28{word-spacing:4.800000px;}
.ws1d{word-spacing:4.848000px;}
.ws13{word-spacing:5.568000px;}
.ws1e{word-spacing:5.904000px;}
.ws17{word-spacing:5.976000px;}
.ws24{word-spacing:6.000000px;}
.ws18{word-spacing:6.768000px;}
.ws14{word-spacing:7.128000px;}
.ws15{word-spacing:7.200000px;}
.ws16{word-spacing:8.304000px;}
.ws20{word-spacing:8.352000px;}
.ws21{word-spacing:9.504000px;}
.ws22{word-spacing:9.576000px;}
.ws23{word-spacing:10.230000px;}
.ws29{word-spacing:10.800000px;}
.ws2c{word-spacing:11.232000px;}
.ws27{word-spacing:11.952000px;}
.ws26{word-spacing:13.104000px;}
.wse{word-spacing:14.328000px;}
.wsf{word-spacing:15.552000px;}
.ws11{word-spacing:15.600000px;}
.ws12{word-spacing:16.428000px;}
.ws10{word-spacing:18.642000px;}
.ws25{word-spacing:19.152000px;}
.wsd{word-spacing:31.104000px;}
.wsc{word-spacing:32.328000px;}
.ws19{word-spacing:109.350000px;}
.ws4{word-spacing:145.350000px;}
._5{margin-left:-18.816000px;}
._26{margin-left:-9.936000px;}
._e{margin-left:-8.784000px;}
._15{margin-left:-6.984000px;}
._3{margin-left:-5.184000px;}
._d{margin-left:-3.384000px;}
._2{margin-left:-2.376000px;}
._0{margin-left:-1.152000px;}
._1{width:1.008000px;}
._4{width:2.136000px;}
._16{width:3.168000px;}
._11{width:4.392000px;}
._12{width:5.688000px;}
._14{width:7.128000px;}
._13{width:8.568000px;}
._f{width:10.440000px;}
._10{width:11.808000px;}
._7{width:12.960000px;}
._8{width:14.058000px;}
._6{width:15.264000px;}
._1e{width:16.632000px;}
._17{width:19.872000px;}
._18{width:21.168000px;}
._9{width:22.608000px;}
._c{width:23.724000px;}
._a{width:24.912000px;}
._b{width:26.070000px;}
._1f{width:27.210000px;}
._19{width:29.016000px;}
._1a{width:30.528000px;}
._22{width:31.536000px;}
._20{width:33.264000px;}
._21{width:35.280000px;}
._1c{width:36.792000px;}
._1b{width:37.800000px;}
._1d{width:39.240000px;}
._2c{width:43.632000px;}
._2b{width:44.712000px;}
._25{width:60.192000px;}
._23{width:63.504000px;}
._24{width:64.800000px;}
._27{width:67.680000px;}
._28{width:68.832000px;}
._29{width:73.656000px;}
._2a{width:74.808000px;}
.fc9{color:rgb(5,99,193);}
.fc8{color:transparent;}
.fc7{color:rgb(77,176,82);}
.fca{color:rgb(17,85,204);}
.fc6{color:rgb(36,71,0);}
.fc5{color:rgb(32,33,36);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(45,45,45);}
.fc2{color:rgb(33,29,30);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:83.701500px;}
.y48{bottom:104.398500px;}
.yf5{bottom:117.037500px;}
.ya0{bottom:120.337500px;}
.y47{bottom:125.095500px;}
.y40{bottom:125.137500px;}
.yf4{bottom:137.737500px;}
.y9f{bottom:141.037500px;}
.y3f{bottom:145.837500px;}
.yf3{bottom:158.430000px;}
.y9e{bottom:161.730000px;}
.yb5{bottom:165.675000px;}
.y46{bottom:166.540500px;}
.y3e{bottom:166.575000px;}
.ye{bottom:180.075000px;}
.y9d{bottom:182.475000px;}
.yb4{bottom:186.375000px;}
.y72{bottom:186.961500px;}
.y45{bottom:187.240500px;}
.y3d{bottom:187.275000px;}
.yd3{bottom:192.675000px;}
.yf2{bottom:196.875000px;}
.yd{bottom:200.775000px;}
.y9c{bottom:203.175000px;}
.yb3{bottom:207.075000px;}
.y71{bottom:207.661500px;}
.y3c{bottom:207.975000px;}
.yd2{bottom:213.375000px;}
.yf1{bottom:218.475000px;}
.y3b{bottom:228.675000px;}
.yd1{bottom:234.075000px;}
.y4a{bottom:238.384500px;}
.yf0{bottom:239.175000px;}
.y9b{bottom:244.875000px;}
.yb2{bottom:248.475000px;}
.y79{bottom:249.075000px;}
.y70{bottom:249.361500px;}
.y3a{bottom:249.375000px;}
.yef{bottom:259.875000px;}
.y4d{bottom:269.775000px;}
.y6f{bottom:270.066000px;}
.y39{bottom:270.075000px;}
.y9a{bottom:270.375000px;}
.yd0{bottom:275.475000px;}
.y78{bottom:290.475000px;}
.y6e{bottom:290.770500px;}
.y38{bottom:290.775000px;}
.y99{bottom:295.575000px;}
.ycf{bottom:296.175000px;}
.yee{bottom:301.275000px;}
.yc{bottom:301.575000px;}
.y77{bottom:311.175000px;}
.y37{bottom:311.475000px;}
.yce{bottom:316.875000px;}
.y98{bottom:321.075000px;}
.yed{bottom:321.975000px;}
.y76{bottom:331.875000px;}
.y36{bottom:332.175000px;}
.y6d{bottom:332.179500px;}
.ycd{bottom:337.605000px;}
.yb{bottom:340.320000px;}
.yec{bottom:342.705000px;}
.y97{bottom:346.320000px;}
.y75{bottom:352.620000px;}
.y6c{bottom:352.884000px;}
.y35{bottom:352.905000px;}
.yeb{bottom:363.405000px;}
.y96{bottom:371.805000px;}
.yb1{bottom:373.320000px;}
.y6b{bottom:373.588500px;}
.y41{bottom:373.620000px;}
.ya{bottom:378.720000px;}
.ycc{bottom:379.005000px;}
.yb0{bottom:394.005000px;}
.y6a{bottom:394.293000px;}
.y31{bottom:394.320000px;}
.y95{bottom:397.005000px;}
.ycb{bottom:399.705000px;}
.yea{bottom:402.120000px;}
.yaf{bottom:414.705000px;}
.y69{bottom:414.997500px;}
.y30{bottom:415.005000px;}
.yca{bottom:420.405000px;}
.y94{bottom:422.505000px;}
.ye9{bottom:422.820000px;}
.y7c{bottom:435.405000px;}
.y2f{bottom:435.705000px;}
.yc9{bottom:441.120000px;}
.ye8{bottom:443.505000px;}
.y7b{bottom:456.120000px;}
.y68{bottom:456.412500px;}
.y2e{bottom:456.420000px;}
.y93{bottom:464.205000px;}
.y7a{bottom:476.820000px;}
.y2d{bottom:477.120000px;}
.y67{bottom:477.123000px;}
.yc8{bottom:482.505000px;}
.ye7{bottom:484.920000px;}
.y92{bottom:489.705000px;}
.y9{bottom:494.820000px;}
.y7e{bottom:497.505000px;}
.y2c{bottom:497.820000px;}
.y66{bottom:497.833500px;}
.yc7{bottom:503.250000px;}
.ye6{bottom:505.650000px;}
.y91{bottom:514.950000px;}
.y7d{bottom:518.250000px;}
.y65{bottom:518.544000px;}
.y2b{bottom:518.550000px;}
.y8{bottom:533.850000px;}
.y2a{bottom:539.250000px;}
.y90{bottom:540.450000px;}
.ye5{bottom:543.750000px;}
.yc6{bottom:544.650000px;}
.y7{bottom:554.550000px;}
.yae{bottom:559.650000px;}
.y64{bottom:559.944000px;}
.y29{bottom:559.950000px;}
.ye4{bottom:564.450000px;}
.yc5{bottom:565.350000px;}
.y6{bottom:575.250000px;}
.y4c{bottom:580.350000px;}
.y63{bottom:580.647000px;}
.y28{bottom:580.650000px;}
.y8f{bottom:582.150000px;}
.ye3{bottom:585.150000px;}
.yc4{bottom:586.050000px;}
.y80{bottom:601.050000px;}
.y27{bottom:601.350000px;}
.yc3{bottom:606.750000px;}
.y8e{bottom:607.650000px;}
.y7f{bottom:621.750000px;}
.y26{bottom:622.050000px;}
.y62{bottom:622.053000px;}
.ye2{bottom:627.150000px;}
.y8d{bottom:632.850000px;}
.yad{bottom:642.450000px;}
.y25{bottom:642.750000px;}
.y61{bottom:642.756000px;}
.ye1{bottom:647.850000px;}
.y8c{bottom:658.350000px;}
.yac{bottom:663.150000px;}
.y24{bottom:663.450000px;}
.y60{bottom:663.459000px;}
.yc2{bottom:666.750000px;}
.ye0{bottom:668.550000px;}
.y8b{bottom:683.595000px;}
.y44{bottom:683.880000px;}
.y5f{bottom:684.162000px;}
.y23{bottom:684.180000px;}
.yc1{bottom:687.480000px;}
.y5{bottom:691.380000px;}
.yab{bottom:704.580000px;}
.y5e{bottom:704.865000px;}
.y22{bottom:704.880000px;}
.yc0{bottom:708.180000px;}
.y8a{bottom:709.680000px;}
.ydf{bottom:709.995000px;}
.y43{bottom:725.280000px;}
.y5d{bottom:725.568000px;}
.y21{bottom:725.595000px;}
.y105{bottom:728.280000px;}
.ybf{bottom:728.880000px;}
.y4{bottom:730.080000px;}
.yde{bottom:730.695000px;}
.y89{bottom:745.980000px;}
.y5c{bottom:746.271000px;}
.y20{bottom:746.280000px;}
.y104{bottom:748.995000px;}
.y3{bottom:750.780000px;}
.ydd{bottom:752.280000px;}
.y88{bottom:766.695000px;}
.y1f{bottom:766.980000px;}
.y103{bottom:769.695000px;}
.ydc{bottom:772.980000px;}
.yaa{bottom:786.795000px;}
.y5b{bottom:787.686000px;}
.y1e{bottom:787.695000px;}
.y2{bottom:789.495000px;}
.ydb{bottom:793.695000px;}
.ya9{bottom:807.480000px;}
.y1d{bottom:808.380000px;}
.y5a{bottom:808.392000px;}
.y1{bottom:810.195000px;}
.y102{bottom:811.080000px;}
.yda{bottom:814.380000px;}
.y1c{bottom:829.080000px;}
.y59{bottom:829.098000px;}
.y101{bottom:831.795000px;}
.ya8{bottom:848.925000px;}
.ya1{bottom:849.525000px;}
.y58{bottom:849.804000px;}
.y1b{bottom:849.825000px;}
.ybe{bottom:850.425000px;}
.y100{bottom:852.525000px;}
.yd9{bottom:853.125000px;}
.y57{bottom:870.510000px;}
.y1a{bottom:870.525000px;}
.ybd{bottom:871.125000px;}
.yd8{bottom:873.825000px;}
.y4b{bottom:890.925000px;}
.y56{bottom:891.216000px;}
.y19{bottom:891.225000px;}
.ybc{bottom:891.825000px;}
.yff{bottom:893.925000px;}
.yd7{bottom:894.525000px;}
.y55{bottom:911.922000px;}
.y18{bottom:911.925000px;}
.ya7{bottom:912.525000px;}
.yfe{bottom:914.625000px;}
.yd6{bottom:915.225000px;}
.y74{bottom:932.325000px;}
.y17{bottom:932.625000px;}
.y54{bottom:932.628000px;}
.ya6{bottom:933.225000px;}
.yfd{bottom:935.325000px;}
.yd5{bottom:935.925000px;}
.y73{bottom:953.025000px;}
.y87{bottom:953.323500px;}
.y16{bottom:953.325000px;}
.y53{bottom:953.334000px;}
.ybb{bottom:953.925000px;}
.yfc{bottom:956.025000px;}
.y15{bottom:974.025000px;}
.y86{bottom:974.028000px;}
.y52{bottom:974.040000px;}
.ya5{bottom:974.625000px;}
.yfb{bottom:976.725000px;}
.y14{bottom:994.725000px;}
.y85{bottom:994.732500px;}
.y51{bottom:994.746000px;}
.ya4{bottom:995.325000px;}
.yfa{bottom:997.425000px;}
.ya2{bottom:1015.170000px;}
.y84{bottom:1015.437000px;}
.y50{bottom:1015.452000px;}
.y13{bottom:1015.455000px;}
.ya3{bottom:1016.070000px;}
.yf9{bottom:1018.155000px;}
.y83{bottom:1036.141500px;}
.y4f{bottom:1036.158000px;}
.y12{bottom:1036.170000px;}
.yba{bottom:1036.755000px;}
.yf8{bottom:1038.870000px;}
.y82{bottom:1056.846000px;}
.y4e{bottom:1056.864000px;}
.y11{bottom:1056.870000px;}
.yd4{bottom:1057.455000px;}
.yf7{bottom:1059.570000px;}
.y81{bottom:1077.550500px;}
.y34{bottom:1077.570000px;}
.yb9{bottom:1078.170000px;}
.yf6{bottom:1080.255000px;}
.y10{bottom:1097.955000px;}
.y33{bottom:1098.255000px;}
.yb8{bottom:1098.870000px;}
.yf{bottom:1118.955000px;}
.yb7{bottom:1119.570000px;}
.y42{bottom:1139.370000px;}
.y32{bottom:1139.655000px;}
.yb6{bottom:1140.255000px;}
.h9{height:37.520508px;}
.h3{height:51.468750px;}
.ha{height:59.343750px;}
.h6{height:63.949219px;}
.h5{height:64.546875px;}
.hd{height:65.686875px;}
.he{height:70.628906px;}
.h2{height:70.664062px;}
.hb{height:71.302500px;}
.h4{height:71.804063px;}
.hc{height:71.864062px;}
.h8{height:72.562500px;}
.h7{height:74.004654px;}
.h10{height:74.204062px;}
.hf{height:74.264062px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:77.737500px;}
.x12{left:91.237500px;}
.x11{left:104.737500px;}
.x10{left:113.737500px;}
.xf{left:127.237500px;}
.x14{left:128.242500px;}
.x6{left:132.037500px;}
.x7{left:143.437500px;}
.x8{left:156.345000px;}
.x5{left:201.375000px;}
.x3{left:259.575000px;}
.x1{left:274.275000px;}
.xa{left:315.420000px;}
.x9{left:337.905000px;}
.x4{left:342.705000px;}
.xc{left:350.220000px;}
.xb{left:371.820000px;}
.xd{left:380.896500px;}
.xe{left:408.720000px;}
.x2{left:409.905000px;}
@media print{
.v4{vertical-align:-3.200000pt;}
.v2{vertical-align:-1.013333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.013333pt;}
.v3{vertical-align:3.200000pt;}
.ls19{letter-spacing:-8.906667pt;}
.ls17{letter-spacing:-6.794667pt;}
.ls15{letter-spacing:-6.400000pt;}
.ls18{letter-spacing:-5.706667pt;}
.ls21{letter-spacing:-5.386667pt;}
.ls22{letter-spacing:-4.602667pt;}
.ls16{letter-spacing:-3.893333pt;}
.ls1a{letter-spacing:-2.133333pt;}
.ls1{letter-spacing:-1.066667pt;}
.lsc{letter-spacing:-0.682667pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls1f{letter-spacing:-0.362667pt;}
.ls24{letter-spacing:-0.341333pt;}
.ls23{letter-spacing:-0.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.021333pt;}
.ls6{letter-spacing:0.309312pt;}
.ls5{letter-spacing:0.309333pt;}
.ls9{letter-spacing:0.314667pt;}
.ls4{letter-spacing:0.341333pt;}
.lsb{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.394667pt;}
.ls7{letter-spacing:0.506667pt;}
.ls11{letter-spacing:0.677333pt;}
.ls1b{letter-spacing:0.682667pt;}
.ls20{letter-spacing:0.773333pt;}
.lsf{letter-spacing:0.826667pt;}
.lse{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.066667pt;}
.lsa{letter-spacing:1.536000pt;}
.ls10{letter-spacing:3.200000pt;}
.ls2{letter-spacing:5.333333pt;}
.ls13{letter-spacing:8.410667pt;}
.ls12{letter-spacing:13.098688pt;}
.ls1e{letter-spacing:14.933333pt;}
.ls14{letter-spacing:17.744000pt;}
.ls3{letter-spacing:19.200000pt;}
.ws1a{word-spacing:-16.960000pt;}
.ws2f{word-spacing:-16.384000pt;}
.ws5{word-spacing:-16.341333pt;}
.ws6{word-spacing:-16.309312pt;}
.ws2b{word-spacing:-16.021333pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2d{word-spacing:-15.978667pt;}
.ws2e{word-spacing:-15.658667pt;}
.ws1b{word-spacing:-13.866667pt;}
.wsa{word-spacing:-1.088000pt;}
.ws9{word-spacing:-0.384000pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:0.320000pt;}
.ws2{word-spacing:0.992000pt;}
.ws1c{word-spacing:1.024000pt;}
.wsb{word-spacing:1.349333pt;}
.ws8{word-spacing:2.048000pt;}
.ws7{word-spacing:3.136000pt;}
.ws2a{word-spacing:3.744000pt;}
.ws1f{word-spacing:4.224000pt;}
.ws28{word-spacing:4.266667pt;}
.ws1d{word-spacing:4.309333pt;}
.ws13{word-spacing:4.949333pt;}
.ws1e{word-spacing:5.248000pt;}
.ws17{word-spacing:5.312000pt;}
.ws24{word-spacing:5.333333pt;}
.ws18{word-spacing:6.016000pt;}
.ws14{word-spacing:6.336000pt;}
.ws15{word-spacing:6.400000pt;}
.ws16{word-spacing:7.381333pt;}
.ws20{word-spacing:7.424000pt;}
.ws21{word-spacing:8.448000pt;}
.ws22{word-spacing:8.512000pt;}
.ws23{word-spacing:9.093333pt;}
.ws29{word-spacing:9.600000pt;}
.ws2c{word-spacing:9.984000pt;}
.ws27{word-spacing:10.624000pt;}
.ws26{word-spacing:11.648000pt;}
.wse{word-spacing:12.736000pt;}
.wsf{word-spacing:13.824000pt;}
.ws11{word-spacing:13.866667pt;}
.ws12{word-spacing:14.602667pt;}
.ws10{word-spacing:16.570667pt;}
.ws25{word-spacing:17.024000pt;}
.wsd{word-spacing:27.648000pt;}
.wsc{word-spacing:28.736000pt;}
.ws19{word-spacing:97.200000pt;}
.ws4{word-spacing:129.200000pt;}
._5{margin-left:-16.725333pt;}
._26{margin-left:-8.832000pt;}
._e{margin-left:-7.808000pt;}
._15{margin-left:-6.208000pt;}
._3{margin-left:-4.608000pt;}
._d{margin-left:-3.008000pt;}
._2{margin-left:-2.112000pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.896000pt;}
._4{width:1.898667pt;}
._16{width:2.816000pt;}
._11{width:3.904000pt;}
._12{width:5.056000pt;}
._14{width:6.336000pt;}
._13{width:7.616000pt;}
._f{width:9.280000pt;}
._10{width:10.496000pt;}
._7{width:11.520000pt;}
._8{width:12.496000pt;}
._6{width:13.568000pt;}
._1e{width:14.784000pt;}
._17{width:17.664000pt;}
._18{width:18.816000pt;}
._9{width:20.096000pt;}
._c{width:21.088000pt;}
._a{width:22.144000pt;}
._b{width:23.173333pt;}
._1f{width:24.186667pt;}
._19{width:25.792000pt;}
._1a{width:27.136000pt;}
._22{width:28.032000pt;}
._20{width:29.568000pt;}
._21{width:31.360000pt;}
._1c{width:32.704000pt;}
._1b{width:33.600000pt;}
._1d{width:34.880000pt;}
._2c{width:38.784000pt;}
._2b{width:39.744000pt;}
._25{width:53.504000pt;}
._23{width:56.448000pt;}
._24{width:57.600000pt;}
._27{width:60.160000pt;}
._28{width:61.184000pt;}
._29{width:65.472000pt;}
._2a{width:66.496000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:74.401333pt;}
.y48{bottom:92.798667pt;}
.yf5{bottom:104.033333pt;}
.ya0{bottom:106.966667pt;}
.y47{bottom:111.196000pt;}
.y40{bottom:111.233333pt;}
.yf4{bottom:122.433333pt;}
.y9f{bottom:125.366667pt;}
.y3f{bottom:129.633333pt;}
.yf3{bottom:140.826667pt;}
.y9e{bottom:143.760000pt;}
.yb5{bottom:147.266667pt;}
.y46{bottom:148.036000pt;}
.y3e{bottom:148.066667pt;}
.ye{bottom:160.066667pt;}
.y9d{bottom:162.200000pt;}
.yb4{bottom:165.666667pt;}
.y72{bottom:166.188000pt;}
.y45{bottom:166.436000pt;}
.y3d{bottom:166.466667pt;}
.yd3{bottom:171.266667pt;}
.yf2{bottom:175.000000pt;}
.yd{bottom:178.466667pt;}
.y9c{bottom:180.600000pt;}
.yb3{bottom:184.066667pt;}
.y71{bottom:184.588000pt;}
.y3c{bottom:184.866667pt;}
.yd2{bottom:189.666667pt;}
.yf1{bottom:194.200000pt;}
.y3b{bottom:203.266667pt;}
.yd1{bottom:208.066667pt;}
.y4a{bottom:211.897333pt;}
.yf0{bottom:212.600000pt;}
.y9b{bottom:217.666667pt;}
.yb2{bottom:220.866667pt;}
.y79{bottom:221.400000pt;}
.y70{bottom:221.654667pt;}
.y3a{bottom:221.666667pt;}
.yef{bottom:231.000000pt;}
.y4d{bottom:239.800000pt;}
.y6f{bottom:240.058667pt;}
.y39{bottom:240.066667pt;}
.y9a{bottom:240.333333pt;}
.yd0{bottom:244.866667pt;}
.y78{bottom:258.200000pt;}
.y6e{bottom:258.462667pt;}
.y38{bottom:258.466667pt;}
.y99{bottom:262.733333pt;}
.ycf{bottom:263.266667pt;}
.yee{bottom:267.800000pt;}
.yc{bottom:268.066667pt;}
.y77{bottom:276.600000pt;}
.y37{bottom:276.866667pt;}
.yce{bottom:281.666667pt;}
.y98{bottom:285.400000pt;}
.yed{bottom:286.200000pt;}
.y76{bottom:295.000000pt;}
.y36{bottom:295.266667pt;}
.y6d{bottom:295.270667pt;}
.ycd{bottom:300.093333pt;}
.yb{bottom:302.506667pt;}
.yec{bottom:304.626667pt;}
.y97{bottom:307.840000pt;}
.y75{bottom:313.440000pt;}
.y6c{bottom:313.674667pt;}
.y35{bottom:313.693333pt;}
.yeb{bottom:323.026667pt;}
.y96{bottom:330.493333pt;}
.yb1{bottom:331.840000pt;}
.y6b{bottom:332.078667pt;}
.y41{bottom:332.106667pt;}
.ya{bottom:336.640000pt;}
.ycc{bottom:336.893333pt;}
.yb0{bottom:350.226667pt;}
.y6a{bottom:350.482667pt;}
.y31{bottom:350.506667pt;}
.y95{bottom:352.893333pt;}
.ycb{bottom:355.293333pt;}
.yea{bottom:357.440000pt;}
.yaf{bottom:368.626667pt;}
.y69{bottom:368.886667pt;}
.y30{bottom:368.893333pt;}
.yca{bottom:373.693333pt;}
.y94{bottom:375.560000pt;}
.ye9{bottom:375.840000pt;}
.y7c{bottom:387.026667pt;}
.y2f{bottom:387.293333pt;}
.yc9{bottom:392.106667pt;}
.ye8{bottom:394.226667pt;}
.y7b{bottom:405.440000pt;}
.y68{bottom:405.700000pt;}
.y2e{bottom:405.706667pt;}
.y93{bottom:412.626667pt;}
.y7a{bottom:423.840000pt;}
.y2d{bottom:424.106667pt;}
.y67{bottom:424.109333pt;}
.yc8{bottom:428.893333pt;}
.ye7{bottom:431.040000pt;}
.y92{bottom:435.293333pt;}
.y9{bottom:439.840000pt;}
.y7e{bottom:442.226667pt;}
.y2c{bottom:442.506667pt;}
.y66{bottom:442.518667pt;}
.yc7{bottom:447.333333pt;}
.ye6{bottom:449.466667pt;}
.y91{bottom:457.733333pt;}
.y7d{bottom:460.666667pt;}
.y65{bottom:460.928000pt;}
.y2b{bottom:460.933333pt;}
.y8{bottom:474.533333pt;}
.y2a{bottom:479.333333pt;}
.y90{bottom:480.400000pt;}
.ye5{bottom:483.333333pt;}
.yc6{bottom:484.133333pt;}
.y7{bottom:492.933333pt;}
.yae{bottom:497.466667pt;}
.y64{bottom:497.728000pt;}
.y29{bottom:497.733333pt;}
.ye4{bottom:501.733333pt;}
.yc5{bottom:502.533333pt;}
.y6{bottom:511.333333pt;}
.y4c{bottom:515.866667pt;}
.y63{bottom:516.130667pt;}
.y28{bottom:516.133333pt;}
.y8f{bottom:517.466667pt;}
.ye3{bottom:520.133333pt;}
.yc4{bottom:520.933333pt;}
.y80{bottom:534.266667pt;}
.y27{bottom:534.533333pt;}
.yc3{bottom:539.333333pt;}
.y8e{bottom:540.133333pt;}
.y7f{bottom:552.666667pt;}
.y26{bottom:552.933333pt;}
.y62{bottom:552.936000pt;}
.ye2{bottom:557.466667pt;}
.y8d{bottom:562.533333pt;}
.yad{bottom:571.066667pt;}
.y25{bottom:571.333333pt;}
.y61{bottom:571.338667pt;}
.ye1{bottom:575.866667pt;}
.y8c{bottom:585.200000pt;}
.yac{bottom:589.466667pt;}
.y24{bottom:589.733333pt;}
.y60{bottom:589.741333pt;}
.yc2{bottom:592.666667pt;}
.ye0{bottom:594.266667pt;}
.y8b{bottom:607.640000pt;}
.y44{bottom:607.893333pt;}
.y5f{bottom:608.144000pt;}
.y23{bottom:608.160000pt;}
.yc1{bottom:611.093333pt;}
.y5{bottom:614.560000pt;}
.yab{bottom:626.293333pt;}
.y5e{bottom:626.546667pt;}
.y22{bottom:626.560000pt;}
.yc0{bottom:629.493333pt;}
.y8a{bottom:630.826667pt;}
.ydf{bottom:631.106667pt;}
.y43{bottom:644.693333pt;}
.y5d{bottom:644.949333pt;}
.y21{bottom:644.973333pt;}
.y105{bottom:647.360000pt;}
.ybf{bottom:647.893333pt;}
.y4{bottom:648.960000pt;}
.yde{bottom:649.506667pt;}
.y89{bottom:663.093333pt;}
.y5c{bottom:663.352000pt;}
.y20{bottom:663.360000pt;}
.y104{bottom:665.773333pt;}
.y3{bottom:667.360000pt;}
.ydd{bottom:668.693333pt;}
.y88{bottom:681.506667pt;}
.y1f{bottom:681.760000pt;}
.y103{bottom:684.173333pt;}
.ydc{bottom:687.093333pt;}
.yaa{bottom:699.373333pt;}
.y5b{bottom:700.165333pt;}
.y1e{bottom:700.173333pt;}
.y2{bottom:701.773333pt;}
.ydb{bottom:705.506667pt;}
.ya9{bottom:717.760000pt;}
.y1d{bottom:718.560000pt;}
.y5a{bottom:718.570667pt;}
.y1{bottom:720.173333pt;}
.y102{bottom:720.960000pt;}
.yda{bottom:723.893333pt;}
.y1c{bottom:736.960000pt;}
.y59{bottom:736.976000pt;}
.y101{bottom:739.373333pt;}
.ya8{bottom:754.600000pt;}
.ya1{bottom:755.133333pt;}
.y58{bottom:755.381333pt;}
.y1b{bottom:755.400000pt;}
.ybe{bottom:755.933333pt;}
.y100{bottom:757.800000pt;}
.yd9{bottom:758.333333pt;}
.y57{bottom:773.786667pt;}
.y1a{bottom:773.800000pt;}
.ybd{bottom:774.333333pt;}
.yd8{bottom:776.733333pt;}
.y4b{bottom:791.933333pt;}
.y56{bottom:792.192000pt;}
.y19{bottom:792.200000pt;}
.ybc{bottom:792.733333pt;}
.yff{bottom:794.600000pt;}
.yd7{bottom:795.133333pt;}
.y55{bottom:810.597333pt;}
.y18{bottom:810.600000pt;}
.ya7{bottom:811.133333pt;}
.yfe{bottom:813.000000pt;}
.yd6{bottom:813.533333pt;}
.y74{bottom:828.733333pt;}
.y17{bottom:829.000000pt;}
.y54{bottom:829.002667pt;}
.ya6{bottom:829.533333pt;}
.yfd{bottom:831.400000pt;}
.yd5{bottom:831.933333pt;}
.y73{bottom:847.133333pt;}
.y87{bottom:847.398667pt;}
.y16{bottom:847.400000pt;}
.y53{bottom:847.408000pt;}
.ybb{bottom:847.933333pt;}
.yfc{bottom:849.800000pt;}
.y15{bottom:865.800000pt;}
.y86{bottom:865.802667pt;}
.y52{bottom:865.813333pt;}
.ya5{bottom:866.333333pt;}
.yfb{bottom:868.200000pt;}
.y14{bottom:884.200000pt;}
.y85{bottom:884.206667pt;}
.y51{bottom:884.218667pt;}
.ya4{bottom:884.733333pt;}
.yfa{bottom:886.600000pt;}
.ya2{bottom:902.373333pt;}
.y84{bottom:902.610667pt;}
.y50{bottom:902.624000pt;}
.y13{bottom:902.626667pt;}
.ya3{bottom:903.173333pt;}
.yf9{bottom:905.026667pt;}
.y83{bottom:921.014667pt;}
.y4f{bottom:921.029333pt;}
.y12{bottom:921.040000pt;}
.yba{bottom:921.560000pt;}
.yf8{bottom:923.440000pt;}
.y82{bottom:939.418667pt;}
.y4e{bottom:939.434667pt;}
.y11{bottom:939.440000pt;}
.yd4{bottom:939.960000pt;}
.yf7{bottom:941.840000pt;}
.y81{bottom:957.822667pt;}
.y34{bottom:957.840000pt;}
.yb9{bottom:958.373333pt;}
.yf6{bottom:960.226667pt;}
.y10{bottom:975.960000pt;}
.y33{bottom:976.226667pt;}
.yb8{bottom:976.773333pt;}
.yf{bottom:994.626667pt;}
.yb7{bottom:995.173333pt;}
.y42{bottom:1012.773333pt;}
.y32{bottom:1013.026667pt;}
.yb6{bottom:1013.560000pt;}
.h9{height:33.351562pt;}
.h3{height:45.750000pt;}
.ha{height:52.750000pt;}
.h6{height:56.843750pt;}
.h5{height:57.375000pt;}
.hd{height:58.388333pt;}
.he{height:62.781250pt;}
.h2{height:62.812500pt;}
.hb{height:63.380000pt;}
.h4{height:63.825833pt;}
.hc{height:63.879167pt;}
.h8{height:64.500000pt;}
.h7{height:65.781915pt;}
.h10{height:65.959167pt;}
.hf{height:66.012500pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:69.100000pt;}
.x12{left:81.100000pt;}
.x11{left:93.100000pt;}
.x10{left:101.100000pt;}
.xf{left:113.100000pt;}
.x14{left:113.993333pt;}
.x6{left:117.366667pt;}
.x7{left:127.500000pt;}
.x8{left:138.973333pt;}
.x5{left:179.000000pt;}
.x3{left:230.733333pt;}
.x1{left:243.800000pt;}
.xa{left:280.373333pt;}
.x9{left:300.360000pt;}
.x4{left:304.626667pt;}
.xc{left:311.306667pt;}
.xb{left:330.506667pt;}
.xd{left:338.574667pt;}
.xe{left:363.306667pt;}
.x2{left:364.360000pt;}
}




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