
    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_a40b50cee33d8ff810136179.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d590d9c284ee01942a16eb19.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928711;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_0fffe1f571efc8855ee75c4f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cdaded221537384bb9fa84cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_63a37977befad443d1f87bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_4afc0ea07869c65ecb5a6dca.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_98dc783d927ed60dfe402f47.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d678811cc3e44bf9aa1cc4d5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7a2a965736232cf5d9328e6e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d8eb50b657b492d9df829cb0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_93762577161fd11260a501a7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.196289;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lse{letter-spacing:-4.320000px;}
.ls6{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.252000px;}
.ls8{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.181200px;}
.ls1b{letter-spacing:-0.175800px;}
.lsc{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.058320px;}
.ls1{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.181440px;}
.ls5{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.720000px;}
.ls14{letter-spacing:10.800000px;}
.ls15{letter-spacing:12.240000px;}
.ls10{letter-spacing:15.269760px;}
.ls13{letter-spacing:20.160000px;}
.ls12{letter-spacing:29.520000px;}
.ls19{letter-spacing:30.960000px;}
.ls16{letter-spacing:46.080000px;}
.ls3{letter-spacing:2074.920000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-72.000000px;}
.ws2{word-spacing:-49.870080px;}
.ws3{word-spacing:-21.641760px;}
.ws1{word-spacing:-19.900080px;}
.wsf{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.784000px;}
.ws8{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.608000px;}
.wsa{word-spacing:-13.518000px;}
.ws6{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.447440px;}
.wsb{word-spacing:-13.284000px;}
.wsd{word-spacing:-13.248000px;}
.ws4{word-spacing:-13.229520px;}
.wsc{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.888000px;}
.ws0{word-spacing:-12.186000px;}
.wse{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._11{margin-left:-4.342800px;}
._10{margin-left:-3.277200px;}
._f{margin-left:-2.106000px;}
._8{margin-left:-1.087920px;}
._0{width:1.171200px;}
._5{width:2.474160px;}
._e{width:3.546480px;}
._13{width:4.606800px;}
._12{width:5.994000px;}
._2{width:7.195200px;}
._3{width:8.210640px;}
._4{width:9.419040px;}
._b{width:11.079600px;}
._c{width:12.489840px;}
._17{width:13.608960px;}
._1a{width:14.762400px;}
._a{width:15.836400px;}
._9{width:17.031600px;}
._14{width:18.117600px;}
._6{width:19.744800px;}
._1c{width:21.738240px;}
._1b{width:22.975920px;}
._18{width:24.264000px;}
._19{width:25.540800px;}
._20{width:26.904000px;}
._22{width:28.051200px;}
._1{width:29.700720px;}
._7{width:31.099200px;}
._15{width:32.256000px;}
._16{width:33.552000px;}
._1d{width:34.992000px;}
._1e{width:36.528000px;}
._21{width:37.780800px;}
._1f{width:41.760000px;}
._d{width:43.744320px;}
._23{width:45.072000px;}
._25{width:46.107600px;}
._24{width:47.352000px;}
._27{width:74.876160px;}
._26{width:76.183920px;}
.fc9{color:rgb(132,60,11);}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fca{color:rgb(237,125,49);}
.fc8{color:rgb(31,31,31);}
.fc6{color:rgb(34,34,34);}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:149.760000px;}
.y130{bottom:-105.120000px;}
.y32{bottom:-83.700000px;}
.y22{bottom:-72.900000px;}
.y12f{bottom:-68.760000px;}
.y31{bottom:-56.520000px;}
.y21{bottom:-36.540000px;}
.y30{bottom:-33.660000px;}
.y12e{bottom:-32.940000px;}
.y12d{bottom:-16.380000px;}
.y2f{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.975000px;}
.y9{bottom:3.780000px;}
.yfa{bottom:6.479850px;}
.yb{bottom:7.560000px;}
.y8{bottom:9.540000px;}
.y2e{bottom:11.880000px;}
.y12c{bottom:17.820000px;}
.y1f{bottom:18.045000px;}
.y7{bottom:18.180000px;}
.y29{bottom:22.755000px;}
.y2d{bottom:34.785000px;}
.y1e{bottom:36.405000px;}
.yf{bottom:36.900000px;}
.y12b{bottom:41.436000px;}
.ye{bottom:43.560000px;}
.y6{bottom:50.580000px;}
.y27{bottom:53.100000px;}
.y1d{bottom:54.765000px;}
.y2c{bottom:57.465000px;}
.y12a{bottom:65.190000px;}
.y98{bottom:72.360000px;}
.y1c{bottom:73.125000px;}
.y74{bottom:73.440000px;}
.y73{bottom:77.940000px;}
.y129{bottom:79.770000px;}
.y2b{bottom:80.325000px;}
.yf9{bottom:90.900000px;}
.y94{bottom:91.080000px;}
.yde{bottom:92.700000px;}
.y72{bottom:93.240000px;}
.y71{bottom:97.740000px;}
.ybd{bottom:99.900000px;}
.y128{bottom:103.350000px;}
.y97{bottom:103.500000px;}
.y10f{bottom:107.280000px;}
.ya3{bottom:108.180000px;}
.y1b{bottom:109.305000px;}
.y70{bottom:113.040000px;}
.ydd{bottom:113.400000px;}
.y6f{bottom:117.540000px;}
.ybc{bottom:120.600000px;}
.y93{bottom:122.040000px;}
.y127{bottom:127.110000px;}
.y1a{bottom:127.665000px;}
.yf8{bottom:129.600000px;}
.y96{bottom:130.320000px;}
.y6e{bottom:132.840000px;}
.y6d{bottom:137.376000px;}
.ya2{bottom:139.356000px;}
.ybb{bottom:141.336000px;}
.y19{bottom:146.025000px;}
.y126{bottom:150.690000px;}
.ydc{bottom:152.130000px;}
.y6c{bottom:152.670000px;}
.y92{bottom:153.210000px;}
.yd{bottom:156.090000px;}
.y6b{bottom:157.170000px;}
.y95{bottom:157.350000px;}
.y18{bottom:164.205000px;}
.yf7{bottom:168.330000px;}
.ya1{bottom:170.310000px;}
.ydb{bottom:172.830000px;}
.y6a{bottom:173.910000px;}
.y125{bottom:174.450000px;}
.yba{bottom:180.030000px;}
.y17{bottom:182.565000px;}
.y91{bottom:184.170000px;}
.y124{bottom:189.030000px;}
.yb9{bottom:200.730000px;}
.ya0{bottom:201.450000px;}
.y69{bottom:202.890000px;}
.yf6{bottom:207.030000px;}
.yda{bottom:211.530000px;}
.y123{bottom:212.610000px;}
.y90{bottom:215.310000px;}
.y16{bottom:218.925000px;}
.y68{bottom:227.550000px;}
.yd9{bottom:232.230000px;}
.y9f{bottom:232.410000px;}
.y122{bottom:236.370000px;}
.y15{bottom:237.285000px;}
.yb8{bottom:239.430000px;}
.y67{bottom:243.030000px;}
.yf5{bottom:245.730000px;}
.y8f{bottom:246.270000px;}
.y121{bottom:250.950000px;}
.y14{bottom:255.465000px;}
.y66{bottom:258.510000px;}
.yb7{bottom:260.130000px;}
.y9e{bottom:263.550000px;}
.yd8{bottom:270.930000px;}
.y13{bottom:273.855000px;}
.y65{bottom:273.990000px;}
.y120{bottom:274.890000px;}
.y8e{bottom:277.230000px;}
.yb6{bottom:280.830000px;}
.yf4{bottom:284.430000px;}
.y64{bottom:289.650000px;}
.y9d{bottom:291.630000px;}
.y9c{bottom:303.690000px;}
.y63{bottom:305.130000px;}
.y8d{bottom:308.370000px;}
.y11f{bottom:309.135000px;}
.y9b{bottom:313.410000px;}
.yb5{bottom:319.530000px;}
.y62{bottom:320.610000px;}
.yf3{bottom:323.130000px;}
.y11e{bottom:323.715000px;}
.yd7{bottom:330.330000px;}
.y61{bottom:336.090000px;}
.y8c{bottom:339.330000px;}
.yb4{bottom:340.230000px;}
.y11d{bottom:347.475000px;}
.yd6{bottom:351.030000px;}
.y60{bottom:351.750000px;}
.y2a{bottom:360.210000px;}
.yf2{bottom:361.830000px;}
.y5f{bottom:367.230000px;}
.y8b{bottom:370.470000px;}
.y11c{bottom:371.055000px;}
.ye7{bottom:371.730000px;}
.yb3{bottom:378.930000px;}
.y5e{bottom:382.710000px;}
.yd5{bottom:389.775000px;}
.y11b{bottom:394.815000px;}
.y5d{bottom:398.235000px;}
.yb2{bottom:399.675000px;}
.yf1{bottom:400.575000px;}
.y8a{bottom:401.475000px;}
.y10e{bottom:406.875000px;}
.yd4{bottom:410.475000px;}
.y5c{bottom:413.895000px;}
.y11a{bottom:418.395000px;}
.yb1{bottom:420.375000px;}
.y5b{bottom:429.375000px;}
.ye6{bottom:431.175000px;}
.y89{bottom:432.615000px;}
.y119{bottom:432.975000px;}
.y10d{bottom:437.835000px;}
.yf0{bottom:439.275000px;}
.y5a{bottom:444.855000px;}
.yd3{bottom:449.175000px;}
.y118{bottom:456.735000px;}
.y10c{bottom:457.815000px;}
.yb0{bottom:459.075000px;}
.y59{bottom:460.335000px;}
.y88{bottom:463.575000px;}
.y26{bottom:465.915000px;}
.y28{bottom:466.020000px;}
.yd2{bottom:469.875000px;}
.y58{bottom:475.995000px;}
.yef{bottom:477.975000px;}
.yaf{bottom:479.775000px;}
.y117{bottom:480.675000px;}
.yc{bottom:486.615000px;}
.ye5{bottom:490.575000px;}
.y10b{bottom:493.815000px;}
.y87{bottom:494.715000px;}
.y57{bottom:500.475000px;}
.yd1{bottom:508.575000px;}
.y116{bottom:514.875000px;}
.yee{bottom:516.675000px;}
.y56{bottom:517.395000px;}
.yae{bottom:518.475000px;}
.y86{bottom:525.675000px;}
.yd0{bottom:529.275000px;}
.y10a{bottom:533.775000px;}
.yad{bottom:539.175000px;}
.y115{bottom:539.205000px;}
.y55{bottom:539.895000px;}
.ye4{bottom:549.975000px;}
.y25{bottom:552.420000px;}
.yed{bottom:555.375000px;}
.y85{bottom:556.815000px;}
.y54{bottom:564.375000px;}
.y109{bottom:564.915000px;}
.ycf{bottom:567.975000px;}
.y114{bottom:575.025000px;}
.yac{bottom:577.875000px;}
.y53{bottom:579.855000px;}
.y84{bottom:587.775000px;}
.yce{bottom:588.675000px;}
.y10{bottom:589.215000px;}
.yec{bottom:594.075000px;}
.y52{bottom:595.335000px;}
.y108{bottom:595.875000px;}
.yab{bottom:598.575000px;}
.y23{bottom:605.340000px;}
.ye3{bottom:609.375000px;}
.y9a{bottom:609.915000px;}
.y113{bottom:609.945000px;}
.y51{bottom:610.995000px;}
.ya{bottom:616.395000px;}
.y83{bottom:618.915000px;}
.yfb{bottom:619.635150px;}
.y50{bottom:626.475000px;}
.y107{bottom:627.015000px;}
.ycd{bottom:627.375000px;}
.yeb{bottom:632.775000px;}
.yaa{bottom:637.275000px;}
.y99{bottom:640.905000px;}
.y4f{bottom:641.985000px;}
.y33{bottom:644.685000px;}
.y112{bottom:646.305000px;}
.ycc{bottom:648.105000px;}
.y82{bottom:649.905000px;}
.y4e{bottom:657.465000px;}
.ya9{bottom:658.005000px;}
.ye2{bottom:668.805000px;}
.yea{bottom:671.505000px;}
.y4d{bottom:672.945000px;}
.y81{bottom:681.045000px;}
.y111{bottom:682.125000px;}
.ycb{bottom:686.805000px;}
.y4c{bottom:688.605000px;}
.y106{bottom:689.145000px;}
.ya8{bottom:696.705000px;}
.y4b{bottom:704.085000px;}
.yca{bottom:707.505000px;}
.ye9{bottom:710.205000px;}
.y80{bottom:712.005000px;}
.ya7{bottom:717.405000px;}
.y110{bottom:718.305000px;}
.y4a{bottom:719.565000px;}
.y105{bottom:720.105000px;}
.ye1{bottom:728.205000px;}
.y49{bottom:735.045000px;}
.y7f{bottom:743.145000px;}
.yc9{bottom:746.205000px;}
.ye8{bottom:748.905000px;}
.y48{bottom:750.705000px;}
.y104{bottom:751.245000px;}
.ya6{bottom:756.105000px;}
.y47{bottom:766.185000px;}
.yc8{bottom:766.905000px;}
.y7e{bottom:774.105000px;}
.ya5{bottom:776.805000px;}
.y46{bottom:781.665000px;}
.y103{bottom:782.205000px;}
.ye0{bottom:787.605000px;}
.y45{bottom:797.145000px;}
.y7d{bottom:805.245000px;}
.yc7{bottom:805.605000px;}
.y44{bottom:812.805000px;}
.y102{bottom:813.345000px;}
.ya4{bottom:815.505000px;}
.yc6{bottom:826.305000px;}
.y43{bottom:828.285000px;}
.y7c{bottom:836.205000px;}
.y42{bottom:843.765000px;}
.y101{bottom:844.305000px;}
.ydf{bottom:847.005000px;}
.yc5{bottom:865.005000px;}
.y41{bottom:866.985000px;}
.y7b{bottom:867.345000px;}
.y100{bottom:875.445000px;}
.y40{bottom:885.165000px;}
.yc4{bottom:885.705000px;}
.y12{bottom:888.405000px;}
.y7a{bottom:898.350000px;}
.yc3{bottom:906.450000px;}
.y131{bottom:912.210000px;}
.y3e{bottom:915.990000px;}
.y3f{bottom:922.830000px;}
.y79{bottom:929.490000px;}
.yff{bottom:937.590000px;}
.y3c{bottom:944.970000px;}
.yc2{bottom:945.150000px;}
.y3d{bottom:951.810000px;}
.y78{bottom:960.450000px;}
.yc1{bottom:965.850000px;}
.yfe{bottom:968.550000px;}
.y3a{bottom:973.950000px;}
.y3b{bottom:980.790000px;}
.y77{bottom:991.590000px;}
.y38{bottom:1002.930000px;}
.yc0{bottom:1004.550000px;}
.yfd{bottom:1007.250000px;}
.y39{bottom:1009.770000px;}
.y76{bottom:1022.550000px;}
.ybf{bottom:1025.250000px;}
.y36{bottom:1031.910000px;}
.y37{bottom:1038.750000px;}
.yfc{bottom:1045.950000px;}
.y35{bottom:1051.890000px;}
.y75{bottom:1053.690000px;}
.ybe{bottom:1063.950000px;}
.y34{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h5{height:24.156000px;}
.h1a{height:26.314453px;}
.h1b{height:27.109688px;}
.h3{height:28.440000px;}
.hc{height:28.980000px;}
.h12{height:35.261367px;}
.h1f{height:37.437188px;}
.h1c{height:43.246406px;}
.h17{height:43.681992px;}
.h18{height:47.961914px;}
.h24{height:47.980898px;}
.h19{height:48.410156px;}
.h16{height:52.628906px;}
.ha{height:53.573906px;}
.h4{height:53.709961px;}
.h25{height:55.291992px;}
.h6{height:56.649375px;}
.h8{height:57.959925px;}
.h2{height:59.439023px;}
.h23{height:61.189805px;}
.h15{height:63.949219px;}
.h1d{height:64.546875px;}
.h13{height:65.884219px;}
.h1e{height:70.606406px;}
.h22{height:79.620469px;}
.hf{height:91.177734px;}
.h11{height:100.656000px;}
.hd{height:109.102500px;}
.h7{height:170.490000px;}
.h14{height:173.700000px;}
.h10{height:181.620000px;}
.he{height:181.650000px;}
.h26{height:189.000000px;}
.hb{height:306.255000px;}
.h21{height:754.845000px;}
.h9{height:1188.900000px;}
.h20{height:1249.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.960000px;}
.w6{width:88.560000px;}
.wf{width:198.210000px;}
.w12{width:213.330000px;}
.wa{width:255.060000px;}
.wb{width:295.200000px;}
.we{width:320.790000px;}
.wd{width:320.940000px;}
.wc{width:321.015000px;}
.w11{width:326.055000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w3{width:397.545000px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.w10{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x12{left:-2.055000px;}
.x0{left:0.000000px;}
.xa{left:4.860000px;}
.x6{left:8.676000px;}
.xc{left:10.800000px;}
.xe{left:22.320000px;}
.x2c{left:31.499973px;}
.xd{left:33.120000px;}
.x18{left:37.620000px;}
.x4{left:64.439987px;}
.x26{left:68.219987px;}
.x5{left:73.080000px;}
.x1c{left:79.955987px;}
.x19{left:82.800000px;}
.x2a{left:85.715987px;}
.x2b{left:96.515987px;}
.x1a{left:113.400000px;}
.x27{left:117.575987px;}
.x16{left:133.125000px;}
.x8{left:137.385000px;}
.x15{left:160.410000px;}
.x10{left:163.290000px;}
.x1b{left:187.245000px;}
.x2e{left:202.545000px;}
.x25{left:280.514987px;}
.x28{left:301.934987px;}
.x3{left:388.694987px;}
.x14{left:406.155000px;}
.xf{left:408.135000px;}
.x17{left:411.945000px;}
.x13{left:419.760000px;}
.x11{left:439.560000px;}
.x24{left:442.004987px;}
.x2d{left:456.225000px;}
.x1{left:461.804987px;}
.x7{left:470.625000px;}
.x22{left:530.924987px;}
.x21{left:535.604987px;}
.x1d{left:584.069987px;}
.x20{left:632.129987px;}
.x23{left:650.129987px;}
.x2{left:782.279987px;}
.xb{left:803.880000px;}
.x1e{left:813.599973px;}
.x1f{left:819.719987px;}
.x29{left:827.279987px;}
.x9{left:838.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lse{letter-spacing:-3.840000pt;}
.ls6{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.224000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.161067pt;}
.ls1b{letter-spacing:-0.156267pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.161280pt;}
.ls5{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls14{letter-spacing:9.600000pt;}
.ls15{letter-spacing:10.880000pt;}
.ls10{letter-spacing:13.573120pt;}
.ls13{letter-spacing:17.920000pt;}
.ls12{letter-spacing:26.240000pt;}
.ls19{letter-spacing:27.520000pt;}
.ls16{letter-spacing:40.960000pt;}
.ls3{letter-spacing:1844.373333pt;}
.ws11{word-spacing:-64.000000pt;}
.ws2{word-spacing:-44.328960pt;}
.ws3{word-spacing:-19.237120pt;}
.ws1{word-spacing:-17.688960pt;}
.wsf{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.096000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.953280pt;}
.wsb{word-spacing:-11.808000pt;}
.wsd{word-spacing:-11.776000pt;}
.ws4{word-spacing:-11.759573pt;}
.wsc{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.456000pt;}
.ws0{word-spacing:-10.832000pt;}
.wse{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._11{margin-left:-3.860267pt;}
._10{margin-left:-2.913067pt;}
._f{margin-left:-1.872000pt;}
._8{margin-left:-0.967040pt;}
._0{width:1.041067pt;}
._5{width:2.199253pt;}
._e{width:3.152427pt;}
._13{width:4.094933pt;}
._12{width:5.328000pt;}
._2{width:6.395733pt;}
._3{width:7.298347pt;}
._4{width:8.372480pt;}
._b{width:9.848533pt;}
._c{width:11.102080pt;}
._17{width:12.096853pt;}
._1a{width:13.122133pt;}
._a{width:14.076800pt;}
._9{width:15.139200pt;}
._14{width:16.104533pt;}
._6{width:17.550933pt;}
._1c{width:19.322880pt;}
._1b{width:20.423040pt;}
._18{width:21.568000pt;}
._19{width:22.702933pt;}
._20{width:23.914667pt;}
._22{width:24.934400pt;}
._1{width:26.400640pt;}
._7{width:27.643733pt;}
._15{width:28.672000pt;}
._16{width:29.824000pt;}
._1d{width:31.104000pt;}
._1e{width:32.469333pt;}
._21{width:33.582933pt;}
._1f{width:37.120000pt;}
._d{width:38.883840pt;}
._23{width:40.064000pt;}
._25{width:40.984533pt;}
._24{width:42.090667pt;}
._27{width:66.556587pt;}
._26{width:67.719040pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:133.120000pt;}
.y130{bottom:-93.440000pt;}
.y32{bottom:-74.400000pt;}
.y22{bottom:-64.800000pt;}
.y12f{bottom:-61.120000pt;}
.y31{bottom:-50.240000pt;}
.y21{bottom:-32.480000pt;}
.y30{bottom:-29.920000pt;}
.y12e{bottom:-29.280000pt;}
.y12d{bottom:-14.560000pt;}
.y2f{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.866667pt;}
.y9{bottom:3.360000pt;}
.yfa{bottom:5.759867pt;}
.yb{bottom:6.720000pt;}
.y8{bottom:8.480000pt;}
.y2e{bottom:10.560000pt;}
.y12c{bottom:15.840000pt;}
.y1f{bottom:16.040000pt;}
.y7{bottom:16.160000pt;}
.y29{bottom:20.226667pt;}
.y2d{bottom:30.920000pt;}
.y1e{bottom:32.360000pt;}
.yf{bottom:32.800000pt;}
.y12b{bottom:36.832000pt;}
.ye{bottom:38.720000pt;}
.y6{bottom:44.960000pt;}
.y27{bottom:47.200000pt;}
.y1d{bottom:48.680000pt;}
.y2c{bottom:51.080000pt;}
.y12a{bottom:57.946667pt;}
.y98{bottom:64.320000pt;}
.y1c{bottom:65.000000pt;}
.y74{bottom:65.280000pt;}
.y73{bottom:69.280000pt;}
.y129{bottom:70.906667pt;}
.y2b{bottom:71.400000pt;}
.yf9{bottom:80.800000pt;}
.y94{bottom:80.960000pt;}
.yde{bottom:82.400000pt;}
.y72{bottom:82.880000pt;}
.y71{bottom:86.880000pt;}
.ybd{bottom:88.800000pt;}
.y128{bottom:91.866667pt;}
.y97{bottom:92.000000pt;}
.y10f{bottom:95.360000pt;}
.ya3{bottom:96.160000pt;}
.y1b{bottom:97.160000pt;}
.y70{bottom:100.480000pt;}
.ydd{bottom:100.800000pt;}
.y6f{bottom:104.480000pt;}
.ybc{bottom:107.200000pt;}
.y93{bottom:108.480000pt;}
.y127{bottom:112.986667pt;}
.y1a{bottom:113.480000pt;}
.yf8{bottom:115.200000pt;}
.y96{bottom:115.840000pt;}
.y6e{bottom:118.080000pt;}
.y6d{bottom:122.112000pt;}
.ya2{bottom:123.872000pt;}
.ybb{bottom:125.632000pt;}
.y19{bottom:129.800000pt;}
.y126{bottom:133.946667pt;}
.ydc{bottom:135.226667pt;}
.y6c{bottom:135.706667pt;}
.y92{bottom:136.186667pt;}
.yd{bottom:138.746667pt;}
.y6b{bottom:139.706667pt;}
.y95{bottom:139.866667pt;}
.y18{bottom:145.960000pt;}
.yf7{bottom:149.626667pt;}
.ya1{bottom:151.386667pt;}
.ydb{bottom:153.626667pt;}
.y6a{bottom:154.586667pt;}
.y125{bottom:155.066667pt;}
.yba{bottom:160.026667pt;}
.y17{bottom:162.280000pt;}
.y91{bottom:163.706667pt;}
.y124{bottom:168.026667pt;}
.yb9{bottom:178.426667pt;}
.ya0{bottom:179.066667pt;}
.y69{bottom:180.346667pt;}
.yf6{bottom:184.026667pt;}
.yda{bottom:188.026667pt;}
.y123{bottom:188.986667pt;}
.y90{bottom:191.386667pt;}
.y16{bottom:194.600000pt;}
.y68{bottom:202.266667pt;}
.yd9{bottom:206.426667pt;}
.y9f{bottom:206.586667pt;}
.y122{bottom:210.106667pt;}
.y15{bottom:210.920000pt;}
.yb8{bottom:212.826667pt;}
.y67{bottom:216.026667pt;}
.yf5{bottom:218.426667pt;}
.y8f{bottom:218.906667pt;}
.y121{bottom:223.066667pt;}
.y14{bottom:227.080000pt;}
.y66{bottom:229.786667pt;}
.yb7{bottom:231.226667pt;}
.y9e{bottom:234.266667pt;}
.yd8{bottom:240.826667pt;}
.y13{bottom:243.426667pt;}
.y65{bottom:243.546667pt;}
.y120{bottom:244.346667pt;}
.y8e{bottom:246.426667pt;}
.yb6{bottom:249.626667pt;}
.yf4{bottom:252.826667pt;}
.y64{bottom:257.466667pt;}
.y9d{bottom:259.226667pt;}
.y9c{bottom:269.946667pt;}
.y63{bottom:271.226667pt;}
.y8d{bottom:274.106667pt;}
.y11f{bottom:274.786667pt;}
.y9b{bottom:278.586667pt;}
.yb5{bottom:284.026667pt;}
.y62{bottom:284.986667pt;}
.yf3{bottom:287.226667pt;}
.y11e{bottom:287.746667pt;}
.yd7{bottom:293.626667pt;}
.y61{bottom:298.746667pt;}
.y8c{bottom:301.626667pt;}
.yb4{bottom:302.426667pt;}
.y11d{bottom:308.866667pt;}
.yd6{bottom:312.026667pt;}
.y60{bottom:312.666667pt;}
.y2a{bottom:320.186667pt;}
.yf2{bottom:321.626667pt;}
.y5f{bottom:326.426667pt;}
.y8b{bottom:329.306667pt;}
.y11c{bottom:329.826667pt;}
.ye7{bottom:330.426667pt;}
.yb3{bottom:336.826667pt;}
.y5e{bottom:340.186667pt;}
.yd5{bottom:346.466667pt;}
.y11b{bottom:350.946667pt;}
.y5d{bottom:353.986667pt;}
.yb2{bottom:355.266667pt;}
.yf1{bottom:356.066667pt;}
.y8a{bottom:356.866667pt;}
.y10e{bottom:361.666667pt;}
.yd4{bottom:364.866667pt;}
.y5c{bottom:367.906667pt;}
.y11a{bottom:371.906667pt;}
.yb1{bottom:373.666667pt;}
.y5b{bottom:381.666667pt;}
.ye6{bottom:383.266667pt;}
.y89{bottom:384.546667pt;}
.y119{bottom:384.866667pt;}
.y10d{bottom:389.186667pt;}
.yf0{bottom:390.466667pt;}
.y5a{bottom:395.426667pt;}
.yd3{bottom:399.266667pt;}
.y118{bottom:405.986667pt;}
.y10c{bottom:406.946667pt;}
.yb0{bottom:408.066667pt;}
.y59{bottom:409.186667pt;}
.y88{bottom:412.066667pt;}
.y26{bottom:414.146667pt;}
.y28{bottom:414.240000pt;}
.yd2{bottom:417.666667pt;}
.y58{bottom:423.106667pt;}
.yef{bottom:424.866667pt;}
.yaf{bottom:426.466667pt;}
.y117{bottom:427.266667pt;}
.yc{bottom:432.546667pt;}
.ye5{bottom:436.066667pt;}
.y10b{bottom:438.946667pt;}
.y87{bottom:439.746667pt;}
.y57{bottom:444.866667pt;}
.yd1{bottom:452.066667pt;}
.y116{bottom:457.666667pt;}
.yee{bottom:459.266667pt;}
.y56{bottom:459.906667pt;}
.yae{bottom:460.866667pt;}
.y86{bottom:467.266667pt;}
.yd0{bottom:470.466667pt;}
.y10a{bottom:474.466667pt;}
.yad{bottom:479.266667pt;}
.y115{bottom:479.293333pt;}
.y55{bottom:479.906667pt;}
.ye4{bottom:488.866667pt;}
.y25{bottom:491.040000pt;}
.yed{bottom:493.666667pt;}
.y85{bottom:494.946667pt;}
.y54{bottom:501.666667pt;}
.y109{bottom:502.146667pt;}
.ycf{bottom:504.866667pt;}
.y114{bottom:511.133333pt;}
.yac{bottom:513.666667pt;}
.y53{bottom:515.426667pt;}
.y84{bottom:522.466667pt;}
.yce{bottom:523.266667pt;}
.y10{bottom:523.746667pt;}
.yec{bottom:528.066667pt;}
.y52{bottom:529.186667pt;}
.y108{bottom:529.666667pt;}
.yab{bottom:532.066667pt;}
.y23{bottom:538.080000pt;}
.ye3{bottom:541.666667pt;}
.y9a{bottom:542.146667pt;}
.y113{bottom:542.173333pt;}
.y51{bottom:543.106667pt;}
.ya{bottom:547.906667pt;}
.y83{bottom:550.146667pt;}
.yfb{bottom:550.786800pt;}
.y50{bottom:556.866667pt;}
.y107{bottom:557.346667pt;}
.ycd{bottom:557.666667pt;}
.yeb{bottom:562.466667pt;}
.yaa{bottom:566.466667pt;}
.y99{bottom:569.693333pt;}
.y4f{bottom:570.653333pt;}
.y33{bottom:573.053333pt;}
.y112{bottom:574.493333pt;}
.ycc{bottom:576.093333pt;}
.y82{bottom:577.693333pt;}
.y4e{bottom:584.413333pt;}
.ya9{bottom:584.893333pt;}
.ye2{bottom:594.493333pt;}
.yea{bottom:596.893333pt;}
.y4d{bottom:598.173333pt;}
.y81{bottom:605.373333pt;}
.y111{bottom:606.333333pt;}
.ycb{bottom:610.493333pt;}
.y4c{bottom:612.093333pt;}
.y106{bottom:612.573333pt;}
.ya8{bottom:619.293333pt;}
.y4b{bottom:625.853333pt;}
.yca{bottom:628.893333pt;}
.ye9{bottom:631.293333pt;}
.y80{bottom:632.893333pt;}
.ya7{bottom:637.693333pt;}
.y110{bottom:638.493333pt;}
.y4a{bottom:639.613333pt;}
.y105{bottom:640.093333pt;}
.ye1{bottom:647.293333pt;}
.y49{bottom:653.373333pt;}
.y7f{bottom:660.573333pt;}
.yc9{bottom:663.293333pt;}
.ye8{bottom:665.693333pt;}
.y48{bottom:667.293333pt;}
.y104{bottom:667.773333pt;}
.ya6{bottom:672.093333pt;}
.y47{bottom:681.053333pt;}
.yc8{bottom:681.693333pt;}
.y7e{bottom:688.093333pt;}
.ya5{bottom:690.493333pt;}
.y46{bottom:694.813333pt;}
.y103{bottom:695.293333pt;}
.ye0{bottom:700.093333pt;}
.y45{bottom:708.573333pt;}
.y7d{bottom:715.773333pt;}
.yc7{bottom:716.093333pt;}
.y44{bottom:722.493333pt;}
.y102{bottom:722.973333pt;}
.ya4{bottom:724.893333pt;}
.yc6{bottom:734.493333pt;}
.y43{bottom:736.253333pt;}
.y7c{bottom:743.293333pt;}
.y42{bottom:750.013333pt;}
.y101{bottom:750.493333pt;}
.ydf{bottom:752.893333pt;}
.yc5{bottom:768.893333pt;}
.y41{bottom:770.653333pt;}
.y7b{bottom:770.973333pt;}
.y100{bottom:778.173333pt;}
.y40{bottom:786.813333pt;}
.yc4{bottom:787.293333pt;}
.y12{bottom:789.693333pt;}
.y7a{bottom:798.533333pt;}
.yc3{bottom:805.733333pt;}
.y131{bottom:810.853333pt;}
.y3e{bottom:814.213333pt;}
.y3f{bottom:820.293333pt;}
.y79{bottom:826.213333pt;}
.yff{bottom:833.413333pt;}
.y3c{bottom:839.973333pt;}
.yc2{bottom:840.133333pt;}
.y3d{bottom:846.053333pt;}
.y78{bottom:853.733333pt;}
.yc1{bottom:858.533333pt;}
.yfe{bottom:860.933333pt;}
.y3a{bottom:865.733333pt;}
.y3b{bottom:871.813333pt;}
.y77{bottom:881.413333pt;}
.y38{bottom:891.493333pt;}
.yc0{bottom:892.933333pt;}
.yfd{bottom:895.333333pt;}
.y39{bottom:897.573333pt;}
.y76{bottom:908.933333pt;}
.ybf{bottom:911.333333pt;}
.y36{bottom:917.253333pt;}
.y37{bottom:923.333333pt;}
.yfc{bottom:929.733333pt;}
.y35{bottom:935.013333pt;}
.y75{bottom:936.613333pt;}
.ybe{bottom:945.733333pt;}
.y34{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h5{height:21.472000pt;}
.h1a{height:23.390625pt;}
.h1b{height:24.097500pt;}
.h3{height:25.280000pt;}
.hc{height:25.760000pt;}
.h12{height:31.343437pt;}
.h1f{height:33.277500pt;}
.h1c{height:38.441250pt;}
.h17{height:38.828437pt;}
.h18{height:42.632812pt;}
.h24{height:42.649687pt;}
.h19{height:43.031250pt;}
.h16{height:46.781250pt;}
.ha{height:47.621250pt;}
.h4{height:47.742188pt;}
.h25{height:49.148438pt;}
.h6{height:50.355000pt;}
.h8{height:51.519933pt;}
.h2{height:52.834688pt;}
.h23{height:54.390938pt;}
.h15{height:56.843750pt;}
.h1d{height:57.375000pt;}
.h13{height:58.563750pt;}
.h1e{height:62.761250pt;}
.h22{height:70.773750pt;}
.hf{height:81.046875pt;}
.h11{height:89.472000pt;}
.hd{height:96.980000pt;}
.h7{height:151.546667pt;}
.h14{height:154.400000pt;}
.h10{height:161.440000pt;}
.he{height:161.466667pt;}
.h26{height:168.000000pt;}
.hb{height:272.226667pt;}
.h21{height:670.973333pt;}
.h9{height:1056.800000pt;}
.h20{height:1110.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.520000pt;}
.w6{width:78.720000pt;}
.wf{width:176.186667pt;}
.w12{width:189.626667pt;}
.wa{width:226.720000pt;}
.wb{width:262.400000pt;}
.we{width:285.146667pt;}
.wd{width:285.280000pt;}
.wc{width:285.346667pt;}
.w11{width:289.826667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w3{width:353.373333pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.w10{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x12{left:-1.826667pt;}
.x0{left:0.000000pt;}
.xa{left:4.320000pt;}
.x6{left:7.712000pt;}
.xc{left:9.600000pt;}
.xe{left:19.840000pt;}
.x2c{left:27.999976pt;}
.xd{left:29.440000pt;}
.x18{left:33.440000pt;}
.x4{left:57.279988pt;}
.x26{left:60.639988pt;}
.x5{left:64.960000pt;}
.x1c{left:71.071988pt;}
.x19{left:73.600000pt;}
.x2a{left:76.191988pt;}
.x2b{left:85.791988pt;}
.x1a{left:100.800000pt;}
.x27{left:104.511988pt;}
.x16{left:118.333333pt;}
.x8{left:122.120000pt;}
.x15{left:142.586667pt;}
.x10{left:145.146667pt;}
.x1b{left:166.440000pt;}
.x2e{left:180.040000pt;}
.x25{left:249.346655pt;}
.x28{left:268.386655pt;}
.x3{left:345.506655pt;}
.x14{left:361.026667pt;}
.xf{left:362.786667pt;}
.x17{left:366.173333pt;}
.x13{left:373.120000pt;}
.x11{left:390.720000pt;}
.x24{left:392.893322pt;}
.x2d{left:405.533333pt;}
.x1{left:410.493322pt;}
.x7{left:418.333333pt;}
.x22{left:471.933322pt;}
.x21{left:476.093322pt;}
.x1d{left:519.173322pt;}
.x20{left:561.893322pt;}
.x23{left:577.893322pt;}
.x2{left:695.359988pt;}
.xb{left:714.560000pt;}
.x1e{left:723.199976pt;}
.x1f{left:728.639988pt;}
.x29{left:735.359988pt;}
.x9{left:745.440000pt;}
}




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