
    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_a4066483121eec489f5c0ba6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_a49e34966fa3d8479480c2e0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_01393b4931dcee447c365452.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b4fcc11c888a4bfedbb754af.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0bc3cf514d2e97143fdd85ef.woff')format("woff");}.ff8{font-family:ff8;line-height:0.783691;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_f3fe135c5307a8bcdfc730bc.woff')format("woff");}.ff9{font-family:ff9;line-height:0.957031;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_0a213ee82e7bc3ff48df35b6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3dba90ff930d6105fd272a8d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_637c8d7295ab6b18d94ec1c3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.930664;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:ffd;src:url('chunks/assets/font_1da1e96999bd0da898607e88.woff')format("woff");}.ffd{font-family:ffd;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;}
.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:20.880000px;}
.lsb{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.072000px;}
.lsa{letter-spacing:-0.053280px;}
.ls6{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.206640px;}
.ls1d{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsd{letter-spacing:1.440000px;}
.lsc{letter-spacing:3.600000px;}
.lse{letter-spacing:9.360000px;}
.lsf{letter-spacing:28.200000px;}
.ls1e{letter-spacing:31.080000px;}
.ls16{letter-spacing:31.104000px;}
.ls14{letter-spacing:33.960000px;}
.ls10{letter-spacing:43.122720px;}
.ls19{letter-spacing:44.562720px;}
.ls1b{letter-spacing:46.002720px;}
.ls18{letter-spacing:54.840000px;}
.ls13{letter-spacing:54.864000px;}
.ls11{letter-spacing:64.002720px;}
.ls17{letter-spacing:64.026720px;}
.ls3{letter-spacing:82.746720px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws8{word-spacing:-59.760000px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.wsa{word-spacing:-16.272000px;}
.wsc{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws3{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.482000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._19{margin-left:-2.028000px;}
._0{margin-left:-1.008000px;}
._1{width:1.380000px;}
._6{width:2.941200px;}
._14{width:4.392000px;}
._12{width:5.400000px;}
._e{width:6.912000px;}
._a{width:8.352000px;}
._9{width:9.648000px;}
._7{width:11.088000px;}
._8{width:12.132000px;}
._d{width:13.572000px;}
._16{width:14.976000px;}
._18{width:16.704000px;}
._13{width:19.368000px;}
._c{width:20.736000px;}
._b{width:21.744000px;}
._11{width:22.824000px;}
._15{width:23.880000px;}
._17{width:25.128000px;}
._f{width:26.208000px;}
._10{width:27.492000px;}
._2c{width:28.512000px;}
._1f{width:29.520000px;}
._20{width:30.624000px;}
._2f{width:31.704000px;}
._27{width:32.760000px;}
._28{width:33.984000px;}
._30{width:35.280000px;}
._1d{width:37.944000px;}
._1e{width:39.828000px;}
._32{width:47.304000px;}
._2e{width:57.156000px;}
._2d{width:58.248000px;}
._1c{width:60.192000px;}
._2a{width:61.272000px;}
._21{width:71.712000px;}
._2b{width:73.440000px;}
._34{width:74.664000px;}
._36{width:84.744000px;}
._23{width:94.104000px;}
._26{width:95.760000px;}
._29{width:99.648000px;}
._35{width:106.344000px;}
._1a{width:117.720000px;}
._33{width:148.824000px;}
._25{width:162.288000px;}
._1b{width:214.416000px;}
._31{width:234.144000px;}
._24{width:242.712000px;}
._22{width:313.920000px;}
._4{width:393.420000px;}
._3{width:833.400000px;}
._5{width:1303.536000px;}
._2{width:1590.936000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.916000px;}
.y25{bottom:3.240000px;}
.y75{bottom:14.214000px;}
.y6d{bottom:14.220000px;}
.yeb{bottom:14.250000px;}
.y13c{bottom:14.265000px;}
.y71{bottom:14.400000px;}
.ydb{bottom:14.430000px;}
.y124{bottom:14.445000px;}
.yfe{bottom:15.120000px;}
.y24{bottom:20.520000px;}
.ya3{bottom:22.680000px;}
.y73{bottom:29.874000px;}
.y6f{bottom:29.880000px;}
.ya2{bottom:30.780000px;}
.y23{bottom:37.620000px;}
.ye{bottom:43.740000px;}
.y140{bottom:45.180000px;}
.y74{bottom:45.354000px;}
.y70{bottom:45.360000px;}
.yaa{bottom:45.405000px;}
.y22{bottom:54.900000px;}
.yc{bottom:68.580000px;}
.y21{bottom:72.180000px;}
.yad{bottom:76.320000px;}
.yb0{bottom:76.350000px;}
.ya9{bottom:76.365000px;}
.ya5{bottom:91.845000px;}
.ya{bottom:94.896000px;}
.y20{bottom:99.180000px;}
.yac{bottom:107.460000px;}
.yb1{bottom:107.490000px;}
.ya8{bottom:107.505000px;}
.y1f{bottom:119.190000px;}
.y137{bottom:134.136000px;}
.y1e{bottom:136.470000px;}
.yae{bottom:138.420000px;}
.ya7{bottom:138.465000px;}
.y11c{bottom:139.716000px;}
.y72{bottom:142.776000px;}
.y55{bottom:146.196000px;}
.y16a{bottom:147.276000px;}
.y5c{bottom:149.436000px;}
.ye9{bottom:150.870000px;}
.y1d{bottom:153.750000px;}
.y151{bottom:158.430000px;}
.y11b{bottom:158.790000px;}
.y102{bottom:159.150000px;}
.y30{bottom:159.330000px;}
.ybd{bottom:164.010000px;}
.y8c{bottom:164.910000px;}
.y169{bottom:167.070000px;}
.ya6{bottom:169.605000px;}
.y1c{bottom:170.850000px;}
.y9f{bottom:171.570000px;}
.y54{bottom:177.330000px;}
.y5b{bottom:180.390000px;}
.ye8{bottom:181.830000px;}
.y1b{bottom:188.130000px;}
.y150{bottom:189.390000px;}
.y11a{bottom:189.750000px;}
.yd6{bottom:190.110000px;}
.y2f{bottom:190.470000px;}
.ybc{bottom:194.970000px;}
.y168{bottom:195.510000px;}
.y136{bottom:202.890000px;}
.y1a{bottom:205.410000px;}
.y6e{bottom:206.310000px;}
.y53{bottom:208.290000px;}
.y8b{bottom:209.190000px;}
.y5a{bottom:211.530000px;}
.ye7{bottom:212.970000px;}
.y9e{bottom:214.590000px;}
.y14f{bottom:220.530000px;}
.y119{bottom:220.890000px;}
.yd5{bottom:221.070000px;}
.y101{bottom:221.250000px;}
.y2e{bottom:221.430000px;}
.y19{bottom:222.690000px;}
.y135{bottom:223.590000px;}
.ybb{bottom:226.110000px;}
.y167{bottom:226.470000px;}
.y52{bottom:239.430000px;}
.y59{bottom:242.490000px;}
.ye6{bottom:243.930000px;}
.y14e{bottom:251.490000px;}
.yd4{bottom:252.210000px;}
.y2d{bottom:252.570000px;}
.y8a{bottom:253.650000px;}
.y118{bottom:254.190000px;}
.yba{bottom:257.070000px;}
.y9d{bottom:257.610000px;}
.y100{bottom:264.270000px;}
.y6c{bottom:270.030000px;}
.y51{bottom:270.390000px;}
.y14d{bottom:270.570000px;}
.y134{bottom:273.630000px;}
.ye5{bottom:274.890000px;}
.y58{bottom:280.110000px;}
.yd3{bottom:283.170000px;}
.y2c{bottom:283.530000px;}
.y89{bottom:286.050000px;}
.yb9{bottom:288.210000px;}
.y166{bottom:288.570000px;}
.yff{bottom:295.230000px;}
.y9c{bottom:300.630000px;}
.y50{bottom:301.350000px;}
.y14c{bottom:301.530000px;}
.y133{bottom:304.590000px;}
.ye4{bottom:308.190000px;}
.yd2{bottom:314.310000px;}
.y2b{bottom:314.670000px;}
.yb8{bottom:319.170000px;}
.y165{bottom:319.710000px;}
.y57{bottom:320.430000px;}
.y6b{bottom:323.310000px;}
.y88{bottom:329.070000px;}
.y4f{bottom:332.490000px;}
.y14b{bottom:332.670000px;}
.y132{bottom:337.935000px;}
.y117{bottom:339.375000px;}
.ye3{bottom:341.535000px;}
.y9b{bottom:343.695000px;}
.yd1{bottom:345.315000px;}
.y2a{bottom:345.675000px;}
.y164{bottom:350.715000px;}
.y56{bottom:351.615000px;}
.y87{bottom:360.255000px;}
.y6a{bottom:360.795000px;}
.y4e{bottom:363.495000px;}
.y14a{bottom:366.015000px;}
.ye2{bottom:372.675000px;}
.yd0{bottom:376.455000px;}
.y116{bottom:376.635000px;}
.y29{bottom:376.815000px;}
.yb7{bottom:380.955000px;}
.y163{bottom:381.855000px;}
.y9a{bottom:386.895000px;}
.y86{bottom:391.215000px;}
.y4d{bottom:394.635000px;}
.ye1{bottom:403.635000px;}
.y69{bottom:403.815000px;}
.ycf{bottom:407.415000px;}
.y28{bottom:407.775000px;}
.yfd{bottom:408.315000px;}
.yb6{bottom:412.095000px;}
.y162{bottom:412.815000px;}
.y131{bottom:423.075000px;}
.y4c{bottom:425.595000px;}
.y99{bottom:429.915000px;}
.y85{bottom:434.235000px;}
.y68{bottom:434.775000px;}
.ye0{bottom:436.935000px;}
.yce{bottom:438.555000px;}
.y115{bottom:438.735000px;}
.yb5{bottom:443.055000px;}
.y161{bottom:443.955000px;}
.y27{bottom:445.395000px;}
.y149{bottom:451.155000px;}
.y4b{bottom:456.735000px;}
.y130{bottom:460.515000px;}
.y67{bottom:465.915000px;}
.ycd{bottom:469.515000px;}
.y114{bottom:469.875000px;}
.ydf{bottom:470.235000px;}
.yfc{bottom:472.755000px;}
.y98{bottom:472.935000px;}
.y26{bottom:473.655000px;}
.yb4{bottom:474.195000px;}
.y160{bottom:474.915000px;}
.y84{bottom:477.435000px;}
.y17c{bottom:481.395000px;}
.y4a{bottom:487.695000px;}
.y148{bottom:488.595000px;}
.y12f{bottom:491.475000px;}
.y18{bottom:498.315000px;}
.ycc{bottom:500.655000px;}
.yde{bottom:501.375000px;}
.yb3{bottom:505.155000px;}
.y15f{bottom:506.055000px;}
.y83{bottom:508.395000px;}
.y66{bottom:508.935000px;}
.y17b{bottom:512.355000px;}
.y113{bottom:512.895000px;}
.y97{bottom:515.955000px;}
.y49{bottom:518.835000px;}
.y147{bottom:519.555000px;}
.ycb{bottom:531.615000px;}
.ydd{bottom:532.335000px;}
.y12e{bottom:534.495000px;}
.yb2{bottom:536.295000px;}
.y15e{bottom:537.015000px;}
.y17a{bottom:543.495000px;}
.y112{bottom:543.855000px;}
.y48{bottom:549.795000px;}
.y146{bottom:550.695000px;}
.y82{bottom:551.415000px;}
.y65{bottom:551.955000px;}
.yaf{bottom:553.755000px;}
.yfb{bottom:557.895000px;}
.y96{bottom:558.975000px;}
.yca{bottom:562.755000px;}
.y111{bottom:562.935000px;}
.ydc{bottom:563.475000px;}
.y15d{bottom:568.155000px;}
.y179{bottom:574.455000px;}
.y47{bottom:580.935000px;}
.y12d{bottom:582.195000px;}
.yc9{bottom:593.715000px;}
.y110{bottom:593.895000px;}
.y81{bottom:594.435000px;}
.y64{bottom:594.975000px;}
.yfa{bottom:595.335000px;}
.y145{bottom:598.215000px;}
.y15c{bottom:599.115000px;}
.y95{bottom:601.995000px;}
.y178{bottom:605.625000px;}
.y46{bottom:611.925000px;}
.y12c{bottom:613.545000px;}
.y10f{bottom:625.065000px;}
.yda{bottom:625.605000px;}
.y63{bottom:626.145000px;}
.yf9{bottom:626.325000px;}
.y15b{bottom:630.285000px;}
.y144{bottom:631.185000px;}
.y177{bottom:636.585000px;}
.yc8{bottom:636.765000px;}
.y80{bottom:637.665000px;}
.y45{bottom:643.065000px;}
.y12b{bottom:644.685000px;}
.y94{bottom:645.045000px;}
.y62{bottom:657.105000px;}
.yf8{bottom:657.465000px;}
.y10e{bottom:658.365000px;}
.yd9{bottom:658.905000px;}
.y15a{bottom:661.245000px;}
.y143{bottom:662.685000px;}
.yc7{bottom:667.725000px;}
.y44{bottom:674.025000px;}
.y12a{bottom:675.645000px;}
.yab{bottom:678.705000px;}
.y7f{bottom:680.685000px;}
.y142{bottom:683.385000px;}
.y93{bottom:688.245000px;}
.yf7{bottom:688.425000px;}
.y159{bottom:692.385000px;}
.y176{bottom:698.685000px;}
.y61{bottom:700.125000px;}
.y141{bottom:702.285000px;}
.y43{bottom:705.165000px;}
.y7e{bottom:711.645000px;}
.yd8{bottom:713.085000px;}
.y129{bottom:718.665000px;}
.y158{bottom:723.345000px;}
.y175{bottom:729.825000px;}
.yc6{bottom:731.085000px;}
.y92{bottom:731.265000px;}
.yf6{bottom:731.445000px;}
.y13f{bottom:733.425000px;}
.y42{bottom:736.125000px;}
.yd7{bottom:738.825000px;}
.y60{bottom:743.145000px;}
.y10d{bottom:743.505000px;}
.y17{bottom:749.445000px;}
.y128{bottom:749.805000px;}
.y157{bottom:754.485000px;}
.y7d{bottom:754.665000px;}
.y174{bottom:760.785000px;}
.yc5{bottom:763.665000px;}
.y16{bottom:766.005000px;}
.y41{bottom:767.265000px;}
.y127{bottom:768.705000px;}
.y5f{bottom:774.285000px;}
.yf5{bottom:778.965000px;}
.y10c{bottom:780.945000px;}
.y156{bottom:785.445000px;}
.y15{bottom:789.405000px;}
.y173{bottom:791.925000px;}
.yc4{bottom:794.445000px;}
.y13e{bottom:795.345000px;}
.y40{bottom:798.225000px;}
.y7c{bottom:799.125000px;}
.y126{bottom:799.845000px;}
.y14{bottom:806.685000px;}
.y10b{bottom:811.905000px;}
.yf4{bottom:812.805000px;}
.y155{bottom:816.405000px;}
.y5e{bottom:817.305000px;}
.y172{bottom:822.885000px;}
.y13{bottom:823.965000px;}
.yc3{bottom:827.025000px;}
.y13d{bottom:828.645000px;}
.y3f{bottom:829.365000px;}
.y125{bottom:830.805000px;}
.ya4{bottom:834.765000px;}
.y7b{bottom:842.145000px;}
.y12{bottom:842.505000px;}
.y10a{bottom:843.045000px;}
.yf3{bottom:845.385000px;}
.y154{bottom:847.545000px;}
.y5d{bottom:848.445000px;}
.y171{bottom:854.025000px;}
.y13b{bottom:859.785000px;}
.y3e{bottom:860.325000px;}
.y123{bottom:864.105000px;}
.yc2{bottom:864.465000px;}
.y11{bottom:866.625000px;}
.yf2{bottom:876.390000px;}
.y153{bottom:878.550000px;}
.y91{bottom:879.450000px;}
.y170{bottom:885.030000px;}
.y7a{bottom:885.210000px;}
.y109{bottom:886.110000px;}
.yc1{bottom:890.430000px;}
.y10{bottom:890.970000px;}
.y3d{bottom:891.510000px;}
.yf1{bottom:907.530000px;}
.y90{bottom:910.590000px;}
.yf{bottom:915.810000px;}
.yc0{bottom:915.990000px;}
.y152{bottom:916.170000px;}
.y108{bottom:917.070000px;}
.y3c{bottom:922.470000px;}
.y79{bottom:928.230000px;}
.y107{bottom:936.150000px;}
.y9{bottom:941.370000px;}
.y8f{bottom:941.550000px;}
.y16f{bottom:947.130000px;}
.y122{bottom:949.470000px;}
.yf0{bottom:950.550000px;}
.y13a{bottom:952.890000px;}
.y3b{bottom:953.610000px;}
.y8{bottom:958.650000px;}
.y78{bottom:959.370000px;}
.y106{bottom:967.110000px;}
.y8e{bottom:972.510000px;}
.y7{bottom:972.690000px;}
.y16e{bottom:978.270000px;}
.yef{bottom:981.510000px;}
.y3a{bottom:984.570000px;}
.y139{bottom:986.190000px;}
.y121{bottom:986.730000px;}
.y105{bottom:998.250000px;}
.yee{bottom:1000.590000px;}
.y77{bottom:1002.210000px;}
.y8d{bottom:1003.650000px;}
.y16d{bottom:1009.230000px;}
.y39{bottom:1015.710000px;}
.y120{bottom:1017.870000px;}
.ybf{bottom:1018.590000px;}
.ya1{bottom:1021.830000px;}
.y6{bottom:1027.230000px;}
.yed{bottom:1031.550000px;}
.y76{bottom:1034.610000px;}
.ybe{bottom:1040.370000px;}
.y38{bottom:1046.670000px;}
.y11f{bottom:1048.830000px;}
.y5{bottom:1052.070000px;}
.y16c{bottom:1071.330000px;}
.y138{bottom:1071.510000px;}
.y4{bottom:1073.130000px;}
.y37{bottom:1077.810000px;}
.y11e{bottom:1091.850000px;}
.yec{bottom:1093.650000px;}
.y3{bottom:1093.830000px;}
.ya0{bottom:1096.710000px;}
.y36{bottom:1108.770000px;}
.y2{bottom:1114.530000px;}
.y104{bottom:1116.690000px;}
.y16b{bottom:1122.630000px;}
.yea{bottom:1124.790000px;}
.y1{bottom:1131.270000px;}
.y11d{bottom:1139.580000px;}
.y35{bottom:1139.940000px;}
.y103{bottom:1142.640000px;}
.y34{bottom:1166.400000px;}
.y33{bottom:1180.440000px;}
.y32{bottom:1201.140000px;}
.y31{bottom:1227.420000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.hf{height:30.960000px;}
.h18{height:30.996000px;}
.h17{height:31.140000px;}
.h16{height:31.176000px;}
.h1c{height:31.860000px;}
.hc{height:42.327773px;}
.h2{height:44.294766px;}
.h5{height:44.507812px;}
.h7{height:47.381836px;}
.h11{height:47.880000px;}
.hb{height:49.698281px;}
.h19{height:51.468750px;}
.h4{height:52.435898px;}
.h3{height:53.367188px;}
.h1a{height:55.125000px;}
.h1f{height:61.920000px;}
.h10{height:62.100000px;}
.h1d{height:62.136000px;}
.he{height:63.175781px;}
.h9{height:70.978359px;}
.h1b{height:71.613281px;}
.h12{height:73.722656px;}
.ha{height:73.915664px;}
.h1e{height:93.096000px;}
.h15{height:124.236000px;}
.h14{height:155.160000px;}
.h13{height:186.330000px;}
.hd{height:245.730000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:111.780000px;}
.w1a{width:154.110000px;}
.w22{width:164.520000px;}
.w18{width:166.140000px;}
.w1b{width:166.170000px;}
.w1c{width:166.350000px;}
.w23{width:170.310000px;}
.w13{width:172.470000px;}
.w12{width:172.650000px;}
.w20{width:172.800000px;}
.w21{width:172.830000px;}
.w10{width:172.980000px;}
.w11{width:173.010000px;}
.w25{width:175.530000px;}
.w19{width:178.410000px;}
.w24{width:180.750000px;}
.w16{width:190.830000px;}
.w1e{width:191.370000px;}
.w26{width:191.550000px;}
.w17{width:192.450000px;}
.w15{width:209.010000px;}
.w1f{width:215.490000px;}
.w8{width:228.630000px;}
.w9{width:228.810000px;}
.wa{width:228.990000px;}
.wb{width:229.530000px;}
.wc{width:229.710000px;}
.wf{width:232.050000px;}
.wd{width:232.230000px;}
.we{width:232.410000px;}
.w14{width:291.270000px;}
.w7{width:348.015000px;}
.w4{width:348.375000px;}
.w3{width:349.230000px;}
.w6{width:349.590000px;}
.w5{width:679.785000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:5.220000px;}
.x17{left:7.200000px;}
.xa{left:8.460000px;}
.x1e{left:34.560000px;}
.x9{left:97.776000px;}
.x16{left:99.036000px;}
.x22{left:101.016000px;}
.x7{left:106.235987px;}
.xe{left:120.095987px;}
.x14{left:133.235987px;}
.x2a{left:138.635987px;}
.x13{left:145.295987px;}
.xd{left:147.635987px;}
.xc{left:154.829987px;}
.x12{left:160.229987px;}
.x11{left:180.749987px;}
.x1b{left:187.229987px;}
.x15{left:189.569987px;}
.x1a{left:212.429987px;}
.x2{left:254.189987px;}
.x2c{left:265.530000px;}
.x6{left:273.989987px;}
.x27{left:293.475000px;}
.x1d{left:297.434987px;}
.xf{left:300.854987px;}
.xb{left:312.915000px;}
.x18{left:329.295000px;}
.x20{left:330.375000px;}
.x10{left:339.879000px;}
.x5{left:364.934987px;}
.x4{left:379.874987px;}
.x25{left:392.295000px;}
.x3{left:398.414987px;}
.x2b{left:404.175000px;}
.x2d{left:435.855000px;}
.x8{left:446.474987px;}
.x1c{left:459.974987px;}
.x19{left:559.545000px;}
.x21{left:562.785000px;}
.x26{left:601.305000px;}
.x2e{left:616.605000px;}
.x24{left:619.665000px;}
.x29{left:625.785000px;}
.x1f{left:633.164987px;}
.x28{left:638.025000px;}
.x1{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.064000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.183680pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsd{letter-spacing:1.280000pt;}
.lsc{letter-spacing:3.200000pt;}
.lse{letter-spacing:8.320000pt;}
.lsf{letter-spacing:25.066667pt;}
.ls1e{letter-spacing:27.626667pt;}
.ls16{letter-spacing:27.648000pt;}
.ls14{letter-spacing:30.186667pt;}
.ls10{letter-spacing:38.331307pt;}
.ls19{letter-spacing:39.611307pt;}
.ls1b{letter-spacing:40.891307pt;}
.ls18{letter-spacing:48.746667pt;}
.ls13{letter-spacing:48.768000pt;}
.ls11{letter-spacing:56.891307pt;}
.ls17{letter-spacing:56.912640pt;}
.ls3{letter-spacing:73.552640pt;}
.ws9{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.120000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.wsa{word-spacing:-14.464000pt;}
.wsc{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws3{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws0{word-spacing:-11.984000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._19{margin-left:-1.802667pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.226667pt;}
._6{width:2.614400pt;}
._14{width:3.904000pt;}
._12{width:4.800000pt;}
._e{width:6.144000pt;}
._a{width:7.424000pt;}
._9{width:8.576000pt;}
._7{width:9.856000pt;}
._8{width:10.784000pt;}
._d{width:12.064000pt;}
._16{width:13.312000pt;}
._18{width:14.848000pt;}
._13{width:17.216000pt;}
._c{width:18.432000pt;}
._b{width:19.328000pt;}
._11{width:20.288000pt;}
._15{width:21.226667pt;}
._17{width:22.336000pt;}
._f{width:23.296000pt;}
._10{width:24.437333pt;}
._2c{width:25.344000pt;}
._1f{width:26.240000pt;}
._20{width:27.221333pt;}
._2f{width:28.181333pt;}
._27{width:29.120000pt;}
._28{width:30.208000pt;}
._30{width:31.360000pt;}
._1d{width:33.728000pt;}
._1e{width:35.402667pt;}
._32{width:42.048000pt;}
._2e{width:50.805333pt;}
._2d{width:51.776000pt;}
._1c{width:53.504000pt;}
._2a{width:54.464000pt;}
._21{width:63.744000pt;}
._2b{width:65.280000pt;}
._34{width:66.368000pt;}
._36{width:75.328000pt;}
._23{width:83.648000pt;}
._26{width:85.120000pt;}
._29{width:88.576000pt;}
._35{width:94.528000pt;}
._1a{width:104.640000pt;}
._33{width:132.288000pt;}
._25{width:144.256000pt;}
._1b{width:190.592000pt;}
._31{width:208.128000pt;}
._24{width:215.744000pt;}
._22{width:279.040000pt;}
._4{width:349.706667pt;}
._3{width:740.800000pt;}
._5{width:1158.698667pt;}
._2{width:1414.165333pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.592000pt;}
.y25{bottom:2.880000pt;}
.y75{bottom:12.634667pt;}
.y6d{bottom:12.640000pt;}
.yeb{bottom:12.666667pt;}
.y13c{bottom:12.680000pt;}
.y71{bottom:12.800000pt;}
.ydb{bottom:12.826667pt;}
.y124{bottom:12.840000pt;}
.yfe{bottom:13.440000pt;}
.y24{bottom:18.240000pt;}
.ya3{bottom:20.160000pt;}
.y73{bottom:26.554667pt;}
.y6f{bottom:26.560000pt;}
.ya2{bottom:27.360000pt;}
.y23{bottom:33.440000pt;}
.ye{bottom:38.880000pt;}
.y140{bottom:40.160000pt;}
.y74{bottom:40.314667pt;}
.y70{bottom:40.320000pt;}
.yaa{bottom:40.360000pt;}
.y22{bottom:48.800000pt;}
.yc{bottom:60.960000pt;}
.y21{bottom:64.160000pt;}
.yad{bottom:67.840000pt;}
.yb0{bottom:67.866667pt;}
.ya9{bottom:67.880000pt;}
.ya5{bottom:81.640000pt;}
.ya{bottom:84.352000pt;}
.y20{bottom:88.160000pt;}
.yac{bottom:95.520000pt;}
.yb1{bottom:95.546667pt;}
.ya8{bottom:95.560000pt;}
.y1f{bottom:105.946667pt;}
.y137{bottom:119.232000pt;}
.y1e{bottom:121.306667pt;}
.yae{bottom:123.040000pt;}
.ya7{bottom:123.080000pt;}
.y11c{bottom:124.192000pt;}
.y72{bottom:126.912000pt;}
.y55{bottom:129.952000pt;}
.y16a{bottom:130.912000pt;}
.y5c{bottom:132.832000pt;}
.ye9{bottom:134.106667pt;}
.y1d{bottom:136.666667pt;}
.y151{bottom:140.826667pt;}
.y11b{bottom:141.146667pt;}
.y102{bottom:141.466667pt;}
.y30{bottom:141.626667pt;}
.ybd{bottom:145.786667pt;}
.y8c{bottom:146.586667pt;}
.y169{bottom:148.506667pt;}
.ya6{bottom:150.760000pt;}
.y1c{bottom:151.866667pt;}
.y9f{bottom:152.506667pt;}
.y54{bottom:157.626667pt;}
.y5b{bottom:160.346667pt;}
.ye8{bottom:161.626667pt;}
.y1b{bottom:167.226667pt;}
.y150{bottom:168.346667pt;}
.y11a{bottom:168.666667pt;}
.yd6{bottom:168.986667pt;}
.y2f{bottom:169.306667pt;}
.ybc{bottom:173.306667pt;}
.y168{bottom:173.786667pt;}
.y136{bottom:180.346667pt;}
.y1a{bottom:182.586667pt;}
.y6e{bottom:183.386667pt;}
.y53{bottom:185.146667pt;}
.y8b{bottom:185.946667pt;}
.y5a{bottom:188.026667pt;}
.ye7{bottom:189.306667pt;}
.y9e{bottom:190.746667pt;}
.y14f{bottom:196.026667pt;}
.y119{bottom:196.346667pt;}
.yd5{bottom:196.506667pt;}
.y101{bottom:196.666667pt;}
.y2e{bottom:196.826667pt;}
.y19{bottom:197.946667pt;}
.y135{bottom:198.746667pt;}
.ybb{bottom:200.986667pt;}
.y167{bottom:201.306667pt;}
.y52{bottom:212.826667pt;}
.y59{bottom:215.546667pt;}
.ye6{bottom:216.826667pt;}
.y14e{bottom:223.546667pt;}
.yd4{bottom:224.186667pt;}
.y2d{bottom:224.506667pt;}
.y8a{bottom:225.466667pt;}
.y118{bottom:225.946667pt;}
.yba{bottom:228.506667pt;}
.y9d{bottom:228.986667pt;}
.y100{bottom:234.906667pt;}
.y6c{bottom:240.026667pt;}
.y51{bottom:240.346667pt;}
.y14d{bottom:240.506667pt;}
.y134{bottom:243.226667pt;}
.ye5{bottom:244.346667pt;}
.y58{bottom:248.986667pt;}
.yd3{bottom:251.706667pt;}
.y2c{bottom:252.026667pt;}
.y89{bottom:254.266667pt;}
.yb9{bottom:256.186667pt;}
.y166{bottom:256.506667pt;}
.yff{bottom:262.426667pt;}
.y9c{bottom:267.226667pt;}
.y50{bottom:267.866667pt;}
.y14c{bottom:268.026667pt;}
.y133{bottom:270.746667pt;}
.ye4{bottom:273.946667pt;}
.yd2{bottom:279.386667pt;}
.y2b{bottom:279.706667pt;}
.yb8{bottom:283.706667pt;}
.y165{bottom:284.186667pt;}
.y57{bottom:284.826667pt;}
.y6b{bottom:287.386667pt;}
.y88{bottom:292.506667pt;}
.y4f{bottom:295.546667pt;}
.y14b{bottom:295.706667pt;}
.y132{bottom:300.386667pt;}
.y117{bottom:301.666667pt;}
.ye3{bottom:303.586667pt;}
.y9b{bottom:305.506667pt;}
.yd1{bottom:306.946667pt;}
.y2a{bottom:307.266667pt;}
.y164{bottom:311.746667pt;}
.y56{bottom:312.546667pt;}
.y87{bottom:320.226667pt;}
.y6a{bottom:320.706667pt;}
.y4e{bottom:323.106667pt;}
.y14a{bottom:325.346667pt;}
.ye2{bottom:331.266667pt;}
.yd0{bottom:334.626667pt;}
.y116{bottom:334.786667pt;}
.y29{bottom:334.946667pt;}
.yb7{bottom:338.626667pt;}
.y163{bottom:339.426667pt;}
.y9a{bottom:343.906667pt;}
.y86{bottom:347.746667pt;}
.y4d{bottom:350.786667pt;}
.ye1{bottom:358.786667pt;}
.y69{bottom:358.946667pt;}
.ycf{bottom:362.146667pt;}
.y28{bottom:362.466667pt;}
.yfd{bottom:362.946667pt;}
.yb6{bottom:366.306667pt;}
.y162{bottom:366.946667pt;}
.y131{bottom:376.066667pt;}
.y4c{bottom:378.306667pt;}
.y99{bottom:382.146667pt;}
.y85{bottom:385.986667pt;}
.y68{bottom:386.466667pt;}
.ye0{bottom:388.386667pt;}
.yce{bottom:389.826667pt;}
.y115{bottom:389.986667pt;}
.yb5{bottom:393.826667pt;}
.y161{bottom:394.626667pt;}
.y27{bottom:395.906667pt;}
.y149{bottom:401.026667pt;}
.y4b{bottom:405.986667pt;}
.y130{bottom:409.346667pt;}
.y67{bottom:414.146667pt;}
.ycd{bottom:417.346667pt;}
.y114{bottom:417.666667pt;}
.ydf{bottom:417.986667pt;}
.yfc{bottom:420.226667pt;}
.y98{bottom:420.386667pt;}
.y26{bottom:421.026667pt;}
.yb4{bottom:421.506667pt;}
.y160{bottom:422.146667pt;}
.y84{bottom:424.386667pt;}
.y17c{bottom:427.906667pt;}
.y4a{bottom:433.506667pt;}
.y148{bottom:434.306667pt;}
.y12f{bottom:436.866667pt;}
.y18{bottom:442.946667pt;}
.ycc{bottom:445.026667pt;}
.yde{bottom:445.666667pt;}
.yb3{bottom:449.026667pt;}
.y15f{bottom:449.826667pt;}
.y83{bottom:451.906667pt;}
.y66{bottom:452.386667pt;}
.y17b{bottom:455.426667pt;}
.y113{bottom:455.906667pt;}
.y97{bottom:458.626667pt;}
.y49{bottom:461.186667pt;}
.y147{bottom:461.826667pt;}
.ycb{bottom:472.546667pt;}
.ydd{bottom:473.186667pt;}
.y12e{bottom:475.106667pt;}
.yb2{bottom:476.706667pt;}
.y15e{bottom:477.346667pt;}
.y17a{bottom:483.106667pt;}
.y112{bottom:483.426667pt;}
.y48{bottom:488.706667pt;}
.y146{bottom:489.506667pt;}
.y82{bottom:490.146667pt;}
.y65{bottom:490.626667pt;}
.yaf{bottom:492.226667pt;}
.yfb{bottom:495.906667pt;}
.y96{bottom:496.866667pt;}
.yca{bottom:500.226667pt;}
.y111{bottom:500.386667pt;}
.ydc{bottom:500.866667pt;}
.y15d{bottom:505.026667pt;}
.y179{bottom:510.626667pt;}
.y47{bottom:516.386667pt;}
.y12d{bottom:517.506667pt;}
.yc9{bottom:527.746667pt;}
.y110{bottom:527.906667pt;}
.y81{bottom:528.386667pt;}
.y64{bottom:528.866667pt;}
.yfa{bottom:529.186667pt;}
.y145{bottom:531.746667pt;}
.y15c{bottom:532.546667pt;}
.y95{bottom:535.106667pt;}
.y178{bottom:538.333333pt;}
.y46{bottom:543.933333pt;}
.y12c{bottom:545.373333pt;}
.y10f{bottom:555.613333pt;}
.yda{bottom:556.093333pt;}
.y63{bottom:556.573333pt;}
.yf9{bottom:556.733333pt;}
.y15b{bottom:560.253333pt;}
.y144{bottom:561.053333pt;}
.y177{bottom:565.853333pt;}
.yc8{bottom:566.013333pt;}
.y80{bottom:566.813333pt;}
.y45{bottom:571.613333pt;}
.y12b{bottom:573.053333pt;}
.y94{bottom:573.373333pt;}
.y62{bottom:584.093333pt;}
.yf8{bottom:584.413333pt;}
.y10e{bottom:585.213333pt;}
.yd9{bottom:585.693333pt;}
.y15a{bottom:587.773333pt;}
.y143{bottom:589.053333pt;}
.yc7{bottom:593.533333pt;}
.y44{bottom:599.133333pt;}
.y12a{bottom:600.573333pt;}
.yab{bottom:603.293333pt;}
.y7f{bottom:605.053333pt;}
.y142{bottom:607.453333pt;}
.y93{bottom:611.773333pt;}
.yf7{bottom:611.933333pt;}
.y159{bottom:615.453333pt;}
.y176{bottom:621.053333pt;}
.y61{bottom:622.333333pt;}
.y141{bottom:624.253333pt;}
.y43{bottom:626.813333pt;}
.y7e{bottom:632.573333pt;}
.yd8{bottom:633.853333pt;}
.y129{bottom:638.813333pt;}
.y158{bottom:642.973333pt;}
.y175{bottom:648.733333pt;}
.yc6{bottom:649.853333pt;}
.y92{bottom:650.013333pt;}
.yf6{bottom:650.173333pt;}
.y13f{bottom:651.933333pt;}
.y42{bottom:654.333333pt;}
.yd7{bottom:656.733333pt;}
.y60{bottom:660.573333pt;}
.y10d{bottom:660.893333pt;}
.y17{bottom:666.173333pt;}
.y128{bottom:666.493333pt;}
.y157{bottom:670.653333pt;}
.y7d{bottom:670.813333pt;}
.y174{bottom:676.253333pt;}
.yc5{bottom:678.813333pt;}
.y16{bottom:680.893333pt;}
.y41{bottom:682.013333pt;}
.y127{bottom:683.293333pt;}
.y5f{bottom:688.253333pt;}
.yf5{bottom:692.413333pt;}
.y10c{bottom:694.173333pt;}
.y156{bottom:698.173333pt;}
.y15{bottom:701.693333pt;}
.y173{bottom:703.933333pt;}
.yc4{bottom:706.173333pt;}
.y13e{bottom:706.973333pt;}
.y40{bottom:709.533333pt;}
.y7c{bottom:710.333333pt;}
.y126{bottom:710.973333pt;}
.y14{bottom:717.053333pt;}
.y10b{bottom:721.693333pt;}
.yf4{bottom:722.493333pt;}
.y155{bottom:725.693333pt;}
.y5e{bottom:726.493333pt;}
.y172{bottom:731.453333pt;}
.y13{bottom:732.413333pt;}
.yc3{bottom:735.133333pt;}
.y13d{bottom:736.573333pt;}
.y3f{bottom:737.213333pt;}
.y125{bottom:738.493333pt;}
.ya4{bottom:742.013333pt;}
.y7b{bottom:748.573333pt;}
.y12{bottom:748.893333pt;}
.y10a{bottom:749.373333pt;}
.yf3{bottom:751.453333pt;}
.y154{bottom:753.373333pt;}
.y5d{bottom:754.173333pt;}
.y171{bottom:759.133333pt;}
.y13b{bottom:764.253333pt;}
.y3e{bottom:764.733333pt;}
.y123{bottom:768.093333pt;}
.yc2{bottom:768.413333pt;}
.y11{bottom:770.333333pt;}
.yf2{bottom:779.013333pt;}
.y153{bottom:780.933333pt;}
.y91{bottom:781.733333pt;}
.y170{bottom:786.693333pt;}
.y7a{bottom:786.853333pt;}
.y109{bottom:787.653333pt;}
.yc1{bottom:791.493333pt;}
.y10{bottom:791.973333pt;}
.y3d{bottom:792.453333pt;}
.yf1{bottom:806.693333pt;}
.y90{bottom:809.413333pt;}
.yf{bottom:814.053333pt;}
.yc0{bottom:814.213333pt;}
.y152{bottom:814.373333pt;}
.y108{bottom:815.173333pt;}
.y3c{bottom:819.973333pt;}
.y79{bottom:825.093333pt;}
.y107{bottom:832.133333pt;}
.y9{bottom:836.773333pt;}
.y8f{bottom:836.933333pt;}
.y16f{bottom:841.893333pt;}
.y122{bottom:843.973333pt;}
.yf0{bottom:844.933333pt;}
.y13a{bottom:847.013333pt;}
.y3b{bottom:847.653333pt;}
.y8{bottom:852.133333pt;}
.y78{bottom:852.773333pt;}
.y106{bottom:859.653333pt;}
.y8e{bottom:864.453333pt;}
.y7{bottom:864.613333pt;}
.y16e{bottom:869.573333pt;}
.yef{bottom:872.453333pt;}
.y3a{bottom:875.173333pt;}
.y139{bottom:876.613333pt;}
.y121{bottom:877.093333pt;}
.y105{bottom:887.333333pt;}
.yee{bottom:889.413333pt;}
.y77{bottom:890.853333pt;}
.y8d{bottom:892.133333pt;}
.y16d{bottom:897.093333pt;}
.y39{bottom:902.853333pt;}
.y120{bottom:904.773333pt;}
.ybf{bottom:905.413333pt;}
.ya1{bottom:908.293333pt;}
.y6{bottom:913.093333pt;}
.yed{bottom:916.933333pt;}
.y76{bottom:919.653333pt;}
.ybe{bottom:924.773333pt;}
.y38{bottom:930.373333pt;}
.y11f{bottom:932.293333pt;}
.y5{bottom:935.173333pt;}
.y16c{bottom:952.293333pt;}
.y138{bottom:952.453333pt;}
.y4{bottom:953.893333pt;}
.y37{bottom:958.053333pt;}
.y11e{bottom:970.533333pt;}
.yec{bottom:972.133333pt;}
.y3{bottom:972.293333pt;}
.ya0{bottom:974.853333pt;}
.y36{bottom:985.573333pt;}
.y2{bottom:990.693333pt;}
.y104{bottom:992.613333pt;}
.y16b{bottom:997.893333pt;}
.yea{bottom:999.813333pt;}
.y1{bottom:1005.573333pt;}
.y11d{bottom:1012.960000pt;}
.y35{bottom:1013.280000pt;}
.y103{bottom:1015.680000pt;}
.y34{bottom:1036.800000pt;}
.y33{bottom:1049.280000pt;}
.y32{bottom:1067.680000pt;}
.y31{bottom:1091.040000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.hf{height:27.520000pt;}
.h18{height:27.552000pt;}
.h17{height:27.680000pt;}
.h16{height:27.712000pt;}
.h1c{height:28.320000pt;}
.hc{height:37.624687pt;}
.h2{height:39.373125pt;}
.h5{height:39.562500pt;}
.h7{height:42.117188pt;}
.h11{height:42.560000pt;}
.hb{height:44.176250pt;}
.h19{height:45.750000pt;}
.h4{height:46.609688pt;}
.h3{height:47.437500pt;}
.h1a{height:49.000000pt;}
.h1f{height:55.040000pt;}
.h10{height:55.200000pt;}
.h1d{height:55.232000pt;}
.he{height:56.156250pt;}
.h9{height:63.091875pt;}
.h1b{height:63.656250pt;}
.h12{height:65.531250pt;}
.ha{height:65.702812pt;}
.h1e{height:82.752000pt;}
.h15{height:110.432000pt;}
.h14{height:137.920000pt;}
.h13{height:165.626667pt;}
.hd{height:218.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:99.360000pt;}
.w1a{width:136.986667pt;}
.w22{width:146.240000pt;}
.w18{width:147.680000pt;}
.w1b{width:147.706667pt;}
.w1c{width:147.866667pt;}
.w23{width:151.386667pt;}
.w13{width:153.306667pt;}
.w12{width:153.466667pt;}
.w20{width:153.600000pt;}
.w21{width:153.626667pt;}
.w10{width:153.760000pt;}
.w11{width:153.786667pt;}
.w25{width:156.026667pt;}
.w19{width:158.586667pt;}
.w24{width:160.666667pt;}
.w16{width:169.626667pt;}
.w1e{width:170.106667pt;}
.w26{width:170.266667pt;}
.w17{width:171.066667pt;}
.w15{width:185.786667pt;}
.w1f{width:191.546667pt;}
.w8{width:203.226667pt;}
.w9{width:203.386667pt;}
.wa{width:203.546667pt;}
.wb{width:204.026667pt;}
.wc{width:204.186667pt;}
.wf{width:206.266667pt;}
.wd{width:206.426667pt;}
.we{width:206.586667pt;}
.w14{width:258.906667pt;}
.w7{width:309.346667pt;}
.w4{width:309.666667pt;}
.w3{width:310.426667pt;}
.w6{width:310.746667pt;}
.w5{width:604.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:4.640000pt;}
.x17{left:6.400000pt;}
.xa{left:7.520000pt;}
.x1e{left:30.720000pt;}
.x9{left:86.912000pt;}
.x16{left:88.032000pt;}
.x22{left:89.792000pt;}
.x7{left:94.431988pt;}
.xe{left:106.751988pt;}
.x14{left:118.431988pt;}
.x2a{left:123.231988pt;}
.x13{left:129.151988pt;}
.xd{left:131.231988pt;}
.xc{left:137.626655pt;}
.x12{left:142.426655pt;}
.x11{left:160.666655pt;}
.x1b{left:166.426655pt;}
.x15{left:168.506655pt;}
.x1a{left:188.826655pt;}
.x2{left:225.946655pt;}
.x2c{left:236.026667pt;}
.x6{left:243.546655pt;}
.x27{left:260.866667pt;}
.x1d{left:264.386655pt;}
.xf{left:267.426655pt;}
.xb{left:278.146667pt;}
.x18{left:292.706667pt;}
.x20{left:293.666667pt;}
.x10{left:302.114667pt;}
.x5{left:324.386655pt;}
.x4{left:337.666655pt;}
.x25{left:348.706667pt;}
.x3{left:354.146655pt;}
.x2b{left:359.266667pt;}
.x2d{left:387.426667pt;}
.x8{left:396.866655pt;}
.x1c{left:408.866655pt;}
.x19{left:497.373333pt;}
.x21{left:500.253333pt;}
.x26{left:534.493333pt;}
.x2e{left:548.093333pt;}
.x24{left:550.813333pt;}
.x29{left:556.253333pt;}
.x1f{left:562.813322pt;}
.x28{left:567.133333pt;}
.x1{left:699.333322pt;}
}




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