
    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_68830fd8ff9a33013fd163f2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_daca3f23fde34674802f244d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_ab776921b7371727bcfd1ab9.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b970d7078f6253b786ffb73a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_b50b649837e34062de3654ed.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9080ad4624a2a784f7759146.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_04c1d955f8b857bc2ee99201.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_460a56b57b6895cedcc8eab4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.059082;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d7e0c3006b7c6434f82b42fc.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v1{vertical-align:-74.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls6{letter-spacing:-2.700000px;}
.ls7{letter-spacing:-2.520000px;}
.ls8{letter-spacing:-1.980000px;}
.ls4{letter-spacing:-0.924000px;}
.ls10{letter-spacing:-0.804000px;}
.ls9{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.085200px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.198000px;}
.lsf{letter-spacing:0.292200px;}
.lsa{letter-spacing:0.360000px;}
.ls13{letter-spacing:25.308000px;}
.ls1{letter-spacing:52.668000px;}
.lsc{letter-spacing:68.508000px;}
.lsb{letter-spacing:68.652000px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.wsb{word-spacing:-54.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws0{word-spacing:-14.970240px;}
.ws5{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.284000px;}
.ws3{word-spacing:-10.980000px;}
.ws8{word-spacing:-10.905000px;}
.wsa{word-spacing:-10.612800px;}
.ws7{word-spacing:-10.527600px;}
.ws2{word-spacing:-9.978240px;}
.ws9{word-spacing:-9.808800px;}
.ws6{word-spacing:0.000000px;}
._36{margin-left:-7.666320px;}
._18{margin-left:-5.814000px;}
._2f{margin-left:-4.656240px;}
._29{margin-left:-3.567600px;}
._8{margin-left:-2.502000px;}
._1{margin-left:-1.192320px;}
._0{width:1.254960px;}
._6{width:2.823120px;}
._e{width:4.237920px;}
._c{width:5.624640px;}
._b{width:7.182000px;}
._11{width:8.208000px;}
._a{width:9.778320px;}
._9{width:11.286000px;}
._5{width:12.420000px;}
._10{width:15.228000px;}
._f{width:16.308000px;}
._d{width:17.550000px;}
._12{width:18.647040px;}
._14{width:20.469360px;}
._4{width:21.918000px;}
._3{width:23.170320px;}
._17{width:24.246000px;}
._19{width:25.470720px;}
._23{width:26.648640px;}
._15{width:27.918000px;}
._25{width:29.808000px;}
._20{width:31.482000px;}
._13{width:32.553360px;}
._7{width:33.862320px;}
._1a{width:35.424000px;}
._1b{width:36.504000px;}
._28{width:37.584000px;}
._1d{width:38.902320px;}
._24{width:40.662000px;}
._1f{width:42.012000px;}
._1e{width:43.632000px;}
._41{width:45.198000px;}
._26{width:46.818000px;}
._27{width:47.916000px;}
._2d{width:49.068000px;}
._16{width:50.922000px;}
._37{width:53.383680px;}
._1c{width:54.778320px;}
._2a{width:72.900000px;}
._2b{width:74.088000px;}
._21{width:85.374000px;}
._22{width:86.458320px;}
._3e{width:95.148000px;}
._3a{width:103.410000px;}
._39{width:104.544000px;}
._3f{width:116.694000px;}
._40{width:120.046320px;}
._2c{width:141.912000px;}
._30{width:147.690000px;}
._38{width:148.715280px;}
._32{width:165.510000px;}
._33{width:166.859280px;}
._3b{width:202.878000px;}
._3c{width:205.061040px;}
._2e{width:298.083600px;}
._35{width:348.516000px;}
._34{width:349.596000px;}
._2{width:416.254560px;}
._3d{width:800.280000px;}
._31{width:926.316000px;}
.fc7{color:rgb(17,85,204);}
.fc6{color:transparent;}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y31{bottom:5.580000px;}
.y34{bottom:7.560000px;}
.y30{bottom:23.400000px;}
.y33{bottom:25.560000px;}
.y2f{bottom:50.220000px;}
.y5a{bottom:58.500000px;}
.y2e{bottom:68.040000px;}
.y4{bottom:77.220000px;}
.y2d{bottom:86.040000px;}
.y182{bottom:95.220000px;}
.y12d{bottom:98.100000px;}
.yf5{bottom:101.880000px;}
.y2c{bottom:103.860000px;}
.y6{bottom:105.120000px;}
.y47{bottom:108.180000px;}
.yde{bottom:110.880000px;}
.y58{bottom:111.060000px;}
.y181{bottom:113.220000px;}
.y12c{bottom:115.920000px;}
.y1ba{bottom:117.720000px;}
.y14e{bottom:118.980000px;}
.yf4{bottom:119.880000px;}
.y2b{bottom:121.680000px;}
.ydd{bottom:128.700000px;}
.y57{bottom:129.060000px;}
.y180{bottom:131.220000px;}
.y12b{bottom:133.740000px;}
.y46{bottom:135.360000px;}
.y1b9{bottom:135.720000px;}
.y14d{bottom:136.800000px;}
.yf3{bottom:137.700000px;}
.ydc{bottom:146.520000px;}
.y56{bottom:147.060000px;}
.y2a{bottom:148.530000px;}
.y17f{bottom:149.220000px;}
.y12a{bottom:151.560000px;}
.y45{bottom:153.180000px;}
.y1b8{bottom:153.720000px;}
.y14c{bottom:154.620000px;}
.yf2{bottom:155.520000px;}
.ydb{bottom:164.340000px;}
.y55{bottom:165.060000px;}
.y29{bottom:166.350000px;}
.y17e{bottom:167.220000px;}
.y129{bottom:169.380000px;}
.y44{bottom:171.180000px;}
.y1b7{bottom:171.720000px;}
.y14b{bottom:172.440000px;}
.yf1{bottom:173.340000px;}
.yda{bottom:182.160000px;}
.y54{bottom:183.060000px;}
.y28{bottom:184.350000px;}
.y17d{bottom:185.040000px;}
.y128{bottom:187.200000px;}
.y43{bottom:189.000000px;}
.y1b6{bottom:189.720000px;}
.y14a{bottom:190.260000px;}
.yf0{bottom:199.800000px;}
.yd9{bottom:200.160000px;}
.y27{bottom:202.170000px;}
.y17c{bottom:203.040000px;}
.y127{bottom:205.200000px;}
.y1b5{bottom:207.750000px;}
.y149{bottom:208.290000px;}
.y53{bottom:209.730000px;}
.y1a{bottom:210.990000px;}
.y42{bottom:215.850000px;}
.yd8{bottom:218.010000px;}
.y26{bottom:219.990000px;}
.y17b{bottom:221.070000px;}
.y126{bottom:223.050000px;}
.y1b4{bottom:225.570000px;}
.y148{bottom:226.110000px;}
.yef{bottom:227.190000px;}
.y41{bottom:233.670000px;}
.y52{bottom:236.550000px;}
.y19{bottom:237.810000px;}
.y17a{bottom:239.070000px;}
.y125{bottom:240.870000px;}
.y1b3{bottom:243.570000px;}
.y147{bottom:243.930000px;}
.yd7{bottom:244.830000px;}
.yee{bottom:245.010000px;}
.yb6{bottom:250.950000px;}
.y40{bottom:251.490000px;}
.y179{bottom:257.070000px;}
.yc0{bottom:259.410000px;}
.y1b2{bottom:261.570000px;}
.y146{bottom:261.750000px;}
.yd6{bottom:262.650000px;}
.yed{bottom:262.830000px;}
.y51{bottom:263.370000px;}
.y18{bottom:264.630000px;}
.y124{bottom:267.690000px;}
.y3f{bottom:269.490000px;}
.y178{bottom:275.070000px;}
.y145{bottom:279.570000px;}
.yd5{bottom:280.470000px;}
.yec{bottom:280.650000px;}
.y50{bottom:281.370000px;}
.y25{bottom:282.450000px;}
.y123{bottom:285.510000px;}
.y3e{bottom:287.310000px;}
.yb5{bottom:289.110000px;}
.ybc{bottom:289.470000px;}
.ybf{bottom:289.650000px;}
.y17{bottom:291.270000px;}
.y177{bottom:293.070000px;}
.y144{bottom:297.390000px;}
.y1b1{bottom:297.570000px;}
.yd4{bottom:298.290000px;}
.yeb{bottom:298.470000px;}
.y4f{bottom:299.190000px;}
.y24{bottom:300.450000px;}
.y122{bottom:303.510000px;}
.y3d{bottom:305.130000px;}
.ybb{bottom:307.470000px;}
.y88{bottom:310.710000px;}
.y176{bottom:311.070000px;}
.y1b0{bottom:315.570000px;}
.y16{bottom:316.110000px;}
.yea{bottom:316.290000px;}
.y4e{bottom:317.010000px;}
.y23{bottom:318.270000px;}
.y121{bottom:321.330000px;}
.y3c{bottom:322.950000px;}
.yd3{bottom:324.930000px;}
.ybe{bottom:325.470000px;}
.y143{bottom:325.830000px;}
.y87{bottom:328.710000px;}
.y175{bottom:329.070000px;}
.y1af{bottom:333.570000px;}
.yba{bottom:334.290000px;}
.y4d{bottom:334.830000px;}
.y22{bottom:336.090000px;}
.y120{bottom:339.150000px;}
.y15{bottom:340.590000px;}
.y3b{bottom:340.770000px;}
.ybd{bottom:343.290000px;}
.y174{bottom:347.070000px;}
.y86{bottom:347.790000px;}
.yb4{bottom:349.410000px;}
.y1ae{bottom:351.570000px;}
.yd2{bottom:352.110000px;}
.y4c{bottom:352.650000px;}
.y21{bottom:353.910000px;}
.y11f{bottom:356.970000px;}
.y142{bottom:357.150000px;}
.y3a{bottom:358.590000px;}
.yb9{bottom:361.110000px;}
.y173{bottom:364.890000px;}
.y14{bottom:365.070000px;}
.y85{bottom:365.610000px;}
.yb3{bottom:367.230000px;}
.y1ad{bottom:369.570000px;}
.yd1{bottom:369.930000px;}
.y4b{bottom:370.650000px;}
.y11e{bottom:374.790000px;}
.y141{bottom:374.970000px;}
.y39{bottom:376.590000px;}
.y13{bottom:380.775000px;}
.y172{bottom:382.890000px;}
.y84{bottom:383.610000px;}
.yb2{bottom:385.230000px;}
.y1ac{bottom:387.570000px;}
.yd0{bottom:387.750000px;}
.y4a{bottom:388.470000px;}
.y140{bottom:392.790000px;}
.yb8{bottom:393.690000px;}
.y38{bottom:394.410000px;}
.ye9{bottom:396.750000px;}
.y20{bottom:398.775000px;}
.y171{bottom:400.890000px;}
.y83{bottom:401.610000px;}
.yb1{bottom:403.050000px;}
.y1ab{bottom:405.390000px;}
.ycf{bottom:405.570000px;}
.y49{bottom:406.290000px;}
.y12{bottom:407.595000px;}
.yb7{bottom:409.350000px;}
.y13f{bottom:410.610000px;}
.y37{bottom:412.230000px;}
.ye8{bottom:414.570000px;}
.y1f{bottom:416.595000px;}
.y170{bottom:418.890000px;}
.y11d{bottom:419.610000px;}
.y82{bottom:420.690000px;}
.yb0{bottom:420.870000px;}
.y1aa{bottom:423.390000px;}
.yce{bottom:423.570000px;}
.y11{bottom:425.415000px;}
.y13e{bottom:428.610000px;}
.y36{bottom:430.050000px;}
.ye7{bottom:432.570000px;}
.y1e{bottom:434.415000px;}
.y48{bottom:434.550000px;}
.y16f{bottom:436.890000px;}
.y11c{bottom:437.430000px;}
.y81{bottom:438.510000px;}
.yaf{bottom:438.690000px;}
.ycd{bottom:441.435000px;}
.y10{bottom:443.235000px;}
.y13d{bottom:446.475000px;}
.ye6{bottom:450.435000px;}
.y1d{bottom:452.235000px;}
.y16e{bottom:454.935000px;}
.y11b{bottom:455.295000px;}
.y80{bottom:456.555000px;}
.y35{bottom:458.355000px;}
.y1a9{bottom:459.435000px;}
.y13c{bottom:464.295000px;}
.ycc{bottom:468.255000px;}
.yf{bottom:469.695000px;}
.y1c{bottom:470.055000px;}
.y16d{bottom:472.935000px;}
.y11a{bottom:473.115000px;}
.yae{bottom:474.375000px;}
.y7f{bottom:474.555000px;}
.ye5{bottom:477.255000px;}
.y1a8{bottom:477.435000px;}
.y13b{bottom:482.115000px;}
.y32{bottom:484.995000px;}
.ycb{bottom:486.075000px;}
.ye{bottom:487.515000px;}
.y1b{bottom:487.875000px;}
.y119{bottom:490.935000px;}
.yad{bottom:492.375000px;}
.ye4{bottom:495.075000px;}
.y1a7{bottom:495.435000px;}
.y1bc{bottom:498.315000px;}
.y13a{bottom:499.935000px;}
.y7e{bottom:502.275000px;}
.yca{bottom:503.895000px;}
.y16c{bottom:508.935000px;}
.yac{bottom:510.195000px;}
.ye3{bottom:512.895000px;}
.y1a6{bottom:513.435000px;}
.y118{bottom:517.935000px;}
.y7d{bottom:520.095000px;}
.yc9{bottom:521.715000px;}
.y16b{bottom:526.935000px;}
.yab{bottom:528.015000px;}
.ye2{bottom:530.715000px;}
.y1bb{bottom:531.255000px;}
.y1a5{bottom:531.435000px;}
.yd{bottom:532.515000px;}
.y117{bottom:535.755000px;}
.yc8{bottom:539.715000px;}
.y16a{bottom:544.755000px;}
.yaa{bottom:545.835000px;}
.y7c{bottom:546.915000px;}
.ye1{bottom:548.715000px;}
.y1a4{bottom:549.435000px;}
.y116{bottom:553.575000px;}
.yc7{bottom:557.535000px;}
.y169{bottom:562.755000px;}
.y7b{bottom:564.735000px;}
.ye0{bottom:566.535000px;}
.y1a3{bottom:567.435000px;}
.y115{bottom:571.395000px;}
.ya9{bottom:572.655000px;}
.y168{bottom:580.755000px;}
.y7a{bottom:582.555000px;}
.yc6{bottom:584.355000px;}
.y1a2{bottom:585.255000px;}
.y114{bottom:589.215000px;}
.ya8{bottom:590.475000px;}
.y139{bottom:598.215000px;}
.y167{bottom:598.755000px;}
.y79{bottom:600.555000px;}
.yc5{bottom:602.175000px;}
.y1a1{bottom:603.255000px;}
.y113{bottom:607.035000px;}
.ya7{bottom:608.475000px;}
.ydf{bottom:611.175000px;}
.y138{bottom:616.035000px;}
.y166{bottom:616.755000px;}
.y78{bottom:618.375000px;}
.y1a0{bottom:621.255000px;}
.ya6{bottom:626.295000px;}
.yc4{bottom:628.995000px;}
.y112{bottom:634.035000px;}
.y165{bottom:634.755000px;}
.y77{bottom:636.195000px;}
.y19f{bottom:639.255000px;}
.ya5{bottom:644.115000px;}
.y111{bottom:651.855000px;}
.y164{bottom:652.755000px;}
.y76{bottom:654.015000px;}
.y19e{bottom:657.255000px;}
.yc3{bottom:661.575000px;}
.ya4{bottom:661.935000px;}
.y110{bottom:669.675000px;}
.y163{bottom:670.755000px;}
.y75{bottom:671.835000px;}
.y19d{bottom:675.255000px;}
.yc2{bottom:679.425000px;}
.ya3{bottom:679.785000px;}
.y10f{bottom:687.525000px;}
.y162{bottom:688.785000px;}
.y74{bottom:689.865000px;}
.y19c{bottom:693.285000px;}
.yc1{bottom:695.265000px;}
.ya2{bottom:697.785000px;}
.y10e{bottom:705.345000px;}
.y161{bottom:706.605000px;}
.y73{bottom:707.685000px;}
.y19b{bottom:711.285000px;}
.ya1{bottom:715.605000px;}
.y137{bottom:723.165000px;}
.y160{bottom:724.605000px;}
.y72{bottom:725.505000px;}
.y19a{bottom:729.285000px;}
.y10d{bottom:732.165000px;}
.ya0{bottom:733.425000px;}
.y136{bottom:741.165000px;}
.y15f{bottom:742.605000px;}
.y71{bottom:743.325000px;}
.y199{bottom:747.285000px;}
.y10c{bottom:750.165000px;}
.y9f{bottom:751.245000px;}
.y135{bottom:758.985000px;}
.y15e{bottom:760.605000px;}
.y70{bottom:761.145000px;}
.y198{bottom:765.105000px;}
.y10b{bottom:767.985000px;}
.y9e{bottom:769.065000px;}
.y134{bottom:776.805000px;}
.y15d{bottom:778.605000px;}
.y6f{bottom:778.965000px;}
.y197{bottom:783.105000px;}
.y10a{bottom:785.805000px;}
.y9d{bottom:786.885000px;}
.y15c{bottom:796.605000px;}
.y6e{bottom:796.965000px;}
.y196{bottom:801.105000px;}
.y109{bottom:803.625000px;}
.y9c{bottom:804.885000px;}
.y15b{bottom:814.605000px;}
.y195{bottom:819.105000px;}
.y108{bottom:821.445000px;}
.y9b{bottom:822.705000px;}
.y6d{bottom:825.225000px;}
.y15a{bottom:832.605000px;}
.y194{bottom:837.105000px;}
.y107{bottom:839.445000px;}
.y9a{bottom:840.525000px;}
.y159{bottom:850.605000px;}
.y193{bottom:855.105000px;}
.y6c{bottom:856.545000px;}
.y106{bottom:857.265000px;}
.y99{bottom:858.345000px;}
.y158{bottom:868.605000px;}
.y192{bottom:873.105000px;}
.y6b{bottom:874.365000px;}
.y105{bottom:875.085000px;}
.y98{bottom:876.165000px;}
.y157{bottom:886.425000px;}
.y191{bottom:891.105000px;}
.y6a{bottom:892.185000px;}
.y104{bottom:892.905000px;}
.y97{bottom:894.165000px;}
.y156{bottom:904.425000px;}
.y190{bottom:909.105000px;}
.y103{bottom:910.770000px;}
.y96{bottom:912.030000px;}
.y69{bottom:919.230000px;}
.y155{bottom:922.470000px;}
.y18f{bottom:927.150000px;}
.y133{bottom:928.590000px;}
.y95{bottom:929.850000px;}
.y68{bottom:937.050000px;}
.y102{bottom:937.590000px;}
.y154{bottom:940.470000px;}
.y18e{bottom:944.970000px;}
.y132{bottom:946.590000px;}
.y94{bottom:947.670000px;}
.y67{bottom:954.870000px;}
.y101{bottom:955.590000px;}
.y153{bottom:958.470000px;}
.y18d{bottom:962.970000px;}
.y93{bottom:965.490000px;}
.y66{bottom:972.690000px;}
.y100{bottom:973.410000px;}
.y152{bottom:976.470000px;}
.y18c{bottom:980.970000px;}
.y92{bottom:983.310000px;}
.yff{bottom:991.230000px;}
.y18b{bottom:998.970000px;}
.y65{bottom:999.510000px;}
.y151{bottom:1004.550000px;}
.yfe{bottom:1009.050000px;}
.y91{bottom:1011.750000px;}
.y18a{bottom:1016.970000px;}
.y64{bottom:1017.510000px;}
.yfd{bottom:1026.870000px;}
.y189{bottom:1034.970000px;}
.y63{bottom:1035.330000px;}
.y150{bottom:1035.870000px;}
.y90{bottom:1043.070000px;}
.yfc{bottom:1044.870000px;}
.yc{bottom:1048.110000px;}
.y188{bottom:1052.970000px;}
.y62{bottom:1053.150000px;}
.y14f{bottom:1053.870000px;}
.y8f{bottom:1060.890000px;}
.y131{bottom:1062.690000px;}
.y61{bottom:1070.970000px;}
.yfb{bottom:1071.690000px;}
.yb{bottom:1074.570000px;}
.y8e{bottom:1078.710000px;}
.y130{bottom:1080.510000px;}
.y60{bottom:1088.790000px;}
.y187{bottom:1088.970000px;}
.yfa{bottom:1089.510000px;}
.y12f{bottom:1098.330000px;}
.ya{bottom:1104.450000px;}
.y8d{bottom:1105.890000px;}
.y186{bottom:1106.970000px;}
.yf9{bottom:1107.330000px;}
.y5{bottom:1112.940000px;}
.y5f{bottom:1115.970000px;}
.y12e{bottom:1116.150000px;}
.y8c{bottom:1123.890000px;}
.y185{bottom:1124.790000px;}
.yf8{bottom:1125.150000px;}
.y9{bottom:1132.350000px;}
.y5e{bottom:1133.970000px;}
.y8b{bottom:1141.890000px;}
.y184{bottom:1142.790000px;}
.yf7{bottom:1142.970000px;}
.y5d{bottom:1152.000000px;}
.y8a{bottom:1159.740000px;}
.y183{bottom:1160.820000px;}
.yf6{bottom:1161.000000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y5c{bottom:1170.000000px;}
.y89{bottom:1178.820000px;}
.y2{bottom:1181.520000px;}
.y7{bottom:1191.240000px;}
.y5b{bottom:1196.640000px;}
.y1{bottom:1196.820000px;}
.y59{bottom:1224.540000px;}
.h11{height:39.049805px;}
.h13{height:40.843828px;}
.hf{height:46.785000px;}
.h5{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.he{height:52.971680px;}
.hb{height:52.998047px;}
.hd{height:54.421875px;}
.h12{height:55.503491px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h10{height:72.562500px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:509.100000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w3{width:211.933500px;}
.w4{width:541.365000px;}
.w5{width:754.198500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.098500px;}
.x3{left:12.090000px;}
.x1{left:54.000000px;}
.x12{left:55.440000px;}
.x1a{left:59.760000px;}
.xa{left:69.481500px;}
.x6{left:73.800000px;}
.x15{left:81.000000px;}
.xd{left:95.256000px;}
.x16{left:108.036000px;}
.x18{left:230.970000px;}
.x1b{left:239.970000px;}
.x7{left:243.210000px;}
.x9{left:249.150000px;}
.xc{left:282.315000px;}
.x8{left:383.835000px;}
.x14{left:434.055000px;}
.xe{left:473.505000px;}
.x10{left:500.505000px;}
.xf{left:514.725000px;}
.x11{left:527.505000px;}
.x13{left:680.550000px;}
.x17{left:753.990000px;}
.x19{left:764.250000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls6{letter-spacing:-2.400000pt;}
.ls7{letter-spacing:-2.240000pt;}
.ls8{letter-spacing:-1.760000pt;}
.ls4{letter-spacing:-0.821333pt;}
.ls10{letter-spacing:-0.714667pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.075733pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.176000pt;}
.lsf{letter-spacing:0.259733pt;}
.lsa{letter-spacing:0.320000pt;}
.ls13{letter-spacing:22.496000pt;}
.ls1{letter-spacing:46.816000pt;}
.lsc{letter-spacing:60.896000pt;}
.lsb{letter-spacing:61.024000pt;}
.ls0{letter-spacing:946.186667pt;}
.wsb{word-spacing:-48.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws5{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.808000pt;}
.ws3{word-spacing:-9.760000pt;}
.ws8{word-spacing:-9.693333pt;}
.wsa{word-spacing:-9.433600pt;}
.ws7{word-spacing:-9.357867pt;}
.ws2{word-spacing:-8.869547pt;}
.ws9{word-spacing:-8.718933pt;}
.ws6{word-spacing:0.000000pt;}
._36{margin-left:-6.814507pt;}
._18{margin-left:-5.168000pt;}
._2f{margin-left:-4.138880pt;}
._29{margin-left:-3.171200pt;}
._8{margin-left:-2.224000pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._6{width:2.509440pt;}
._e{width:3.767040pt;}
._c{width:4.999680pt;}
._b{width:6.384000pt;}
._11{width:7.296000pt;}
._a{width:8.691840pt;}
._9{width:10.032000pt;}
._5{width:11.040000pt;}
._10{width:13.536000pt;}
._f{width:14.496000pt;}
._d{width:15.600000pt;}
._12{width:16.575147pt;}
._14{width:18.194987pt;}
._4{width:19.482667pt;}
._3{width:20.595840pt;}
._17{width:21.552000pt;}
._19{width:22.640640pt;}
._23{width:23.687680pt;}
._15{width:24.816000pt;}
._25{width:26.496000pt;}
._20{width:27.984000pt;}
._13{width:28.936320pt;}
._7{width:30.099840pt;}
._1a{width:31.488000pt;}
._1b{width:32.448000pt;}
._28{width:33.408000pt;}
._1d{width:34.579840pt;}
._24{width:36.144000pt;}
._1f{width:37.344000pt;}
._1e{width:38.784000pt;}
._41{width:40.176000pt;}
._26{width:41.616000pt;}
._27{width:42.592000pt;}
._2d{width:43.616000pt;}
._16{width:45.264000pt;}
._37{width:47.452160pt;}
._1c{width:48.691840pt;}
._2a{width:64.800000pt;}
._2b{width:65.856000pt;}
._21{width:75.888000pt;}
._22{width:76.851840pt;}
._3e{width:84.576000pt;}
._3a{width:91.920000pt;}
._39{width:92.928000pt;}
._3f{width:103.728000pt;}
._40{width:106.707840pt;}
._2c{width:126.144000pt;}
._30{width:131.280000pt;}
._38{width:132.191360pt;}
._32{width:147.120000pt;}
._33{width:148.319360pt;}
._3b{width:180.336000pt;}
._3c{width:182.276480pt;}
._2e{width:264.963200pt;}
._35{width:309.792000pt;}
._34{width:310.752000pt;}
._2{width:370.004053pt;}
._3d{width:711.360000pt;}
._31{width:823.392000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:4.960000pt;}
.y34{bottom:6.720000pt;}
.y30{bottom:20.800000pt;}
.y33{bottom:22.720000pt;}
.y2f{bottom:44.640000pt;}
.y5a{bottom:52.000000pt;}
.y2e{bottom:60.480000pt;}
.y4{bottom:68.640000pt;}
.y2d{bottom:76.480000pt;}
.y182{bottom:84.640000pt;}
.y12d{bottom:87.200000pt;}
.yf5{bottom:90.560000pt;}
.y2c{bottom:92.320000pt;}
.y6{bottom:93.440000pt;}
.y47{bottom:96.160000pt;}
.yde{bottom:98.560000pt;}
.y58{bottom:98.720000pt;}
.y181{bottom:100.640000pt;}
.y12c{bottom:103.040000pt;}
.y1ba{bottom:104.640000pt;}
.y14e{bottom:105.760000pt;}
.yf4{bottom:106.560000pt;}
.y2b{bottom:108.160000pt;}
.ydd{bottom:114.400000pt;}
.y57{bottom:114.720000pt;}
.y180{bottom:116.640000pt;}
.y12b{bottom:118.880000pt;}
.y46{bottom:120.320000pt;}
.y1b9{bottom:120.640000pt;}
.y14d{bottom:121.600000pt;}
.yf3{bottom:122.400000pt;}
.ydc{bottom:130.240000pt;}
.y56{bottom:130.720000pt;}
.y2a{bottom:132.026667pt;}
.y17f{bottom:132.640000pt;}
.y12a{bottom:134.720000pt;}
.y45{bottom:136.160000pt;}
.y1b8{bottom:136.640000pt;}
.y14c{bottom:137.440000pt;}
.yf2{bottom:138.240000pt;}
.ydb{bottom:146.080000pt;}
.y55{bottom:146.720000pt;}
.y29{bottom:147.866667pt;}
.y17e{bottom:148.640000pt;}
.y129{bottom:150.560000pt;}
.y44{bottom:152.160000pt;}
.y1b7{bottom:152.640000pt;}
.y14b{bottom:153.280000pt;}
.yf1{bottom:154.080000pt;}
.yda{bottom:161.920000pt;}
.y54{bottom:162.720000pt;}
.y28{bottom:163.866667pt;}
.y17d{bottom:164.480000pt;}
.y128{bottom:166.400000pt;}
.y43{bottom:168.000000pt;}
.y1b6{bottom:168.640000pt;}
.y14a{bottom:169.120000pt;}
.yf0{bottom:177.600000pt;}
.yd9{bottom:177.920000pt;}
.y27{bottom:179.706667pt;}
.y17c{bottom:180.480000pt;}
.y127{bottom:182.400000pt;}
.y1b5{bottom:184.666667pt;}
.y149{bottom:185.146667pt;}
.y53{bottom:186.426667pt;}
.y1a{bottom:187.546667pt;}
.y42{bottom:191.866667pt;}
.yd8{bottom:193.786667pt;}
.y26{bottom:195.546667pt;}
.y17b{bottom:196.506667pt;}
.y126{bottom:198.266667pt;}
.y1b4{bottom:200.506667pt;}
.y148{bottom:200.986667pt;}
.yef{bottom:201.946667pt;}
.y41{bottom:207.706667pt;}
.y52{bottom:210.266667pt;}
.y19{bottom:211.386667pt;}
.y17a{bottom:212.506667pt;}
.y125{bottom:214.106667pt;}
.y1b3{bottom:216.506667pt;}
.y147{bottom:216.826667pt;}
.yd7{bottom:217.626667pt;}
.yee{bottom:217.786667pt;}
.yb6{bottom:223.066667pt;}
.y40{bottom:223.546667pt;}
.y179{bottom:228.506667pt;}
.yc0{bottom:230.586667pt;}
.y1b2{bottom:232.506667pt;}
.y146{bottom:232.666667pt;}
.yd6{bottom:233.466667pt;}
.yed{bottom:233.626667pt;}
.y51{bottom:234.106667pt;}
.y18{bottom:235.226667pt;}
.y124{bottom:237.946667pt;}
.y3f{bottom:239.546667pt;}
.y178{bottom:244.506667pt;}
.y145{bottom:248.506667pt;}
.yd5{bottom:249.306667pt;}
.yec{bottom:249.466667pt;}
.y50{bottom:250.106667pt;}
.y25{bottom:251.066667pt;}
.y123{bottom:253.786667pt;}
.y3e{bottom:255.386667pt;}
.yb5{bottom:256.986667pt;}
.ybc{bottom:257.306667pt;}
.ybf{bottom:257.466667pt;}
.y17{bottom:258.906667pt;}
.y177{bottom:260.506667pt;}
.y144{bottom:264.346667pt;}
.y1b1{bottom:264.506667pt;}
.yd4{bottom:265.146667pt;}
.yeb{bottom:265.306667pt;}
.y4f{bottom:265.946667pt;}
.y24{bottom:267.066667pt;}
.y122{bottom:269.786667pt;}
.y3d{bottom:271.226667pt;}
.ybb{bottom:273.306667pt;}
.y88{bottom:276.186667pt;}
.y176{bottom:276.506667pt;}
.y1b0{bottom:280.506667pt;}
.y16{bottom:280.986667pt;}
.yea{bottom:281.146667pt;}
.y4e{bottom:281.786667pt;}
.y23{bottom:282.906667pt;}
.y121{bottom:285.626667pt;}
.y3c{bottom:287.066667pt;}
.yd3{bottom:288.826667pt;}
.ybe{bottom:289.306667pt;}
.y143{bottom:289.626667pt;}
.y87{bottom:292.186667pt;}
.y175{bottom:292.506667pt;}
.y1af{bottom:296.506667pt;}
.yba{bottom:297.146667pt;}
.y4d{bottom:297.626667pt;}
.y22{bottom:298.746667pt;}
.y120{bottom:301.466667pt;}
.y15{bottom:302.746667pt;}
.y3b{bottom:302.906667pt;}
.ybd{bottom:305.146667pt;}
.y174{bottom:308.506667pt;}
.y86{bottom:309.146667pt;}
.yb4{bottom:310.586667pt;}
.y1ae{bottom:312.506667pt;}
.yd2{bottom:312.986667pt;}
.y4c{bottom:313.466667pt;}
.y21{bottom:314.586667pt;}
.y11f{bottom:317.306667pt;}
.y142{bottom:317.466667pt;}
.y3a{bottom:318.746667pt;}
.yb9{bottom:320.986667pt;}
.y173{bottom:324.346667pt;}
.y14{bottom:324.506667pt;}
.y85{bottom:324.986667pt;}
.yb3{bottom:326.426667pt;}
.y1ad{bottom:328.506667pt;}
.yd1{bottom:328.826667pt;}
.y4b{bottom:329.466667pt;}
.y11e{bottom:333.146667pt;}
.y141{bottom:333.306667pt;}
.y39{bottom:334.746667pt;}
.y13{bottom:338.466667pt;}
.y172{bottom:340.346667pt;}
.y84{bottom:340.986667pt;}
.yb2{bottom:342.426667pt;}
.y1ac{bottom:344.506667pt;}
.yd0{bottom:344.666667pt;}
.y4a{bottom:345.306667pt;}
.y140{bottom:349.146667pt;}
.yb8{bottom:349.946667pt;}
.y38{bottom:350.586667pt;}
.ye9{bottom:352.666667pt;}
.y20{bottom:354.466667pt;}
.y171{bottom:356.346667pt;}
.y83{bottom:356.986667pt;}
.yb1{bottom:358.266667pt;}
.y1ab{bottom:360.346667pt;}
.ycf{bottom:360.506667pt;}
.y49{bottom:361.146667pt;}
.y12{bottom:362.306667pt;}
.yb7{bottom:363.866667pt;}
.y13f{bottom:364.986667pt;}
.y37{bottom:366.426667pt;}
.ye8{bottom:368.506667pt;}
.y1f{bottom:370.306667pt;}
.y170{bottom:372.346667pt;}
.y11d{bottom:372.986667pt;}
.y82{bottom:373.946667pt;}
.yb0{bottom:374.106667pt;}
.y1aa{bottom:376.346667pt;}
.yce{bottom:376.506667pt;}
.y11{bottom:378.146667pt;}
.y13e{bottom:380.986667pt;}
.y36{bottom:382.266667pt;}
.ye7{bottom:384.506667pt;}
.y1e{bottom:386.146667pt;}
.y48{bottom:386.266667pt;}
.y16f{bottom:388.346667pt;}
.y11c{bottom:388.826667pt;}
.y81{bottom:389.786667pt;}
.yaf{bottom:389.946667pt;}
.ycd{bottom:392.386667pt;}
.y10{bottom:393.986667pt;}
.y13d{bottom:396.866667pt;}
.ye6{bottom:400.386667pt;}
.y1d{bottom:401.986667pt;}
.y16e{bottom:404.386667pt;}
.y11b{bottom:404.706667pt;}
.y80{bottom:405.826667pt;}
.y35{bottom:407.426667pt;}
.y1a9{bottom:408.386667pt;}
.y13c{bottom:412.706667pt;}
.ycc{bottom:416.226667pt;}
.yf{bottom:417.506667pt;}
.y1c{bottom:417.826667pt;}
.y16d{bottom:420.386667pt;}
.y11a{bottom:420.546667pt;}
.yae{bottom:421.666667pt;}
.y7f{bottom:421.826667pt;}
.ye5{bottom:424.226667pt;}
.y1a8{bottom:424.386667pt;}
.y13b{bottom:428.546667pt;}
.y32{bottom:431.106667pt;}
.ycb{bottom:432.066667pt;}
.ye{bottom:433.346667pt;}
.y1b{bottom:433.666667pt;}
.y119{bottom:436.386667pt;}
.yad{bottom:437.666667pt;}
.ye4{bottom:440.066667pt;}
.y1a7{bottom:440.386667pt;}
.y1bc{bottom:442.946667pt;}
.y13a{bottom:444.386667pt;}
.y7e{bottom:446.466667pt;}
.yca{bottom:447.906667pt;}
.y16c{bottom:452.386667pt;}
.yac{bottom:453.506667pt;}
.ye3{bottom:455.906667pt;}
.y1a6{bottom:456.386667pt;}
.y118{bottom:460.386667pt;}
.y7d{bottom:462.306667pt;}
.yc9{bottom:463.746667pt;}
.y16b{bottom:468.386667pt;}
.yab{bottom:469.346667pt;}
.ye2{bottom:471.746667pt;}
.y1bb{bottom:472.226667pt;}
.y1a5{bottom:472.386667pt;}
.yd{bottom:473.346667pt;}
.y117{bottom:476.226667pt;}
.yc8{bottom:479.746667pt;}
.y16a{bottom:484.226667pt;}
.yaa{bottom:485.186667pt;}
.y7c{bottom:486.146667pt;}
.ye1{bottom:487.746667pt;}
.y1a4{bottom:488.386667pt;}
.y116{bottom:492.066667pt;}
.yc7{bottom:495.586667pt;}
.y169{bottom:500.226667pt;}
.y7b{bottom:501.986667pt;}
.ye0{bottom:503.586667pt;}
.y1a3{bottom:504.386667pt;}
.y115{bottom:507.906667pt;}
.ya9{bottom:509.026667pt;}
.y168{bottom:516.226667pt;}
.y7a{bottom:517.826667pt;}
.yc6{bottom:519.426667pt;}
.y1a2{bottom:520.226667pt;}
.y114{bottom:523.746667pt;}
.ya8{bottom:524.866667pt;}
.y139{bottom:531.746667pt;}
.y167{bottom:532.226667pt;}
.y79{bottom:533.826667pt;}
.yc5{bottom:535.266667pt;}
.y1a1{bottom:536.226667pt;}
.y113{bottom:539.586667pt;}
.ya7{bottom:540.866667pt;}
.ydf{bottom:543.266667pt;}
.y138{bottom:547.586667pt;}
.y166{bottom:548.226667pt;}
.y78{bottom:549.666667pt;}
.y1a0{bottom:552.226667pt;}
.ya6{bottom:556.706667pt;}
.yc4{bottom:559.106667pt;}
.y112{bottom:563.586667pt;}
.y165{bottom:564.226667pt;}
.y77{bottom:565.506667pt;}
.y19f{bottom:568.226667pt;}
.ya5{bottom:572.546667pt;}
.y111{bottom:579.426667pt;}
.y164{bottom:580.226667pt;}
.y76{bottom:581.346667pt;}
.y19e{bottom:584.226667pt;}
.yc3{bottom:588.066667pt;}
.ya4{bottom:588.386667pt;}
.y110{bottom:595.266667pt;}
.y163{bottom:596.226667pt;}
.y75{bottom:597.186667pt;}
.y19d{bottom:600.226667pt;}
.yc2{bottom:603.933333pt;}
.ya3{bottom:604.253333pt;}
.y10f{bottom:611.133333pt;}
.y162{bottom:612.253333pt;}
.y74{bottom:613.213333pt;}
.y19c{bottom:616.253333pt;}
.yc1{bottom:618.013333pt;}
.ya2{bottom:620.253333pt;}
.y10e{bottom:626.973333pt;}
.y161{bottom:628.093333pt;}
.y73{bottom:629.053333pt;}
.y19b{bottom:632.253333pt;}
.ya1{bottom:636.093333pt;}
.y137{bottom:642.813333pt;}
.y160{bottom:644.093333pt;}
.y72{bottom:644.893333pt;}
.y19a{bottom:648.253333pt;}
.y10d{bottom:650.813333pt;}
.ya0{bottom:651.933333pt;}
.y136{bottom:658.813333pt;}
.y15f{bottom:660.093333pt;}
.y71{bottom:660.733333pt;}
.y199{bottom:664.253333pt;}
.y10c{bottom:666.813333pt;}
.y9f{bottom:667.773333pt;}
.y135{bottom:674.653333pt;}
.y15e{bottom:676.093333pt;}
.y70{bottom:676.573333pt;}
.y198{bottom:680.093333pt;}
.y10b{bottom:682.653333pt;}
.y9e{bottom:683.613333pt;}
.y134{bottom:690.493333pt;}
.y15d{bottom:692.093333pt;}
.y6f{bottom:692.413333pt;}
.y197{bottom:696.093333pt;}
.y10a{bottom:698.493333pt;}
.y9d{bottom:699.453333pt;}
.y15c{bottom:708.093333pt;}
.y6e{bottom:708.413333pt;}
.y196{bottom:712.093333pt;}
.y109{bottom:714.333333pt;}
.y9c{bottom:715.453333pt;}
.y15b{bottom:724.093333pt;}
.y195{bottom:728.093333pt;}
.y108{bottom:730.173333pt;}
.y9b{bottom:731.293333pt;}
.y6d{bottom:733.533333pt;}
.y15a{bottom:740.093333pt;}
.y194{bottom:744.093333pt;}
.y107{bottom:746.173333pt;}
.y9a{bottom:747.133333pt;}
.y159{bottom:756.093333pt;}
.y193{bottom:760.093333pt;}
.y6c{bottom:761.373333pt;}
.y106{bottom:762.013333pt;}
.y99{bottom:762.973333pt;}
.y158{bottom:772.093333pt;}
.y192{bottom:776.093333pt;}
.y6b{bottom:777.213333pt;}
.y105{bottom:777.853333pt;}
.y98{bottom:778.813333pt;}
.y157{bottom:787.933333pt;}
.y191{bottom:792.093333pt;}
.y6a{bottom:793.053333pt;}
.y104{bottom:793.693333pt;}
.y97{bottom:794.813333pt;}
.y156{bottom:803.933333pt;}
.y190{bottom:808.093333pt;}
.y103{bottom:809.573333pt;}
.y96{bottom:810.693333pt;}
.y69{bottom:817.093333pt;}
.y155{bottom:819.973333pt;}
.y18f{bottom:824.133333pt;}
.y133{bottom:825.413333pt;}
.y95{bottom:826.533333pt;}
.y68{bottom:832.933333pt;}
.y102{bottom:833.413333pt;}
.y154{bottom:835.973333pt;}
.y18e{bottom:839.973333pt;}
.y132{bottom:841.413333pt;}
.y94{bottom:842.373333pt;}
.y67{bottom:848.773333pt;}
.y101{bottom:849.413333pt;}
.y153{bottom:851.973333pt;}
.y18d{bottom:855.973333pt;}
.y93{bottom:858.213333pt;}
.y66{bottom:864.613333pt;}
.y100{bottom:865.253333pt;}
.y152{bottom:867.973333pt;}
.y18c{bottom:871.973333pt;}
.y92{bottom:874.053333pt;}
.yff{bottom:881.093333pt;}
.y18b{bottom:887.973333pt;}
.y65{bottom:888.453333pt;}
.y151{bottom:892.933333pt;}
.yfe{bottom:896.933333pt;}
.y91{bottom:899.333333pt;}
.y18a{bottom:903.973333pt;}
.y64{bottom:904.453333pt;}
.yfd{bottom:912.773333pt;}
.y189{bottom:919.973333pt;}
.y63{bottom:920.293333pt;}
.y150{bottom:920.773333pt;}
.y90{bottom:927.173333pt;}
.yfc{bottom:928.773333pt;}
.yc{bottom:931.653333pt;}
.y188{bottom:935.973333pt;}
.y62{bottom:936.133333pt;}
.y14f{bottom:936.773333pt;}
.y8f{bottom:943.013333pt;}
.y131{bottom:944.613333pt;}
.y61{bottom:951.973333pt;}
.yfb{bottom:952.613333pt;}
.yb{bottom:955.173333pt;}
.y8e{bottom:958.853333pt;}
.y130{bottom:960.453333pt;}
.y60{bottom:967.813333pt;}
.y187{bottom:967.973333pt;}
.yfa{bottom:968.453333pt;}
.y12f{bottom:976.293333pt;}
.ya{bottom:981.733333pt;}
.y8d{bottom:983.013333pt;}
.y186{bottom:983.973333pt;}
.yf9{bottom:984.293333pt;}
.y5{bottom:989.280000pt;}
.y5f{bottom:991.973333pt;}
.y12e{bottom:992.133333pt;}
.y8c{bottom:999.013333pt;}
.y185{bottom:999.813333pt;}
.yf8{bottom:1000.133333pt;}
.y9{bottom:1006.533333pt;}
.y5e{bottom:1007.973333pt;}
.y8b{bottom:1015.013333pt;}
.y184{bottom:1015.813333pt;}
.yf7{bottom:1015.973333pt;}
.y5d{bottom:1024.000000pt;}
.y8a{bottom:1030.880000pt;}
.y183{bottom:1031.840000pt;}
.yf6{bottom:1032.000000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y5c{bottom:1040.000000pt;}
.y89{bottom:1047.840000pt;}
.y2{bottom:1050.240000pt;}
.y7{bottom:1058.880000pt;}
.y5b{bottom:1063.680000pt;}
.y1{bottom:1063.840000pt;}
.y59{bottom:1088.480000pt;}
.h11{height:34.710938pt;}
.h13{height:36.305625pt;}
.hf{height:41.586667pt;}
.h5{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.he{height:47.085938pt;}
.hb{height:47.109375pt;}
.hd{height:48.375000pt;}
.h12{height:49.336436pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h10{height:64.500000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:452.533333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w3{width:188.385333pt;}
.w4{width:481.213333pt;}
.w5{width:670.398667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.198667pt;}
.x3{left:10.746667pt;}
.x1{left:48.000000pt;}
.x12{left:49.280000pt;}
.x1a{left:53.120000pt;}
.xa{left:61.761333pt;}
.x6{left:65.600000pt;}
.x15{left:72.000000pt;}
.xd{left:84.672000pt;}
.x16{left:96.032000pt;}
.x18{left:205.306667pt;}
.x1b{left:213.306667pt;}
.x7{left:216.186667pt;}
.x9{left:221.466667pt;}
.xc{left:250.946667pt;}
.x8{left:341.186667pt;}
.x14{left:385.826667pt;}
.xe{left:420.893333pt;}
.x10{left:444.893333pt;}
.xf{left:457.533333pt;}
.x11{left:468.893333pt;}
.x13{left:604.933333pt;}
.x17{left:670.213333pt;}
.x19{left:679.333333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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