
    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_ecf25449c84b09f506bca6e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_04bb38469176594d4d1f9e28.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_4ae09648d00d4b39729b2d19.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_126588ea6c2c0d948164476d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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_6317d14b89492640debbfba2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_b51dd3bb1db658d2c8722db3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-7.192800px;}
.ls5{letter-spacing:-6.595200px;}
.ls2{letter-spacing:-2.671200px;}
.ls1{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.011520px;}
.ls3{letter-spacing:0.014400px;}
.lsa{letter-spacing:0.116928px;}
.ls9{letter-spacing:0.233856px;}
.lsb{letter-spacing:0.242208px;}
.ls4{letter-spacing:33.984000px;}
.ls6{letter-spacing:55.042704px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.985600px;}
.ws0{word-spacing:-15.328800px;}
.ws5{word-spacing:-10.807200px;}
.ws4{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._15{margin-left:-8.734608px;}
._c{margin-left:-6.595200px;}
._0{margin-left:-5.040000px;}
._1{margin-left:-4.005504px;}
._a{margin-left:-2.923200px;}
._2{margin-left:-1.676448px;}
._5{width:1.209600px;}
._3{width:2.637648px;}
._4{width:3.702960px;}
._6{width:4.913280px;}
._16{width:5.922720px;}
._9{width:6.926400px;}
._f{width:8.004672px;}
._11{width:9.009504px;}
._b{width:10.058400px;}
._8{width:11.311200px;}
._7{width:12.571200px;}
._e{width:13.608000px;}
._12{width:14.667120px;}
._14{width:15.804000px;}
._17{width:16.855200px;}
._d{width:19.252800px;}
._10{width:20.318400px;}
._13{width:47.172960px;}
.fc1{color:rgb(0,176,240);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.yca{bottom:5.400000px;}
.y48{bottom:5.460000px;}
.y41{bottom:5.580000px;}
.yb3{bottom:5.640000px;}
.yb2{bottom:5.700000px;}
.y51{bottom:5.760000px;}
.yc3{bottom:5.820000px;}
.ya9{bottom:5.880000px;}
.ya7{bottom:5.940000px;}
.ybf{bottom:6.000000px;}
.y4e{bottom:6.060000px;}
.yc6{bottom:6.120000px;}
.y5b{bottom:6.180000px;}
.y59{bottom:6.240000px;}
.ydd{bottom:6.300000px;}
.y3f{bottom:6.360000px;}
.y55{bottom:6.420000px;}
.y4c{bottom:6.480000px;}
.yab{bottom:6.540000px;}
.yb9{bottom:6.600000px;}
.y43{bottom:6.660000px;}
.ydb{bottom:6.720000px;}
.yd0{bottom:6.780000px;}
.y53{bottom:6.840000px;}
.y4a{bottom:6.900000px;}
.yaa{bottom:6.960000px;}
.yb7{bottom:7.020000px;}
.y181{bottom:9.240000px;}
.y33{bottom:9.480000px;}
.y14f{bottom:10.200000px;}
.y6d{bottom:10.380000px;}
.y8b{bottom:10.440000px;}
.y19a{bottom:10.500000px;}
.y26{bottom:10.620000px;}
.y83{bottom:10.740000px;}
.y30{bottom:10.800000px;}
.y15{bottom:10.860000px;}
.y85{bottom:10.980000px;}
.y100{bottom:11.040000px;}
.y91{bottom:11.100000px;}
.y73{bottom:11.160000px;}
.y1c{bottom:11.220000px;}
.y102{bottom:11.280000px;}
.y75{bottom:11.400000px;}
.y1e{bottom:11.460000px;}
.y38{bottom:11.520000px;}
.y77{bottom:11.580000px;}
.y18f{bottom:11.640000px;}
.y89{bottom:11.700000px;}
.y79{bottom:11.820000px;}
.y24{bottom:11.880000px;}
.y17b{bottom:12.000000px;}
.y2e{bottom:12.060000px;}
.y189{bottom:12.540000px;}
.y1ac{bottom:26.460000px;}
.yb1{bottom:26.580000px;}
.y50{bottom:26.640000px;}
.y47{bottom:26.700000px;}
.ydf{bottom:26.880000px;}
.y1ec{bottom:26.940000px;}
.ya6{bottom:27.180000px;}
.y1e2{bottom:27.240000px;}
.y1ca{bottom:27.300000px;}
.y58{bottom:27.480000px;}
.y1e0{bottom:27.540000px;}
.y1e7{bottom:27.660000px;}
.y11a{bottom:27.720000px;}
.y1a7{bottom:27.780000px;}
.y180{bottom:34.800000px;}
.y32{bottom:35.040000px;}
.y14e{bottom:36.120000px;}
.y82{bottom:36.300000px;}
.y199{bottom:36.420000px;}
.y106{bottom:36.540000px;}
.y10d{bottom:36.720000px;}
.y8f{bottom:36.780000px;}
.y13c{bottom:36.900000px;}
.yff{bottom:36.960000px;}
.y72{bottom:37.080000px;}
.y1b{bottom:37.140000px;}
.y1bf{bottom:37.200000px;}
.y18d{bottom:37.320000px;}
.y185{bottom:37.380000px;}
.y37{bottom:37.440000px;}
.y1b9{bottom:37.500000px;}
.y17a{bottom:37.560000px;}
.y88{bottom:37.620000px;}
.y7f{bottom:37.740000px;}
.y23{bottom:37.800000px;}
.y2d{bottom:37.980000px;}
.y188{bottom:42.420000px;}
.yc9{bottom:47.160000px;}
.y46{bottom:47.220000px;}
.ya5{bottom:47.700000px;}
.y1eb{bottom:47.820000px;}
.y57{bottom:48.000000px;}
.y1df{bottom:48.060000px;}
.y1e6{bottom:48.180000px;}
.y1ab{bottom:50.220000px;}
.yb0{bottom:50.340000px;}
.y114{bottom:50.940000px;}
.y119{bottom:51.480000px;}
.y1a6{bottom:51.540000px;}
.y14d{bottom:62.040000px;}
.y105{bottom:62.460000px;}
.y71{bottom:62.640000px;}
.y8e{bottom:62.700000px;}
.y13b{bottom:62.820000px;}
.yf9{bottom:63.000000px;}
.y1a{bottom:63.060000px;}
.y1be{bottom:63.120000px;}
.y184{bottom:63.300000px;}
.y36{bottom:63.360000px;}
.y179{bottom:63.480000px;}
.y87{bottom:63.540000px;}
.y7e{bottom:63.660000px;}
.y22{bottom:63.720000px;}
.y2c{bottom:63.900000px;}
.y198{bottom:66.660000px;}
.yfe{bottom:67.200000px;}
.y97{bottom:67.380000px;}
.y45{bottom:67.740000px;}
.y1ea{bottom:68.340000px;}
.ya4{bottom:68.580000px;}
.yaf{bottom:71.220000px;}
.y14c{bottom:87.960000px;}
.y104{bottom:88.020000px;}
.y10c{bottom:88.200000px;}
.y70{bottom:88.560000px;}
.y8d{bottom:88.620000px;}
.y13a{bottom:88.740000px;}
.y1e9{bottom:88.860000px;}
.yf8{bottom:88.920000px;}
.y19{bottom:88.980000px;}
.y1bd{bottom:89.040000px;}
.ya3{bottom:89.100000px;}
.y183{bottom:89.220000px;}
.y35{bottom:89.280000px;}
.y178{bottom:89.400000px;}
.y2b{bottom:89.460000px;}
.y7d{bottom:89.580000px;}
.y21{bottom:89.640000px;}
.yae{bottom:92.100000px;}
.y197{bottom:92.580000px;}
.y149{bottom:92.700000px;}
.yfd{bottom:93.120000px;}
.y96{bottom:93.300000px;}
.y31{bottom:96.000000px;}
.yc7{bottom:109.500000px;}
.ya2{bottom:109.980000px;}
.y13{bottom:110.880000px;}
.yad{bottom:112.620000px;}
.y10b{bottom:114.120000px;}
.y6f{bottom:114.480000px;}
.y18{bottom:114.540000px;}
.y1db{bottom:115.140000px;}
.y20{bottom:115.200000px;}
.y177{bottom:115.320000px;}
.y2a{bottom:115.380000px;}
.y7c{bottom:115.500000px;}
.y196{bottom:118.500000px;}
.y148{bottom:118.620000px;}
.y139{bottom:118.980000px;}
.yfc{bottom:119.040000px;}
.yf7{bottom:119.160000px;}
.y95{bottom:119.220000px;}
.y12c{bottom:122.760000px;}
.y1bb{bottom:129.000000px;}
.ya1{bottom:130.500000px;}
.y14b{bottom:132.000000px;}
.y190{bottom:133.500000px;}
.yc5{bottom:135.000000px;}
.y17f{bottom:138.000000px;}
.y10a{bottom:140.040000px;}
.y17{bottom:140.460000px;}
.y7b{bottom:141.060000px;}
.y176{bottom:141.240000px;}
.y29{bottom:141.300000px;}
.y108{bottom:144.000000px;}
.y195{bottom:144.060000px;}
.y147{bottom:144.540000px;}
.y94{bottom:144.780000px;}
.y138{bottom:144.900000px;}
.yf6{bottom:145.080000px;}
.y84{bottom:148.500000px;}
.y12{bottom:149.040000px;}
.ya0{bottom:151.380000px;}
.y2f{bottom:153.000000px;}
.yc4{bottom:160.500000px;}
.y1d9{bottom:161.640000px;}
.y1ba{bottom:162.000000px;}
.y6a{bottom:163.800000px;}
.y109{bottom:165.960000px;}
.y1dd{bottom:166.800000px;}
.y17d{bottom:166.980000px;}
.y175{bottom:167.160000px;}
.y28{bottom:167.220000px;}
.y1dc{bottom:168.000000px;}
.y194{bottom:169.980000px;}
.y171{bottom:170.280000px;}
.y146{bottom:170.460000px;}
.y93{bottom:170.700000px;}
.y137{bottom:170.820000px;}
.yf5{bottom:171.000000px;}
.y9f{bottom:171.900000px;}
.y12b{bottom:175.500000px;}
.y1c8{bottom:179.640000px;}
.y81{bottom:181.500000px;}
.y27{bottom:184.500000px;}
.y11{bottom:186.840000px;}
.yc2{bottom:187.500000px;}
.y1b8{bottom:191.160000px;}
.y174{bottom:192.720000px;}
.y9e{bottom:192.780000px;}
.y17e{bottom:193.500000px;}
.y193{bottom:195.900000px;}
.y145{bottom:196.380000px;}
.yf4{bottom:196.560000px;}
.y136{bottom:196.740000px;}
.y1d8{bottom:199.440000px;}
.y12a{bottom:201.000000px;}
.y1f6{bottom:201.600000px;}
.y69{bottom:201.960000px;}
.yea{bottom:203.400000px;}
.y13d{bottom:205.500000px;}
.y170{bottom:208.440000px;}
.yfa{bottom:210.000000px;}
.yc1{bottom:213.000000px;}
.y9d{bottom:213.300000px;}
.y1c7{bottom:217.440000px;}
.y192{bottom:221.820000px;}
.y144{bottom:222.300000px;}
.yf3{bottom:222.480000px;}
.y135{bottom:222.660000px;}
.y10{bottom:224.640000px;}
.y129{bottom:226.500000px;}
.y1b7{bottom:228.960000px;}
.y99{bottom:231.480000px;}
.y9c{bottom:233.820000px;}
.y1d7{bottom:237.240000px;}
.y80{bottom:238.500000px;}
.y1f5{bottom:239.400000px;}
.y68{bottom:239.760000px;}
.ye9{bottom:241.200000px;}
.y14a{bottom:241.500000px;}
.yeb{bottom:243.000000px;}
.y16f{bottom:246.240000px;}
.y191{bottom:247.380000px;}
.y143{bottom:248.220000px;}
.yf2{bottom:248.400000px;}
.y128{bottom:252.000000px;}
.y134{bottom:252.900000px;}
.y1c6{bottom:255.240000px;}
.yf{bottom:262.440000px;}
.yc0{bottom:265.500000px;}
.y1b6{bottom:266.760000px;}
.y98{bottom:269.640000px;}
.y7a{bottom:271.500000px;}
.y142{bottom:273.780000px;}
.yf1{bottom:274.320000px;}
.y13e{bottom:274.500000px;}
.y1d6{bottom:275.400000px;}
.y1f4{bottom:277.200000px;}
.y67{bottom:277.560000px;}
.y133{bottom:278.820000px;}
.ye8{bottom:279.000000px;}
.y16e{bottom:284.040000px;}
.y92{bottom:286.500000px;}
.ybe{bottom:291.000000px;}
.y1c5{bottom:293.040000px;}
.y141{bottom:299.700000px;}
.ye{bottom:300.240000px;}
.y1b5{bottom:302.760000px;}
.y127{bottom:304.500000px;}
.y132{bottom:304.740000px;}
.y1d5{bottom:313.200000px;}
.y1f3{bottom:315.000000px;}
.y66{bottom:315.360000px;}
.ybd{bottom:316.500000px;}
.ye7{bottom:316.800000px;}
.y16d{bottom:321.840000px;}
.y140{bottom:325.620000px;}
.yf0{bottom:326.160000px;}
.y1b4{bottom:328.500000px;}
.y126{bottom:330.000000px;}
.y131{bottom:330.660000px;}
.y1c4{bottom:330.840000px;}
.y107{bottom:331.500000px;}
.yd{bottom:338.400000px;}
.ybc{bottom:342.000000px;}
.y1d4{bottom:351.000000px;}
.y13f{bottom:351.540000px;}
.yef{bottom:352.080000px;}
.y1f2{bottom:352.800000px;}
.y65{bottom:353.160000px;}
.y1b3{bottom:354.000000px;}
.ye6{bottom:354.600000px;}
.y125{bottom:355.500000px;}
.y130{bottom:356.580000px;}
.y16c{bottom:359.640000px;}
.y103{bottom:364.500000px;}
.ybb{bottom:369.000000px;}
.y25{bottom:373.500000px;}
.yc{bottom:376.200000px;}
.yee{bottom:377.640000px;}
.y1b2{bottom:381.000000px;}
.y12f{bottom:382.140000px;}
.y124{bottom:382.500000px;}
.y1da{bottom:388.500000px;}
.y1d3{bottom:388.800000px;}
.y1f1{bottom:390.960000px;}
.y64{bottom:391.320000px;}
.ye5{bottom:392.760000px;}
.yba{bottom:394.500000px;}
.y16b{bottom:397.800000px;}
.y18e{bottom:402.000000px;}
.yed{bottom:403.560000px;}
.y1f{bottom:405.000000px;}
.y1b1{bottom:406.500000px;}
.y1c3{bottom:406.800000px;}
.y123{bottom:408.000000px;}
.y12e{bottom:408.060000px;}
.yb{bottom:414.000000px;}
.y17c{bottom:415.500000px;}
.yb8{bottom:420.000000px;}
.y1d2{bottom:426.600000px;}
.y1f0{bottom:428.760000px;}
.y63{bottom:429.120000px;}
.yec{bottom:429.480000px;}
.ye4{bottom:430.560000px;}
.y1b0{bottom:432.000000px;}
.y78{bottom:433.500000px;}
.y12d{bottom:433.980000px;}
.y18c{bottom:435.000000px;}
.y16a{bottom:435.600000px;}
.y1c2{bottom:444.600000px;}
.yb6{bottom:445.500000px;}
.y173{bottom:447.000000px;}
.ya{bottom:451.800000px;}
.y1af{bottom:457.500000px;}
.y122{bottom:460.500000px;}
.y1d1{bottom:464.760000px;}
.y76{bottom:466.500000px;}
.y62{bottom:466.920000px;}
.ye3{bottom:468.360000px;}
.yb5{bottom:472.500000px;}
.y169{bottom:473.400000px;}
.y101{bottom:474.000000px;}
.y90{bottom:478.500000px;}
.y1c1{bottom:482.400000px;}
.y1ae{bottom:484.500000px;}
.y121{bottom:486.000000px;}
.y9{bottom:489.600000px;}
.y1ef{bottom:490.500000px;}
.y18b{bottom:493.500000px;}
.yb4{bottom:498.000000px;}
.y1d0{bottom:500.400000px;}
.y61{bottom:504.720000px;}
.ye2{bottom:506.160000px;}
.yfb{bottom:507.000000px;}
.y168{bottom:509.400000px;}
.y1ad{bottom:510.000000px;}
.y8c{bottom:511.500000px;}
.y1ee{bottom:516.000000px;}
.y1c0{bottom:520.200000px;}
.y74{bottom:525.000000px;}
.y18a{bottom:526.500000px;}
.y8{bottom:527.760000px;}
.y167{bottom:535.500000px;}
.y1bc{bottom:537.000000px;}
.y120{bottom:538.500000px;}
.y1d{bottom:541.500000px;}
.y60{bottom:542.520000px;}
.y1ed{bottom:543.000000px;}
.ye1{bottom:543.960000px;}
.y3c{bottom:544.680000px;}
.yac{bottom:550.500000px;}
.y1cf{bottom:552.000000px;}
.y6e{bottom:558.000000px;}
.y187{bottom:559.500000px;}
.y166{bottom:561.000000px;}
.y1aa{bottom:562.500000px;}
.y11f{bottom:564.000000px;}
.y7{bottom:565.560000px;}
.y151{bottom:567.000000px;}
.y1e8{bottom:568.500000px;}
.y16{bottom:574.500000px;}
.y5f{bottom:578.520000px;}
.y1ce{bottom:579.000000px;}
.ye0{bottom:579.960000px;}
.y3b{bottom:582.840000px;}
.y1f7{bottom:583.500000px;}
.y165{bottom:586.500000px;}
.y11e{bottom:589.500000px;}
.y6{bottom:601.560000px;}
.y5e{bottom:604.500000px;}
.yde{bottom:606.000000px;}
.y164{bottom:613.500000px;}
.y11d{bottom:616.500000px;}
.y3a{bottom:620.640000px;}
.y186{bottom:625.500000px;}
.y5d{bottom:630.000000px;}
.y1a9{bottom:633.000000px;}
.y163{bottom:639.000000px;}
.y5{bottom:639.360000px;}
.y11c{bottom:642.000000px;}
.y8a{bottom:648.000000px;}
.ydc{bottom:652.500000px;}
.y1cd{bottom:655.500000px;}
.y5c{bottom:657.000000px;}
.y39{bottom:658.440000px;}
.y182{bottom:658.500000px;}
.y172{bottom:661.500000px;}
.y162{bottom:664.500000px;}
.y11b{bottom:667.500000px;}
.y34{bottom:675.000000px;}
.y1e5{bottom:676.500000px;}
.y4{bottom:677.160000px;}
.yda{bottom:678.000000px;}
.y86{bottom:679.500000px;}
.y5a{bottom:682.500000px;}
.y1a8{bottom:684.000000px;}
.y161{bottom:690.000000px;}
.y118{bottom:693.000000px;}
.y6c{bottom:694.500000px;}
.yd9{bottom:705.000000px;}
.y56{bottom:708.000000px;}
.y1a5{bottom:709.500000px;}
.y150{bottom:711.000000px;}
.y3{bottom:714.960000px;}
.y160{bottom:717.000000px;}
.yd8{bottom:730.500000px;}
.y1cc{bottom:733.500000px;}
.ya8{bottom:735.000000px;}
.y14{bottom:736.500000px;}
.y15f{bottom:742.500000px;}
.y1e4{bottom:744.000000px;}
.y6b{bottom:748.440000px;}
.y2{bottom:753.120000px;}
.yd7{bottom:756.000000px;}
.y9b{bottom:760.500000px;}
.y117{bottom:763.500000px;}
.y15e{bottom:769.500000px;}
.y54{bottom:775.500000px;}
.y1a4{bottom:780.000000px;}
.yd6{bottom:781.500000px;}
.y1cb{bottom:786.000000px;}
.y116{bottom:790.500000px;}
.y1{bottom:790.920000px;}
.y15d{bottom:795.000000px;}
.y1e3{bottom:796.500000px;}
.y52{bottom:801.000000px;}
.y1a3{bottom:807.000000px;}
.yd5{bottom:808.500000px;}
.y1c9{bottom:811.500000px;}
.y115{bottom:816.000000px;}
.y15c{bottom:820.500000px;}
.y1e1{bottom:822.000000px;}
.y4f{bottom:828.000000px;}
.y1a2{bottom:832.500000px;}
.yd4{bottom:834.000000px;}
.y113{bottom:841.500000px;}
.y15b{bottom:846.000000px;}
.y1f9{bottom:848.520000px;}
.y1a1{bottom:858.000000px;}
.yd3{bottom:859.500000px;}
.y1de{bottom:868.500000px;}
.y15a{bottom:873.000000px;}
.y4d{bottom:874.500000px;}
.y1f8{bottom:884.520000px;}
.y1a0{bottom:885.000000px;}
.yd2{bottom:886.500000px;}
.y159{bottom:898.500000px;}
.y4b{bottom:900.000000px;}
.y19f{bottom:910.500000px;}
.yd1{bottom:912.000000px;}
.y158{bottom:924.000000px;}
.y49{bottom:925.500000px;}
.y19e{bottom:936.000000px;}
.ycf{bottom:937.500000px;}
.y157{bottom:949.500000px;}
.y44{bottom:952.500000px;}
.y19d{bottom:961.500000px;}
.yce{bottom:964.500000px;}
.y156{bottom:976.500000px;}
.y19c{bottom:988.500000px;}
.y112{bottom:990.000000px;}
.y155{bottom:1002.000000px;}
.ycd{bottom:1011.000000px;}
.y9a{bottom:1014.000000px;}
.y111{bottom:1015.500000px;}
.y154{bottom:1027.500000px;}
.ycc{bottom:1036.500000px;}
.y42{bottom:1039.500000px;}
.y110{bottom:1042.500000px;}
.ycb{bottom:1062.000000px;}
.y40{bottom:1066.500000px;}
.y10f{bottom:1068.000000px;}
.y153{bottom:1076.040000px;}
.yc8{bottom:1089.000000px;}
.y3e{bottom:1092.000000px;}
.y10e{bottom:1093.500000px;}
.y152{bottom:1101.960000px;}
.y19b{bottom:1113.840000px;}
.y3d{bottom:1139.760000px;}
.hd{height:25.500000px;}
.hc{height:27.000000px;}
.h3{height:33.000000px;}
.h13{height:34.500000px;}
.hf{height:46.500000px;}
.h1b{height:48.000000px;}
.h4{height:48.796875px;}
.h2{height:50.027344px;}
.h19{height:52.031250px;}
.h23{height:54.000000px;}
.h8{height:57.000000px;}
.h27{height:57.990938px;}
.h15{height:58.500000px;}
.h12{height:60.000000px;}
.h1a{height:67.500000px;}
.h10{height:69.000000px;}
.h29{height:70.500000px;}
.h20{height:72.000000px;}
.h16{height:85.500000px;}
.he{height:88.500000px;}
.h26{height:106.500000px;}
.h1e{height:109.500000px;}
.h24{height:111.000000px;}
.h9{height:132.000000px;}
.h11{height:136.500000px;}
.h6{height:138.000000px;}
.h1d{height:141.000000px;}
.h5{height:162.000000px;}
.h14{height:163.500000px;}
.h1f{height:187.500000px;}
.h7{height:189.000000px;}
.h17{height:193.500000px;}
.h25{height:214.500000px;}
.h18{height:253.500000px;}
.h28{height:270.000000px;}
.h22{height:373.500000px;}
.h1c{height:451.500000px;}
.h21{height:456.000000px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.ha{height:1262.880000px;}
.hb{height:1263.000000px;}
.w9{width:64.500000px;}
.wc{width:73.500000px;}
.w8{width:75.000000px;}
.wa{width:148.500000px;}
.w6{width:150.000000px;}
.wb{width:213.000000px;}
.w7{width:214.500000px;}
.w5{width:637.500000px;}
.w4{width:892.500000px;}
.w3{width:892.800000px;}
.w2{width:1050.000000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x3{left:8.340072px;}
.x5{left:9.905988px;}
.x15{left:18.951480px;}
.xb{left:21.767760px;}
.xd{left:24.637440px;}
.x9{left:27.257640px;}
.x2{left:35.340072px;}
.x7{left:44.882436px;}
.x14{left:48.376092px;}
.x18{left:52.515024px;}
.x1a{left:62.579964px;}
.x16{left:64.596324px;}
.x11{left:75.030024px;}
.x17{left:76.118772px;}
.xf{left:82.117308px;}
.x10{left:85.215084px;}
.x1{left:106.200072px;}
.x13{left:123.179808px;}
.x4{left:127.439928px;}
.x19{left:150.179808px;}
.x6{left:276.000000px;}
.x8{left:489.000000px;}
.xa{left:562.500000px;}
.x12{left:625.500000px;}
.xc{left:627.000000px;}
.xe{left:700.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-6.393600pt;}
.ls5{letter-spacing:-5.862400pt;}
.ls2{letter-spacing:-2.374400pt;}
.ls1{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.010240pt;}
.ls3{letter-spacing:0.012800pt;}
.lsa{letter-spacing:0.103936pt;}
.ls9{letter-spacing:0.207872pt;}
.lsb{letter-spacing:0.215296pt;}
.ls4{letter-spacing:30.208000pt;}
.ls6{letter-spacing:48.926848pt;}
.ws2{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.987200pt;}
.ws0{word-spacing:-13.625600pt;}
.ws5{word-spacing:-9.606400pt;}
.ws4{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._15{margin-left:-7.764096pt;}
._c{margin-left:-5.862400pt;}
._0{margin-left:-4.480000pt;}
._1{margin-left:-3.560448pt;}
._a{margin-left:-2.598400pt;}
._2{margin-left:-1.490176pt;}
._5{width:1.075200pt;}
._3{width:2.344576pt;}
._4{width:3.291520pt;}
._6{width:4.367360pt;}
._16{width:5.264640pt;}
._9{width:6.156800pt;}
._f{width:7.115264pt;}
._11{width:8.008448pt;}
._b{width:8.940800pt;}
._8{width:10.054400pt;}
._7{width:11.174400pt;}
._e{width:12.096000pt;}
._12{width:13.037440pt;}
._14{width:14.048000pt;}
._17{width:14.982400pt;}
._d{width:17.113600pt;}
._10{width:18.060800pt;}
._13{width:41.931520pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:4.800000pt;}
.y48{bottom:4.853333pt;}
.y41{bottom:4.960000pt;}
.yb3{bottom:5.013333pt;}
.yb2{bottom:5.066667pt;}
.y51{bottom:5.120000pt;}
.yc3{bottom:5.173333pt;}
.ya9{bottom:5.226667pt;}
.ya7{bottom:5.280000pt;}
.ybf{bottom:5.333333pt;}
.y4e{bottom:5.386667pt;}
.yc6{bottom:5.440000pt;}
.y5b{bottom:5.493333pt;}
.y59{bottom:5.546667pt;}
.ydd{bottom:5.600000pt;}
.y3f{bottom:5.653333pt;}
.y55{bottom:5.706667pt;}
.y4c{bottom:5.760000pt;}
.yab{bottom:5.813333pt;}
.yb9{bottom:5.866667pt;}
.y43{bottom:5.920000pt;}
.ydb{bottom:5.973333pt;}
.yd0{bottom:6.026667pt;}
.y53{bottom:6.080000pt;}
.y4a{bottom:6.133333pt;}
.yaa{bottom:6.186667pt;}
.yb7{bottom:6.240000pt;}
.y181{bottom:8.213333pt;}
.y33{bottom:8.426667pt;}
.y14f{bottom:9.066667pt;}
.y6d{bottom:9.226667pt;}
.y8b{bottom:9.280000pt;}
.y19a{bottom:9.333333pt;}
.y26{bottom:9.440000pt;}
.y83{bottom:9.546667pt;}
.y30{bottom:9.600000pt;}
.y15{bottom:9.653333pt;}
.y85{bottom:9.760000pt;}
.y100{bottom:9.813333pt;}
.y91{bottom:9.866667pt;}
.y73{bottom:9.920000pt;}
.y1c{bottom:9.973333pt;}
.y102{bottom:10.026667pt;}
.y75{bottom:10.133333pt;}
.y1e{bottom:10.186667pt;}
.y38{bottom:10.240000pt;}
.y77{bottom:10.293333pt;}
.y18f{bottom:10.346667pt;}
.y89{bottom:10.400000pt;}
.y79{bottom:10.506667pt;}
.y24{bottom:10.560000pt;}
.y17b{bottom:10.666667pt;}
.y2e{bottom:10.720000pt;}
.y189{bottom:11.146667pt;}
.y1ac{bottom:23.520000pt;}
.yb1{bottom:23.626667pt;}
.y50{bottom:23.680000pt;}
.y47{bottom:23.733333pt;}
.ydf{bottom:23.893333pt;}
.y1ec{bottom:23.946667pt;}
.ya6{bottom:24.160000pt;}
.y1e2{bottom:24.213333pt;}
.y1ca{bottom:24.266667pt;}
.y58{bottom:24.426667pt;}
.y1e0{bottom:24.480000pt;}
.y1e7{bottom:24.586667pt;}
.y11a{bottom:24.640000pt;}
.y1a7{bottom:24.693333pt;}
.y180{bottom:30.933333pt;}
.y32{bottom:31.146667pt;}
.y14e{bottom:32.106667pt;}
.y82{bottom:32.266667pt;}
.y199{bottom:32.373333pt;}
.y106{bottom:32.480000pt;}
.y10d{bottom:32.640000pt;}
.y8f{bottom:32.693333pt;}
.y13c{bottom:32.800000pt;}
.yff{bottom:32.853333pt;}
.y72{bottom:32.960000pt;}
.y1b{bottom:33.013333pt;}
.y1bf{bottom:33.066667pt;}
.y18d{bottom:33.173333pt;}
.y185{bottom:33.226667pt;}
.y37{bottom:33.280000pt;}
.y1b9{bottom:33.333333pt;}
.y17a{bottom:33.386667pt;}
.y88{bottom:33.440000pt;}
.y7f{bottom:33.546667pt;}
.y23{bottom:33.600000pt;}
.y2d{bottom:33.760000pt;}
.y188{bottom:37.706667pt;}
.yc9{bottom:41.920000pt;}
.y46{bottom:41.973333pt;}
.ya5{bottom:42.400000pt;}
.y1eb{bottom:42.506667pt;}
.y57{bottom:42.666667pt;}
.y1df{bottom:42.720000pt;}
.y1e6{bottom:42.826667pt;}
.y1ab{bottom:44.640000pt;}
.yb0{bottom:44.746667pt;}
.y114{bottom:45.280000pt;}
.y119{bottom:45.760000pt;}
.y1a6{bottom:45.813333pt;}
.y14d{bottom:55.146667pt;}
.y105{bottom:55.520000pt;}
.y71{bottom:55.680000pt;}
.y8e{bottom:55.733333pt;}
.y13b{bottom:55.840000pt;}
.yf9{bottom:56.000000pt;}
.y1a{bottom:56.053333pt;}
.y1be{bottom:56.106667pt;}
.y184{bottom:56.266667pt;}
.y36{bottom:56.320000pt;}
.y179{bottom:56.426667pt;}
.y87{bottom:56.480000pt;}
.y7e{bottom:56.586667pt;}
.y22{bottom:56.640000pt;}
.y2c{bottom:56.800000pt;}
.y198{bottom:59.253333pt;}
.yfe{bottom:59.733333pt;}
.y97{bottom:59.893333pt;}
.y45{bottom:60.213333pt;}
.y1ea{bottom:60.746667pt;}
.ya4{bottom:60.960000pt;}
.yaf{bottom:63.306667pt;}
.y14c{bottom:78.186667pt;}
.y104{bottom:78.240000pt;}
.y10c{bottom:78.400000pt;}
.y70{bottom:78.720000pt;}
.y8d{bottom:78.773333pt;}
.y13a{bottom:78.880000pt;}
.y1e9{bottom:78.986667pt;}
.yf8{bottom:79.040000pt;}
.y19{bottom:79.093333pt;}
.y1bd{bottom:79.146667pt;}
.ya3{bottom:79.200000pt;}
.y183{bottom:79.306667pt;}
.y35{bottom:79.360000pt;}
.y178{bottom:79.466667pt;}
.y2b{bottom:79.520000pt;}
.y7d{bottom:79.626667pt;}
.y21{bottom:79.680000pt;}
.yae{bottom:81.866667pt;}
.y197{bottom:82.293333pt;}
.y149{bottom:82.400000pt;}
.yfd{bottom:82.773333pt;}
.y96{bottom:82.933333pt;}
.y31{bottom:85.333333pt;}
.yc7{bottom:97.333333pt;}
.ya2{bottom:97.760000pt;}
.y13{bottom:98.560000pt;}
.yad{bottom:100.106667pt;}
.y10b{bottom:101.440000pt;}
.y6f{bottom:101.760000pt;}
.y18{bottom:101.813333pt;}
.y1db{bottom:102.346667pt;}
.y20{bottom:102.400000pt;}
.y177{bottom:102.506667pt;}
.y2a{bottom:102.560000pt;}
.y7c{bottom:102.666667pt;}
.y196{bottom:105.333333pt;}
.y148{bottom:105.440000pt;}
.y139{bottom:105.760000pt;}
.yfc{bottom:105.813333pt;}
.yf7{bottom:105.920000pt;}
.y95{bottom:105.973333pt;}
.y12c{bottom:109.120000pt;}
.y1bb{bottom:114.666667pt;}
.ya1{bottom:116.000000pt;}
.y14b{bottom:117.333333pt;}
.y190{bottom:118.666667pt;}
.yc5{bottom:120.000000pt;}
.y17f{bottom:122.666667pt;}
.y10a{bottom:124.480000pt;}
.y17{bottom:124.853333pt;}
.y7b{bottom:125.386667pt;}
.y176{bottom:125.546667pt;}
.y29{bottom:125.600000pt;}
.y108{bottom:128.000000pt;}
.y195{bottom:128.053333pt;}
.y147{bottom:128.480000pt;}
.y94{bottom:128.693333pt;}
.y138{bottom:128.800000pt;}
.yf6{bottom:128.960000pt;}
.y84{bottom:132.000000pt;}
.y12{bottom:132.480000pt;}
.ya0{bottom:134.560000pt;}
.y2f{bottom:136.000000pt;}
.yc4{bottom:142.666667pt;}
.y1d9{bottom:143.680000pt;}
.y1ba{bottom:144.000000pt;}
.y6a{bottom:145.600000pt;}
.y109{bottom:147.520000pt;}
.y1dd{bottom:148.266667pt;}
.y17d{bottom:148.426667pt;}
.y175{bottom:148.586667pt;}
.y28{bottom:148.640000pt;}
.y1dc{bottom:149.333333pt;}
.y194{bottom:151.093333pt;}
.y171{bottom:151.360000pt;}
.y146{bottom:151.520000pt;}
.y93{bottom:151.733333pt;}
.y137{bottom:151.840000pt;}
.yf5{bottom:152.000000pt;}
.y9f{bottom:152.800000pt;}
.y12b{bottom:156.000000pt;}
.y1c8{bottom:159.680000pt;}
.y81{bottom:161.333333pt;}
.y27{bottom:164.000000pt;}
.y11{bottom:166.080000pt;}
.yc2{bottom:166.666667pt;}
.y1b8{bottom:169.920000pt;}
.y174{bottom:171.306667pt;}
.y9e{bottom:171.360000pt;}
.y17e{bottom:172.000000pt;}
.y193{bottom:174.133333pt;}
.y145{bottom:174.560000pt;}
.yf4{bottom:174.720000pt;}
.y136{bottom:174.880000pt;}
.y1d8{bottom:177.280000pt;}
.y12a{bottom:178.666667pt;}
.y1f6{bottom:179.200000pt;}
.y69{bottom:179.520000pt;}
.yea{bottom:180.800000pt;}
.y13d{bottom:182.666667pt;}
.y170{bottom:185.280000pt;}
.yfa{bottom:186.666667pt;}
.yc1{bottom:189.333333pt;}
.y9d{bottom:189.600000pt;}
.y1c7{bottom:193.280000pt;}
.y192{bottom:197.173333pt;}
.y144{bottom:197.600000pt;}
.yf3{bottom:197.760000pt;}
.y135{bottom:197.920000pt;}
.y10{bottom:199.680000pt;}
.y129{bottom:201.333333pt;}
.y1b7{bottom:203.520000pt;}
.y99{bottom:205.760000pt;}
.y9c{bottom:207.840000pt;}
.y1d7{bottom:210.880000pt;}
.y80{bottom:212.000000pt;}
.y1f5{bottom:212.800000pt;}
.y68{bottom:213.120000pt;}
.ye9{bottom:214.400000pt;}
.y14a{bottom:214.666667pt;}
.yeb{bottom:216.000000pt;}
.y16f{bottom:218.880000pt;}
.y191{bottom:219.893333pt;}
.y143{bottom:220.640000pt;}
.yf2{bottom:220.800000pt;}
.y128{bottom:224.000000pt;}
.y134{bottom:224.800000pt;}
.y1c6{bottom:226.880000pt;}
.yf{bottom:233.280000pt;}
.yc0{bottom:236.000000pt;}
.y1b6{bottom:237.120000pt;}
.y98{bottom:239.680000pt;}
.y7a{bottom:241.333333pt;}
.y142{bottom:243.360000pt;}
.yf1{bottom:243.840000pt;}
.y13e{bottom:244.000000pt;}
.y1d6{bottom:244.800000pt;}
.y1f4{bottom:246.400000pt;}
.y67{bottom:246.720000pt;}
.y133{bottom:247.840000pt;}
.ye8{bottom:248.000000pt;}
.y16e{bottom:252.480000pt;}
.y92{bottom:254.666667pt;}
.ybe{bottom:258.666667pt;}
.y1c5{bottom:260.480000pt;}
.y141{bottom:266.400000pt;}
.ye{bottom:266.880000pt;}
.y1b5{bottom:269.120000pt;}
.y127{bottom:270.666667pt;}
.y132{bottom:270.880000pt;}
.y1d5{bottom:278.400000pt;}
.y1f3{bottom:280.000000pt;}
.y66{bottom:280.320000pt;}
.ybd{bottom:281.333333pt;}
.ye7{bottom:281.600000pt;}
.y16d{bottom:286.080000pt;}
.y140{bottom:289.440000pt;}
.yf0{bottom:289.920000pt;}
.y1b4{bottom:292.000000pt;}
.y126{bottom:293.333333pt;}
.y131{bottom:293.920000pt;}
.y1c4{bottom:294.080000pt;}
.y107{bottom:294.666667pt;}
.yd{bottom:300.800000pt;}
.ybc{bottom:304.000000pt;}
.y1d4{bottom:312.000000pt;}
.y13f{bottom:312.480000pt;}
.yef{bottom:312.960000pt;}
.y1f2{bottom:313.600000pt;}
.y65{bottom:313.920000pt;}
.y1b3{bottom:314.666667pt;}
.ye6{bottom:315.200000pt;}
.y125{bottom:316.000000pt;}
.y130{bottom:316.960000pt;}
.y16c{bottom:319.680000pt;}
.y103{bottom:324.000000pt;}
.ybb{bottom:328.000000pt;}
.y25{bottom:332.000000pt;}
.yc{bottom:334.400000pt;}
.yee{bottom:335.680000pt;}
.y1b2{bottom:338.666667pt;}
.y12f{bottom:339.680000pt;}
.y124{bottom:340.000000pt;}
.y1da{bottom:345.333333pt;}
.y1d3{bottom:345.600000pt;}
.y1f1{bottom:347.520000pt;}
.y64{bottom:347.840000pt;}
.ye5{bottom:349.120000pt;}
.yba{bottom:350.666667pt;}
.y16b{bottom:353.600000pt;}
.y18e{bottom:357.333333pt;}
.yed{bottom:358.720000pt;}
.y1f{bottom:360.000000pt;}
.y1b1{bottom:361.333333pt;}
.y1c3{bottom:361.600000pt;}
.y123{bottom:362.666667pt;}
.y12e{bottom:362.720000pt;}
.yb{bottom:368.000000pt;}
.y17c{bottom:369.333333pt;}
.yb8{bottom:373.333333pt;}
.y1d2{bottom:379.200000pt;}
.y1f0{bottom:381.120000pt;}
.y63{bottom:381.440000pt;}
.yec{bottom:381.760000pt;}
.ye4{bottom:382.720000pt;}
.y1b0{bottom:384.000000pt;}
.y78{bottom:385.333333pt;}
.y12d{bottom:385.760000pt;}
.y18c{bottom:386.666667pt;}
.y16a{bottom:387.200000pt;}
.y1c2{bottom:395.200000pt;}
.yb6{bottom:396.000000pt;}
.y173{bottom:397.333333pt;}
.ya{bottom:401.600000pt;}
.y1af{bottom:406.666667pt;}
.y122{bottom:409.333333pt;}
.y1d1{bottom:413.120000pt;}
.y76{bottom:414.666667pt;}
.y62{bottom:415.040000pt;}
.ye3{bottom:416.320000pt;}
.yb5{bottom:420.000000pt;}
.y169{bottom:420.800000pt;}
.y101{bottom:421.333333pt;}
.y90{bottom:425.333333pt;}
.y1c1{bottom:428.800000pt;}
.y1ae{bottom:430.666667pt;}
.y121{bottom:432.000000pt;}
.y9{bottom:435.200000pt;}
.y1ef{bottom:436.000000pt;}
.y18b{bottom:438.666667pt;}
.yb4{bottom:442.666667pt;}
.y1d0{bottom:444.800000pt;}
.y61{bottom:448.640000pt;}
.ye2{bottom:449.920000pt;}
.yfb{bottom:450.666667pt;}
.y168{bottom:452.800000pt;}
.y1ad{bottom:453.333333pt;}
.y8c{bottom:454.666667pt;}
.y1ee{bottom:458.666667pt;}
.y1c0{bottom:462.400000pt;}
.y74{bottom:466.666667pt;}
.y18a{bottom:468.000000pt;}
.y8{bottom:469.120000pt;}
.y167{bottom:476.000000pt;}
.y1bc{bottom:477.333333pt;}
.y120{bottom:478.666667pt;}
.y1d{bottom:481.333333pt;}
.y60{bottom:482.240000pt;}
.y1ed{bottom:482.666667pt;}
.ye1{bottom:483.520000pt;}
.y3c{bottom:484.160000pt;}
.yac{bottom:489.333333pt;}
.y1cf{bottom:490.666667pt;}
.y6e{bottom:496.000000pt;}
.y187{bottom:497.333333pt;}
.y166{bottom:498.666667pt;}
.y1aa{bottom:500.000000pt;}
.y11f{bottom:501.333333pt;}
.y7{bottom:502.720000pt;}
.y151{bottom:504.000000pt;}
.y1e8{bottom:505.333333pt;}
.y16{bottom:510.666667pt;}
.y5f{bottom:514.240000pt;}
.y1ce{bottom:514.666667pt;}
.ye0{bottom:515.520000pt;}
.y3b{bottom:518.080000pt;}
.y1f7{bottom:518.666667pt;}
.y165{bottom:521.333333pt;}
.y11e{bottom:524.000000pt;}
.y6{bottom:534.720000pt;}
.y5e{bottom:537.333333pt;}
.yde{bottom:538.666667pt;}
.y164{bottom:545.333333pt;}
.y11d{bottom:548.000000pt;}
.y3a{bottom:551.680000pt;}
.y186{bottom:556.000000pt;}
.y5d{bottom:560.000000pt;}
.y1a9{bottom:562.666667pt;}
.y163{bottom:568.000000pt;}
.y5{bottom:568.320000pt;}
.y11c{bottom:570.666667pt;}
.y8a{bottom:576.000000pt;}
.ydc{bottom:580.000000pt;}
.y1cd{bottom:582.666667pt;}
.y5c{bottom:584.000000pt;}
.y39{bottom:585.280000pt;}
.y182{bottom:585.333333pt;}
.y172{bottom:588.000000pt;}
.y162{bottom:590.666667pt;}
.y11b{bottom:593.333333pt;}
.y34{bottom:600.000000pt;}
.y1e5{bottom:601.333333pt;}
.y4{bottom:601.920000pt;}
.yda{bottom:602.666667pt;}
.y86{bottom:604.000000pt;}
.y5a{bottom:606.666667pt;}
.y1a8{bottom:608.000000pt;}
.y161{bottom:613.333333pt;}
.y118{bottom:616.000000pt;}
.y6c{bottom:617.333333pt;}
.yd9{bottom:626.666667pt;}
.y56{bottom:629.333333pt;}
.y1a5{bottom:630.666667pt;}
.y150{bottom:632.000000pt;}
.y3{bottom:635.520000pt;}
.y160{bottom:637.333333pt;}
.yd8{bottom:649.333333pt;}
.y1cc{bottom:652.000000pt;}
.ya8{bottom:653.333333pt;}
.y14{bottom:654.666667pt;}
.y15f{bottom:660.000000pt;}
.y1e4{bottom:661.333333pt;}
.y6b{bottom:665.280000pt;}
.y2{bottom:669.440000pt;}
.yd7{bottom:672.000000pt;}
.y9b{bottom:676.000000pt;}
.y117{bottom:678.666667pt;}
.y15e{bottom:684.000000pt;}
.y54{bottom:689.333333pt;}
.y1a4{bottom:693.333333pt;}
.yd6{bottom:694.666667pt;}
.y1cb{bottom:698.666667pt;}
.y116{bottom:702.666667pt;}
.y1{bottom:703.040000pt;}
.y15d{bottom:706.666667pt;}
.y1e3{bottom:708.000000pt;}
.y52{bottom:712.000000pt;}
.y1a3{bottom:717.333333pt;}
.yd5{bottom:718.666667pt;}
.y1c9{bottom:721.333333pt;}
.y115{bottom:725.333333pt;}
.y15c{bottom:729.333333pt;}
.y1e1{bottom:730.666667pt;}
.y4f{bottom:736.000000pt;}
.y1a2{bottom:740.000000pt;}
.yd4{bottom:741.333333pt;}
.y113{bottom:748.000000pt;}
.y15b{bottom:752.000000pt;}
.y1f9{bottom:754.240000pt;}
.y1a1{bottom:762.666667pt;}
.yd3{bottom:764.000000pt;}
.y1de{bottom:772.000000pt;}
.y15a{bottom:776.000000pt;}
.y4d{bottom:777.333333pt;}
.y1f8{bottom:786.240000pt;}
.y1a0{bottom:786.666667pt;}
.yd2{bottom:788.000000pt;}
.y159{bottom:798.666667pt;}
.y4b{bottom:800.000000pt;}
.y19f{bottom:809.333333pt;}
.yd1{bottom:810.666667pt;}
.y158{bottom:821.333333pt;}
.y49{bottom:822.666667pt;}
.y19e{bottom:832.000000pt;}
.ycf{bottom:833.333333pt;}
.y157{bottom:844.000000pt;}
.y44{bottom:846.666667pt;}
.y19d{bottom:854.666667pt;}
.yce{bottom:857.333333pt;}
.y156{bottom:868.000000pt;}
.y19c{bottom:878.666667pt;}
.y112{bottom:880.000000pt;}
.y155{bottom:890.666667pt;}
.ycd{bottom:898.666667pt;}
.y9a{bottom:901.333333pt;}
.y111{bottom:902.666667pt;}
.y154{bottom:913.333333pt;}
.ycc{bottom:921.333333pt;}
.y42{bottom:924.000000pt;}
.y110{bottom:926.666667pt;}
.ycb{bottom:944.000000pt;}
.y40{bottom:948.000000pt;}
.y10f{bottom:949.333333pt;}
.y153{bottom:956.480000pt;}
.yc8{bottom:968.000000pt;}
.y3e{bottom:970.666667pt;}
.y10e{bottom:972.000000pt;}
.y152{bottom:979.520000pt;}
.y19b{bottom:990.080000pt;}
.y3d{bottom:1013.120000pt;}
.hd{height:22.666667pt;}
.hc{height:24.000000pt;}
.h3{height:29.333333pt;}
.h13{height:30.666667pt;}
.hf{height:41.333333pt;}
.h1b{height:42.666667pt;}
.h4{height:43.375000pt;}
.h2{height:44.468750pt;}
.h19{height:46.250000pt;}
.h23{height:48.000000pt;}
.h8{height:50.666667pt;}
.h27{height:51.547500pt;}
.h15{height:52.000000pt;}
.h12{height:53.333333pt;}
.h1a{height:60.000000pt;}
.h10{height:61.333333pt;}
.h29{height:62.666667pt;}
.h20{height:64.000000pt;}
.h16{height:76.000000pt;}
.he{height:78.666667pt;}
.h26{height:94.666667pt;}
.h1e{height:97.333333pt;}
.h24{height:98.666667pt;}
.h9{height:117.333333pt;}
.h11{height:121.333333pt;}
.h6{height:122.666667pt;}
.h1d{height:125.333333pt;}
.h5{height:144.000000pt;}
.h14{height:145.333333pt;}
.h1f{height:166.666667pt;}
.h7{height:168.000000pt;}
.h17{height:172.000000pt;}
.h25{height:190.666667pt;}
.h18{height:225.333333pt;}
.h28{height:240.000000pt;}
.h22{height:332.000000pt;}
.h1c{height:401.333333pt;}
.h21{height:405.333333pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.ha{height:1122.560000pt;}
.hb{height:1122.666667pt;}
.w9{width:57.333333pt;}
.wc{width:65.333333pt;}
.w8{width:66.666667pt;}
.wa{width:132.000000pt;}
.w6{width:133.333333pt;}
.wb{width:189.333333pt;}
.w7{width:190.666667pt;}
.w5{width:566.666667pt;}
.w4{width:793.333333pt;}
.w3{width:793.600000pt;}
.w2{width:933.333333pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x3{left:7.413397pt;}
.x5{left:8.805323pt;}
.x15{left:16.845760pt;}
.xb{left:19.349120pt;}
.xd{left:21.899947pt;}
.x9{left:24.229013pt;}
.x2{left:31.413397pt;}
.x7{left:39.895499pt;}
.x14{left:43.000971pt;}
.x18{left:46.680021pt;}
.x1a{left:55.626635pt;}
.x16{left:57.418955pt;}
.x11{left:66.693355pt;}
.x17{left:67.661131pt;}
.xf{left:72.993163pt;}
.x10{left:75.746741pt;}
.x1{left:94.400064pt;}
.x13{left:109.493163pt;}
.x4{left:113.279936pt;}
.x19{left:133.493163pt;}
.x6{left:245.333333pt;}
.x8{left:434.666667pt;}
.xa{left:500.000000pt;}
.x12{left:556.000000pt;}
.xc{left:557.333333pt;}
.xe{left:622.666667pt;}
}




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