
    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_eed5154c0a155b128e679e0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_c37f5d051b59bed3dbcc3613.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_fec047d681de3d55daac8f50.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_b643d218f9e908f67a186ac1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_8ae808f28cbf8811c8a03ee2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_e2ee2b8bd1993c3bb3779bc9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_de66ccea3b3e9f48b06d2b41.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.879883;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_f17088f93b61bb6b39f7e4a9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_10319b0063bc543fee877bb3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.174000px;}
.ls2{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.720000px;}
.lsb{letter-spacing:3.600000px;}
.ls5{letter-spacing:5.040000px;}
.lse{letter-spacing:6.480000px;}
.ls3{letter-spacing:7.920000px;}
.lsa{letter-spacing:9.360000px;}
.ls10{letter-spacing:10.080000px;}
.lsd{letter-spacing:12.240000px;}
.ls8{letter-spacing:28.800000px;}
.ls4{letter-spacing:30.240000px;}
.ls9{letter-spacing:33.840000px;}
.lsf{letter-spacing:36.720000px;}
.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;}
}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws5{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.505760px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-4.464000px;}
._12{margin-left:-3.168000px;}
._2{margin-left:-1.224000px;}
._0{width:1.055520px;}
._7{width:2.184000px;}
._10{width:3.576000px;}
._f{width:4.824000px;}
._1b{width:5.832960px;}
._9{width:6.984000px;}
._b{width:7.992000px;}
._5{width:9.000000px;}
._6{width:10.224000px;}
._e{width:11.232000px;}
._d{width:13.104000px;}
._4{width:14.184000px;}
._3{width:15.192000px;}
._a{width:16.488000px;}
._3e{width:17.868240px;}
._11{width:19.872000px;}
._1c{width:20.916960px;}
._17{width:22.320000px;}
._14{width:23.544000px;}
._1e{width:24.912000px;}
._16{width:26.424000px;}
._15{width:27.504000px;}
._1a{width:28.584000px;}
._c{width:29.880000px;}
._29{width:31.248000px;}
._28{width:33.048000px;}
._2b{width:34.128000px;}
._37{width:35.816400px;}
._23{width:37.368000px;}
._8{width:39.240000px;}
._1d{width:40.896000px;}
._25{width:42.408000px;}
._26{width:44.424000px;}
._27{width:46.104480px;}
._36{width:47.648880px;}
._21{width:50.328000px;}
._22{width:51.336000px;}
._2a{width:53.160480px;}
._1f{width:56.448000px;}
._20{width:57.528000px;}
._24{width:63.864000px;}
._3c{width:65.696400px;}
._18{width:67.104000px;}
._19{width:68.184000px;}
._1{width:82.776000px;}
._38{width:88.385040px;}
._33{width:90.855360px;}
._34{width:93.305520px;}
._3d{width:102.368880px;}
._2d{width:104.460480px;}
._30{width:108.902880px;}
._2f{width:110.100000px;}
._42{width:115.456320px;}
._2c{width:117.667440px;}
._39{width:122.109840px;}
._31{width:123.663600px;}
._3f{width:130.834800px;}
._2e{width:131.950080px;}
._3b{width:157.188960px;}
._35{width:160.814160px;}
._41{width:184.299840px;}
._3a{width:211.251600px;}
._40{width:237.306960px;}
._32{width:280.234800px;}
._43{width:1701.636000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y119{bottom:3.240000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.y3{bottom:5.400000px;}
.y9{bottom:6.300000px;}
.y125{bottom:12.105000px;}
.yd0{bottom:12.240000px;}
.yf{bottom:12.600000px;}
.y6{bottom:14.400000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.y118{bottom:20.520000px;}
.yf3{bottom:28.080000px;}
.yef{bottom:28.800000px;}
.y124{bottom:29.385000px;}
.yd3{bottom:29.520000px;}
.y117{bottom:37.800000px;}
.ydb{bottom:38.340000px;}
.y2{bottom:40.140000px;}
.yf2{bottom:45.360000px;}
.y123{bottom:46.665000px;}
.y113{bottom:46.800000px;}
.y5{bottom:49.140000px;}
.y116{bottom:55.080000px;}
.yf1{bottom:62.640000px;}
.y122{bottom:63.945000px;}
.y112{bottom:64.080000px;}
.yda{bottom:64.620000px;}
.y115{bottom:72.180000px;}
.y121{bottom:81.225000px;}
.y111{bottom:81.360000px;}
.yd9{bottom:90.900000px;}
.y120{bottom:98.505000px;}
.y110{bottom:98.640000px;}
.y114{bottom:108.720000px;}
.yc8{bottom:110.160000px;}
.y8f{bottom:115.560000px;}
.y11f{bottom:115.605000px;}
.y10f{bottom:115.740000px;}
.yd8{bottom:117.210000px;}
.y1a2{bottom:117.360000px;}
.y67{bottom:118.260000px;}
.y39{bottom:120.060000px;}
.y174{bottom:121.860000px;}
.y160{bottom:124.560000px;}
.y181{bottom:127.260000px;}
.ya5{bottom:129.960000px;}
.yc7{bottom:130.860000px;}
.y147{bottom:131.220000px;}
.y11e{bottom:132.885000px;}
.y8e{bottom:136.260000px;}
.yed{bottom:138.060000px;}
.y66{bottom:138.960000px;}
.y38{bottom:140.760000px;}
.y173{bottom:142.560000px;}
.yd7{bottom:143.490000px;}
.y15f{bottom:145.260000px;}
.y11d{bottom:150.165000px;}
.ya4{bottom:150.660000px;}
.yc6{bottom:151.560000px;}
.y8d{bottom:156.960000px;}
.y1a1{bottom:158.760000px;}
.y65{bottom:159.660000px;}
.y146{bottom:160.920000px;}
.y37{bottom:161.460000px;}
.y172{bottom:163.260000px;}
.y15e{bottom:165.960000px;}
.y11c{bottom:167.445000px;}
.yec{bottom:167.760000px;}
.ya3{bottom:171.360000px;}
.yc5{bottom:172.260000px;}
.y8c{bottom:177.660000px;}
.y1a0{bottom:179.460000px;}
.y145{bottom:181.620000px;}
.y36{bottom:182.160000px;}
.y171{bottom:183.960000px;}
.y15d{bottom:186.660000px;}
.y64{bottom:189.360000px;}
.ya2{bottom:192.060000px;}
.yc4{bottom:192.960000px;}
.yeb{bottom:197.490000px;}
.y8b{bottom:198.390000px;}
.y144{bottom:202.350000px;}
.y35{bottom:202.890000px;}
.y10e{bottom:204.690000px;}
.y19f{bottom:209.190000px;}
.y63{bottom:210.090000px;}
.y15c{bottom:216.390000px;}
.y8a{bottom:219.090000px;}
.ya1{bottom:221.790000px;}
.yc3{bottom:222.690000px;}
.y143{bottom:223.050000px;}
.y34{bottom:223.590000px;}
.yea{bottom:227.190000px;}
.y19e{bottom:229.890000px;}
.y62{bottom:230.790000px;}
.y170{bottom:234.390000px;}
.y15b{bottom:237.090000px;}
.y89{bottom:239.790000px;}
.ya0{bottom:242.490000px;}
.yc2{bottom:243.390000px;}
.y142{bottom:243.750000px;}
.y33{bottom:244.290000px;}
.y180{bottom:246.090000px;}
.y19d{bottom:250.590000px;}
.y61{bottom:251.490000px;}
.y16f{bottom:255.090000px;}
.ye9{bottom:256.890000px;}
.y15a{bottom:257.790000px;}
.y9f{bottom:263.190000px;}
.yc1{bottom:264.090000px;}
.y141{bottom:264.450000px;}
.y32{bottom:264.990000px;}
.y17f{bottom:266.790000px;}
.y88{bottom:269.490000px;}
.y19c{bottom:271.290000px;}
.y16e{bottom:275.790000px;}
.ye8{bottom:277.590000px;}
.y159{bottom:278.490000px;}
.y60{bottom:281.190000px;}
.yc0{bottom:284.790000px;}
.y140{bottom:285.150000px;}
.y31{bottom:285.690000px;}
.y17e{bottom:287.490000px;}
.y87{bottom:290.190000px;}
.y9e{bottom:292.890000px;}
.y16d{bottom:296.490000px;}
.ye7{bottom:298.290000px;}
.y158{bottom:299.190000px;}
.y19b{bottom:300.990000px;}
.y5f{bottom:301.890000px;}
.ybf{bottom:305.490000px;}
.y13f{bottom:305.850000px;}
.y17d{bottom:308.190000px;}
.y86{bottom:310.890000px;}
.y9d{bottom:313.590000px;}
.y30{bottom:315.390000px;}
.y16c{bottom:317.190000px;}
.ye6{bottom:318.990000px;}
.y157{bottom:319.890000px;}
.y19a{bottom:321.690000px;}
.y5e{bottom:322.590000px;}
.ybe{bottom:326.190000px;}
.y17c{bottom:328.890000px;}
.y85{bottom:331.590000px;}
.y9c{bottom:334.290000px;}
.y13e{bottom:335.550000px;}
.y16b{bottom:337.890000px;}
.ye5{bottom:339.690000px;}
.y199{bottom:342.390000px;}
.y5d{bottom:343.290000px;}
.y10d{bottom:344.190000px;}
.y2f{bottom:345.090000px;}
.ybd{bottom:346.890000px;}
.y156{bottom:349.590000px;}
.y84{bottom:352.290000px;}
.y9b{bottom:354.990000px;}
.y16a{bottom:358.590000px;}
.ye4{bottom:360.390000px;}
.y198{bottom:363.090000px;}
.y5c{bottom:363.990000px;}
.y13d{bottom:365.250000px;}
.ybc{bottom:367.590000px;}
.y17b{bottom:370.290000px;}
.y2e{bottom:374.790000px;}
.y155{bottom:379.290000px;}
.ye3{bottom:381.090000px;}
.y83{bottom:381.990000px;}
.y9a{bottom:384.690000px;}
.y13c{bottom:385.950000px;}
.ybb{bottom:388.290000px;}
.y17a{bottom:390.990000px;}
.y197{bottom:392.790000px;}
.y5b{bottom:393.690000px;}
.y2d{bottom:395.490000px;}
.y169{bottom:399.990000px;}
.ye2{bottom:401.790000px;}
.y82{bottom:402.690000px;}
.y99{bottom:405.390000px;}
.y13b{bottom:406.650000px;}
.yba{bottom:408.990000px;}
.y10c{bottom:410.430000px;}
.y179{bottom:411.690000px;}
.y5a{bottom:414.390000px;}
.y168{bottom:420.690000px;}
.ye1{bottom:422.490000px;}
.y81{bottom:423.390000px;}
.y2c{bottom:425.190000px;}
.y98{bottom:426.090000px;}
.y13a{bottom:427.350000px;}
.yb9{bottom:429.690000px;}
.y59{bottom:435.090000px;}
.y10b{bottom:440.175000px;}
.y167{bottom:441.435000px;}
.ye0{bottom:443.235000px;}
.y80{bottom:444.135000px;}
.y2b{bottom:445.935000px;}
.y139{bottom:448.095000px;}
.yb8{bottom:450.435000px;}
.y58{bottom:455.835000px;}
.y166{bottom:462.135000px;}
.ydf{bottom:463.935000px;}
.y7f{bottom:464.835000px;}
.y2a{bottom:466.635000px;}
.y138{bottom:468.795000px;}
.y10a{bottom:469.875000px;}
.yb7{bottom:471.135000px;}
.y196{bottom:472.935000px;}
.y57{bottom:476.535000px;}
.y165{bottom:482.835000px;}
.yde{bottom:484.635000px;}
.y29{bottom:487.335000px;}
.y137{bottom:489.495000px;}
.y109{bottom:490.575000px;}
.yb6{bottom:491.835000px;}
.y195{bottom:493.635000px;}
.y7e{bottom:494.535000px;}
.y56{bottom:497.235000px;}
.y164{bottom:503.535000px;}
.ydd{bottom:505.335000px;}
.y28{bottom:508.035000px;}
.y136{bottom:510.195000px;}
.y108{bottom:511.275000px;}
.yb5{bottom:512.535000px;}
.y7d{bottom:515.235000px;}
.y97{bottom:517.935000px;}
.y194{bottom:523.335000px;}
.y163{bottom:524.235000px;}
.y55{bottom:526.935000px;}
.y27{bottom:528.735000px;}
.y135{bottom:530.895000px;}
.y107{bottom:531.975000px;}
.yb4{bottom:533.235000px;}
.ydc{bottom:535.035000px;}
.y7c{bottom:535.935000px;}
.y96{bottom:538.635000px;}
.y193{bottom:544.035000px;}
.y162{bottom:544.935000px;}
.y54{bottom:547.635000px;}
.y26{bottom:549.435000px;}
.y134{bottom:551.595000px;}
.y106{bottom:552.675000px;}
.yb3{bottom:553.935000px;}
.yd6{bottom:560.775000px;}
.y7b{bottom:565.635000px;}
.y53{bottom:568.335000px;}
.y25{bottom:570.135000px;}
.y133{bottom:572.115000px;}
.y192{bottom:573.735000px;}
.yb2{bottom:574.635000px;}
.y105{bottom:582.375000px;}
.y7a{bottom:586.335000px;}
.y52{bottom:589.035000px;}
.y24{bottom:590.835000px;}
.y132{bottom:592.815000px;}
.y191{bottom:594.435000px;}
.yb1{bottom:595.335000px;}
.y104{bottom:603.075000px;}
.y79{bottom:607.035000px;}
.y51{bottom:609.735000px;}
.y23{bottom:611.535000px;}
.y131{bottom:613.515000px;}
.yb0{bottom:616.035000px;}
.ye{bottom:617.475000px;}
.y103{bottom:623.775000px;}
.y190{bottom:624.135000px;}
.y78{bottom:627.735000px;}
.y50{bottom:630.435000px;}
.y22{bottom:632.235000px;}
.y130{bottom:634.215000px;}
.yaf{bottom:636.735000px;}
.y95{bottom:639.435000px;}
.y102{bottom:644.475000px;}
.y18f{bottom:644.835000px;}
.y77{bottom:648.435000px;}
.y21{bottom:652.935000px;}
.yae{bottom:657.435000px;}
.y4f{bottom:660.135000px;}
.y12f{bottom:663.915000px;}
.y101{bottom:665.175000px;}
.y18e{bottom:665.535000px;}
.y154{bottom:666.435000px;}
.y76{bottom:669.135000px;}
.y20{bottom:673.635000px;}
.yad{bottom:678.165000px;}
.y4e{bottom:680.865000px;}
.y100{bottom:685.905000px;}
.y161{bottom:687.165000px;}
.y75{bottom:689.865000px;}
.y12e{bottom:693.645000px;}
.y1f{bottom:694.365000px;}
.y18d{bottom:695.265000px;}
.y153{bottom:696.165000px;}
.y94{bottom:698.865000px;}
.y4d{bottom:701.565000px;}
.yff{bottom:706.605000px;}
.yac{bottom:707.865000px;}
.y178{bottom:710.565000px;}
.y18c{bottom:715.965000px;}
.y152{bottom:716.865000px;}
.y74{bottom:719.565000px;}
.y4c{bottom:722.265000px;}
.y12d{bottom:723.345000px;}
.y1e{bottom:724.065000px;}
.yfe{bottom:727.305000px;}
.yd5{bottom:728.025000px;}
.yab{bottom:728.565000px;}
.y177{bottom:731.265000px;}
.y151{bottom:737.565000px;}
.y73{bottom:740.265000px;}
.y4b{bottom:742.965000px;}
.y12c{bottom:744.045000px;}
.y18b{bottom:745.665000px;}
.yfd{bottom:748.005000px;}
.yaa{bottom:749.265000px;}
.y1d{bottom:753.765000px;}
.y150{bottom:758.265000px;}
.y72{bottom:760.965000px;}
.y4a{bottom:763.665000px;}
.yd4{bottom:764.025000px;}
.y12b{bottom:764.745000px;}
.y18a{bottom:766.365000px;}
.yfc{bottom:768.705000px;}
.y93{bottom:769.965000px;}
.y14f{bottom:778.965000px;}
.y71{bottom:781.665000px;}
.y1c{bottom:783.465000px;}
.y49{bottom:784.365000px;}
.y12a{bottom:785.445000px;}
.y92{bottom:790.665000px;}
.y189{bottom:796.065000px;}
.yfb{bottom:798.405000px;}
.y14e{bottom:799.665000px;}
.yd2{bottom:800.025000px;}
.y70{bottom:802.365000px;}
.y48{bottom:805.065000px;}
.y129{bottom:806.145000px;}
.y91{bottom:811.365000px;}
.y188{bottom:816.765000px;}
.yfa{bottom:819.105000px;}
.y1b{bottom:820.005000px;}
.y14d{bottom:820.365000px;}
.y128{bottom:826.845000px;}
.y1a5{bottom:828.465000px;}
.y6f{bottom:832.065000px;}
.y47{bottom:834.765000px;}
.y187{bottom:837.465000px;}
.y14c{bottom:841.065000px;}
.y1a{bottom:842.865000px;}
.y127{bottom:847.545000px;}
.yf9{bottom:848.805000px;}
.y6e{bottom:852.765000px;}
.yd1{bottom:853.305000px;}
.y46{bottom:855.465000px;}
.y1a4{bottom:858.165000px;}
.y14b{bottom:861.765000px;}
.y186{bottom:867.165000px;}
.yf8{bottom:869.505000px;}
.y19{bottom:872.565000px;}
.y6d{bottom:873.465000px;}
.y45{bottom:876.165000px;}
.y126{bottom:877.245000px;}
.y14a{bottom:882.465000px;}
.y185{bottom:887.865000px;}
.ycf{bottom:889.305000px;}
.yf7{bottom:890.205000px;}
.y90{bottom:894.165000px;}
.y44{bottom:896.865000px;}
.y18{bottom:900.105000px;}
.y6c{bottom:903.165000px;}
.y11b{bottom:903.885000px;}
.yf6{bottom:910.905000px;}
.y176{bottom:914.910000px;}
.y184{bottom:917.610000px;}
.y17{bottom:923.010000px;}
.y6b{bottom:923.910000px;}
.y43{bottom:926.610000px;}
.yf5{bottom:931.650000px;}
.y175{bottom:935.610000px;}
.yce{bottom:938.310000px;}
.y6a{bottom:944.610000px;}
.y16{bottom:952.710000px;}
.y42{bottom:956.310000px;}
.y1a3{bottom:959.010000px;}
.yf4{bottom:961.350000px;}
.ya9{bottom:965.310000px;}
.ycd{bottom:968.010000px;}
.y69{bottom:974.310000px;}
.y15{bottom:982.410000px;}
.y41{bottom:986.010000px;}
.yf0{bottom:987.810000px;}
.ycc{bottom:988.710000px;}
.y68{bottom:995.010000px;}
.ya8{bottom:1006.710000px;}
.ycb{bottom:1009.410000px;}
.y14{bottom:1012.110000px;}
.y40{bottom:1015.710000px;}
.y183{bottom:1018.410000px;}
.ya7{bottom:1027.410000px;}
.y3f{bottom:1036.410000px;}
.yca{bottom:1039.110000px;}
.y13{bottom:1041.810000px;}
.ya6{bottom:1048.110000px;}
.y3e{bottom:1057.110000px;}
.y182{bottom:1059.810000px;}
.yc9{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.yee{bottom:1074.210000px;}
.y3d{bottom:1077.810000px;}
.y149{bottom:1089.510000px;}
.y11a{bottom:1095.090000px;}
.y3c{bottom:1098.510000px;}
.y11{bottom:1101.210000px;}
.y148{bottom:1110.210000px;}
.y3b{bottom:1119.210000px;}
.y10{bottom:1130.910000px;}
.y3a{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.hb{height:28.260000px;}
.h12{height:35.280000px;}
.h10{height:35.316000px;}
.hf{height:40.254961px;}
.h1b{height:49.042969px;}
.h9{height:49.868086px;}
.h11{height:51.239531px;}
.h15{height:51.840000px;}
.h13{height:52.560000px;}
.h2{height:54.900000px;}
.hd{height:60.082031px;}
.h19{height:60.696000px;}
.h1c{height:61.171875px;}
.h7{height:61.189805px;}
.hc{height:61.734375px;}
.h4{height:63.900000px;}
.he{height:65.122031px;}
.ha{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:73.722656px;}
.h16{height:85.680000px;}
.h18{height:95.256000px;}
.h17{height:138.780000px;}
.h14{height:166.530000px;}
.h1a{height:190.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.240000px;}
.w8{width:84.990000px;}
.wc{width:158.970000px;}
.wb{width:160.020000px;}
.w10{width:160.230000px;}
.we{width:169.920000px;}
.wf{width:169.950000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.w9{width:308.370000px;}
.wd{width:334.155000px;}
.w2{width:359.175000px;}
.wa{width:371.415000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x16{left:8.100000px;}
.xd{left:10.800000px;}
.x5{left:21.780000px;}
.xa{left:31.185000px;}
.x7{left:47.340000px;}
.x3{left:51.120000px;}
.xb{left:106.235987px;}
.x12{left:107.315987px;}
.xe{left:160.049987px;}
.x2{left:161.145000px;}
.xf{left:169.769987px;}
.x1{left:212.430000px;}
.x18{left:265.890000px;}
.x1a{left:276.150000px;}
.x15{left:277.949987px;}
.x14{left:279.974987px;}
.x11{left:303.014987px;}
.x13{left:350.354987px;}
.x17{left:414.615000px;}
.x8{left:420.375000px;}
.x19{left:424.875000px;}
.x10{left:446.474987px;}
.x1b{left:616.065000px;}
.x9{left:656.205000px;}
.x4{left:761.010000px;}
.xc{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls2{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.640000pt;}
.lsb{letter-spacing:3.200000pt;}
.ls5{letter-spacing:4.480000pt;}
.lse{letter-spacing:5.760000pt;}
.ls3{letter-spacing:7.040000pt;}
.lsa{letter-spacing:8.320000pt;}
.ls10{letter-spacing:8.960000pt;}
.lsd{letter-spacing:10.880000pt;}
.ls8{letter-spacing:25.600000pt;}
.ls4{letter-spacing:26.880000pt;}
.ls9{letter-spacing:30.080000pt;}
.lsf{letter-spacing:32.640000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws5{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-3.968000pt;}
._12{margin-left:-2.816000pt;}
._2{margin-left:-1.088000pt;}
._0{width:0.938240pt;}
._7{width:1.941333pt;}
._10{width:3.178667pt;}
._f{width:4.288000pt;}
._1b{width:5.184853pt;}
._9{width:6.208000pt;}
._b{width:7.104000pt;}
._5{width:8.000000pt;}
._6{width:9.088000pt;}
._e{width:9.984000pt;}
._d{width:11.648000pt;}
._4{width:12.608000pt;}
._3{width:13.504000pt;}
._a{width:14.656000pt;}
._3e{width:15.882880pt;}
._11{width:17.664000pt;}
._1c{width:18.592853pt;}
._17{width:19.840000pt;}
._14{width:20.928000pt;}
._1e{width:22.144000pt;}
._16{width:23.488000pt;}
._15{width:24.448000pt;}
._1a{width:25.408000pt;}
._c{width:26.560000pt;}
._29{width:27.776000pt;}
._28{width:29.376000pt;}
._2b{width:30.336000pt;}
._37{width:31.836800pt;}
._23{width:33.216000pt;}
._8{width:34.880000pt;}
._1d{width:36.352000pt;}
._25{width:37.696000pt;}
._26{width:39.488000pt;}
._27{width:40.981760pt;}
._36{width:42.354560pt;}
._21{width:44.736000pt;}
._22{width:45.632000pt;}
._2a{width:47.253760pt;}
._1f{width:50.176000pt;}
._20{width:51.136000pt;}
._24{width:56.768000pt;}
._3c{width:58.396800pt;}
._18{width:59.648000pt;}
._19{width:60.608000pt;}
._1{width:73.578667pt;}
._38{width:78.564480pt;}
._33{width:80.760320pt;}
._34{width:82.938240pt;}
._3d{width:90.994560pt;}
._2d{width:92.853760pt;}
._30{width:96.802560pt;}
._2f{width:97.866667pt;}
._42{width:102.627840pt;}
._2c{width:104.593280pt;}
._39{width:108.542080pt;}
._31{width:109.923200pt;}
._3f{width:116.297600pt;}
._2e{width:117.288960pt;}
._3b{width:139.723520pt;}
._35{width:142.945920pt;}
._41{width:163.822080pt;}
._3a{width:187.779200pt;}
._40{width:210.939520pt;}
._32{width:249.097600pt;}
._43{width:1512.565333pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y119{bottom:2.880000pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:4.800000pt;}
.y9{bottom:5.600000pt;}
.y125{bottom:10.760000pt;}
.yd0{bottom:10.880000pt;}
.yf{bottom:11.200000pt;}
.y6{bottom:12.800000pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.y118{bottom:18.240000pt;}
.yf3{bottom:24.960000pt;}
.yef{bottom:25.600000pt;}
.y124{bottom:26.120000pt;}
.yd3{bottom:26.240000pt;}
.y117{bottom:33.600000pt;}
.ydb{bottom:34.080000pt;}
.y2{bottom:35.680000pt;}
.yf2{bottom:40.320000pt;}
.y123{bottom:41.480000pt;}
.y113{bottom:41.600000pt;}
.y5{bottom:43.680000pt;}
.y116{bottom:48.960000pt;}
.yf1{bottom:55.680000pt;}
.y122{bottom:56.840000pt;}
.y112{bottom:56.960000pt;}
.yda{bottom:57.440000pt;}
.y115{bottom:64.160000pt;}
.y121{bottom:72.200000pt;}
.y111{bottom:72.320000pt;}
.yd9{bottom:80.800000pt;}
.y120{bottom:87.560000pt;}
.y110{bottom:87.680000pt;}
.y114{bottom:96.640000pt;}
.yc8{bottom:97.920000pt;}
.y8f{bottom:102.720000pt;}
.y11f{bottom:102.760000pt;}
.y10f{bottom:102.880000pt;}
.yd8{bottom:104.186667pt;}
.y1a2{bottom:104.320000pt;}
.y67{bottom:105.120000pt;}
.y39{bottom:106.720000pt;}
.y174{bottom:108.320000pt;}
.y160{bottom:110.720000pt;}
.y181{bottom:113.120000pt;}
.ya5{bottom:115.520000pt;}
.yc7{bottom:116.320000pt;}
.y147{bottom:116.640000pt;}
.y11e{bottom:118.120000pt;}
.y8e{bottom:121.120000pt;}
.yed{bottom:122.720000pt;}
.y66{bottom:123.520000pt;}
.y38{bottom:125.120000pt;}
.y173{bottom:126.720000pt;}
.yd7{bottom:127.546667pt;}
.y15f{bottom:129.120000pt;}
.y11d{bottom:133.480000pt;}
.ya4{bottom:133.920000pt;}
.yc6{bottom:134.720000pt;}
.y8d{bottom:139.520000pt;}
.y1a1{bottom:141.120000pt;}
.y65{bottom:141.920000pt;}
.y146{bottom:143.040000pt;}
.y37{bottom:143.520000pt;}
.y172{bottom:145.120000pt;}
.y15e{bottom:147.520000pt;}
.y11c{bottom:148.840000pt;}
.yec{bottom:149.120000pt;}
.ya3{bottom:152.320000pt;}
.yc5{bottom:153.120000pt;}
.y8c{bottom:157.920000pt;}
.y1a0{bottom:159.520000pt;}
.y145{bottom:161.440000pt;}
.y36{bottom:161.920000pt;}
.y171{bottom:163.520000pt;}
.y15d{bottom:165.920000pt;}
.y64{bottom:168.320000pt;}
.ya2{bottom:170.720000pt;}
.yc4{bottom:171.520000pt;}
.yeb{bottom:175.546667pt;}
.y8b{bottom:176.346667pt;}
.y144{bottom:179.866667pt;}
.y35{bottom:180.346667pt;}
.y10e{bottom:181.946667pt;}
.y19f{bottom:185.946667pt;}
.y63{bottom:186.746667pt;}
.y15c{bottom:192.346667pt;}
.y8a{bottom:194.746667pt;}
.ya1{bottom:197.146667pt;}
.yc3{bottom:197.946667pt;}
.y143{bottom:198.266667pt;}
.y34{bottom:198.746667pt;}
.yea{bottom:201.946667pt;}
.y19e{bottom:204.346667pt;}
.y62{bottom:205.146667pt;}
.y170{bottom:208.346667pt;}
.y15b{bottom:210.746667pt;}
.y89{bottom:213.146667pt;}
.ya0{bottom:215.546667pt;}
.yc2{bottom:216.346667pt;}
.y142{bottom:216.666667pt;}
.y33{bottom:217.146667pt;}
.y180{bottom:218.746667pt;}
.y19d{bottom:222.746667pt;}
.y61{bottom:223.546667pt;}
.y16f{bottom:226.746667pt;}
.ye9{bottom:228.346667pt;}
.y15a{bottom:229.146667pt;}
.y9f{bottom:233.946667pt;}
.yc1{bottom:234.746667pt;}
.y141{bottom:235.066667pt;}
.y32{bottom:235.546667pt;}
.y17f{bottom:237.146667pt;}
.y88{bottom:239.546667pt;}
.y19c{bottom:241.146667pt;}
.y16e{bottom:245.146667pt;}
.ye8{bottom:246.746667pt;}
.y159{bottom:247.546667pt;}
.y60{bottom:249.946667pt;}
.yc0{bottom:253.146667pt;}
.y140{bottom:253.466667pt;}
.y31{bottom:253.946667pt;}
.y17e{bottom:255.546667pt;}
.y87{bottom:257.946667pt;}
.y9e{bottom:260.346667pt;}
.y16d{bottom:263.546667pt;}
.ye7{bottom:265.146667pt;}
.y158{bottom:265.946667pt;}
.y19b{bottom:267.546667pt;}
.y5f{bottom:268.346667pt;}
.ybf{bottom:271.546667pt;}
.y13f{bottom:271.866667pt;}
.y17d{bottom:273.946667pt;}
.y86{bottom:276.346667pt;}
.y9d{bottom:278.746667pt;}
.y30{bottom:280.346667pt;}
.y16c{bottom:281.946667pt;}
.ye6{bottom:283.546667pt;}
.y157{bottom:284.346667pt;}
.y19a{bottom:285.946667pt;}
.y5e{bottom:286.746667pt;}
.ybe{bottom:289.946667pt;}
.y17c{bottom:292.346667pt;}
.y85{bottom:294.746667pt;}
.y9c{bottom:297.146667pt;}
.y13e{bottom:298.266667pt;}
.y16b{bottom:300.346667pt;}
.ye5{bottom:301.946667pt;}
.y199{bottom:304.346667pt;}
.y5d{bottom:305.146667pt;}
.y10d{bottom:305.946667pt;}
.y2f{bottom:306.746667pt;}
.ybd{bottom:308.346667pt;}
.y156{bottom:310.746667pt;}
.y84{bottom:313.146667pt;}
.y9b{bottom:315.546667pt;}
.y16a{bottom:318.746667pt;}
.ye4{bottom:320.346667pt;}
.y198{bottom:322.746667pt;}
.y5c{bottom:323.546667pt;}
.y13d{bottom:324.666667pt;}
.ybc{bottom:326.746667pt;}
.y17b{bottom:329.146667pt;}
.y2e{bottom:333.146667pt;}
.y155{bottom:337.146667pt;}
.ye3{bottom:338.746667pt;}
.y83{bottom:339.546667pt;}
.y9a{bottom:341.946667pt;}
.y13c{bottom:343.066667pt;}
.ybb{bottom:345.146667pt;}
.y17a{bottom:347.546667pt;}
.y197{bottom:349.146667pt;}
.y5b{bottom:349.946667pt;}
.y2d{bottom:351.546667pt;}
.y169{bottom:355.546667pt;}
.ye2{bottom:357.146667pt;}
.y82{bottom:357.946667pt;}
.y99{bottom:360.346667pt;}
.y13b{bottom:361.466667pt;}
.yba{bottom:363.546667pt;}
.y10c{bottom:364.826667pt;}
.y179{bottom:365.946667pt;}
.y5a{bottom:368.346667pt;}
.y168{bottom:373.946667pt;}
.ye1{bottom:375.546667pt;}
.y81{bottom:376.346667pt;}
.y2c{bottom:377.946667pt;}
.y98{bottom:378.746667pt;}
.y13a{bottom:379.866667pt;}
.yb9{bottom:381.946667pt;}
.y59{bottom:386.746667pt;}
.y10b{bottom:391.266667pt;}
.y167{bottom:392.386667pt;}
.ye0{bottom:393.986667pt;}
.y80{bottom:394.786667pt;}
.y2b{bottom:396.386667pt;}
.y139{bottom:398.306667pt;}
.yb8{bottom:400.386667pt;}
.y58{bottom:405.186667pt;}
.y166{bottom:410.786667pt;}
.ydf{bottom:412.386667pt;}
.y7f{bottom:413.186667pt;}
.y2a{bottom:414.786667pt;}
.y138{bottom:416.706667pt;}
.y10a{bottom:417.666667pt;}
.yb7{bottom:418.786667pt;}
.y196{bottom:420.386667pt;}
.y57{bottom:423.586667pt;}
.y165{bottom:429.186667pt;}
.yde{bottom:430.786667pt;}
.y29{bottom:433.186667pt;}
.y137{bottom:435.106667pt;}
.y109{bottom:436.066667pt;}
.yb6{bottom:437.186667pt;}
.y195{bottom:438.786667pt;}
.y7e{bottom:439.586667pt;}
.y56{bottom:441.986667pt;}
.y164{bottom:447.586667pt;}
.ydd{bottom:449.186667pt;}
.y28{bottom:451.586667pt;}
.y136{bottom:453.506667pt;}
.y108{bottom:454.466667pt;}
.yb5{bottom:455.586667pt;}
.y7d{bottom:457.986667pt;}
.y97{bottom:460.386667pt;}
.y194{bottom:465.186667pt;}
.y163{bottom:465.986667pt;}
.y55{bottom:468.386667pt;}
.y27{bottom:469.986667pt;}
.y135{bottom:471.906667pt;}
.y107{bottom:472.866667pt;}
.yb4{bottom:473.986667pt;}
.ydc{bottom:475.586667pt;}
.y7c{bottom:476.386667pt;}
.y96{bottom:478.786667pt;}
.y193{bottom:483.586667pt;}
.y162{bottom:484.386667pt;}
.y54{bottom:486.786667pt;}
.y26{bottom:488.386667pt;}
.y134{bottom:490.306667pt;}
.y106{bottom:491.266667pt;}
.yb3{bottom:492.386667pt;}
.yd6{bottom:498.466667pt;}
.y7b{bottom:502.786667pt;}
.y53{bottom:505.186667pt;}
.y25{bottom:506.786667pt;}
.y133{bottom:508.546667pt;}
.y192{bottom:509.986667pt;}
.yb2{bottom:510.786667pt;}
.y105{bottom:517.666667pt;}
.y7a{bottom:521.186667pt;}
.y52{bottom:523.586667pt;}
.y24{bottom:525.186667pt;}
.y132{bottom:526.946667pt;}
.y191{bottom:528.386667pt;}
.yb1{bottom:529.186667pt;}
.y104{bottom:536.066667pt;}
.y79{bottom:539.586667pt;}
.y51{bottom:541.986667pt;}
.y23{bottom:543.586667pt;}
.y131{bottom:545.346667pt;}
.yb0{bottom:547.586667pt;}
.ye{bottom:548.866667pt;}
.y103{bottom:554.466667pt;}
.y190{bottom:554.786667pt;}
.y78{bottom:557.986667pt;}
.y50{bottom:560.386667pt;}
.y22{bottom:561.986667pt;}
.y130{bottom:563.746667pt;}
.yaf{bottom:565.986667pt;}
.y95{bottom:568.386667pt;}
.y102{bottom:572.866667pt;}
.y18f{bottom:573.186667pt;}
.y77{bottom:576.386667pt;}
.y21{bottom:580.386667pt;}
.yae{bottom:584.386667pt;}
.y4f{bottom:586.786667pt;}
.y12f{bottom:590.146667pt;}
.y101{bottom:591.266667pt;}
.y18e{bottom:591.586667pt;}
.y154{bottom:592.386667pt;}
.y76{bottom:594.786667pt;}
.y20{bottom:598.786667pt;}
.yad{bottom:602.813333pt;}
.y4e{bottom:605.213333pt;}
.y100{bottom:609.693333pt;}
.y161{bottom:610.813333pt;}
.y75{bottom:613.213333pt;}
.y12e{bottom:616.573333pt;}
.y1f{bottom:617.213333pt;}
.y18d{bottom:618.013333pt;}
.y153{bottom:618.813333pt;}
.y94{bottom:621.213333pt;}
.y4d{bottom:623.613333pt;}
.yff{bottom:628.093333pt;}
.yac{bottom:629.213333pt;}
.y178{bottom:631.613333pt;}
.y18c{bottom:636.413333pt;}
.y152{bottom:637.213333pt;}
.y74{bottom:639.613333pt;}
.y4c{bottom:642.013333pt;}
.y12d{bottom:642.973333pt;}
.y1e{bottom:643.613333pt;}
.yfe{bottom:646.493333pt;}
.yd5{bottom:647.133333pt;}
.yab{bottom:647.613333pt;}
.y177{bottom:650.013333pt;}
.y151{bottom:655.613333pt;}
.y73{bottom:658.013333pt;}
.y4b{bottom:660.413333pt;}
.y12c{bottom:661.373333pt;}
.y18b{bottom:662.813333pt;}
.yfd{bottom:664.893333pt;}
.yaa{bottom:666.013333pt;}
.y1d{bottom:670.013333pt;}
.y150{bottom:674.013333pt;}
.y72{bottom:676.413333pt;}
.y4a{bottom:678.813333pt;}
.yd4{bottom:679.133333pt;}
.y12b{bottom:679.773333pt;}
.y18a{bottom:681.213333pt;}
.yfc{bottom:683.293333pt;}
.y93{bottom:684.413333pt;}
.y14f{bottom:692.413333pt;}
.y71{bottom:694.813333pt;}
.y1c{bottom:696.413333pt;}
.y49{bottom:697.213333pt;}
.y12a{bottom:698.173333pt;}
.y92{bottom:702.813333pt;}
.y189{bottom:707.613333pt;}
.yfb{bottom:709.693333pt;}
.y14e{bottom:710.813333pt;}
.yd2{bottom:711.133333pt;}
.y70{bottom:713.213333pt;}
.y48{bottom:715.613333pt;}
.y129{bottom:716.573333pt;}
.y91{bottom:721.213333pt;}
.y188{bottom:726.013333pt;}
.yfa{bottom:728.093333pt;}
.y1b{bottom:728.893333pt;}
.y14d{bottom:729.213333pt;}
.y128{bottom:734.973333pt;}
.y1a5{bottom:736.413333pt;}
.y6f{bottom:739.613333pt;}
.y47{bottom:742.013333pt;}
.y187{bottom:744.413333pt;}
.y14c{bottom:747.613333pt;}
.y1a{bottom:749.213333pt;}
.y127{bottom:753.373333pt;}
.yf9{bottom:754.493333pt;}
.y6e{bottom:758.013333pt;}
.yd1{bottom:758.493333pt;}
.y46{bottom:760.413333pt;}
.y1a4{bottom:762.813333pt;}
.y14b{bottom:766.013333pt;}
.y186{bottom:770.813333pt;}
.yf8{bottom:772.893333pt;}
.y19{bottom:775.613333pt;}
.y6d{bottom:776.413333pt;}
.y45{bottom:778.813333pt;}
.y126{bottom:779.773333pt;}
.y14a{bottom:784.413333pt;}
.y185{bottom:789.213333pt;}
.ycf{bottom:790.493333pt;}
.yf7{bottom:791.293333pt;}
.y90{bottom:794.813333pt;}
.y44{bottom:797.213333pt;}
.y18{bottom:800.093333pt;}
.y6c{bottom:802.813333pt;}
.y11b{bottom:803.453333pt;}
.yf6{bottom:809.693333pt;}
.y176{bottom:813.253333pt;}
.y184{bottom:815.653333pt;}
.y17{bottom:820.453333pt;}
.y6b{bottom:821.253333pt;}
.y43{bottom:823.653333pt;}
.yf5{bottom:828.133333pt;}
.y175{bottom:831.653333pt;}
.yce{bottom:834.053333pt;}
.y6a{bottom:839.653333pt;}
.y16{bottom:846.853333pt;}
.y42{bottom:850.053333pt;}
.y1a3{bottom:852.453333pt;}
.yf4{bottom:854.533333pt;}
.ya9{bottom:858.053333pt;}
.ycd{bottom:860.453333pt;}
.y69{bottom:866.053333pt;}
.y15{bottom:873.253333pt;}
.y41{bottom:876.453333pt;}
.yf0{bottom:878.053333pt;}
.ycc{bottom:878.853333pt;}
.y68{bottom:884.453333pt;}
.ya8{bottom:894.853333pt;}
.ycb{bottom:897.253333pt;}
.y14{bottom:899.653333pt;}
.y40{bottom:902.853333pt;}
.y183{bottom:905.253333pt;}
.ya7{bottom:913.253333pt;}
.y3f{bottom:921.253333pt;}
.yca{bottom:923.653333pt;}
.y13{bottom:926.053333pt;}
.ya6{bottom:931.653333pt;}
.y3e{bottom:939.653333pt;}
.y182{bottom:942.053333pt;}
.yc9{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.yee{bottom:954.853333pt;}
.y3d{bottom:958.053333pt;}
.y149{bottom:968.453333pt;}
.y11a{bottom:973.413333pt;}
.y3c{bottom:976.453333pt;}
.y11{bottom:978.853333pt;}
.y148{bottom:986.853333pt;}
.y3b{bottom:994.853333pt;}
.y10{bottom:1005.253333pt;}
.y3a{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.hb{height:25.120000pt;}
.h12{height:31.360000pt;}
.h10{height:31.392000pt;}
.hf{height:35.782187pt;}
.h1b{height:43.593750pt;}
.h9{height:44.327188pt;}
.h11{height:45.546250pt;}
.h15{height:46.080000pt;}
.h13{height:46.720000pt;}
.h2{height:48.800000pt;}
.hd{height:53.406250pt;}
.h19{height:53.952000pt;}
.h1c{height:54.375000pt;}
.h7{height:54.390938pt;}
.hc{height:54.875000pt;}
.h4{height:56.800000pt;}
.he{height:57.886250pt;}
.ha{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:65.531250pt;}
.h16{height:76.160000pt;}
.h18{height:84.672000pt;}
.h17{height:123.360000pt;}
.h14{height:148.026667pt;}
.h1a{height:169.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.880000pt;}
.w8{width:75.546667pt;}
.wc{width:141.306667pt;}
.wb{width:142.240000pt;}
.w10{width:142.426667pt;}
.we{width:151.040000pt;}
.wf{width:151.066667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.w9{width:274.106667pt;}
.wd{width:297.026667pt;}
.w2{width:319.266667pt;}
.wa{width:330.146667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x16{left:7.200000pt;}
.xd{left:9.600000pt;}
.x5{left:19.360000pt;}
.xa{left:27.720000pt;}
.x7{left:42.080000pt;}
.x3{left:45.440000pt;}
.xb{left:94.431988pt;}
.x12{left:95.391988pt;}
.xe{left:142.266655pt;}
.x2{left:143.240000pt;}
.xf{left:150.906655pt;}
.x1{left:188.826667pt;}
.x18{left:236.346667pt;}
.x1a{left:245.466667pt;}
.x15{left:247.066655pt;}
.x14{left:248.866655pt;}
.x11{left:269.346655pt;}
.x13{left:311.426655pt;}
.x17{left:368.546667pt;}
.x8{left:373.666667pt;}
.x19{left:377.666667pt;}
.x10{left:396.866655pt;}
.x1b{left:547.613333pt;}
.x9{left:583.293333pt;}
.x4{left:676.453333pt;}
.xc{left:718.213333pt;}
}




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