
    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_d355d723a35311f9b4366a21.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2ac2c6cafbceb7e816c3caca.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a57c0ffb265c74e7dc9cd62f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_760a9f491a823f190ec44adf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.741211;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b75302e40f888a6b30fd617d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_36447adbd60675a9b4d9fa40.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_9c0647703755b9a7d500dc7b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_d6428ab71e76604d8394b11e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.059082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1406c2f1d1c5932ab446defb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_915139b2178bc9056cb65d18.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1f0bddb2f3176fd8a15331b9.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e64d8ab0f5f9b56c43be4564.woff')format("woff");}.ffd{font-family:ffd;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-74.880000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls8{letter-spacing:-2.520000px;}
.ls7{letter-spacing:-1.800000px;}
.ls11{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.924000px;}
.ls10{letter-spacing:-0.804000px;}
.ls14{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.252000px;}
.ls13{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.085200px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.138000px;}
.ls1{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.292200px;}
.ls2{letter-spacing:0.360000px;}
.ls16{letter-spacing:25.308000px;}
.ls15{letter-spacing:52.668000px;}
.ls18{letter-spacing:55.548000px;}
.lsd{letter-spacing:68.652000px;}
.ls0{letter-spacing:1064.460000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-54.018000px;}
.wsf{word-spacing:-54.000000px;}
.ws3{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws8{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws11{word-spacing:-13.284000px;}
.ws10{word-spacing:-13.248000px;}
.ws7{word-spacing:-13.140000px;}
.ws5{word-spacing:-11.700000px;}
.ws6{word-spacing:-10.980000px;}
.wsc{word-spacing:-10.905000px;}
.wse{word-spacing:-10.612800px;}
.wsb{word-spacing:-10.527600px;}
.ws2{word-spacing:-9.978240px;}
.wsd{word-spacing:-9.808800px;}
.ws4{word-spacing:-9.000000px;}
.wsa{word-spacing:0.000000px;}
._29{margin-left:-6.491040px;}
._2a{margin-left:-4.864320px;}
._1d{margin-left:-3.564000px;}
._8{margin-left:-2.502000px;}
._2{margin-left:-1.192320px;}
._0{width:1.254960px;}
._1{width:2.742960px;}
._9{width:4.594320px;}
._b{width:6.534000px;}
._a{width:7.776000px;}
._c{width:9.072000px;}
._d{width:10.247040px;}
._f{width:11.352960px;}
._1a{width:12.494880px;}
._e{width:14.904000px;}
._10{width:16.794000px;}
._15{width:18.414000px;}
._1e{width:19.606320px;}
._16{width:20.844000px;}
._17{width:21.857040px;}
._11{width:23.076000px;}
._12{width:24.570000px;}
._1c{width:25.611120px;}
._23{width:26.937360px;}
._14{width:28.034640px;}
._13{width:29.430000px;}
._20{width:31.266000px;}
._1f{width:32.346000px;}
._18{width:34.830000px;}
._19{width:36.199440px;}
._1b{width:37.294560px;}
._6{width:38.340000px;}
._28{width:39.428640px;}
._26{width:40.878000px;}
._22{width:45.369360px;}
._21{width:46.656000px;}
._5{width:47.838000px;}
._4{width:49.090320px;}
._24{width:54.216000px;}
._25{width:55.296000px;}
._2c{width:56.970000px;}
._2d{width:59.944320px;}
._27{width:63.342000px;}
._2f{width:66.028320px;}
._2e{width:67.356000px;}
._30{width:88.830000px;}
._32{width:90.169680px;}
._31{width:91.408320px;}
._33{width:158.598000px;}
._7{width:171.396000px;}
._2b{width:374.058000px;}
._3{width:432.814560px;}
.fc6{color:transparent;}
.fc5{color:rgb(79,129,189);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y26{bottom:5.580000px;}
.y152{bottom:22.530000px;}
.y15e{bottom:22.680000px;}
.y166{bottom:22.845000px;}
.y156{bottom:22.860000px;}
.y164{bottom:23.025000px;}
.y159{bottom:23.040000px;}
.y29{bottom:23.400000px;}
.y160{bottom:26.265000px;}
.y134{bottom:27.000000px;}
.y13e{bottom:27.045000px;}
.y139{bottom:27.180000px;}
.y136{bottom:27.360000px;}
.y13c{bottom:27.540000px;}
.y25{bottom:32.580000px;}
.y28{bottom:41.250000px;}
.y15f{bottom:44.085000px;}
.y24{bottom:50.400000px;}
.y57{bottom:58.500000px;}
.y23{bottom:68.220000px;}
.y4{bottom:77.220000px;}
.y15c{bottom:80.130000px;}
.y22{bottom:86.040000px;}
.y47{bottom:91.980000px;}
.y177{bottom:94.320000px;}
.y131{bottom:96.660000px;}
.y107{bottom:98.100000px;}
.y55{bottom:100.800000px;}
.y16f{bottom:103.140000px;}
.y21{bottom:103.860000px;}
.y6{bottom:105.120000px;}
.ye3{bottom:107.100000px;}
.y91{bottom:109.080000px;}
.y46{bottom:109.800000px;}
.y176{bottom:112.140000px;}
.y106{bottom:116.100000px;}
.y16{bottom:118.260000px;}
.y54{bottom:118.620000px;}
.ybd{bottom:118.800000px;}
.y16e{bottom:120.960000px;}
.y20{bottom:121.860000px;}
.y130{bottom:123.480000px;}
.ye2{bottom:125.100000px;}
.y90{bottom:126.900000px;}
.y45{bottom:127.620000px;}
.y175{bottom:129.960000px;}
.y162{bottom:130.845000px;}
.y105{bottom:133.920000px;}
.y53{bottom:136.620000px;}
.y16d{bottom:138.960000px;}
.y1f{bottom:139.680000px;}
.y15{bottom:142.740000px;}
.ye1{bottom:142.920000px;}
.y8f{bottom:144.720000px;}
.y44{bottom:145.620000px;}
.y174{bottom:147.960000px;}
.y12f{bottom:150.480000px;}
.y104{bottom:151.740000px;}
.y52{bottom:154.440000px;}
.y16c{bottom:156.780000px;}
.y1e{bottom:157.500000px;}
.ye0{bottom:160.740000px;}
.y43{bottom:163.440000px;}
.y173{bottom:165.780000px;}
.y154{bottom:166.680000px;}
.y14{bottom:167.220000px;}
.y103{bottom:169.560000px;}
.y8e{bottom:171.360000px;}
.y51{bottom:172.260000px;}
.y16b{bottom:174.600000px;}
.y1d{bottom:175.320000px;}
.y12e{bottom:177.300000px;}
.ydf{bottom:178.560000px;}
.y42{bottom:181.260000px;}
.y172{bottom:183.600000px;}
.y102{bottom:187.380000px;}
.y50{bottom:190.080000px;}
.ybc{bottom:190.260000px;}
.y16a{bottom:192.420000px;}
.y1c{bottom:193.140000px;}
.y13{bottom:193.860000px;}
.yde{bottom:196.380000px;}
.y8d{bottom:198.720000px;}
.y41{bottom:199.080000px;}
.y171{bottom:201.420000px;}
.y121{bottom:204.480000px;}
.y4f{bottom:207.930000px;}
.ybb{bottom:208.110000px;}
.y169{bottom:210.270000px;}
.y1b{bottom:211.005000px;}
.ydd{bottom:214.230000px;}
.y8c{bottom:216.750000px;}
.y40{bottom:216.930000px;}
.y1d7{bottom:217.290000px;}
.y170{bottom:219.270000px;}
.y12{bottom:221.085000px;}
.y120{bottom:222.330000px;}
.y4e{bottom:225.930000px;}
.y1a{bottom:229.005000px;}
.ydc{bottom:232.230000px;}
.y3f{bottom:234.930000px;}
.y168{bottom:235.290000px;}
.y8b{bottom:235.830000px;}
.y11{bottom:238.905000px;}
.y11f{bottom:240.150000px;}
.y4d{bottom:243.750000px;}
.y1d6{bottom:244.290000px;}
.y19{bottom:246.825000px;}
.y161{bottom:248.805000px;}
.ydb{bottom:250.050000px;}
.y3e{bottom:252.750000px;}
.y8a{bottom:253.830000px;}
.y4c{bottom:261.570000px;}
.y1a4{bottom:262.290000px;}
.y18{bottom:264.645000px;}
.y10{bottom:265.365000px;}
.y11e{bottom:267.150000px;}
.yda{bottom:267.870000px;}
.y3d{bottom:270.570000px;}
.y89{bottom:271.650000px;}
.y4b{bottom:279.390000px;}
.y1d5{bottom:279.570000px;}
.y1a3{bottom:280.290000px;}
.y17{bottom:283.005000px;}
.yf{bottom:283.185000px;}
.y167{bottom:284.805000px;}
.yd9{bottom:285.690000px;}
.y3c{bottom:288.390000px;}
.y88{bottom:289.650000px;}
.y11d{bottom:293.970000px;}
.y4a{bottom:297.210000px;}
.yba{bottom:297.390000px;}
.y1d4{bottom:297.570000px;}
.y1a2{bottom:298.290000px;}
.yd8{bottom:303.510000px;}
.y3b{bottom:306.210000px;}
.y12d{bottom:306.390000px;}
.y87{bottom:307.650000px;}
.y11c{bottom:311.790000px;}
.yb9{bottom:315.210000px;}
.y1d3{bottom:315.570000px;}
.y1a1{bottom:316.290000px;}
.y165{bottom:320.805000px;}
.y101{bottom:321.510000px;}
.y3a{bottom:324.030000px;}
.y86{bottom:326.730000px;}
.y11b{bottom:329.610000px;}
.yd7{bottom:330.510000px;}
.yb8{bottom:333.030000px;}
.y12c{bottom:333.210000px;}
.y1d2{bottom:333.570000px;}
.y1a0{bottom:334.290000px;}
.y100{bottom:339.330000px;}
.y39{bottom:342.030000px;}
.y85{bottom:344.550000px;}
.y11a{bottom:347.430000px;}
.yd6{bottom:348.330000px;}
.yb7{bottom:350.850000px;}
.y12b{bottom:351.030000px;}
.y1d1{bottom:351.570000px;}
.y19f{bottom:352.290000px;}
.y163{bottom:356.625000px;}
.yff{bottom:357.150000px;}
.y38{bottom:359.850000px;}
.y84{bottom:362.550000px;}
.yd5{bottom:366.150000px;}
.yb6{bottom:368.670000px;}
.y12a{bottom:368.850000px;}
.y1d0{bottom:369.570000px;}
.y19e{bottom:370.290000px;}
.y119{bottom:374.610000px;}
.yfe{bottom:374.970000px;}
.y37{bottom:377.670000px;}
.y83{bottom:381.630000px;}
.yd4{bottom:383.970000px;}
.yb5{bottom:386.670000px;}
.y1cf{bottom:387.570000px;}
.y19d{bottom:388.290000px;}
.y118{bottom:392.430000px;}
.y15b{bottom:392.625000px;}
.yfd{bottom:392.790000px;}
.y36{bottom:395.490000px;}
.y82{bottom:399.630000px;}
.yd3{bottom:401.790000px;}
.yb4{bottom:404.490000px;}
.y129{bottom:404.670000px;}
.y1ce{bottom:405.390000px;}
.y19c{bottom:406.290000px;}
.yfc{bottom:410.610000px;}
.y117{bottom:411.510000px;}
.y35{bottom:413.310000px;}
.y81{bottom:417.450000px;}
.yd2{bottom:419.610000px;}
.yb3{bottom:422.310000px;}
.y128{bottom:422.490000px;}
.y1cd{bottom:423.390000px;}
.y19b{bottom:424.110000px;}
.yfb{bottom:428.610000px;}
.y116{bottom:429.510000px;}
.y34{bottom:431.310000px;}
.y80{bottom:436.530000px;}
.yd1{bottom:437.610000px;}
.yb2{bottom:440.130000px;}
.y1cc{bottom:441.435000px;}
.y19a{bottom:442.155000px;}
.yfa{bottom:446.475000px;}
.y115{bottom:448.455000px;}
.y33{bottom:449.175000px;}
.y15d{bottom:449.715000px;}
.y127{bottom:450.795000px;}
.y7f{bottom:454.395000px;}
.yd0{bottom:455.475000px;}
.yb1{bottom:457.995000px;}
.y1cb{bottom:459.435000px;}
.y199{bottom:460.155000px;}
.y49{bottom:466.995000px;}
.ycf{bottom:473.295000px;}
.yb0{bottom:475.815000px;}
.y32{bottom:475.995000px;}
.y114{bottom:476.175000px;}
.y1ca{bottom:477.435000px;}
.y198{bottom:478.155000px;}
.y7e{bottom:482.115000px;}
.y48{bottom:484.815000px;}
.y153{bottom:485.715000px;}
.yce{bottom:491.115000px;}
.y31{bottom:493.815000px;}
.y113{bottom:493.995000px;}
.y1c9{bottom:495.435000px;}
.y197{bottom:496.155000px;}
.y7d{bottom:499.935000px;}
.yaf{bottom:502.815000px;}
.yf9{bottom:508.935000px;}
.y30{bottom:511.635000px;}
.y1c8{bottom:513.435000px;}
.y196{bottom:514.155000px;}
.y7c{bottom:517.935000px;}
.yae{bottom:520.635000px;}
.y112{bottom:520.815000px;}
.y15a{bottom:521.535000px;}
.yf8{bottom:526.935000px;}
.y2f{bottom:529.455000px;}
.y1c7{bottom:531.435000px;}
.y195{bottom:532.155000px;}
.y7b{bottom:535.755000px;}
.ycd{bottom:535.935000px;}
.yad{bottom:538.455000px;}
.y111{bottom:538.815000px;}
.yf7{bottom:544.755000px;}
.y2e{bottom:547.455000px;}
.y1c6{bottom:549.435000px;}
.y194{bottom:550.155000px;}
.y126{bottom:553.575000px;}
.ycc{bottom:553.755000px;}
.yac{bottom:556.275000px;}
.y110{bottom:556.635000px;}
.y158{bottom:557.535000px;}
.y7a{bottom:562.575000px;}
.y2d{bottom:565.275000px;}
.y1c5{bottom:567.435000px;}
.y193{bottom:568.155000px;}
.y125{bottom:571.395000px;}
.ycb{bottom:571.575000px;}
.yab{bottom:574.095000px;}
.y10f{bottom:574.455000px;}
.y79{bottom:580.395000px;}
.y2c{bottom:583.095000px;}
.y1c4{bottom:585.255000px;}
.y124{bottom:589.215000px;}
.yca{bottom:589.395000px;}
.yaa{bottom:592.095000px;}
.y10e{bottom:592.275000px;}
.y157{bottom:593.535000px;}
.y192{bottom:596.235000px;}
.y78{bottom:598.215000px;}
.y2b{bottom:600.915000px;}
.y1c3{bottom:603.255000px;}
.yc9{bottom:607.215000px;}
.ya9{bottom:609.915000px;}
.y10d{bottom:610.095000px;}
.y77{bottom:616.035000px;}
.y2a{bottom:620.175000px;}
.y1c2{bottom:621.255000px;}
.yc8{bottom:625.035000px;}
.y191{bottom:627.555000px;}
.ya8{bottom:627.735000px;}
.y10c{bottom:628.095000px;}
.y155{bottom:629.535000px;}
.y76{bottom:634.035000px;}
.y1c1{bottom:639.255000px;}
.yc7{bottom:643.035000px;}
.y190{bottom:645.375000px;}
.ya7{bottom:645.555000px;}
.y10b{bottom:645.915000px;}
.y27{bottom:646.815000px;}
.y75{bottom:651.855000px;}
.y1c0{bottom:657.255000px;}
.yc6{bottom:660.855000px;}
.y18f{bottom:663.195000px;}
.ya6{bottom:663.375000px;}
.y151{bottom:665.535000px;}
.y74{bottom:669.675000px;}
.y10a{bottom:674.175000px;}
.y1bf{bottom:675.255000px;}
.yc5{bottom:678.705000px;}
.ya5{bottom:681.225000px;}
.y73{bottom:687.525000px;}
.y18e{bottom:690.225000px;}
.y1be{bottom:693.285000px;}
.yc4{bottom:696.525000px;}
.ya4{bottom:699.225000px;}
.yf6{bottom:705.345000px;}
.y109{bottom:705.525000px;}
.y150{bottom:706.785000px;}
.y18d{bottom:708.045000px;}
.ye{bottom:710.025000px;}
.y1bd{bottom:711.285000px;}
.y72{bottom:714.345000px;}
.ya3{bottom:717.045000px;}
.yf5{bottom:723.165000px;}
.y108{bottom:723.345000px;}
.y147{bottom:724.965000px;}
.y18c{bottom:725.865000px;}
.y1bc{bottom:729.285000px;}
.y71{bottom:732.165000px;}
.yf4{bottom:741.165000px;}
.y146{bottom:742.785000px;}
.ya2{bottom:743.505000px;}
.y14f{bottom:743.685000px;}
.y1bb{bottom:747.285000px;}
.y70{bottom:750.165000px;}
.yf3{bottom:758.985000px;}
.yc3{bottom:759.165000px;}
.y145{bottom:760.605000px;}
.y1ba{bottom:765.105000px;}
.y6f{bottom:767.985000px;}
.y18b{bottom:770.145000px;}
.y14e{bottom:770.505000px;}
.ya1{bottom:772.125000px;}
.yf2{bottom:776.805000px;}
.yc2{bottom:776.985000px;}
.y1b9{bottom:783.105000px;}
.y144{bottom:787.065000px;}
.y14d{bottom:788.325000px;}
.y123{bottom:794.625000px;}
.y6e{bottom:794.805000px;}
.y18a{bottom:797.505000px;}
.y1b8{bottom:801.105000px;}
.ya0{bottom:803.445000px;}
.yf1{bottom:803.625000px;}
.y143{bottom:805.065000px;}
.y14c{bottom:806.145000px;}
.y122{bottom:812.445000px;}
.y6d{bottom:812.625000px;}
.y189{bottom:815.325000px;}
.y1b7{bottom:819.105000px;}
.y9f{bottom:821.445000px;}
.y14b{bottom:823.965000px;}
.y6c{bottom:830.445000px;}
.y142{bottom:832.245000px;}
.y188{bottom:833.145000px;}
.y1b6{bottom:837.105000px;}
.yf0{bottom:839.445000px;}
.y9e{bottom:848.265000px;}
.y6b{bottom:848.445000px;}
.y141{bottom:850.065000px;}
.y14a{bottom:850.605000px;}
.y187{bottom:850.965000px;}
.y1b5{bottom:855.105000px;}
.yef{bottom:857.265000px;}
.y9d{bottom:866.085000px;}
.y6a{bottom:866.265000px;}
.y140{bottom:867.885000px;}
.y149{bottom:868.425000px;}
.y186{bottom:868.785000px;}
.y1b4{bottom:873.105000px;}
.yee{bottom:875.085000px;}
.y9c{bottom:883.905000px;}
.y69{bottom:884.085000px;}
.y13f{bottom:885.885000px;}
.y148{bottom:886.245000px;}
.y185{bottom:886.605000px;}
.y1b3{bottom:891.105000px;}
.yed{bottom:892.905000px;}
.y9b{bottom:901.725000px;}
.y68{bottom:901.905000px;}
.y184{bottom:904.605000px;}
.y13d{bottom:908.565000px;}
.y1b2{bottom:909.105000px;}
.yec{bottom:910.770000px;}
.yc1{bottom:910.950000px;}
.y67{bottom:919.770000px;}
.y183{bottom:922.470000px;}
.y1b1{bottom:927.150000px;}
.y9a{bottom:928.230000px;}
.yeb{bottom:928.590000px;}
.yc0{bottom:928.770000px;}
.y66{bottom:937.590000px;}
.y182{bottom:940.290000px;}
.y1b0{bottom:944.970000px;}
.ybf{bottom:946.590000px;}
.y13b{bottom:948.930000px;}
.y65{bottom:955.590000px;}
.y181{bottom:958.110000px;}
.y1af{bottom:962.970000px;}
.yea{bottom:964.410000px;}
.ybe{bottom:964.590000px;}
.y99{bottom:973.410000px;}
.y180{bottom:975.930000px;}
.y1ae{bottom:980.970000px;}
.ye9{bottom:982.230000px;}
.y64{bottom:982.410000px;}
.y13a{bottom:989.430000px;}
.y98{bottom:991.230000px;}
.y1ad{bottom:998.970000px;}
.ye8{bottom:1000.050000px;}
.y63{bottom:1000.230000px;}
.y17f{bottom:1002.930000px;}
.y97{bottom:1009.050000px;}
.y1ac{bottom:1016.970000px;}
.ye7{bottom:1017.870000px;}
.y62{bottom:1018.050000px;}
.y17e{bottom:1020.750000px;}
.y96{bottom:1026.870000px;}
.yd{bottom:1027.230000px;}
.y138{bottom:1029.750000px;}
.y1ab{bottom:1034.970000px;}
.y61{bottom:1035.870000px;}
.y95{bottom:1044.870000px;}
.y17d{bottom:1049.010000px;}
.y1aa{bottom:1052.970000px;}
.ye6{bottom:1053.690000px;}
.y60{bottom:1053.870000px;}
.yc{bottom:1054.050000px;}
.y94{bottom:1062.690000px;}
.y137{bottom:1069.890000px;}
.y1a9{bottom:1070.970000px;}
.ye5{bottom:1071.510000px;}
.y5f{bottom:1071.690000px;}
.yb{bottom:1074.570000px;}
.y17c{bottom:1080.330000px;}
.y93{bottom:1080.510000px;}
.y1a8{bottom:1088.970000px;}
.y5e{bottom:1089.510000px;}
.ye4{bottom:1097.970000px;}
.y17b{bottom:1098.150000px;}
.y92{bottom:1098.330000px;}
.ya{bottom:1104.450000px;}
.y1a7{bottom:1106.970000px;}
.y5d{bottom:1107.330000px;}
.y135{bottom:1110.210000px;}
.y5{bottom:1112.940000px;}
.y17a{bottom:1115.970000px;}
.y1a6{bottom:1124.790000px;}
.y5c{bottom:1125.150000px;}
.y9{bottom:1132.350000px;}
.y1a5{bottom:1142.790000px;}
.y5b{bottom:1142.970000px;}
.y133{bottom:1150.740000px;}
.y179{bottom:1160.820000px;}
.y5a{bottom:1161.000000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y59{bottom:1178.820000px;}
.y2{bottom:1181.520000px;}
.y178{bottom:1187.280000px;}
.y7{bottom:1191.240000px;}
.y132{bottom:1196.280000px;}
.y58{bottom:1196.640000px;}
.y1{bottom:1196.820000px;}
.y56{bottom:1224.540000px;}
.h1e{height:35.085000px;}
.h1c{height:35.130000px;}
.h1f{height:35.265000px;}
.hb{height:35.332031px;}
.h12{height:37.705078px;}
.h18{height:39.405000px;}
.h17{height:39.585000px;}
.h15{height:39.600000px;}
.h1a{height:39.622500px;}
.h16{height:39.630000px;}
.h19{height:39.765000px;}
.h13{height:40.843828px;}
.h24{height:44.507812px;}
.h5{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.h1b{height:52.971680px;}
.he{height:52.998047px;}
.h23{height:53.709961px;}
.hd{height:54.421875px;}
.hf{height:55.291992px;}
.h14{height:55.503491px;}
.h21{height:56.361000px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.h10{height:62.490000px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h11{height:72.562500px;}
.h9{height:84.898125px;}
.h20{height:92.361000px;}
.h22{height:143.085000px;}
.h6{height:149.940000px;}
.h1d{height:178.905000px;}
.hc{height:304.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w9{width:46.249500px;}
.wd{width:48.045000px;}
.wb{width:132.285000px;}
.wc{width:142.041000px;}
.w3{width:211.933500px;}
.w8{width:231.900000px;}
.w6{width:233.479500px;}
.w7{width:234.030000px;}
.wa{width:302.820000px;}
.w4{width:541.365000px;}
.w5{width:754.198500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.098500px;}
.x3{left:12.090000px;}
.x1{left:54.000000px;}
.xe{left:55.800000px;}
.x22{left:57.060000px;}
.xb{left:69.481500px;}
.x6{left:77.940000px;}
.x16{left:81.000000px;}
.x21{left:84.060000px;}
.x15{left:95.256000px;}
.xd{left:97.236000px;}
.x17{left:108.036000px;}
.x1c{left:109.306500px;}
.x1b{left:134.316000px;}
.x1d{left:156.285000px;}
.x7{left:243.210000px;}
.xa{left:282.675000px;}
.x9{left:286.995000px;}
.x19{left:321.195000px;}
.x8{left:330.375000px;}
.x14{left:438.195000px;}
.x18{left:446.505000px;}
.x1e{left:459.840000px;}
.x12{left:473.505000px;}
.xf{left:475.305000px;}
.x23{left:500.505000px;}
.x11{left:514.725000px;}
.x10{left:516.705000px;}
.x24{left:527.505000px;}
.x25{left:554.505000px;}
.x1a{left:565.140000px;}
.x26{left:581.505000px;}
.x1f{left:592.860000px;}
.x13{left:680.550000px;}
.x20{left:735.810000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls8{letter-spacing:-2.240000pt;}
.ls7{letter-spacing:-1.600000pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.821333pt;}
.ls10{letter-spacing:-0.714667pt;}
.ls14{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.224000pt;}
.ls13{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.075733pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.122667pt;}
.ls1{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.259733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls16{letter-spacing:22.496000pt;}
.ls15{letter-spacing:46.816000pt;}
.ls18{letter-spacing:49.376000pt;}
.lsd{letter-spacing:61.024000pt;}
.ls0{letter-spacing:946.186667pt;}
.ws12{word-spacing:-48.016000pt;}
.wsf{word-spacing:-48.000000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws8{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.808000pt;}
.ws10{word-spacing:-11.776000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws5{word-spacing:-10.400000pt;}
.ws6{word-spacing:-9.760000pt;}
.wsc{word-spacing:-9.693333pt;}
.wse{word-spacing:-9.433600pt;}
.wsb{word-spacing:-9.357867pt;}
.ws2{word-spacing:-8.869547pt;}
.wsd{word-spacing:-8.718933pt;}
.ws4{word-spacing:-8.000000pt;}
.wsa{word-spacing:0.000000pt;}
._29{margin-left:-5.769813pt;}
._2a{margin-left:-4.323840pt;}
._1d{margin-left:-3.168000pt;}
._8{margin-left:-2.224000pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._1{width:2.438187pt;}
._9{width:4.083840pt;}
._b{width:5.808000pt;}
._a{width:6.912000pt;}
._c{width:8.064000pt;}
._d{width:9.108480pt;}
._f{width:10.091520pt;}
._1a{width:11.106560pt;}
._e{width:13.248000pt;}
._10{width:14.928000pt;}
._15{width:16.368000pt;}
._1e{width:17.427840pt;}
._16{width:18.528000pt;}
._17{width:19.428480pt;}
._11{width:20.512000pt;}
._12{width:21.840000pt;}
._1c{width:22.765440pt;}
._23{width:23.944320pt;}
._14{width:24.919680pt;}
._13{width:26.160000pt;}
._20{width:27.792000pt;}
._1f{width:28.752000pt;}
._18{width:30.960000pt;}
._19{width:32.177280pt;}
._1b{width:33.150720pt;}
._6{width:34.080000pt;}
._28{width:35.047680pt;}
._26{width:36.336000pt;}
._22{width:40.328320pt;}
._21{width:41.472000pt;}
._5{width:42.522667pt;}
._4{width:43.635840pt;}
._24{width:48.192000pt;}
._25{width:49.152000pt;}
._2c{width:50.640000pt;}
._2d{width:53.283840pt;}
._27{width:56.304000pt;}
._2f{width:58.691840pt;}
._2e{width:59.872000pt;}
._30{width:78.960000pt;}
._32{width:80.150827pt;}
._31{width:81.251840pt;}
._33{width:140.976000pt;}
._7{width:152.352000pt;}
._2b{width:332.496000pt;}
._3{width:384.724053pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:4.960000pt;}
.y152{bottom:20.026667pt;}
.y15e{bottom:20.160000pt;}
.y166{bottom:20.306667pt;}
.y156{bottom:20.320000pt;}
.y164{bottom:20.466667pt;}
.y159{bottom:20.480000pt;}
.y29{bottom:20.800000pt;}
.y160{bottom:23.346667pt;}
.y134{bottom:24.000000pt;}
.y13e{bottom:24.040000pt;}
.y139{bottom:24.160000pt;}
.y136{bottom:24.320000pt;}
.y13c{bottom:24.480000pt;}
.y25{bottom:28.960000pt;}
.y28{bottom:36.666667pt;}
.y15f{bottom:39.186667pt;}
.y24{bottom:44.800000pt;}
.y57{bottom:52.000000pt;}
.y23{bottom:60.640000pt;}
.y4{bottom:68.640000pt;}
.y15c{bottom:71.226667pt;}
.y22{bottom:76.480000pt;}
.y47{bottom:81.760000pt;}
.y177{bottom:83.840000pt;}
.y131{bottom:85.920000pt;}
.y107{bottom:87.200000pt;}
.y55{bottom:89.600000pt;}
.y16f{bottom:91.680000pt;}
.y21{bottom:92.320000pt;}
.y6{bottom:93.440000pt;}
.ye3{bottom:95.200000pt;}
.y91{bottom:96.960000pt;}
.y46{bottom:97.600000pt;}
.y176{bottom:99.680000pt;}
.y106{bottom:103.200000pt;}
.y16{bottom:105.120000pt;}
.y54{bottom:105.440000pt;}
.ybd{bottom:105.600000pt;}
.y16e{bottom:107.520000pt;}
.y20{bottom:108.320000pt;}
.y130{bottom:109.760000pt;}
.ye2{bottom:111.200000pt;}
.y90{bottom:112.800000pt;}
.y45{bottom:113.440000pt;}
.y175{bottom:115.520000pt;}
.y162{bottom:116.306667pt;}
.y105{bottom:119.040000pt;}
.y53{bottom:121.440000pt;}
.y16d{bottom:123.520000pt;}
.y1f{bottom:124.160000pt;}
.y15{bottom:126.880000pt;}
.ye1{bottom:127.040000pt;}
.y8f{bottom:128.640000pt;}
.y44{bottom:129.440000pt;}
.y174{bottom:131.520000pt;}
.y12f{bottom:133.760000pt;}
.y104{bottom:134.880000pt;}
.y52{bottom:137.280000pt;}
.y16c{bottom:139.360000pt;}
.y1e{bottom:140.000000pt;}
.ye0{bottom:142.880000pt;}
.y43{bottom:145.280000pt;}
.y173{bottom:147.360000pt;}
.y154{bottom:148.160000pt;}
.y14{bottom:148.640000pt;}
.y103{bottom:150.720000pt;}
.y8e{bottom:152.320000pt;}
.y51{bottom:153.120000pt;}
.y16b{bottom:155.200000pt;}
.y1d{bottom:155.840000pt;}
.y12e{bottom:157.600000pt;}
.ydf{bottom:158.720000pt;}
.y42{bottom:161.120000pt;}
.y172{bottom:163.200000pt;}
.y102{bottom:166.560000pt;}
.y50{bottom:168.960000pt;}
.ybc{bottom:169.120000pt;}
.y16a{bottom:171.040000pt;}
.y1c{bottom:171.680000pt;}
.y13{bottom:172.320000pt;}
.yde{bottom:174.560000pt;}
.y8d{bottom:176.640000pt;}
.y41{bottom:176.960000pt;}
.y171{bottom:179.040000pt;}
.y121{bottom:181.760000pt;}
.y4f{bottom:184.826667pt;}
.ybb{bottom:184.986667pt;}
.y169{bottom:186.906667pt;}
.y1b{bottom:187.560000pt;}
.ydd{bottom:190.426667pt;}
.y8c{bottom:192.666667pt;}
.y40{bottom:192.826667pt;}
.y1d7{bottom:193.146667pt;}
.y170{bottom:194.906667pt;}
.y12{bottom:196.520000pt;}
.y120{bottom:197.626667pt;}
.y4e{bottom:200.826667pt;}
.y1a{bottom:203.560000pt;}
.ydc{bottom:206.426667pt;}
.y3f{bottom:208.826667pt;}
.y168{bottom:209.146667pt;}
.y8b{bottom:209.626667pt;}
.y11{bottom:212.360000pt;}
.y11f{bottom:213.466667pt;}
.y4d{bottom:216.666667pt;}
.y1d6{bottom:217.146667pt;}
.y19{bottom:219.400000pt;}
.y161{bottom:221.160000pt;}
.ydb{bottom:222.266667pt;}
.y3e{bottom:224.666667pt;}
.y8a{bottom:225.626667pt;}
.y4c{bottom:232.506667pt;}
.y1a4{bottom:233.146667pt;}
.y18{bottom:235.240000pt;}
.y10{bottom:235.880000pt;}
.y11e{bottom:237.466667pt;}
.yda{bottom:238.106667pt;}
.y3d{bottom:240.506667pt;}
.y89{bottom:241.466667pt;}
.y4b{bottom:248.346667pt;}
.y1d5{bottom:248.506667pt;}
.y1a3{bottom:249.146667pt;}
.y17{bottom:251.560000pt;}
.yf{bottom:251.720000pt;}
.y167{bottom:253.160000pt;}
.yd9{bottom:253.946667pt;}
.y3c{bottom:256.346667pt;}
.y88{bottom:257.466667pt;}
.y11d{bottom:261.306667pt;}
.y4a{bottom:264.186667pt;}
.yba{bottom:264.346667pt;}
.y1d4{bottom:264.506667pt;}
.y1a2{bottom:265.146667pt;}
.yd8{bottom:269.786667pt;}
.y3b{bottom:272.186667pt;}
.y12d{bottom:272.346667pt;}
.y87{bottom:273.466667pt;}
.y11c{bottom:277.146667pt;}
.yb9{bottom:280.186667pt;}
.y1d3{bottom:280.506667pt;}
.y1a1{bottom:281.146667pt;}
.y165{bottom:285.160000pt;}
.y101{bottom:285.786667pt;}
.y3a{bottom:288.026667pt;}
.y86{bottom:290.426667pt;}
.y11b{bottom:292.986667pt;}
.yd7{bottom:293.786667pt;}
.yb8{bottom:296.026667pt;}
.y12c{bottom:296.186667pt;}
.y1d2{bottom:296.506667pt;}
.y1a0{bottom:297.146667pt;}
.y100{bottom:301.626667pt;}
.y39{bottom:304.026667pt;}
.y85{bottom:306.266667pt;}
.y11a{bottom:308.826667pt;}
.yd6{bottom:309.626667pt;}
.yb7{bottom:311.866667pt;}
.y12b{bottom:312.026667pt;}
.y1d1{bottom:312.506667pt;}
.y19f{bottom:313.146667pt;}
.y163{bottom:317.000000pt;}
.yff{bottom:317.466667pt;}
.y38{bottom:319.866667pt;}
.y84{bottom:322.266667pt;}
.yd5{bottom:325.466667pt;}
.yb6{bottom:327.706667pt;}
.y12a{bottom:327.866667pt;}
.y1d0{bottom:328.506667pt;}
.y19e{bottom:329.146667pt;}
.y119{bottom:332.986667pt;}
.yfe{bottom:333.306667pt;}
.y37{bottom:335.706667pt;}
.y83{bottom:339.226667pt;}
.yd4{bottom:341.306667pt;}
.yb5{bottom:343.706667pt;}
.y1cf{bottom:344.506667pt;}
.y19d{bottom:345.146667pt;}
.y118{bottom:348.826667pt;}
.y15b{bottom:349.000000pt;}
.yfd{bottom:349.146667pt;}
.y36{bottom:351.546667pt;}
.y82{bottom:355.226667pt;}
.yd3{bottom:357.146667pt;}
.yb4{bottom:359.546667pt;}
.y129{bottom:359.706667pt;}
.y1ce{bottom:360.346667pt;}
.y19c{bottom:361.146667pt;}
.yfc{bottom:364.986667pt;}
.y117{bottom:365.786667pt;}
.y35{bottom:367.386667pt;}
.y81{bottom:371.066667pt;}
.yd2{bottom:372.986667pt;}
.yb3{bottom:375.386667pt;}
.y128{bottom:375.546667pt;}
.y1cd{bottom:376.346667pt;}
.y19b{bottom:376.986667pt;}
.yfb{bottom:380.986667pt;}
.y116{bottom:381.786667pt;}
.y34{bottom:383.386667pt;}
.y80{bottom:388.026667pt;}
.yd1{bottom:388.986667pt;}
.yb2{bottom:391.226667pt;}
.y1cc{bottom:392.386667pt;}
.y19a{bottom:393.026667pt;}
.yfa{bottom:396.866667pt;}
.y115{bottom:398.626667pt;}
.y33{bottom:399.266667pt;}
.y15d{bottom:399.746667pt;}
.y127{bottom:400.706667pt;}
.y7f{bottom:403.906667pt;}
.yd0{bottom:404.866667pt;}
.yb1{bottom:407.106667pt;}
.y1cb{bottom:408.386667pt;}
.y199{bottom:409.026667pt;}
.y49{bottom:415.106667pt;}
.ycf{bottom:420.706667pt;}
.yb0{bottom:422.946667pt;}
.y32{bottom:423.106667pt;}
.y114{bottom:423.266667pt;}
.y1ca{bottom:424.386667pt;}
.y198{bottom:425.026667pt;}
.y7e{bottom:428.546667pt;}
.y48{bottom:430.946667pt;}
.y153{bottom:431.746667pt;}
.yce{bottom:436.546667pt;}
.y31{bottom:438.946667pt;}
.y113{bottom:439.106667pt;}
.y1c9{bottom:440.386667pt;}
.y197{bottom:441.026667pt;}
.y7d{bottom:444.386667pt;}
.yaf{bottom:446.946667pt;}
.yf9{bottom:452.386667pt;}
.y30{bottom:454.786667pt;}
.y1c8{bottom:456.386667pt;}
.y196{bottom:457.026667pt;}
.y7c{bottom:460.386667pt;}
.yae{bottom:462.786667pt;}
.y112{bottom:462.946667pt;}
.y15a{bottom:463.586667pt;}
.yf8{bottom:468.386667pt;}
.y2f{bottom:470.626667pt;}
.y1c7{bottom:472.386667pt;}
.y195{bottom:473.026667pt;}
.y7b{bottom:476.226667pt;}
.ycd{bottom:476.386667pt;}
.yad{bottom:478.626667pt;}
.y111{bottom:478.946667pt;}
.yf7{bottom:484.226667pt;}
.y2e{bottom:486.626667pt;}
.y1c6{bottom:488.386667pt;}
.y194{bottom:489.026667pt;}
.y126{bottom:492.066667pt;}
.ycc{bottom:492.226667pt;}
.yac{bottom:494.466667pt;}
.y110{bottom:494.786667pt;}
.y158{bottom:495.586667pt;}
.y7a{bottom:500.066667pt;}
.y2d{bottom:502.466667pt;}
.y1c5{bottom:504.386667pt;}
.y193{bottom:505.026667pt;}
.y125{bottom:507.906667pt;}
.ycb{bottom:508.066667pt;}
.yab{bottom:510.306667pt;}
.y10f{bottom:510.626667pt;}
.y79{bottom:515.906667pt;}
.y2c{bottom:518.306667pt;}
.y1c4{bottom:520.226667pt;}
.y124{bottom:523.746667pt;}
.yca{bottom:523.906667pt;}
.yaa{bottom:526.306667pt;}
.y10e{bottom:526.466667pt;}
.y157{bottom:527.586667pt;}
.y192{bottom:529.986667pt;}
.y78{bottom:531.746667pt;}
.y2b{bottom:534.146667pt;}
.y1c3{bottom:536.226667pt;}
.yc9{bottom:539.746667pt;}
.ya9{bottom:542.146667pt;}
.y10d{bottom:542.306667pt;}
.y77{bottom:547.586667pt;}
.y2a{bottom:551.266667pt;}
.y1c2{bottom:552.226667pt;}
.yc8{bottom:555.586667pt;}
.y191{bottom:557.826667pt;}
.ya8{bottom:557.986667pt;}
.y10c{bottom:558.306667pt;}
.y155{bottom:559.586667pt;}
.y76{bottom:563.586667pt;}
.y1c1{bottom:568.226667pt;}
.yc7{bottom:571.586667pt;}
.y190{bottom:573.666667pt;}
.ya7{bottom:573.826667pt;}
.y10b{bottom:574.146667pt;}
.y27{bottom:574.946667pt;}
.y75{bottom:579.426667pt;}
.y1c0{bottom:584.226667pt;}
.yc6{bottom:587.426667pt;}
.y18f{bottom:589.506667pt;}
.ya6{bottom:589.666667pt;}
.y151{bottom:591.586667pt;}
.y74{bottom:595.266667pt;}
.y10a{bottom:599.266667pt;}
.y1bf{bottom:600.226667pt;}
.yc5{bottom:603.293333pt;}
.ya5{bottom:605.533333pt;}
.y73{bottom:611.133333pt;}
.y18e{bottom:613.533333pt;}
.y1be{bottom:616.253333pt;}
.yc4{bottom:619.133333pt;}
.ya4{bottom:621.533333pt;}
.yf6{bottom:626.973333pt;}
.y109{bottom:627.133333pt;}
.y150{bottom:628.253333pt;}
.y18d{bottom:629.373333pt;}
.ye{bottom:631.133333pt;}
.y1bd{bottom:632.253333pt;}
.y72{bottom:634.973333pt;}
.ya3{bottom:637.373333pt;}
.yf5{bottom:642.813333pt;}
.y108{bottom:642.973333pt;}
.y147{bottom:644.413333pt;}
.y18c{bottom:645.213333pt;}
.y1bc{bottom:648.253333pt;}
.y71{bottom:650.813333pt;}
.yf4{bottom:658.813333pt;}
.y146{bottom:660.253333pt;}
.ya2{bottom:660.893333pt;}
.y14f{bottom:661.053333pt;}
.y1bb{bottom:664.253333pt;}
.y70{bottom:666.813333pt;}
.yf3{bottom:674.653333pt;}
.yc3{bottom:674.813333pt;}
.y145{bottom:676.093333pt;}
.y1ba{bottom:680.093333pt;}
.y6f{bottom:682.653333pt;}
.y18b{bottom:684.573333pt;}
.y14e{bottom:684.893333pt;}
.ya1{bottom:686.333333pt;}
.yf2{bottom:690.493333pt;}
.yc2{bottom:690.653333pt;}
.y1b9{bottom:696.093333pt;}
.y144{bottom:699.613333pt;}
.y14d{bottom:700.733333pt;}
.y123{bottom:706.333333pt;}
.y6e{bottom:706.493333pt;}
.y18a{bottom:708.893333pt;}
.y1b8{bottom:712.093333pt;}
.ya0{bottom:714.173333pt;}
.yf1{bottom:714.333333pt;}
.y143{bottom:715.613333pt;}
.y14c{bottom:716.573333pt;}
.y122{bottom:722.173333pt;}
.y6d{bottom:722.333333pt;}
.y189{bottom:724.733333pt;}
.y1b7{bottom:728.093333pt;}
.y9f{bottom:730.173333pt;}
.y14b{bottom:732.413333pt;}
.y6c{bottom:738.173333pt;}
.y142{bottom:739.773333pt;}
.y188{bottom:740.573333pt;}
.y1b6{bottom:744.093333pt;}
.yf0{bottom:746.173333pt;}
.y9e{bottom:754.013333pt;}
.y6b{bottom:754.173333pt;}
.y141{bottom:755.613333pt;}
.y14a{bottom:756.093333pt;}
.y187{bottom:756.413333pt;}
.y1b5{bottom:760.093333pt;}
.yef{bottom:762.013333pt;}
.y9d{bottom:769.853333pt;}
.y6a{bottom:770.013333pt;}
.y140{bottom:771.453333pt;}
.y149{bottom:771.933333pt;}
.y186{bottom:772.253333pt;}
.y1b4{bottom:776.093333pt;}
.yee{bottom:777.853333pt;}
.y9c{bottom:785.693333pt;}
.y69{bottom:785.853333pt;}
.y13f{bottom:787.453333pt;}
.y148{bottom:787.773333pt;}
.y185{bottom:788.093333pt;}
.y1b3{bottom:792.093333pt;}
.yed{bottom:793.693333pt;}
.y9b{bottom:801.533333pt;}
.y68{bottom:801.693333pt;}
.y184{bottom:804.093333pt;}
.y13d{bottom:807.613333pt;}
.y1b2{bottom:808.093333pt;}
.yec{bottom:809.573333pt;}
.yc1{bottom:809.733333pt;}
.y67{bottom:817.573333pt;}
.y183{bottom:819.973333pt;}
.y1b1{bottom:824.133333pt;}
.y9a{bottom:825.093333pt;}
.yeb{bottom:825.413333pt;}
.yc0{bottom:825.573333pt;}
.y66{bottom:833.413333pt;}
.y182{bottom:835.813333pt;}
.y1b0{bottom:839.973333pt;}
.ybf{bottom:841.413333pt;}
.y13b{bottom:843.493333pt;}
.y65{bottom:849.413333pt;}
.y181{bottom:851.653333pt;}
.y1af{bottom:855.973333pt;}
.yea{bottom:857.253333pt;}
.ybe{bottom:857.413333pt;}
.y99{bottom:865.253333pt;}
.y180{bottom:867.493333pt;}
.y1ae{bottom:871.973333pt;}
.ye9{bottom:873.093333pt;}
.y64{bottom:873.253333pt;}
.y13a{bottom:879.493333pt;}
.y98{bottom:881.093333pt;}
.y1ad{bottom:887.973333pt;}
.ye8{bottom:888.933333pt;}
.y63{bottom:889.093333pt;}
.y17f{bottom:891.493333pt;}
.y97{bottom:896.933333pt;}
.y1ac{bottom:903.973333pt;}
.ye7{bottom:904.773333pt;}
.y62{bottom:904.933333pt;}
.y17e{bottom:907.333333pt;}
.y96{bottom:912.773333pt;}
.yd{bottom:913.093333pt;}
.y138{bottom:915.333333pt;}
.y1ab{bottom:919.973333pt;}
.y61{bottom:920.773333pt;}
.y95{bottom:928.773333pt;}
.y17d{bottom:932.453333pt;}
.y1aa{bottom:935.973333pt;}
.ye6{bottom:936.613333pt;}
.y60{bottom:936.773333pt;}
.yc{bottom:936.933333pt;}
.y94{bottom:944.613333pt;}
.y137{bottom:951.013333pt;}
.y1a9{bottom:951.973333pt;}
.ye5{bottom:952.453333pt;}
.y5f{bottom:952.613333pt;}
.yb{bottom:955.173333pt;}
.y17c{bottom:960.293333pt;}
.y93{bottom:960.453333pt;}
.y1a8{bottom:967.973333pt;}
.y5e{bottom:968.453333pt;}
.ye4{bottom:975.973333pt;}
.y17b{bottom:976.133333pt;}
.y92{bottom:976.293333pt;}
.ya{bottom:981.733333pt;}
.y1a7{bottom:983.973333pt;}
.y5d{bottom:984.293333pt;}
.y135{bottom:986.853333pt;}
.y5{bottom:989.280000pt;}
.y17a{bottom:991.973333pt;}
.y1a6{bottom:999.813333pt;}
.y5c{bottom:1000.133333pt;}
.y9{bottom:1006.533333pt;}
.y1a5{bottom:1015.813333pt;}
.y5b{bottom:1015.973333pt;}
.y133{bottom:1022.880000pt;}
.y179{bottom:1031.840000pt;}
.y5a{bottom:1032.000000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y59{bottom:1047.840000pt;}
.y2{bottom:1050.240000pt;}
.y178{bottom:1055.360000pt;}
.y7{bottom:1058.880000pt;}
.y132{bottom:1063.360000pt;}
.y58{bottom:1063.680000pt;}
.y1{bottom:1063.840000pt;}
.y56{bottom:1088.480000pt;}
.h1e{height:31.186667pt;}
.h1c{height:31.226667pt;}
.h1f{height:31.346667pt;}
.hb{height:31.406250pt;}
.h12{height:33.515625pt;}
.h18{height:35.026667pt;}
.h17{height:35.186667pt;}
.h15{height:35.200000pt;}
.h1a{height:35.220000pt;}
.h16{height:35.226667pt;}
.h19{height:35.346667pt;}
.h13{height:36.305625pt;}
.h24{height:39.562500pt;}
.h5{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.h1b{height:47.085938pt;}
.he{height:47.109375pt;}
.h23{height:47.742188pt;}
.hd{height:48.375000pt;}
.hf{height:49.148438pt;}
.h14{height:49.336436pt;}
.h21{height:50.098667pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.h10{height:55.546667pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h11{height:64.500000pt;}
.h9{height:75.465000pt;}
.h20{height:82.098667pt;}
.h22{height:127.186667pt;}
.h6{height:133.280000pt;}
.h1d{height:159.026667pt;}
.hc{height:270.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w9{width:41.110667pt;}
.wd{width:42.706667pt;}
.wb{width:117.586667pt;}
.wc{width:126.258667pt;}
.w3{width:188.385333pt;}
.w8{width:206.133333pt;}
.w6{width:207.537333pt;}
.w7{width:208.026667pt;}
.wa{width:269.173333pt;}
.w4{width:481.213333pt;}
.w5{width:670.398667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.198667pt;}
.x3{left:10.746667pt;}
.x1{left:48.000000pt;}
.xe{left:49.600000pt;}
.x22{left:50.720000pt;}
.xb{left:61.761333pt;}
.x6{left:69.280000pt;}
.x16{left:72.000000pt;}
.x21{left:74.720000pt;}
.x15{left:84.672000pt;}
.xd{left:86.432000pt;}
.x17{left:96.032000pt;}
.x1c{left:97.161333pt;}
.x1b{left:119.392000pt;}
.x1d{left:138.920000pt;}
.x7{left:216.186667pt;}
.xa{left:251.266667pt;}
.x9{left:255.106667pt;}
.x19{left:285.506667pt;}
.x8{left:293.666667pt;}
.x14{left:389.506667pt;}
.x18{left:396.893333pt;}
.x1e{left:408.746667pt;}
.x12{left:420.893333pt;}
.xf{left:422.493333pt;}
.x23{left:444.893333pt;}
.x11{left:457.533333pt;}
.x10{left:459.293333pt;}
.x24{left:468.893333pt;}
.x25{left:492.893333pt;}
.x1a{left:502.346667pt;}
.x26{left:516.893333pt;}
.x1f{left:526.986667pt;}
.x13{left:604.933333pt;}
.x20{left:654.053333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  