
    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_2ff8c2338d098342bf94786b.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_9ffb5a9f3e175e0c84ddb325.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dc11333cb5a1b2e207600f67.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4a43518ec15ecf1aa83cb0e3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a88cef739be206b911983b18.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e34355cea28f8ab2e9f1b569.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_3cd96335d7cb838c3fad11b9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3c04759c31cd5fa38e8288b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_b5247a3e3b84e9f44b64bb7e.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-82.800000px;}
.v3{vertical-align:-80.640000px;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.800000px;}
.ls1c{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.053280px;}
.ls1a{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.119520px;}
.ls8{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.460080px;}
.ls1b{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.540000px;}
.ls12{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.864000px;}
.ls1e{letter-spacing:1.008000px;}
.ls14{letter-spacing:5.760000px;}
.ls4{letter-spacing:6.480000px;}
.ls10{letter-spacing:88.740000px;}
.ls7{letter-spacing:151.896000px;}
.ls11{letter-spacing:154.956000px;}
.lsa{letter-spacing:182.484000px;}
.ls9{letter-spacing:186.084000px;}
.ls16{letter-spacing:244.260000px;}
.ls3{letter-spacing:406.800000px;}
.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;}
}
.wsc{word-spacing:-19.008000px;}
.wsb{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.wsa{word-spacing:-17.496000px;}
.ws5{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.140000px;}
.ws1{word-spacing:0.000000px;}
._1e{margin-left:-8.777280px;}
._24{margin-left:-7.470000px;}
._1d{margin-left:-6.148800px;}
._6{margin-left:-5.112000px;}
._3{margin-left:-3.977280px;}
._b{margin-left:-2.775360px;}
._1{margin-left:-1.014720px;}
._0{width:1.434240px;}
._7{width:2.453760px;}
._5{width:3.833280px;}
._c{width:5.085120px;}
._4{width:6.408000px;}
._19{width:7.416000px;}
._d{width:8.496000px;}
._9{width:9.504000px;}
._8{width:10.800000px;}
._a{width:12.317760px;}
._15{width:13.386240px;}
._11{width:14.688000px;}
._e{width:16.344000px;}
._35{width:17.539920px;}
._f{width:19.080000px;}
._10{width:20.184480px;}
._1a{width:22.104000px;}
._13{width:23.256000px;}
._12{width:24.264000px;}
._14{width:26.280000px;}
._27{width:27.720000px;}
._22{width:29.736000px;}
._23{width:31.032000px;}
._16{width:32.544000px;}
._17{width:33.689760px;}
._18{width:34.932480px;}
._1b{width:36.360000px;}
._1c{width:37.368000px;}
._32{width:39.859920px;}
._28{width:41.053440px;}
._1f{width:42.336000px;}
._20{width:43.493760px;}
._21{width:45.234240px;}
._36{width:48.882480px;}
._2b{width:50.078880px;}
._25{width:54.792480px;}
._2e{width:56.473200px;}
._2d{width:57.728160px;}
._2c{width:61.433280px;}
._33{width:62.628480px;}
._2a{width:64.600560px;}
._29{width:65.795760px;}
._31{width:70.457040px;}
._34{width:79.899120px;}
._30{width:109.360800px;}
._37{width:117.010080px;}
._2f{width:149.639040px;}
._26{width:235.155600px;}
._2{width:321.356160px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(201,209,217);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(38,38,38);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf4{bottom:3.420000px;}
.y101{bottom:3.600000px;}
.yf9{bottom:3.780000px;}
.y177{bottom:3.825000px;}
.yf7{bottom:4.500000px;}
.yc5{bottom:11.880000px;}
.yc2{bottom:12.060000px;}
.yc6{bottom:12.240000px;}
.y5{bottom:12.420000px;}
.y122{bottom:20.340000px;}
.y100{bottom:20.880000px;}
.y105{bottom:21.060000px;}
.yf6{bottom:21.780000px;}
.y107{bottom:21.816000px;}
.y17d{bottom:36.720000px;}
.y11f{bottom:37.440000px;}
.y11a{bottom:37.620000px;}
.y11d{bottom:38.160000px;}
.y104{bottom:38.340000px;}
.y183{bottom:38.376000px;}
.y181{bottom:39.096000px;}
.y3{bottom:47.880000px;}
.y179{bottom:54.000000px;}
.y11c{bottom:55.440000px;}
.y118{bottom:55.620000px;}
.y180{bottom:56.370000px;}
.y10b{bottom:58.500000px;}
.y175{bottom:72.720000px;}
.y17f{bottom:73.470000px;}
.yfe{bottom:75.054000px;}
.y10a{bottom:75.780000px;}
.y2{bottom:83.520000px;}
.y18a{bottom:90.000000px;}
.y174{bottom:90.045000px;}
.y17e{bottom:90.750000px;}
.yfd{bottom:92.334000px;}
.y112{bottom:92.880000px;}
.y3b{bottom:101.880000px;}
.yc1{bottom:102.600000px;}
.y9e{bottom:103.500000px;}
.y63{bottom:104.580000px;}
.y15f{bottom:106.200000px;}
.y1a2{bottom:108.900000px;}
.yfc{bottom:109.434000px;}
.y106{bottom:110.160000px;}
.y136{bottom:110.520000px;}
.y3a{bottom:115.380000px;}
.y1b0{bottom:120.240000px;}
.y1ea{bottom:121.860000px;}
.y151{bottom:122.580000px;}
.y145{bottom:125.280000px;}
.yfb{bottom:126.714000px;}
.y111{bottom:127.440000px;}
.y108{bottom:128.196000px;}
.y171{bottom:130.896000px;}
.y85{bottom:131.436000px;}
.y9d{bottom:134.496000px;}
.y62{bottom:135.576000px;}
.y15e{bottom:137.196000px;}
.y1a1{bottom:139.896000px;}
.y135{bottom:141.696000px;}
.y1e9{bottom:142.596000px;}
.ye3{bottom:143.136000px;}
.yfa{bottom:146.196000px;}
.y152{bottom:150.150000px;}
.yc0{bottom:150.330000px;}
.y1af{bottom:151.410000px;}
.y150{bottom:153.750000px;}
.y182{bottom:155.190000px;}
.y144{bottom:156.270000px;}
.y39{bottom:159.690000px;}
.y170{bottom:161.850000px;}
.y84{bottom:162.390000px;}
.y1e8{bottom:163.290000px;}
.y103{bottom:164.190000px;}
.y9c{bottom:165.630000px;}
.y61{bottom:166.710000px;}
.y15d{bottom:168.330000px;}
.y1c9{bottom:170.490000px;}
.y1a0{bottom:171.030000px;}
.y134{bottom:172.650000px;}
.ye2{bottom:174.270000px;}
.y38{bottom:176.610000px;}
.y1ae{bottom:182.370000px;}
.y14f{bottom:184.710000px;}
.y143{bottom:187.410000px;}
.y1c8{bottom:191.190000px;}
.y16f{bottom:192.990000px;}
.y83{bottom:193.530000px;}
.y37{bottom:193.710000px;}
.ybf{bottom:196.410000px;}
.y9b{bottom:196.590000px;}
.y60{bottom:197.670000px;}
.y15c{bottom:199.290000px;}
.y19f{bottom:201.990000px;}
.y133{bottom:203.790000px;}
.ye1{bottom:205.230000px;}
.y17a{bottom:207.570000px;}
.y36{bottom:210.990000px;}
.y1c7{bottom:211.890000px;}
.y1ad{bottom:213.510000px;}
.y14e{bottom:215.850000px;}
.y102{bottom:216.750000px;}
.y142{bottom:218.370000px;}
.y1e7{bottom:222.690000px;}
.y16e{bottom:223.950000px;}
.y82{bottom:224.490000px;}
.ybe{bottom:227.550000px;}
.y35{bottom:228.270000px;}
.y5f{bottom:228.810000px;}
.y15b{bottom:230.430000px;}
.y19e{bottom:233.130000px;}
.y132{bottom:234.750000px;}
.ye0{bottom:236.370000px;}
.y1e6{bottom:243.390000px;}
.y1ac{bottom:244.470000px;}
.y9a{bottom:245.730000px;}
.y34{bottom:245.910000px;}
.y14d{bottom:246.810000px;}
.y141{bottom:249.510000px;}
.y1c6{bottom:250.590000px;}
.yff{bottom:252.030000px;}
.y16d{bottom:255.090000px;}
.y81{bottom:255.630000px;}
.ybd{bottom:258.510000px;}
.y17c{bottom:258.690000px;}
.y5e{bottom:259.770000px;}
.y15a{bottom:261.390000px;}
.y33{bottom:263.190000px;}
.y19d{bottom:264.090000px;}
.y131{bottom:265.710000px;}
.ydf{bottom:267.330000px;}
.y1c5{bottom:271.290000px;}
.y1ab{bottom:275.610000px;}
.y17b{bottom:276.690000px;}
.y14c{bottom:277.950000px;}
.y32{bottom:280.470000px;}
.y1e5{bottom:282.090000px;}
.y31{bottom:285.690000px;}
.y16c{bottom:286.050000px;}
.y80{bottom:286.590000px;}
.yf5{bottom:287.130000px;}
.ybc{bottom:289.650000px;}
.y5d{bottom:290.910000px;}
.y159{bottom:292.530000px;}
.y99{bottom:294.690000px;}
.y19c{bottom:295.230000px;}
.y130{bottom:296.850000px;}
.y30{bottom:297.570000px;}
.yde{bottom:298.470000px;}
.y1e4{bottom:302.790000px;}
.yf8{bottom:305.130000px;}
.y1aa{bottom:306.570000px;}
.y7f{bottom:306.750000px;}
.y14b{bottom:308.910000px;}
.y1c4{bottom:309.990000px;}
.y140{bottom:311.610000px;}
.y2f{bottom:314.850000px;}
.y16b{bottom:317.190000px;}
.ybb{bottom:320.610000px;}
.y5c{bottom:321.870000px;}
.yf3{bottom:323.130000px;}
.y158{bottom:323.490000px;}
.y7e{bottom:324.030000px;}
.ya4{bottom:324.570000px;}
.y98{bottom:325.830000px;}
.y19b{bottom:326.190000px;}
.y12f{bottom:327.810000px;}
.ydd{bottom:329.430000px;}
.y1c3{bottom:330.690000px;}
.y2e{bottom:332.130000px;}
.y2d{bottom:337.350000px;}
.y1a9{bottom:337.710000px;}
.y14a{bottom:340.050000px;}
.y7d{bottom:341.310000px;}
.y1e3{bottom:341.490000px;}
.y13f{bottom:342.570000px;}
.y16a{bottom:348.150000px;}
.y2c{bottom:350.130000px;}
.y5b{bottom:353.010000px;}
.yf2{bottom:353.550000px;}
.y157{bottom:354.630000px;}
.ya3{bottom:355.710000px;}
.y97{bottom:356.790000px;}
.y19a{bottom:357.330000px;}
.y7c{bottom:358.590000px;}
.y12e{bottom:358.950000px;}
.ydc{bottom:360.570000px;}
.y1e2{bottom:362.190000px;}
.y178{bottom:362.910000px;}
.y1a8{bottom:368.670000px;}
.y1c2{bottom:369.390000px;}
.yba{bottom:369.750000px;}
.y149{bottom:371.010000px;}
.y13e{bottom:373.710000px;}
.y169{bottom:379.290000px;}
.y176{bottom:380.910000px;}
.yf1{bottom:381.855000px;}
.y5a{bottom:384.015000px;}
.y156{bottom:385.635000px;}
.y7b{bottom:386.715000px;}
.y96{bottom:387.975000px;}
.y199{bottom:388.335000px;}
.y2b{bottom:389.415000px;}
.y12d{bottom:389.955000px;}
.y1c1{bottom:390.135000px;}
.ydb{bottom:391.575000px;}
.y173{bottom:398.955000px;}
.y1a7{bottom:399.855000px;}
.y1e1{bottom:400.935000px;}
.y148{bottom:402.195000px;}
.y13d{bottom:404.715000px;}
.y2a{bottom:410.115000px;}
.y168{bottom:410.295000px;}
.y1c0{bottom:410.835000px;}
.yf0{bottom:412.815000px;}
.y59{bottom:415.155000px;}
.y155{bottom:416.775000px;}
.y7a{bottom:417.855000px;}
.y95{bottom:418.935000px;}
.y198{bottom:419.475000px;}
.y172{bottom:420.735000px;}
.y12c{bottom:421.095000px;}
.y1e0{bottom:421.455000px;}
.yda{bottom:422.715000px;}
.yb9{bottom:427.755000px;}
.y29{bottom:430.275000px;}
.y1a6{bottom:430.815000px;}
.y147{bottom:433.155000px;}
.y13c{bottom:435.855000px;}
.y167{bottom:441.435000px;}
.yef{bottom:443.955000px;}
.y58{bottom:446.115000px;}
.y79{bottom:448.815000px;}
.y28{bottom:449.355000px;}
.y1bf{bottom:449.535000px;}
.y197{bottom:450.435000px;}
.y12b{bottom:452.055000px;}
.yd9{bottom:453.675000px;}
.y94{bottom:457.095000px;}
.yb8{bottom:458.895000px;}
.y1df{bottom:460.155000px;}
.y1a5{bottom:461.955000px;}
.y154{bottom:463.395000px;}
.y13b{bottom:466.815000px;}
.y27{bottom:468.255000px;}
.y1be{bottom:470.235000px;}
.y166{bottom:472.395000px;}
.y93{bottom:474.375000px;}
.yee{bottom:474.915000px;}
.y57{bottom:477.255000px;}
.y78{bottom:479.955000px;}
.y196{bottom:481.575000px;}
.y12a{bottom:483.195000px;}
.y26{bottom:487.695000px;}
.yb7{bottom:489.855000px;}
.y1bd{bottom:490.935000px;}
.y92{bottom:491.655000px;}
.y1a4{bottom:492.915000px;}
.y13a{bottom:497.955000px;}
.y1de{bottom:498.855000px;}
.yd8{bottom:502.815000px;}
.y165{bottom:503.535000px;}
.yed{bottom:506.055000px;}
.y56{bottom:508.215000px;}
.y25{bottom:508.395000px;}
.y91{bottom:508.935000px;}
.y77{bottom:510.915000px;}
.y195{bottom:512.535000px;}
.y129{bottom:514.155000px;}
.y1dd{bottom:519.555000px;}
.yb6{bottom:520.995000px;}
.y1a3{bottom:523.695000px;}
.y139{bottom:528.915000px;}
.y24{bottom:529.095000px;}
.y1bc{bottom:529.455000px;}
.y164{bottom:534.495000px;}
.yec{bottom:537.015000px;}
.y55{bottom:539.355000px;}
.y76{bottom:542.055000px;}
.y194{bottom:543.675000px;}
.y128{bottom:545.295000px;}
.y23{bottom:549.795000px;}
.y1bb{bottom:550.155000px;}
.yd7{bottom:551.775000px;}
.yb5{bottom:551.955000px;}
.y90{bottom:555.015000px;}
.y1dc{bottom:558.255000px;}
.y138{bottom:560.055000px;}
.y163{bottom:565.635000px;}
.yeb{bottom:567.975000px;}
.y54{bottom:570.315000px;}
.y22{bottom:570.495000px;}
.y1ba{bottom:570.855000px;}
.y75{bottom:572.655000px;}
.ya2{bottom:573.015000px;}
.y193{bottom:574.635000px;}
.y127{bottom:576.255000px;}
.y1db{bottom:578.955000px;}
.yd6{bottom:582.915000px;}
.yb4{bottom:583.095000px;}
.y8f{bottom:585.975000px;}
.y137{bottom:591.015000px;}
.y21{bottom:591.195000px;}
.y162{bottom:594.255000px;}
.yea{bottom:599.115000px;}
.y53{bottom:601.275000px;}
.ya1{bottom:603.975000px;}
.y192{bottom:605.775000px;}
.y1b9{bottom:609.555000px;}
.y20{bottom:611.895000px;}
.yd5{bottom:613.875000px;}
.yb3{bottom:614.055000px;}
.y8e{bottom:617.115000px;}
.y1da{bottom:617.655000px;}
.y74{bottom:621.975000px;}
.y126{bottom:627.555000px;}
.ye9{bottom:629.715000px;}
.y1b8{bottom:630.255000px;}
.y52{bottom:632.415000px;}
.y1f{bottom:632.595000px;}
.ya0{bottom:635.115000px;}
.y191{bottom:636.765000px;}
.y161{bottom:638.205000px;}
.y1d9{bottom:638.385000px;}
.yd4{bottom:645.045000px;}
.yb2{bottom:645.225000px;}
.y8d{bottom:648.105000px;}
.y1b7{bottom:650.625000px;}
.y73{bottom:653.145000px;}
.y1e{bottom:653.325000px;}
.y1d8{bottom:659.085000px;}
.y125{bottom:662.685000px;}
.y9f{bottom:665.745000px;}
.y190{bottom:667.905000px;}
.y1b6{bottom:671.685000px;}
.y1d{bottom:674.025000px;}
.yd3{bottom:676.005000px;}
.yb1{bottom:676.185000px;}
.y8c{bottom:679.245000px;}
.y124{bottom:679.965000px;}
.y51{bottom:683.925000px;}
.y72{bottom:684.105000px;}
.y1c{bottom:694.725000px;}
.y123{bottom:697.245000px;}
.y1d7{bottom:697.785000px;}
.y18f{bottom:698.865000px;}
.y50{bottom:704.625000px;}
.yd2{bottom:707.145000px;}
.yb0{bottom:707.325000px;}
.y8b{bottom:710.205000px;}
.y1b5{bottom:710.385000px;}
.y120{bottom:711.465000px;}
.y71{bottom:715.245000px;}
.y1b{bottom:715.425000px;}
.y1d6{bottom:718.485000px;}
.y18e{bottom:719.025000px;}
.y4f{bottom:725.685000px;}
.y153{bottom:731.085000px;}
.y1a{bottom:736.125000px;}
.yd1{bottom:738.105000px;}
.y1d5{bottom:739.185000px;}
.y8a{bottom:741.345000px;}
.yaf{bottom:744.405000px;}
.y121{bottom:746.025000px;}
.y70{bottom:746.205000px;}
.y4e{bottom:746.385000px;}
.y1b4{bottom:751.785000px;}
.y18d{bottom:754.305000px;}
.y19{bottom:756.825000px;}
.y1d4{bottom:759.885000px;}
.y11b{bottom:764.025000px;}
.y4d{bottom:767.085000px;}
.yd0{bottom:769.065000px;}
.y89{bottom:772.305000px;}
.y1b3{bottom:772.485000px;}
.y6f{bottom:777.345000px;}
.y18{bottom:777.525000px;}
.y189{bottom:786.525000px;}
.y4c{bottom:787.785000px;}
.y17{bottom:798.225000px;}
.y1d3{bottom:798.585000px;}
.ycf{bottom:800.205000px;}
.yae{bottom:802.365000px;}
.y1b2{bottom:803.085000px;}
.y88{bottom:803.445000px;}
.y6e{bottom:808.305000px;}
.y4b{bottom:808.485000px;}
.y11e{bottom:815.685000px;}
.y16{bottom:818.925000px;}
.y1d2{bottom:819.285000px;}
.y146{bottom:824.325000px;}
.y4a{bottom:829.185000px;}
.yce{bottom:831.165000px;}
.yad{bottom:833.505000px;}
.y117{bottom:833.685000px;}
.y87{bottom:834.405000px;}
.y6d{bottom:839.445000px;}
.y15{bottom:839.625000px;}
.y1d1{bottom:839.985000px;}
.y49{bottom:849.885000px;}
.y1b1{bottom:852.045000px;}
.y18c{bottom:854.745000px;}
.y14{bottom:860.325000px;}
.ycd{bottom:862.305000px;}
.yac{bottom:864.465000px;}
.ye8{bottom:865.545000px;}
.y6c{bottom:870.405000px;}
.y48{bottom:870.585000px;}
.y18b{bottom:872.745000px;}
.y1d0{bottom:878.685000px;}
.y13{bottom:881.025000px;}
.y86{bottom:883.545000px;}
.y119{bottom:885.525000px;}
.y186{bottom:890.790000px;}
.y47{bottom:891.330000px;}
.ycc{bottom:893.310000px;}
.yab{bottom:895.650000px;}
.ye7{bottom:896.550000px;}
.y1cf{bottom:899.430000px;}
.y12{bottom:901.410000px;}
.y6b{bottom:901.590000px;}
.y4{bottom:903.210000px;}
.y110{bottom:903.570000px;}
.y46{bottom:912.030000px;}
.y11{bottom:922.110000px;}
.ycb{bottom:924.450000px;}
.yaa{bottom:926.610000px;}
.ye6{bottom:927.690000px;}
.y6a{bottom:932.550000px;}
.y45{bottom:932.730000px;}
.y1ce{bottom:938.130000px;}
.y116{bottom:938.850000px;}
.y188{bottom:941.730000px;}
.yf{bottom:942.810000px;}
.y160{bottom:948.570000px;}
.y10{bottom:948.750000px;}
.y44{bottom:953.430000px;}
.yca{bottom:955.410000px;}
.ya9{bottom:957.570000px;}
.ye5{bottom:958.650000px;}
.y1cd{bottom:958.830000px;}
.y187{bottom:959.730000px;}
.ye{bottom:963.510000px;}
.y69{bottom:963.690000px;}
.yd{bottom:969.450000px;}
.y115{bottom:973.950000px;}
.y43{bottom:974.130000px;}
.y185{bottom:977.730000px;}
.yc{bottom:984.210000px;}
.yc9{bottom:986.550000px;}
.ya8{bottom:988.710000px;}
.y114{bottom:991.950000px;}
.y68{bottom:994.650000px;}
.y42{bottom:994.830000px;}
.y1cc{bottom:997.530000px;}
.yb{bottom:1004.910000px;}
.ye4{bottom:1007.790000px;}
.y113{bottom:1009.950000px;}
.y41{bottom:1015.530000px;}
.y1cb{bottom:1018.230000px;}
.ya7{bottom:1019.670000px;}
.yc8{bottom:1024.710000px;}
.ya{bottom:1025.610000px;}
.y67{bottom:1025.790000px;}
.y184{bottom:1030.290000px;}
.y40{bottom:1036.230000px;}
.y1ca{bottom:1038.930000px;}
.y109{bottom:1045.230000px;}
.y9{bottom:1046.310000px;}
.ya6{bottom:1050.810000px;}
.yc7{bottom:1056.570000px;}
.y66{bottom:1056.750000px;}
.y3f{bottom:1056.930000px;}
.y10f{bottom:1063.230000px;}
.y8{bottom:1067.550000px;}
.y3e{bottom:1077.630000px;}
.y10e{bottom:1081.230000px;}
.ya5{bottom:1081.770000px;}
.yc4{bottom:1082.850000px;}
.y65{bottom:1087.890000px;}
.y7{bottom:1091.670000px;}
.y3d{bottom:1098.330000px;}
.y10d{bottom:1099.230000px;}
.yc3{bottom:1108.950000px;}
.y6{bottom:1115.790000px;}
.y10c{bottom:1117.230000px;}
.y64{bottom:1118.850000px;}
.y3c{bottom:1119.030000px;}
.y1{bottom:1139.370000px;}
.h26{height:17.100000px;}
.h14{height:17.280000px;}
.h1a{height:17.316000px;}
.h12{height:25.740000px;}
.h11{height:25.920000px;}
.h10{height:25.956000px;}
.h4{height:29.160000px;}
.h22{height:33.840000px;}
.h17{height:34.380000px;}
.h1d{height:34.560000px;}
.h15{height:35.280000px;}
.h19{height:35.316000px;}
.hb{height:38.158594px;}
.h7{height:48.616875px;}
.h27{height:50.220000px;}
.h21{height:50.940000px;}
.h1f{height:51.120000px;}
.h29{height:51.660000px;}
.h18{height:51.840000px;}
.h2a{height:51.876000px;}
.hf{height:53.573906px;}
.hd{height:58.621992px;}
.hc{height:58.651172px;}
.h3{height:60.226875px;}
.h8{height:64.546875px;}
.ha{height:65.010937px;}
.h9{height:66.757500px;}
.h24{height:67.500000px;}
.h20{height:68.940000px;}
.h1e{height:69.156000px;}
.he{height:70.628906px;}
.h2{height:70.664062px;}
.h5{height:72.562500px;}
.h13{height:74.004654px;}
.h6{height:84.898125px;}
.h25{height:86.220000px;}
.h1b{height:89.280000px;}
.h23{height:103.536000px;}
.h28{height:104.256000px;}
.h16{height:140.220000px;}
.h1c{height:140.940000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.960000px;}
.wd{width:123.876000px;}
.wc{width:165.630000px;}
.w8{width:168.870000px;}
.w9{width:169.050000px;}
.wa{width:169.410000px;}
.we{width:171.750000px;}
.wb{width:214.950000px;}
.w7{width:339.555000px;}
.w5{width:339.735000px;}
.w6{width:339.915000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:7.740000px;}
.x26{left:10.620000px;}
.x39{left:12.060000px;}
.x1e{left:16.740000px;}
.x3b{left:19.800000px;}
.x1c{left:22.500000px;}
.x3a{left:29.514000px;}
.x1b{left:32.940000px;}
.x38{left:34.020000px;}
.x33{left:51.840000px;}
.x36{left:54.540000px;}
.x1a{left:55.794000px;}
.x1f{left:59.034000px;}
.x20{left:62.640000px;}
.x32{left:67.134000px;}
.x22{left:70.920000px;}
.x28{left:72.360000px;}
.x25{left:74.700000px;}
.x37{left:75.780000px;}
.x21{left:77.040000px;}
.x3d{left:78.300000px;}
.x24{left:80.640000px;}
.x27{left:84.420000px;}
.x3c{left:86.574000px;}
.x15{left:99.540000px;}
.x16{left:102.774000px;}
.x12{left:104.574000px;}
.x3e{left:107.454000px;}
.x13{left:115.374000px;}
.x2{left:127.655987px;}
.x31{left:128.736000px;}
.x14{left:131.079000px;}
.xc{left:132.515987px;}
.x7{left:134.495987px;}
.x4{left:140.435987px;}
.x17{left:146.565000px;}
.x29{left:149.975987px;}
.xe{left:170.129987px;}
.x10{left:180.749987px;}
.x19{left:224.129987px;}
.xd{left:231.149987px;}
.x5{left:247.754987px;}
.x30{left:289.694987px;}
.xf{left:297.794987px;}
.x11{left:327.674987px;}
.xb{left:343.694987px;}
.x2b{left:354.494987px;}
.x2a{left:358.454987px;}
.x18{left:364.934987px;}
.x2e{left:371.234987px;}
.x2f{left:380.594987px;}
.x2c{left:383.834987px;}
.x2d{left:393.014987px;}
.x8{left:398.774987px;}
.x6{left:467.924987px;}
.xa{left:508.604987px;}
.x34{left:510.765000px;}
.x35{left:635.550000px;}
.x1d{left:637.710000px;}
.x9{left:802.079973px;}
.x1{left:808.019987px;}
.x3{left:830.700000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v3{vertical-align:-71.680000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.600000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.047360pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls8{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.408960pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.480000pt;}
.ls12{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls1e{letter-spacing:0.896000pt;}
.ls14{letter-spacing:5.120000pt;}
.ls4{letter-spacing:5.760000pt;}
.ls10{letter-spacing:78.880000pt;}
.ls7{letter-spacing:135.018667pt;}
.ls11{letter-spacing:137.738667pt;}
.lsa{letter-spacing:162.208000pt;}
.ls9{letter-spacing:165.408000pt;}
.ls16{letter-spacing:217.120000pt;}
.ls3{letter-spacing:361.600000pt;}
.wsc{word-spacing:-16.896000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.552000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws1{word-spacing:0.000000pt;}
._1e{margin-left:-7.802027pt;}
._24{margin-left:-6.640000pt;}
._1d{margin-left:-5.465600pt;}
._6{margin-left:-4.544000pt;}
._3{margin-left:-3.535360pt;}
._b{margin-left:-2.466987pt;}
._1{margin-left:-0.901973pt;}
._0{width:1.274880pt;}
._7{width:2.181120pt;}
._5{width:3.407360pt;}
._c{width:4.520107pt;}
._4{width:5.696000pt;}
._19{width:6.592000pt;}
._d{width:7.552000pt;}
._9{width:8.448000pt;}
._8{width:9.600000pt;}
._a{width:10.949120pt;}
._15{width:11.898880pt;}
._11{width:13.056000pt;}
._e{width:14.528000pt;}
._35{width:15.591040pt;}
._f{width:16.960000pt;}
._10{width:17.941760pt;}
._1a{width:19.648000pt;}
._13{width:20.672000pt;}
._12{width:21.568000pt;}
._14{width:23.360000pt;}
._27{width:24.640000pt;}
._22{width:26.432000pt;}
._23{width:27.584000pt;}
._16{width:28.928000pt;}
._17{width:29.946453pt;}
._18{width:31.051093pt;}
._1b{width:32.320000pt;}
._1c{width:33.216000pt;}
._32{width:35.431040pt;}
._28{width:36.491947pt;}
._1f{width:37.632000pt;}
._20{width:38.661120pt;}
._21{width:40.208213pt;}
._36{width:43.451093pt;}
._2b{width:44.514560pt;}
._25{width:48.704427pt;}
._2e{width:50.198400pt;}
._2d{width:51.313920pt;}
._2c{width:54.607360pt;}
._33{width:55.669760pt;}
._2a{width:57.422720pt;}
._29{width:58.485120pt;}
._31{width:62.628480pt;}
._34{width:71.021440pt;}
._30{width:97.209600pt;}
._37{width:104.008960pt;}
._2f{width:133.012480pt;}
._26{width:209.027200pt;}
._2{width:285.649920pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:3.040000pt;}
.y101{bottom:3.200000pt;}
.yf9{bottom:3.360000pt;}
.y177{bottom:3.400000pt;}
.yf7{bottom:4.000000pt;}
.yc5{bottom:10.560000pt;}
.yc2{bottom:10.720000pt;}
.yc6{bottom:10.880000pt;}
.y5{bottom:11.040000pt;}
.y122{bottom:18.080000pt;}
.y100{bottom:18.560000pt;}
.y105{bottom:18.720000pt;}
.yf6{bottom:19.360000pt;}
.y107{bottom:19.392000pt;}
.y17d{bottom:32.640000pt;}
.y11f{bottom:33.280000pt;}
.y11a{bottom:33.440000pt;}
.y11d{bottom:33.920000pt;}
.y104{bottom:34.080000pt;}
.y183{bottom:34.112000pt;}
.y181{bottom:34.752000pt;}
.y3{bottom:42.560000pt;}
.y179{bottom:48.000000pt;}
.y11c{bottom:49.280000pt;}
.y118{bottom:49.440000pt;}
.y180{bottom:50.106667pt;}
.y10b{bottom:52.000000pt;}
.y175{bottom:64.640000pt;}
.y17f{bottom:65.306667pt;}
.yfe{bottom:66.714667pt;}
.y10a{bottom:67.360000pt;}
.y2{bottom:74.240000pt;}
.y18a{bottom:80.000000pt;}
.y174{bottom:80.040000pt;}
.y17e{bottom:80.666667pt;}
.yfd{bottom:82.074667pt;}
.y112{bottom:82.560000pt;}
.y3b{bottom:90.560000pt;}
.yc1{bottom:91.200000pt;}
.y9e{bottom:92.000000pt;}
.y63{bottom:92.960000pt;}
.y15f{bottom:94.400000pt;}
.y1a2{bottom:96.800000pt;}
.yfc{bottom:97.274667pt;}
.y106{bottom:97.920000pt;}
.y136{bottom:98.240000pt;}
.y3a{bottom:102.560000pt;}
.y1b0{bottom:106.880000pt;}
.y1ea{bottom:108.320000pt;}
.y151{bottom:108.960000pt;}
.y145{bottom:111.360000pt;}
.yfb{bottom:112.634667pt;}
.y111{bottom:113.280000pt;}
.y108{bottom:113.952000pt;}
.y171{bottom:116.352000pt;}
.y85{bottom:116.832000pt;}
.y9d{bottom:119.552000pt;}
.y62{bottom:120.512000pt;}
.y15e{bottom:121.952000pt;}
.y1a1{bottom:124.352000pt;}
.y135{bottom:125.952000pt;}
.y1e9{bottom:126.752000pt;}
.ye3{bottom:127.232000pt;}
.yfa{bottom:129.952000pt;}
.y152{bottom:133.466667pt;}
.yc0{bottom:133.626667pt;}
.y1af{bottom:134.586667pt;}
.y150{bottom:136.666667pt;}
.y182{bottom:137.946667pt;}
.y144{bottom:138.906667pt;}
.y39{bottom:141.946667pt;}
.y170{bottom:143.866667pt;}
.y84{bottom:144.346667pt;}
.y1e8{bottom:145.146667pt;}
.y103{bottom:145.946667pt;}
.y9c{bottom:147.226667pt;}
.y61{bottom:148.186667pt;}
.y15d{bottom:149.626667pt;}
.y1c9{bottom:151.546667pt;}
.y1a0{bottom:152.026667pt;}
.y134{bottom:153.466667pt;}
.ye2{bottom:154.906667pt;}
.y38{bottom:156.986667pt;}
.y1ae{bottom:162.106667pt;}
.y14f{bottom:164.186667pt;}
.y143{bottom:166.586667pt;}
.y1c8{bottom:169.946667pt;}
.y16f{bottom:171.546667pt;}
.y83{bottom:172.026667pt;}
.y37{bottom:172.186667pt;}
.ybf{bottom:174.586667pt;}
.y9b{bottom:174.746667pt;}
.y60{bottom:175.706667pt;}
.y15c{bottom:177.146667pt;}
.y19f{bottom:179.546667pt;}
.y133{bottom:181.146667pt;}
.ye1{bottom:182.426667pt;}
.y17a{bottom:184.506667pt;}
.y36{bottom:187.546667pt;}
.y1c7{bottom:188.346667pt;}
.y1ad{bottom:189.786667pt;}
.y14e{bottom:191.866667pt;}
.y102{bottom:192.666667pt;}
.y142{bottom:194.106667pt;}
.y1e7{bottom:197.946667pt;}
.y16e{bottom:199.066667pt;}
.y82{bottom:199.546667pt;}
.ybe{bottom:202.266667pt;}
.y35{bottom:202.906667pt;}
.y5f{bottom:203.386667pt;}
.y15b{bottom:204.826667pt;}
.y19e{bottom:207.226667pt;}
.y132{bottom:208.666667pt;}
.ye0{bottom:210.106667pt;}
.y1e6{bottom:216.346667pt;}
.y1ac{bottom:217.306667pt;}
.y9a{bottom:218.426667pt;}
.y34{bottom:218.586667pt;}
.y14d{bottom:219.386667pt;}
.y141{bottom:221.786667pt;}
.y1c6{bottom:222.746667pt;}
.yff{bottom:224.026667pt;}
.y16d{bottom:226.746667pt;}
.y81{bottom:227.226667pt;}
.ybd{bottom:229.786667pt;}
.y17c{bottom:229.946667pt;}
.y5e{bottom:230.906667pt;}
.y15a{bottom:232.346667pt;}
.y33{bottom:233.946667pt;}
.y19d{bottom:234.746667pt;}
.y131{bottom:236.186667pt;}
.ydf{bottom:237.626667pt;}
.y1c5{bottom:241.146667pt;}
.y1ab{bottom:244.986667pt;}
.y17b{bottom:245.946667pt;}
.y14c{bottom:247.066667pt;}
.y32{bottom:249.306667pt;}
.y1e5{bottom:250.746667pt;}
.y31{bottom:253.946667pt;}
.y16c{bottom:254.266667pt;}
.y80{bottom:254.746667pt;}
.yf5{bottom:255.226667pt;}
.ybc{bottom:257.466667pt;}
.y5d{bottom:258.586667pt;}
.y159{bottom:260.026667pt;}
.y99{bottom:261.946667pt;}
.y19c{bottom:262.426667pt;}
.y130{bottom:263.866667pt;}
.y30{bottom:264.506667pt;}
.yde{bottom:265.306667pt;}
.y1e4{bottom:269.146667pt;}
.yf8{bottom:271.226667pt;}
.y1aa{bottom:272.506667pt;}
.y7f{bottom:272.666667pt;}
.y14b{bottom:274.586667pt;}
.y1c4{bottom:275.546667pt;}
.y140{bottom:276.986667pt;}
.y2f{bottom:279.866667pt;}
.y16b{bottom:281.946667pt;}
.ybb{bottom:284.986667pt;}
.y5c{bottom:286.106667pt;}
.yf3{bottom:287.226667pt;}
.y158{bottom:287.546667pt;}
.y7e{bottom:288.026667pt;}
.ya4{bottom:288.506667pt;}
.y98{bottom:289.626667pt;}
.y19b{bottom:289.946667pt;}
.y12f{bottom:291.386667pt;}
.ydd{bottom:292.826667pt;}
.y1c3{bottom:293.946667pt;}
.y2e{bottom:295.226667pt;}
.y2d{bottom:299.866667pt;}
.y1a9{bottom:300.186667pt;}
.y14a{bottom:302.266667pt;}
.y7d{bottom:303.386667pt;}
.y1e3{bottom:303.546667pt;}
.y13f{bottom:304.506667pt;}
.y16a{bottom:309.466667pt;}
.y2c{bottom:311.226667pt;}
.y5b{bottom:313.786667pt;}
.yf2{bottom:314.266667pt;}
.y157{bottom:315.226667pt;}
.ya3{bottom:316.186667pt;}
.y97{bottom:317.146667pt;}
.y19a{bottom:317.626667pt;}
.y7c{bottom:318.746667pt;}
.y12e{bottom:319.066667pt;}
.ydc{bottom:320.506667pt;}
.y1e2{bottom:321.946667pt;}
.y178{bottom:322.586667pt;}
.y1a8{bottom:327.706667pt;}
.y1c2{bottom:328.346667pt;}
.yba{bottom:328.666667pt;}
.y149{bottom:329.786667pt;}
.y13e{bottom:332.186667pt;}
.y169{bottom:337.146667pt;}
.y176{bottom:338.586667pt;}
.yf1{bottom:339.426667pt;}
.y5a{bottom:341.346667pt;}
.y156{bottom:342.786667pt;}
.y7b{bottom:343.746667pt;}
.y96{bottom:344.866667pt;}
.y199{bottom:345.186667pt;}
.y2b{bottom:346.146667pt;}
.y12d{bottom:346.626667pt;}
.y1c1{bottom:346.786667pt;}
.ydb{bottom:348.066667pt;}
.y173{bottom:354.626667pt;}
.y1a7{bottom:355.426667pt;}
.y1e1{bottom:356.386667pt;}
.y148{bottom:357.506667pt;}
.y13d{bottom:359.746667pt;}
.y2a{bottom:364.546667pt;}
.y168{bottom:364.706667pt;}
.y1c0{bottom:365.186667pt;}
.yf0{bottom:366.946667pt;}
.y59{bottom:369.026667pt;}
.y155{bottom:370.466667pt;}
.y7a{bottom:371.426667pt;}
.y95{bottom:372.386667pt;}
.y198{bottom:372.866667pt;}
.y172{bottom:373.986667pt;}
.y12c{bottom:374.306667pt;}
.y1e0{bottom:374.626667pt;}
.yda{bottom:375.746667pt;}
.yb9{bottom:380.226667pt;}
.y29{bottom:382.466667pt;}
.y1a6{bottom:382.946667pt;}
.y147{bottom:385.026667pt;}
.y13c{bottom:387.426667pt;}
.y167{bottom:392.386667pt;}
.yef{bottom:394.626667pt;}
.y58{bottom:396.546667pt;}
.y79{bottom:398.946667pt;}
.y28{bottom:399.426667pt;}
.y1bf{bottom:399.586667pt;}
.y197{bottom:400.386667pt;}
.y12b{bottom:401.826667pt;}
.yd9{bottom:403.266667pt;}
.y94{bottom:406.306667pt;}
.yb8{bottom:407.906667pt;}
.y1df{bottom:409.026667pt;}
.y1a5{bottom:410.626667pt;}
.y154{bottom:411.906667pt;}
.y13b{bottom:414.946667pt;}
.y27{bottom:416.226667pt;}
.y1be{bottom:417.986667pt;}
.y166{bottom:419.906667pt;}
.y93{bottom:421.666667pt;}
.yee{bottom:422.146667pt;}
.y57{bottom:424.226667pt;}
.y78{bottom:426.626667pt;}
.y196{bottom:428.066667pt;}
.y12a{bottom:429.506667pt;}
.y26{bottom:433.506667pt;}
.yb7{bottom:435.426667pt;}
.y1bd{bottom:436.386667pt;}
.y92{bottom:437.026667pt;}
.y1a4{bottom:438.146667pt;}
.y13a{bottom:442.626667pt;}
.y1de{bottom:443.426667pt;}
.yd8{bottom:446.946667pt;}
.y165{bottom:447.586667pt;}
.yed{bottom:449.826667pt;}
.y56{bottom:451.746667pt;}
.y25{bottom:451.906667pt;}
.y91{bottom:452.386667pt;}
.y77{bottom:454.146667pt;}
.y195{bottom:455.586667pt;}
.y129{bottom:457.026667pt;}
.y1dd{bottom:461.826667pt;}
.yb6{bottom:463.106667pt;}
.y1a3{bottom:465.506667pt;}
.y139{bottom:470.146667pt;}
.y24{bottom:470.306667pt;}
.y1bc{bottom:470.626667pt;}
.y164{bottom:475.106667pt;}
.yec{bottom:477.346667pt;}
.y55{bottom:479.426667pt;}
.y76{bottom:481.826667pt;}
.y194{bottom:483.266667pt;}
.y128{bottom:484.706667pt;}
.y23{bottom:488.706667pt;}
.y1bb{bottom:489.026667pt;}
.yd7{bottom:490.466667pt;}
.yb5{bottom:490.626667pt;}
.y90{bottom:493.346667pt;}
.y1dc{bottom:496.226667pt;}
.y138{bottom:497.826667pt;}
.y163{bottom:502.786667pt;}
.yeb{bottom:504.866667pt;}
.y54{bottom:506.946667pt;}
.y22{bottom:507.106667pt;}
.y1ba{bottom:507.426667pt;}
.y75{bottom:509.026667pt;}
.ya2{bottom:509.346667pt;}
.y193{bottom:510.786667pt;}
.y127{bottom:512.226667pt;}
.y1db{bottom:514.626667pt;}
.yd6{bottom:518.146667pt;}
.yb4{bottom:518.306667pt;}
.y8f{bottom:520.866667pt;}
.y137{bottom:525.346667pt;}
.y21{bottom:525.506667pt;}
.y162{bottom:528.226667pt;}
.yea{bottom:532.546667pt;}
.y53{bottom:534.466667pt;}
.ya1{bottom:536.866667pt;}
.y192{bottom:538.466667pt;}
.y1b9{bottom:541.826667pt;}
.y20{bottom:543.906667pt;}
.yd5{bottom:545.666667pt;}
.yb3{bottom:545.826667pt;}
.y8e{bottom:548.546667pt;}
.y1da{bottom:549.026667pt;}
.y74{bottom:552.866667pt;}
.y126{bottom:557.826667pt;}
.ye9{bottom:559.746667pt;}
.y1b8{bottom:560.226667pt;}
.y52{bottom:562.146667pt;}
.y1f{bottom:562.306667pt;}
.ya0{bottom:564.546667pt;}
.y191{bottom:566.013333pt;}
.y161{bottom:567.293333pt;}
.y1d9{bottom:567.453333pt;}
.yd4{bottom:573.373333pt;}
.yb2{bottom:573.533333pt;}
.y8d{bottom:576.093333pt;}
.y1b7{bottom:578.333333pt;}
.y73{bottom:580.573333pt;}
.y1e{bottom:580.733333pt;}
.y1d8{bottom:585.853333pt;}
.y125{bottom:589.053333pt;}
.y9f{bottom:591.773333pt;}
.y190{bottom:593.693333pt;}
.y1b6{bottom:597.053333pt;}
.y1d{bottom:599.133333pt;}
.yd3{bottom:600.893333pt;}
.yb1{bottom:601.053333pt;}
.y8c{bottom:603.773333pt;}
.y124{bottom:604.413333pt;}
.y51{bottom:607.933333pt;}
.y72{bottom:608.093333pt;}
.y1c{bottom:617.533333pt;}
.y123{bottom:619.773333pt;}
.y1d7{bottom:620.253333pt;}
.y18f{bottom:621.213333pt;}
.y50{bottom:626.333333pt;}
.yd2{bottom:628.573333pt;}
.yb0{bottom:628.733333pt;}
.y8b{bottom:631.293333pt;}
.y1b5{bottom:631.453333pt;}
.y120{bottom:632.413333pt;}
.y71{bottom:635.773333pt;}
.y1b{bottom:635.933333pt;}
.y1d6{bottom:638.653333pt;}
.y18e{bottom:639.133333pt;}
.y4f{bottom:645.053333pt;}
.y153{bottom:649.853333pt;}
.y1a{bottom:654.333333pt;}
.yd1{bottom:656.093333pt;}
.y1d5{bottom:657.053333pt;}
.y8a{bottom:658.973333pt;}
.yaf{bottom:661.693333pt;}
.y121{bottom:663.133333pt;}
.y70{bottom:663.293333pt;}
.y4e{bottom:663.453333pt;}
.y1b4{bottom:668.253333pt;}
.y18d{bottom:670.493333pt;}
.y19{bottom:672.733333pt;}
.y1d4{bottom:675.453333pt;}
.y11b{bottom:679.133333pt;}
.y4d{bottom:681.853333pt;}
.yd0{bottom:683.613333pt;}
.y89{bottom:686.493333pt;}
.y1b3{bottom:686.653333pt;}
.y6f{bottom:690.973333pt;}
.y18{bottom:691.133333pt;}
.y189{bottom:699.133333pt;}
.y4c{bottom:700.253333pt;}
.y17{bottom:709.533333pt;}
.y1d3{bottom:709.853333pt;}
.ycf{bottom:711.293333pt;}
.yae{bottom:713.213333pt;}
.y1b2{bottom:713.853333pt;}
.y88{bottom:714.173333pt;}
.y6e{bottom:718.493333pt;}
.y4b{bottom:718.653333pt;}
.y11e{bottom:725.053333pt;}
.y16{bottom:727.933333pt;}
.y1d2{bottom:728.253333pt;}
.y146{bottom:732.733333pt;}
.y4a{bottom:737.053333pt;}
.yce{bottom:738.813333pt;}
.yad{bottom:740.893333pt;}
.y117{bottom:741.053333pt;}
.y87{bottom:741.693333pt;}
.y6d{bottom:746.173333pt;}
.y15{bottom:746.333333pt;}
.y1d1{bottom:746.653333pt;}
.y49{bottom:755.453333pt;}
.y1b1{bottom:757.373333pt;}
.y18c{bottom:759.773333pt;}
.y14{bottom:764.733333pt;}
.ycd{bottom:766.493333pt;}
.yac{bottom:768.413333pt;}
.ye8{bottom:769.373333pt;}
.y6c{bottom:773.693333pt;}
.y48{bottom:773.853333pt;}
.y18b{bottom:775.773333pt;}
.y1d0{bottom:781.053333pt;}
.y13{bottom:783.133333pt;}
.y86{bottom:785.373333pt;}
.y119{bottom:787.133333pt;}
.y186{bottom:791.813333pt;}
.y47{bottom:792.293333pt;}
.ycc{bottom:794.053333pt;}
.yab{bottom:796.133333pt;}
.ye7{bottom:796.933333pt;}
.y1cf{bottom:799.493333pt;}
.y12{bottom:801.253333pt;}
.y6b{bottom:801.413333pt;}
.y4{bottom:802.853333pt;}
.y110{bottom:803.173333pt;}
.y46{bottom:810.693333pt;}
.y11{bottom:819.653333pt;}
.ycb{bottom:821.733333pt;}
.yaa{bottom:823.653333pt;}
.ye6{bottom:824.613333pt;}
.y6a{bottom:828.933333pt;}
.y45{bottom:829.093333pt;}
.y1ce{bottom:833.893333pt;}
.y116{bottom:834.533333pt;}
.y188{bottom:837.093333pt;}
.yf{bottom:838.053333pt;}
.y160{bottom:843.173333pt;}
.y10{bottom:843.333333pt;}
.y44{bottom:847.493333pt;}
.yca{bottom:849.253333pt;}
.ya9{bottom:851.173333pt;}
.ye5{bottom:852.133333pt;}
.y1cd{bottom:852.293333pt;}
.y187{bottom:853.093333pt;}
.ye{bottom:856.453333pt;}
.y69{bottom:856.613333pt;}
.yd{bottom:861.733333pt;}
.y115{bottom:865.733333pt;}
.y43{bottom:865.893333pt;}
.y185{bottom:869.093333pt;}
.yc{bottom:874.853333pt;}
.yc9{bottom:876.933333pt;}
.ya8{bottom:878.853333pt;}
.y114{bottom:881.733333pt;}
.y68{bottom:884.133333pt;}
.y42{bottom:884.293333pt;}
.y1cc{bottom:886.693333pt;}
.yb{bottom:893.253333pt;}
.ye4{bottom:895.813333pt;}
.y113{bottom:897.733333pt;}
.y41{bottom:902.693333pt;}
.y1cb{bottom:905.093333pt;}
.ya7{bottom:906.373333pt;}
.yc8{bottom:910.853333pt;}
.ya{bottom:911.653333pt;}
.y67{bottom:911.813333pt;}
.y184{bottom:915.813333pt;}
.y40{bottom:921.093333pt;}
.y1ca{bottom:923.493333pt;}
.y109{bottom:929.093333pt;}
.y9{bottom:930.053333pt;}
.ya6{bottom:934.053333pt;}
.yc7{bottom:939.173333pt;}
.y66{bottom:939.333333pt;}
.y3f{bottom:939.493333pt;}
.y10f{bottom:945.093333pt;}
.y8{bottom:948.933333pt;}
.y3e{bottom:957.893333pt;}
.y10e{bottom:961.093333pt;}
.ya5{bottom:961.573333pt;}
.yc4{bottom:962.533333pt;}
.y65{bottom:967.013333pt;}
.y7{bottom:970.373333pt;}
.y3d{bottom:976.293333pt;}
.y10d{bottom:977.093333pt;}
.yc3{bottom:985.733333pt;}
.y6{bottom:991.813333pt;}
.y10c{bottom:993.093333pt;}
.y64{bottom:994.533333pt;}
.y3c{bottom:994.693333pt;}
.y1{bottom:1012.773333pt;}
.h26{height:15.200000pt;}
.h14{height:15.360000pt;}
.h1a{height:15.392000pt;}
.h12{height:22.880000pt;}
.h11{height:23.040000pt;}
.h10{height:23.072000pt;}
.h4{height:25.920000pt;}
.h22{height:30.080000pt;}
.h17{height:30.560000pt;}
.h1d{height:30.720000pt;}
.h15{height:31.360000pt;}
.h19{height:31.392000pt;}
.hb{height:33.918750pt;}
.h7{height:43.215000pt;}
.h27{height:44.640000pt;}
.h21{height:45.280000pt;}
.h1f{height:45.440000pt;}
.h29{height:45.920000pt;}
.h18{height:46.080000pt;}
.h2a{height:46.112000pt;}
.hf{height:47.621250pt;}
.hd{height:52.108438pt;}
.hc{height:52.134375pt;}
.h3{height:53.535000pt;}
.h8{height:57.375000pt;}
.ha{height:57.787500pt;}
.h9{height:59.340000pt;}
.h24{height:60.000000pt;}
.h20{height:61.280000pt;}
.h1e{height:61.472000pt;}
.he{height:62.781250pt;}
.h2{height:62.812500pt;}
.h5{height:64.500000pt;}
.h13{height:65.781915pt;}
.h6{height:75.465000pt;}
.h25{height:76.640000pt;}
.h1b{height:79.360000pt;}
.h23{height:92.032000pt;}
.h28{height:92.672000pt;}
.h16{height:124.640000pt;}
.h1c{height:125.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:35.520000pt;}
.wd{width:110.112000pt;}
.wc{width:147.226667pt;}
.w8{width:150.106667pt;}
.w9{width:150.266667pt;}
.wa{width:150.586667pt;}
.we{width:152.666667pt;}
.wb{width:191.066667pt;}
.w7{width:301.826667pt;}
.w5{width:301.986667pt;}
.w6{width:302.146667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:6.880000pt;}
.x26{left:9.440000pt;}
.x39{left:10.720000pt;}
.x1e{left:14.880000pt;}
.x3b{left:17.600000pt;}
.x1c{left:20.000000pt;}
.x3a{left:26.234667pt;}
.x1b{left:29.280000pt;}
.x38{left:30.240000pt;}
.x33{left:46.080000pt;}
.x36{left:48.480000pt;}
.x1a{left:49.594667pt;}
.x1f{left:52.474667pt;}
.x20{left:55.680000pt;}
.x32{left:59.674667pt;}
.x22{left:63.040000pt;}
.x28{left:64.320000pt;}
.x25{left:66.400000pt;}
.x37{left:67.360000pt;}
.x21{left:68.480000pt;}
.x3d{left:69.600000pt;}
.x24{left:71.680000pt;}
.x27{left:75.040000pt;}
.x3c{left:76.954667pt;}
.x15{left:88.480000pt;}
.x16{left:91.354667pt;}
.x12{left:92.954667pt;}
.x3e{left:95.514667pt;}
.x13{left:102.554667pt;}
.x2{left:113.471988pt;}
.x31{left:114.432000pt;}
.x14{left:116.514667pt;}
.xc{left:117.791988pt;}
.x7{left:119.551988pt;}
.x4{left:124.831988pt;}
.x17{left:130.280000pt;}
.x29{left:133.311988pt;}
.xe{left:151.226655pt;}
.x10{left:160.666655pt;}
.x19{left:199.226655pt;}
.xd{left:205.466655pt;}
.x5{left:220.226655pt;}
.x30{left:257.506655pt;}
.xf{left:264.706655pt;}
.x11{left:291.266655pt;}
.xb{left:305.506655pt;}
.x2b{left:315.106655pt;}
.x2a{left:318.626655pt;}
.x18{left:324.386655pt;}
.x2e{left:329.986655pt;}
.x2f{left:338.306655pt;}
.x2c{left:341.186655pt;}
.x2d{left:349.346655pt;}
.x8{left:354.466655pt;}
.x6{left:415.933322pt;}
.xa{left:452.093322pt;}
.x34{left:454.013333pt;}
.x35{left:564.933333pt;}
.x1d{left:566.853333pt;}
.x9{left:712.959976pt;}
.x1{left:718.239988pt;}
.x3{left:738.400000pt;}
}




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