
    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_4aa2f14529c51602b4ea0cff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_2e3242f96e0e1fcfc200de37.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_598717485379a17dc3d0a361.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_84a2a3799e162bafe4952b5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_4d7d734f1dad8ff69fc9d035.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_27c7c7f265e4e5669483c379.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_9932646b0e77793eba7bc141.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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;}
.m2{transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229168,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1e{letter-spacing:-2.214000px;}
.ls1f{letter-spacing:-2.106000px;}
.ls18{letter-spacing:-1.494000px;}
.ls22{letter-spacing:-1.080000px;}
.ls4{letter-spacing:-0.774000px;}
.ls20{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.460200px;}
.ls16{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.240600px;}
.ls13{letter-spacing:-0.206400px;}
.ls17{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.109440px;}
.ls12{letter-spacing:0.163800px;}
.lsd{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206640px;}
.ls14{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.471000px;}
.ls1d{letter-spacing:0.508200px;}
.ls19{letter-spacing:0.545400px;}
.lse{letter-spacing:0.562800px;}
.ls10{letter-spacing:0.582600px;}
.ls5{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.900000px;}
.ls1a{letter-spacing:0.942000px;}
.ls21{letter-spacing:13.860000px;}
.ls2{letter-spacing:17.460000px;}
.lsa{letter-spacing:24.654240px;}
.ls11{letter-spacing:27.540000px;}
.lsc{letter-spacing:28.260000px;}
.ls1b{letter-spacing:45.540000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.199800px;}
.ws4{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsf{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.wse{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.479800px;}
.ws5{word-spacing:-14.166000px;}
.ws13{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.446000px;}
.ws12{word-spacing:-12.834000px;}
.ws11{word-spacing:-12.726000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._4{margin-left:-1171.774080px;}
._5{margin-left:-1166.086080px;}
._30{margin-left:-7.609440px;}
._17{margin-left:-5.063280px;}
._14{margin-left:-3.184800px;}
._7{margin-left:-2.141040px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._6{width:2.768640px;}
._c{width:4.381200px;}
._d{width:5.744880px;}
._e{width:6.782880px;}
._12{width:8.343600px;}
._8{width:9.352320px;}
._9{width:10.414080px;}
._b{width:12.289440px;}
._a{width:13.590720px;}
._1d{width:16.339200px;}
._10{width:17.569440px;}
._f{width:18.704880px;}
._21{width:19.808880px;}
._16{width:20.949360px;}
._26{width:22.170960px;}
._13{width:23.358960px;}
._15{width:25.060800px;}
._1e{width:26.234640px;}
._23{width:27.668880px;}
._2f{width:29.677920px;}
._2e{width:31.231680px;}
._1b{width:32.653440px;}
._1c{width:34.840080px;}
._11{width:36.204000px;}
._29{width:37.566240px;}
._20{width:38.784240px;}
._19{width:40.278240px;}
._18{width:41.988480px;}
._25{width:45.512160px;}
._28{width:49.757280px;}
._27{width:51.513120px;}
._1a{width:58.543440px;}
._1f{width:59.801520px;}
._24{width:70.135440px;}
._22{width:71.532720px;}
._2b{width:87.244800px;}
._2d{width:124.916160px;}
._2a{width:128.976720px;}
._2c{width:203.068080px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,78,154);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs7{font-size:9.360000px;}
.fs9{font-size:18.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:5.760000px;}
.y7{bottom:5.940000px;}
.y3c{bottom:10.980000px;}
.y9{bottom:11.160000px;}
.y3b{bottom:11.700000px;}
.y8{bottom:11.880000px;}
.ya{bottom:57.420000px;}
.y3d{bottom:63.720000px;}
.y39{bottom:64.620000px;}
.y6{bottom:72.720000px;}
.yda{bottom:92.736000px;}
.y6a{bottom:93.996000px;}
.y88{bottom:94.536000px;}
.yac{bottom:97.236000px;}
.y36{bottom:105.336000px;}
.y128{bottom:106.416000px;}
.yf9{bottom:107.856000px;}
.yc3{bottom:109.476000px;}
.yd9{bottom:112.716000px;}
.y69{bottom:113.796000px;}
.y87{bottom:114.336000px;}
.yab{bottom:117.036000px;}
.y35{bottom:125.136000px;}
.y127{bottom:126.216000px;}
.yf8{bottom:127.656000px;}
.yc2{bottom:129.276000px;}
.yd8{bottom:132.516000px;}
.y68{bottom:133.596000px;}
.y86{bottom:134.136000px;}
.yaa{bottom:136.836000px;}
.y34{bottom:144.936000px;}
.y9f{bottom:145.116000px;}
.y126{bottom:146.196000px;}
.yf7{bottom:147.636000px;}
.yc1{bottom:149.076000px;}
.yd7{bottom:152.310000px;}
.y67{bottom:153.390000px;}
.y85{bottom:154.110000px;}
.ya9{bottom:156.810000px;}
.y33{bottom:164.730000px;}
.y9e{bottom:164.910000px;}
.y125{bottom:165.990000px;}
.yf6{bottom:167.430000px;}
.yc0{bottom:168.870000px;}
.yd6{bottom:172.110000px;}
.y66{bottom:173.190000px;}
.y84{bottom:173.910000px;}
.ya8{bottom:176.610000px;}
.y32{bottom:184.530000px;}
.y9d{bottom:184.710000px;}
.y124{bottom:185.790000px;}
.yf5{bottom:187.230000px;}
.ybf{bottom:188.670000px;}
.yd5{bottom:191.910000px;}
.y65{bottom:193.170000px;}
.y83{bottom:193.710000px;}
.ya7{bottom:196.410000px;}
.y31{bottom:204.510000px;}
.y123{bottom:205.590000px;}
.yf4{bottom:207.030000px;}
.ybe{bottom:208.650000px;}
.yd4{bottom:211.890000px;}
.y64{bottom:212.970000px;}
.y82{bottom:213.510000px;}
.ya6{bottom:216.210000px;}
.y30{bottom:224.310000px;}
.y122{bottom:225.390000px;}
.yf3{bottom:226.830000px;}
.ybd{bottom:228.450000px;}
.yd3{bottom:231.690000px;}
.y63{bottom:232.770000px;}
.y81{bottom:233.310000px;}
.y2f{bottom:244.110000px;}
.y9c{bottom:244.290000px;}
.y121{bottom:245.370000px;}
.yf2{bottom:246.810000px;}
.ybc{bottom:248.250000px;}
.yd2{bottom:251.490000px;}
.y62{bottom:252.570000px;}
.y80{bottom:253.290000px;}
.y2e{bottom:263.910000px;}
.y9b{bottom:264.090000px;}
.ybb{bottom:264.810000px;}
.y120{bottom:265.170000px;}
.yf1{bottom:266.610000px;}
.yd1{bottom:271.290000px;}
.y61{bottom:272.370000px;}
.y7f{bottom:273.090000px;}
.y2d{bottom:283.710000px;}
.y9a{bottom:283.890000px;}
.y11f{bottom:284.970000px;}
.yf0{bottom:286.410000px;}
.yd0{bottom:291.090000px;}
.y60{bottom:292.350000px;}
.y7e{bottom:292.890000px;}
.y2c{bottom:303.690000px;}
.y11e{bottom:304.770000px;}
.yef{bottom:306.210000px;}
.ycf{bottom:307.650000px;}
.y5f{bottom:312.150000px;}
.y7d{bottom:312.690000px;}
.y2b{bottom:323.490000px;}
.y11d{bottom:324.570000px;}
.yee{bottom:326.010000px;}
.y5e{bottom:331.950000px;}
.y7c{bottom:332.490000px;}
.y2a{bottom:343.335000px;}
.y99{bottom:343.515000px;}
.y11c{bottom:344.595000px;}
.yed{bottom:346.035000px;}
.y7b{bottom:352.515000px;}
.y5d{bottom:360.795000px;}
.y29{bottom:363.135000px;}
.y98{bottom:363.315000px;}
.y11b{bottom:364.395000px;}
.yec{bottom:365.835000px;}
.y7a{bottom:372.315000px;}
.y5c{bottom:380.595000px;}
.y28{bottom:382.935000px;}
.y97{bottom:383.115000px;}
.y11a{bottom:384.195000px;}
.yeb{bottom:385.635000px;}
.y79{bottom:392.115000px;}
.y5b{bottom:400.575000px;}
.y27{bottom:402.915000px;}
.y119{bottom:403.995000px;}
.yea{bottom:405.435000px;}
.y78{bottom:411.915000px;}
.y5a{bottom:420.375000px;}
.y26{bottom:422.715000px;}
.y118{bottom:423.795000px;}
.ye9{bottom:425.235000px;}
.y77{bottom:431.715000px;}
.y59{bottom:441.075000px;}
.y25{bottom:442.515000px;}
.y96{bottom:442.695000px;}
.y117{bottom:443.775000px;}
.ye8{bottom:445.215000px;}
.ya5{bottom:448.815000px;}
.y76{bottom:451.695000px;}
.ya4{bottom:456.195000px;}
.y58{bottom:461.235000px;}
.y24{bottom:462.315000px;}
.y95{bottom:462.495000px;}
.y116{bottom:463.575000px;}
.ye7{bottom:465.015000px;}
.y75{bottom:471.495000px;}
.ya3{bottom:475.995000px;}
.y57{bottom:481.935000px;}
.y23{bottom:482.115000px;}
.y94{bottom:482.295000px;}
.y115{bottom:483.375000px;}
.ye6{bottom:484.815000px;}
.yba{bottom:487.155000px;}
.y74{bottom:491.295000px;}
.yb9{bottom:495.075000px;}
.ya2{bottom:495.795000px;}
.yce{bottom:501.735000px;}
.y22{bottom:502.095000px;}
.y114{bottom:503.175000px;}
.ye5{bottom:504.615000px;}
.ycd{bottom:508.935000px;}
.y73{bottom:511.095000px;}
.yb8{bottom:514.875000px;}
.ya1{bottom:515.595000px;}
.y21{bottom:521.895000px;}
.y113{bottom:522.975000px;}
.ye4{bottom:524.415000px;}
.ycc{bottom:528.735000px;}
.y72{bottom:530.895000px;}
.ya0{bottom:532.155000px;}
.yb7{bottom:534.675000px;}
.y20{bottom:541.695000px;}
.y56{bottom:541.875000px;}
.y112{bottom:542.955000px;}
.ye3{bottom:544.395000px;}
.ycb{bottom:548.535000px;}
.y71{bottom:550.875000px;}
.yb6{bottom:554.655000px;}
.y1f{bottom:560.955000px;}
.y55{bottom:561.675000px;}
.y111{bottom:562.755000px;}
.ye2{bottom:564.195000px;}
.yca{bottom:568.335000px;}
.y70{bottom:570.675000px;}
.yb5{bottom:571.215000px;}
.y1e{bottom:579.315000px;}
.y54{bottom:581.475000px;}
.y110{bottom:582.585000px;}
.ye1{bottom:584.025000px;}
.yc9{bottom:585.105000px;}
.y6f{bottom:590.505000px;}
.y1d{bottom:594.285000px;}
.ye0{bottom:600.585000px;}
.y53{bottom:601.305000px;}
.y10f{bottom:602.385000px;}
.y1c{bottom:604.545000px;}
.y6e{bottom:610.305000px;}
.y52{bottom:621.105000px;}
.y10e{bottom:622.185000px;}
.y1b{bottom:624.345000px;}
.y6d{bottom:630.105000px;}
.y51{bottom:641.085000px;}
.y10d{bottom:642.165000px;}
.y1a{bottom:644.145000px;}
.y6c{bottom:650.085000px;}
.y50{bottom:660.885000px;}
.y10c{bottom:661.965000px;}
.y19{bottom:663.945000px;}
.y6b{bottom:669.885000px;}
.y93{bottom:680.685000px;}
.y10b{bottom:681.765000px;}
.y18{bottom:683.745000px;}
.y4f{bottom:689.685000px;}
.y92{bottom:700.485000px;}
.y10a{bottom:701.565000px;}
.y17{bottom:703.725000px;}
.y4e{bottom:709.485000px;}
.y91{bottom:720.285000px;}
.y109{bottom:721.365000px;}
.y16{bottom:723.525000px;}
.y4d{bottom:729.285000px;}
.y90{bottom:740.265000px;}
.y108{bottom:741.345000px;}
.y15{bottom:743.325000px;}
.y4c{bottom:749.265000px;}
.yb4{bottom:756.105000px;}
.y8f{bottom:760.065000px;}
.y107{bottom:761.145000px;}
.y14{bottom:763.125000px;}
.yb3{bottom:764.205000px;}
.yc8{bottom:767.805000px;}
.y4b{bottom:769.065000px;}
.yc7{bottom:775.725000px;}
.y8e{bottom:779.865000px;}
.y106{bottom:780.945000px;}
.yb2{bottom:784.005000px;}
.y13{bottom:785.265000px;}
.ydf{bottom:788.325000px;}
.y4a{bottom:788.865000px;}
.yc6{bottom:795.525000px;}
.yde{bottom:796.245000px;}
.y8d{bottom:799.665000px;}
.y105{bottom:800.745000px;}
.yb1{bottom:803.805000px;}
.y49{bottom:808.665000px;}
.y12{bottom:810.285000px;}
.yc5{bottom:815.505000px;}
.ydd{bottom:816.045000px;}
.y8c{bottom:819.465000px;}
.y104{bottom:820.545000px;}
.yb0{bottom:823.605000px;}
.y48{bottom:828.510000px;}
.y11{bottom:830.130000px;}
.yc4{bottom:832.110000px;}
.ydc{bottom:835.890000px;}
.y8b{bottom:839.490000px;}
.y103{bottom:840.570000px;}
.yaf{bottom:843.450000px;}
.y47{bottom:848.490000px;}
.y10{bottom:849.930000px;}
.ydb{bottom:852.630000px;}
.y8a{bottom:859.290000px;}
.yae{bottom:860.190000px;}
.y102{bottom:860.370000px;}
.yf{bottom:865.230000px;}
.y46{bottom:868.290000px;}
.y89{bottom:879.090000px;}
.y101{bottom:880.170000px;}
.ye{bottom:884.310000px;}
.y45{bottom:888.090000px;}
.yd{bottom:897.270000px;}
.y100{bottom:899.970000px;}
.y44{bottom:907.890000px;}
.yc{bottom:915.810000px;}
.yff{bottom:919.770000px;}
.y43{bottom:927.690000px;}
.yfe{bottom:939.750000px;}
.yb{bottom:947.670000px;}
.yfd{bottom:960.090000px;}
.y42{bottom:967.470000px;}
.y5{bottom:975.750000px;}
.yfc{bottom:981.870000px;}
.y41{bottom:987.270000px;}
.yfb{bottom:1003.650000px;}
.y4{bottom:1007.070000px;}
.yfa{bottom:1025.430000px;}
.y40{bottom:1026.870000px;}
.y3{bottom:1037.850000px;}
.y3f{bottom:1046.850000px;}
.yad{bottom:1059.450000px;}
.y3e{bottom:1066.650000px;}
.y2{bottom:1068.810000px;}
.y38{bottom:1096.020000px;}
.y1{bottom:1102.680000px;}
.y37{bottom:1117.980000px;}
.h13{height:4.064063px;}
.hc{height:6.535547px;}
.h14{height:6.604102px;}
.h10{height:21.240000px;}
.h4{height:21.456000px;}
.h9{height:27.147656px;}
.h6{height:27.432422px;}
.h5{height:29.464453px;}
.hd{height:37.705078px;}
.he{height:38.100586px;}
.hf{height:39.313477px;}
.h3{height:41.726953px;}
.ha{height:42.164648px;}
.h11{height:43.506914px;}
.h7{height:46.251562px;}
.h2{height:46.736719px;}
.hb{height:49.255313px;}
.h8{height:53.224453px;}
.h12{height:59.439023px;}
.h1{height:67.565039px;}
.h0{height:1188.000000px;}
.w2{width:59.616000px;}
.w3{width:741.030000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179986px;}
.x23{left:57.779986px;}
.x1a{left:59.039986px;}
.x2{left:62.100000px;}
.x10{left:63.539986px;}
.x11{left:65.159986px;}
.x17{left:68.399986px;}
.x1b{left:70.199986px;}
.x18{left:72.539986px;}
.x1d{left:75.239986px;}
.x19{left:76.319986px;}
.x9{left:78.479986px;}
.x22{left:79.559986px;}
.x21{left:80.819986px;}
.x36{left:84.779986px;}
.x1c{left:86.075986px;}
.x15{left:88.595986px;}
.x2b{left:89.675986px;}
.x2e{left:93.815986px;}
.x2c{left:96.335986px;}
.x3a{left:102.275986px;}
.x38{left:107.135986px;}
.x4{left:122.436000px;}
.xa{left:202.349986px;}
.xc{left:218.909986px;}
.xd{left:235.109986px;}
.xf{left:238.889986px;}
.xe{left:258.509986px;}
.x8{left:390.849000px;}
.x7{left:395.889000px;}
.x2d{left:404.534986px;}
.x16{left:411.914986px;}
.x37{left:413.894986px;}
.x2a{left:419.834986px;}
.x6{left:436.389000px;}
.x5{left:449.889000px;}
.xb{left:459.104986px;}
.x12{left:486.104986px;}
.x24{left:495.644986px;}
.x13{left:496.724986px;}
.x1e{left:500.504986px;}
.x1f{left:505.724986px;}
.x25{left:507.164986px;}
.x14{left:508.244986px;}
.x20{left:513.644986px;}
.x2f{left:518.144986px;}
.x26{left:521.564986px;}
.x33{left:523.544986px;}
.x27{left:528.404986px;}
.x34{left:529.484986px;}
.x30{left:530.924986px;}
.x39{left:534.344986px;}
.x31{left:539.024986px;}
.x32{left:836.279986px;}
.x35{left:846.179986px;}
.x28{left:852.659986px;}
.x29{left:853.919986px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1e{letter-spacing:-1.968000pt;}
.ls1f{letter-spacing:-1.872000pt;}
.ls18{letter-spacing:-1.328000pt;}
.ls22{letter-spacing:-0.960000pt;}
.ls4{letter-spacing:-0.688000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.409067pt;}
.ls16{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.213867pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.097280pt;}
.ls12{letter-spacing:0.145600pt;}
.lsd{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183680pt;}
.ls14{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.418667pt;}
.ls1d{letter-spacing:0.451733pt;}
.ls19{letter-spacing:0.484800pt;}
.lse{letter-spacing:0.500267pt;}
.ls10{letter-spacing:0.517867pt;}
.ls5{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.837333pt;}
.ls21{letter-spacing:12.320000pt;}
.ls2{letter-spacing:15.520000pt;}
.lsa{letter-spacing:21.914880pt;}
.ls11{letter-spacing:24.480000pt;}
.lsc{letter-spacing:25.120000pt;}
.ls1b{letter-spacing:40.480000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsf{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.870933pt;}
.ws5{word-spacing:-12.592000pt;}
.ws13{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.952000pt;}
.ws12{word-spacing:-11.408000pt;}
.ws11{word-spacing:-11.312000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._4{margin-left:-1041.576960pt;}
._5{margin-left:-1036.520960pt;}
._30{margin-left:-6.763947pt;}
._17{margin-left:-4.500693pt;}
._14{margin-left:-2.830933pt;}
._7{margin-left:-1.903147pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._6{width:2.461013pt;}
._c{width:3.894400pt;}
._d{width:5.106560pt;}
._e{width:6.029227pt;}
._12{width:7.416533pt;}
._8{width:8.313173pt;}
._9{width:9.256960pt;}
._b{width:10.923947pt;}
._a{width:12.080640pt;}
._1d{width:14.523733pt;}
._10{width:15.617280pt;}
._f{width:16.626560pt;}
._21{width:17.607893pt;}
._16{width:18.621653pt;}
._26{width:19.707520pt;}
._13{width:20.763520pt;}
._15{width:22.276267pt;}
._1e{width:23.319680pt;}
._23{width:24.594560pt;}
._2f{width:26.380373pt;}
._2e{width:27.761493pt;}
._1b{width:29.025280pt;}
._1c{width:30.968960pt;}
._11{width:32.181333pt;}
._29{width:33.392213pt;}
._20{width:34.474880pt;}
._19{width:35.802880pt;}
._18{width:37.323093pt;}
._25{width:40.455253pt;}
._28{width:44.228693pt;}
._27{width:45.789440pt;}
._1a{width:52.038613pt;}
._1f{width:53.156907pt;}
._24{width:62.342613pt;}
._22{width:63.584640pt;}
._2b{width:77.550933pt;}
._2d{width:111.036587pt;}
._2a{width:114.645973pt;}
._2c{width:180.504960pt;}
.fsa{font-size:5.120000pt;}
.fs7{font-size:8.320000pt;}
.fs9{font-size:16.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:5.120000pt;}
.y7{bottom:5.280000pt;}
.y3c{bottom:9.760000pt;}
.y9{bottom:9.920000pt;}
.y3b{bottom:10.400000pt;}
.y8{bottom:10.560000pt;}
.ya{bottom:51.040000pt;}
.y3d{bottom:56.640000pt;}
.y39{bottom:57.440000pt;}
.y6{bottom:64.640000pt;}
.yda{bottom:82.432000pt;}
.y6a{bottom:83.552000pt;}
.y88{bottom:84.032000pt;}
.yac{bottom:86.432000pt;}
.y36{bottom:93.632000pt;}
.y128{bottom:94.592000pt;}
.yf9{bottom:95.872000pt;}
.yc3{bottom:97.312000pt;}
.yd9{bottom:100.192000pt;}
.y69{bottom:101.152000pt;}
.y87{bottom:101.632000pt;}
.yab{bottom:104.032000pt;}
.y35{bottom:111.232000pt;}
.y127{bottom:112.192000pt;}
.yf8{bottom:113.472000pt;}
.yc2{bottom:114.912000pt;}
.yd8{bottom:117.792000pt;}
.y68{bottom:118.752000pt;}
.y86{bottom:119.232000pt;}
.yaa{bottom:121.632000pt;}
.y34{bottom:128.832000pt;}
.y9f{bottom:128.992000pt;}
.y126{bottom:129.952000pt;}
.yf7{bottom:131.232000pt;}
.yc1{bottom:132.512000pt;}
.yd7{bottom:135.386667pt;}
.y67{bottom:136.346667pt;}
.y85{bottom:136.986667pt;}
.ya9{bottom:139.386667pt;}
.y33{bottom:146.426667pt;}
.y9e{bottom:146.586667pt;}
.y125{bottom:147.546667pt;}
.yf6{bottom:148.826667pt;}
.yc0{bottom:150.106667pt;}
.yd6{bottom:152.986667pt;}
.y66{bottom:153.946667pt;}
.y84{bottom:154.586667pt;}
.ya8{bottom:156.986667pt;}
.y32{bottom:164.026667pt;}
.y9d{bottom:164.186667pt;}
.y124{bottom:165.146667pt;}
.yf5{bottom:166.426667pt;}
.ybf{bottom:167.706667pt;}
.yd5{bottom:170.586667pt;}
.y65{bottom:171.706667pt;}
.y83{bottom:172.186667pt;}
.ya7{bottom:174.586667pt;}
.y31{bottom:181.786667pt;}
.y123{bottom:182.746667pt;}
.yf4{bottom:184.026667pt;}
.ybe{bottom:185.466667pt;}
.yd4{bottom:188.346667pt;}
.y64{bottom:189.306667pt;}
.y82{bottom:189.786667pt;}
.ya6{bottom:192.186667pt;}
.y30{bottom:199.386667pt;}
.y122{bottom:200.346667pt;}
.yf3{bottom:201.626667pt;}
.ybd{bottom:203.066667pt;}
.yd3{bottom:205.946667pt;}
.y63{bottom:206.906667pt;}
.y81{bottom:207.386667pt;}
.y2f{bottom:216.986667pt;}
.y9c{bottom:217.146667pt;}
.y121{bottom:218.106667pt;}
.yf2{bottom:219.386667pt;}
.ybc{bottom:220.666667pt;}
.yd2{bottom:223.546667pt;}
.y62{bottom:224.506667pt;}
.y80{bottom:225.146667pt;}
.y2e{bottom:234.586667pt;}
.y9b{bottom:234.746667pt;}
.ybb{bottom:235.386667pt;}
.y120{bottom:235.706667pt;}
.yf1{bottom:236.986667pt;}
.yd1{bottom:241.146667pt;}
.y61{bottom:242.106667pt;}
.y7f{bottom:242.746667pt;}
.y2d{bottom:252.186667pt;}
.y9a{bottom:252.346667pt;}
.y11f{bottom:253.306667pt;}
.yf0{bottom:254.586667pt;}
.yd0{bottom:258.746667pt;}
.y60{bottom:259.866667pt;}
.y7e{bottom:260.346667pt;}
.y2c{bottom:269.946667pt;}
.y11e{bottom:270.906667pt;}
.yef{bottom:272.186667pt;}
.ycf{bottom:273.466667pt;}
.y5f{bottom:277.466667pt;}
.y7d{bottom:277.946667pt;}
.y2b{bottom:287.546667pt;}
.y11d{bottom:288.506667pt;}
.yee{bottom:289.786667pt;}
.y5e{bottom:295.066667pt;}
.y7c{bottom:295.546667pt;}
.y2a{bottom:305.186667pt;}
.y99{bottom:305.346667pt;}
.y11c{bottom:306.306667pt;}
.yed{bottom:307.586667pt;}
.y7b{bottom:313.346667pt;}
.y5d{bottom:320.706667pt;}
.y29{bottom:322.786667pt;}
.y98{bottom:322.946667pt;}
.y11b{bottom:323.906667pt;}
.yec{bottom:325.186667pt;}
.y7a{bottom:330.946667pt;}
.y5c{bottom:338.306667pt;}
.y28{bottom:340.386667pt;}
.y97{bottom:340.546667pt;}
.y11a{bottom:341.506667pt;}
.yeb{bottom:342.786667pt;}
.y79{bottom:348.546667pt;}
.y5b{bottom:356.066667pt;}
.y27{bottom:358.146667pt;}
.y119{bottom:359.106667pt;}
.yea{bottom:360.386667pt;}
.y78{bottom:366.146667pt;}
.y5a{bottom:373.666667pt;}
.y26{bottom:375.746667pt;}
.y118{bottom:376.706667pt;}
.ye9{bottom:377.986667pt;}
.y77{bottom:383.746667pt;}
.y59{bottom:392.066667pt;}
.y25{bottom:393.346667pt;}
.y96{bottom:393.506667pt;}
.y117{bottom:394.466667pt;}
.ye8{bottom:395.746667pt;}
.ya5{bottom:398.946667pt;}
.y76{bottom:401.506667pt;}
.ya4{bottom:405.506667pt;}
.y58{bottom:409.986667pt;}
.y24{bottom:410.946667pt;}
.y95{bottom:411.106667pt;}
.y116{bottom:412.066667pt;}
.ye7{bottom:413.346667pt;}
.y75{bottom:419.106667pt;}
.ya3{bottom:423.106667pt;}
.y57{bottom:428.386667pt;}
.y23{bottom:428.546667pt;}
.y94{bottom:428.706667pt;}
.y115{bottom:429.666667pt;}
.ye6{bottom:430.946667pt;}
.yba{bottom:433.026667pt;}
.y74{bottom:436.706667pt;}
.yb9{bottom:440.066667pt;}
.ya2{bottom:440.706667pt;}
.yce{bottom:445.986667pt;}
.y22{bottom:446.306667pt;}
.y114{bottom:447.266667pt;}
.ye5{bottom:448.546667pt;}
.ycd{bottom:452.386667pt;}
.y73{bottom:454.306667pt;}
.yb8{bottom:457.666667pt;}
.ya1{bottom:458.306667pt;}
.y21{bottom:463.906667pt;}
.y113{bottom:464.866667pt;}
.ye4{bottom:466.146667pt;}
.ycc{bottom:469.986667pt;}
.y72{bottom:471.906667pt;}
.ya0{bottom:473.026667pt;}
.yb7{bottom:475.266667pt;}
.y20{bottom:481.506667pt;}
.y56{bottom:481.666667pt;}
.y112{bottom:482.626667pt;}
.ye3{bottom:483.906667pt;}
.ycb{bottom:487.586667pt;}
.y71{bottom:489.666667pt;}
.yb6{bottom:493.026667pt;}
.y1f{bottom:498.626667pt;}
.y55{bottom:499.266667pt;}
.y111{bottom:500.226667pt;}
.ye2{bottom:501.506667pt;}
.yca{bottom:505.186667pt;}
.y70{bottom:507.266667pt;}
.yb5{bottom:507.746667pt;}
.y1e{bottom:514.946667pt;}
.y54{bottom:516.866667pt;}
.y110{bottom:517.853333pt;}
.ye1{bottom:519.133333pt;}
.yc9{bottom:520.093333pt;}
.y6f{bottom:524.893333pt;}
.y1d{bottom:528.253333pt;}
.ye0{bottom:533.853333pt;}
.y53{bottom:534.493333pt;}
.y10f{bottom:535.453333pt;}
.y1c{bottom:537.373333pt;}
.y6e{bottom:542.493333pt;}
.y52{bottom:552.093333pt;}
.y10e{bottom:553.053333pt;}
.y1b{bottom:554.973333pt;}
.y6d{bottom:560.093333pt;}
.y51{bottom:569.853333pt;}
.y10d{bottom:570.813333pt;}
.y1a{bottom:572.573333pt;}
.y6c{bottom:577.853333pt;}
.y50{bottom:587.453333pt;}
.y10c{bottom:588.413333pt;}
.y19{bottom:590.173333pt;}
.y6b{bottom:595.453333pt;}
.y93{bottom:605.053333pt;}
.y10b{bottom:606.013333pt;}
.y18{bottom:607.773333pt;}
.y4f{bottom:613.053333pt;}
.y92{bottom:622.653333pt;}
.y10a{bottom:623.613333pt;}
.y17{bottom:625.533333pt;}
.y4e{bottom:630.653333pt;}
.y91{bottom:640.253333pt;}
.y109{bottom:641.213333pt;}
.y16{bottom:643.133333pt;}
.y4d{bottom:648.253333pt;}
.y90{bottom:658.013333pt;}
.y108{bottom:658.973333pt;}
.y15{bottom:660.733333pt;}
.y4c{bottom:666.013333pt;}
.yb4{bottom:672.093333pt;}
.y8f{bottom:675.613333pt;}
.y107{bottom:676.573333pt;}
.y14{bottom:678.333333pt;}
.yb3{bottom:679.293333pt;}
.yc8{bottom:682.493333pt;}
.y4b{bottom:683.613333pt;}
.yc7{bottom:689.533333pt;}
.y8e{bottom:693.213333pt;}
.y106{bottom:694.173333pt;}
.yb2{bottom:696.893333pt;}
.y13{bottom:698.013333pt;}
.ydf{bottom:700.733333pt;}
.y4a{bottom:701.213333pt;}
.yc6{bottom:707.133333pt;}
.yde{bottom:707.773333pt;}
.y8d{bottom:710.813333pt;}
.y105{bottom:711.773333pt;}
.yb1{bottom:714.493333pt;}
.y49{bottom:718.813333pt;}
.y12{bottom:720.253333pt;}
.yc5{bottom:724.893333pt;}
.ydd{bottom:725.373333pt;}
.y8c{bottom:728.413333pt;}
.y104{bottom:729.373333pt;}
.yb0{bottom:732.093333pt;}
.y48{bottom:736.453333pt;}
.y11{bottom:737.893333pt;}
.yc4{bottom:739.653333pt;}
.ydc{bottom:743.013333pt;}
.y8b{bottom:746.213333pt;}
.y103{bottom:747.173333pt;}
.yaf{bottom:749.733333pt;}
.y47{bottom:754.213333pt;}
.y10{bottom:755.493333pt;}
.ydb{bottom:757.893333pt;}
.y8a{bottom:763.813333pt;}
.yae{bottom:764.613333pt;}
.y102{bottom:764.773333pt;}
.yf{bottom:769.093333pt;}
.y46{bottom:771.813333pt;}
.y89{bottom:781.413333pt;}
.y101{bottom:782.373333pt;}
.ye{bottom:786.053333pt;}
.y45{bottom:789.413333pt;}
.yd{bottom:797.573333pt;}
.y100{bottom:799.973333pt;}
.y44{bottom:807.013333pt;}
.yc{bottom:814.053333pt;}
.yff{bottom:817.573333pt;}
.y43{bottom:824.613333pt;}
.yfe{bottom:835.333333pt;}
.yb{bottom:842.373333pt;}
.yfd{bottom:853.413333pt;}
.y42{bottom:859.973333pt;}
.y5{bottom:867.333333pt;}
.yfc{bottom:872.773333pt;}
.y41{bottom:877.573333pt;}
.yfb{bottom:892.133333pt;}
.y4{bottom:895.173333pt;}
.yfa{bottom:911.493333pt;}
.y40{bottom:912.773333pt;}
.y3{bottom:922.533333pt;}
.y3f{bottom:930.533333pt;}
.yad{bottom:941.733333pt;}
.y3e{bottom:948.133333pt;}
.y2{bottom:950.053333pt;}
.y38{bottom:974.240000pt;}
.y1{bottom:980.160000pt;}
.y37{bottom:993.760000pt;}
.h13{height:3.612500pt;}
.hc{height:5.809375pt;}
.h14{height:5.870312pt;}
.h10{height:18.880000pt;}
.h4{height:19.072000pt;}
.h9{height:24.131250pt;}
.h6{height:24.384375pt;}
.h5{height:26.190625pt;}
.hd{height:33.515625pt;}
.he{height:33.867188pt;}
.hf{height:34.945312pt;}
.h3{height:37.090625pt;}
.ha{height:37.479688pt;}
.h11{height:38.672812pt;}
.h7{height:41.112500pt;}
.h2{height:41.543750pt;}
.hb{height:43.782500pt;}
.h8{height:47.310625pt;}
.h12{height:52.834688pt;}
.h1{height:60.057813pt;}
.h0{height:1056.000000pt;}
.w2{width:52.992000pt;}
.w3{width:658.693333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x23{left:51.359988pt;}
.x1a{left:52.479988pt;}
.x2{left:55.200000pt;}
.x10{left:56.479988pt;}
.x11{left:57.919988pt;}
.x17{left:60.799988pt;}
.x1b{left:62.399988pt;}
.x18{left:64.479988pt;}
.x1d{left:66.879988pt;}
.x19{left:67.839988pt;}
.x9{left:69.759988pt;}
.x22{left:70.719988pt;}
.x21{left:71.839988pt;}
.x36{left:75.359988pt;}
.x1c{left:76.511988pt;}
.x15{left:78.751988pt;}
.x2b{left:79.711988pt;}
.x2e{left:83.391988pt;}
.x2c{left:85.631988pt;}
.x3a{left:90.911988pt;}
.x38{left:95.231988pt;}
.x4{left:108.832000pt;}
.xa{left:179.866655pt;}
.xc{left:194.586655pt;}
.xd{left:208.986655pt;}
.xf{left:212.346655pt;}
.xe{left:229.786655pt;}
.x8{left:347.421333pt;}
.x7{left:351.901333pt;}
.x2d{left:359.586655pt;}
.x16{left:366.146655pt;}
.x37{left:367.906655pt;}
.x2a{left:373.186655pt;}
.x6{left:387.901333pt;}
.x5{left:399.901333pt;}
.xb{left:408.093321pt;}
.x12{left:432.093321pt;}
.x24{left:440.573321pt;}
.x13{left:441.533321pt;}
.x1e{left:444.893321pt;}
.x1f{left:449.533321pt;}
.x25{left:450.813321pt;}
.x14{left:451.773321pt;}
.x20{left:456.573321pt;}
.x2f{left:460.573321pt;}
.x26{left:463.613321pt;}
.x33{left:465.373321pt;}
.x27{left:469.693321pt;}
.x34{left:470.653321pt;}
.x30{left:471.933321pt;}
.x39{left:474.973321pt;}
.x31{left:479.133321pt;}
.x32{left:743.359988pt;}
.x35{left:752.159988pt;}
.x28{left:757.919988pt;}
.x29{left:759.039988pt;}
}




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