
    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_cebea68274193a824bacac31.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.952637;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_f59a8515dbcc2d3a76aa5a5e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_074bc7be45cf034b9392dde1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_1275cf12c86921f823718cb0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.864258;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);}
.v3{vertical-align:-12.000000px;}
.v2{vertical-align:-9.600060px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.000040px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000060px;}
.lsb{letter-spacing:0.000240px;}
.ls3{letter-spacing:0.060060px;}
.ls1{letter-spacing:6.006000px;}
.ls2{letter-spacing:141.562320px;}
.ls6{letter-spacing:184.913100px;}
.ls7{letter-spacing:241.889040px;}
.ls5{letter-spacing:241.889100px;}
.lsa{letter-spacing:241.937100px;}
.ls9{letter-spacing:246.593040px;}
.ls4{letter-spacing:246.641040px;}
.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;}
}
.ws5{word-spacing:-27.690000px;}
.ws16{word-spacing:-21.684000px;}
.ws3{word-spacing:-20.016000px;}
.ws2{word-spacing:-16.680000px;}
.ws17{word-spacing:-15.012000px;}
.wsc{word-spacing:-13.344000px;}
.ws1{word-spacing:-11.676000px;}
.ws0{word-spacing:-10.008000px;}
.wsd{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:90.826260px;}
.ws7{word-spacing:90.826320px;}
.ws8{word-spacing:130.858260px;}
.ws12{word-spacing:189.184980px;}
.wsf{word-spacing:189.185040px;}
.wsb{word-spacing:220.913100px;}
.wsa{word-spacing:1285.137960px;}
.ws6{word-spacing:1285.185960px;}
.ws11{word-spacing:2497.977540px;}
.ws15{word-spacing:2499.945480px;}
.wse{word-spacing:2580.633480px;}
.ws13{word-spacing:2582.601480px;}
.ws10{word-spacing:2639.337480px;}
.ws14{word-spacing:2641.305540px;}
._f{margin-left:-7.506420px;}
._1{margin-left:-6.144000px;}
._2{margin-left:-4.464000px;}
._b{margin-left:-2.844000px;}
._8{margin-left:-1.776000px;}
._5{width:1.728000px;}
._7{width:3.312000px;}
._3{width:4.380000px;}
._0{width:6.084000px;}
._4{width:7.584000px;}
._6{width:8.832000px;}
._9{width:9.888000px;}
._a{width:11.136000px;}
._e{width:12.144000px;}
._11{width:13.150500px;}
._5a{width:14.466000px;}
._d{width:15.504000px;}
._c{width:22.860000px;}
._16{width:104.170320px;}
._19{width:144.202320px;}
._39{width:202.529100px;}
._5d{width:206.033040px;}
._36{width:222.545040px;}
._5e{width:229.169040px;}
._57{width:235.688280px;}
._28{width:412.881840px;}
._25{width:655.930020px;}
._2b{width:661.257960px;}
._34{width:701.445960px;}
._46{width:704.725260px;}
._42{width:774.349200px;}
._1f{width:775.617960px;}
._4e{width:779.677140px;}
._2d{width:786.273960px;}
._59{width:819.865140px;}
._22{width:826.402020px;}
._3c{width:893.989140px;}
._4f{width:904.693140px;}
._40{width:944.773200px;}
._5c{width:958.117200px;}
._1e{width:967.821960px;}
._2c{width:973.041960px;}
._2a{width:1010.589960px;}
._20{width:1037.121960px;}
._33{width:1076.049960px;}
._3b{width:1086.193200px;}
._32{width:1089.345960px;}
._30{width:1090.689960px;}
._1b{width:1095.777960px;}
._1a{width:1106.529960px;}
._31{width:1116.033960px;}
._29{width:1119.777960px;}
._1d{width:1127.745900px;}
._18{width:1130.433960px;}
._21{width:1143.826020px;}
._3d{width:1155.493200px;}
._15{width:1170.417960px;}
._26{width:1175.746020px;}
._27{width:1194.621960px;}
._17{width:1199.793960px;}
._2f{width:1205.169900px;}
._56{width:1207.765200px;}
._54{width:1209.109200px;}
._55{width:1234.453200px;}
._3a{width:1246.117200px;}
._10{width:1248.720000px;}
._13{width:1261.185960px;}
._3f{width:1262.197260px;}
._14{width:1271.841960px;}
._1c{width:1279.857960px;}
._38{width:1288.789200px;}
._43{width:1294.165140px;}
._48{width:1302.433200px;}
._44{width:1313.041200px;}
._52{width:1323.589200px;}
._23{width:1332.322020px;}
._24{width:1349.217960px;}
._35{width:1379.557200px;}
._2e{width:1383.873900px;}
._37{width:1390.213200px;}
._47{width:1411.621200px;}
._4b{width:1450.741200px;}
._4a{width:1467.637200px;}
._51{width:1502.293140px;}
._49{width:1698.345480px;}
._4c{width:1707.705420px;}
._5f{width:1853.529540px;}
._4d{width:1866.921540px;}
._45{width:1991.913420px;}
._50{width:2011.881480px;}
._12{width:2168.939940px;}
._41{width:2248.329480px;}
._58{width:2277.705420px;}
._3e{width:2300.601480px;}
._5b{width:2302.569480px;}
._53{width:2385.321420px;}
.fc1{color:rgb(0,51,102);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.000000px;}
.fs2{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:73.304865px;}
.y50{bottom:84.104865px;}
.y4f{bottom:94.904865px;}
.y6f{bottom:140.440545px;}
.y25{bottom:141.310815px;}
.y13d{bottom:142.029900px;}
.yce{bottom:142.690545px;}
.y4d{bottom:143.440545px;}
.y1ab{bottom:144.940545px;}
.y1ce{bottom:147.940545px;}
.y178{bottom:161.529900px;}
.y6e{bottom:162.940545px;}
.y24{bottom:163.810815px;}
.y192{bottom:164.440545px;}
.y13c{bottom:164.529900px;}
.ycd{bottom:165.190545px;}
.y4c{bottom:165.940545px;}
.y1aa{bottom:167.440545px;}
.y1c6{bottom:170.440545px;}
.y150{bottom:172.029900px;}
.y10c{bottom:176.529900px;}
.ya0{bottom:177.190545px;}
.y177{bottom:184.029900px;}
.y23{bottom:186.310815px;}
.y191{bottom:186.940545px;}
.y13b{bottom:187.029900px;}
.ycc{bottom:187.690545px;}
.y4b{bottom:188.440545px;}
.y14f{bottom:190.029900px;}
.y9f{bottom:192.190545px;}
.y1c5{bottom:192.940545px;}
.y10b{bottom:194.529900px;}
.y6d{bottom:200.440545px;}
.y1a9{bottom:201.940545px;}
.y176{bottom:206.529900px;}
.y9e{bottom:207.190545px;}
.y14e{bottom:208.029900px;}
.y22{bottom:208.810815px;}
.y190{bottom:209.440545px;}
.y4a{bottom:210.940545px;}
.y10a{bottom:212.529900px;}
.ycb{bottom:221.440545px;}
.y9d{bottom:222.190545px;}
.y6c{bottom:222.940545px;}
.y1a8{bottom:224.440545px;}
.y13a{bottom:224.529900px;}
.y14d{bottom:226.029900px;}
.y1c4{bottom:227.440545px;}
.y175{bottom:229.029900px;}
.y109{bottom:230.529900px;}
.y49{bottom:233.440545px;}
.y9c{bottom:237.190545px;}
.y14c{bottom:244.029900px;}
.y6b{bottom:245.440545px;}
.y21{bottom:246.310815px;}
.y18f{bottom:246.940545px;}
.y139{bottom:247.029900px;}
.ye7{bottom:248.440545px;}
.y108{bottom:248.529900px;}
.y1c3{bottom:249.940545px;}
.y174{bottom:251.529900px;}
.y9b{bottom:252.190545px;}
.y48{bottom:255.940545px;}
.y14b{bottom:262.029900px;}
.yca{bottom:265.690545px;}
.y107{bottom:266.529900px;}
.y9a{bottom:267.190545px;}
.y6a{bottom:267.940545px;}
.y20{bottom:268.810815px;}
.y18e{bottom:269.440545px;}
.y138{bottom:269.529900px;}
.ye6{bottom:270.940545px;}
.y1cd{bottom:272.440545px;}
.y14a{bottom:280.029900px;}
.y1a7{bottom:281.440545px;}
.y99{bottom:282.190545px;}
.y1c2{bottom:284.440545px;}
.y106{bottom:284.529900px;}
.yc9{bottom:288.190545px;}
.y173{bottom:289.029900px;}
.y47{bottom:289.690545px;}
.y69{bottom:290.440545px;}
.y1f{bottom:291.310815px;}
.y137{bottom:292.029900px;}
.ye5{bottom:293.440545px;}
.y98{bottom:297.190545px;}
.y149{bottom:298.029900px;}
.y105{bottom:302.529900px;}
.y18d{bottom:303.190545px;}
.y1a6{bottom:303.940545px;}
.y1c1{bottom:306.940545px;}
.yc8{bottom:310.690545px;}
.y172{bottom:311.529900px;}
.y97{bottom:312.190545px;}
.y68{bottom:312.940545px;}
.y1e{bottom:313.810860px;}
.y136{bottom:314.529900px;}
.ye4{bottom:315.940545px;}
.y148{bottom:316.029900px;}
.y104{bottom:320.529900px;}
.y1a5{bottom:326.440545px;}
.y96{bottom:327.190545px;}
.y1c0{bottom:329.440545px;}
.yc7{bottom:333.190545px;}
.y46{bottom:333.940545px;}
.y147{bottom:334.029900px;}
.y1d{bottom:336.310860px;}
.y135{bottom:337.029900px;}
.ye3{bottom:338.440545px;}
.y103{bottom:338.529900px;}
.y95{bottom:342.190545px;}
.y67{bottom:346.690545px;}
.y18c{bottom:347.440545px;}
.y1cc{bottom:351.940545px;}
.y146{bottom:352.029900px;}
.yc6{bottom:355.690545px;}
.y45{bottom:356.440545px;}
.y102{bottom:356.529900px;}
.y94{bottom:357.190545px;}
.y1c{bottom:358.810860px;}
.ye2{bottom:360.940545px;}
.y1bf{bottom:363.940545px;}
.y18b{bottom:369.940545px;}
.y145{bottom:370.029900px;}
.y93{bottom:372.190545px;}
.y101{bottom:374.529900px;}
.yc5{bottom:378.190545px;}
.y44{bottom:378.940545px;}
.y171{bottom:379.029900px;}
.y1b{bottom:381.310860px;}
.ye1{bottom:383.440545px;}
.y1be{bottom:386.440545px;}
.y92{bottom:387.190545px;}
.y144{bottom:388.029900px;}
.y134{bottom:388.144155px;}
.y66{bottom:388.690545px;}
.y18a{bottom:392.440545px;}
.y100{bottom:392.529900px;}
.y43{bottom:401.440545px;}
.y170{bottom:401.529900px;}
.y91{bottom:402.190545px;}
.ye0{bottom:405.940545px;}
.y133{bottom:406.029900px;}
.y1bd{bottom:408.940545px;}
.yff{bottom:410.529900px;}
.y189{bottom:414.940545px;}
.yc4{bottom:415.690545px;}
.y90{bottom:417.190545px;}
.y1a4{bottom:421.690545px;}
.y42{bottom:423.940545px;}
.y132{bottom:424.029900px;}
.ydf{bottom:428.440545px;}
.yfe{bottom:428.529900px;}
.y1cb{bottom:431.440545px;}
.y8f{bottom:432.190545px;}
.y188{bottom:437.440545px;}
.yc3{bottom:438.190545px;}
.y16f{bottom:439.029900px;}
.y131{bottom:442.029900px;}
.y1bc{bottom:443.440545px;}
.y41{bottom:446.440545px;}
.yfd{bottom:446.529900px;}
.y8e{bottom:447.190545px;}
.y65{bottom:453.940545px;}
.y187{bottom:459.940545px;}
.y130{bottom:460.029900px;}
.yc2{bottom:460.690545px;}
.y16e{bottom:461.529900px;}
.y8d{bottom:462.190545px;}
.yde{bottom:465.940545px;}
.y40{bottom:468.940545px;}
.yfa{bottom:472.779900px;}
.yfc{bottom:474.940545px;}
.y64{bottom:476.440545px;}
.y8c{bottom:477.190545px;}
.y12f{bottom:478.029900px;}
.y186{bottom:482.440545px;}
.yc1{bottom:483.190545px;}
.y16d{bottom:484.029900px;}
.y1a3{bottom:484.372680px;}
.y1a{bottom:488.167110px;}
.ydd{bottom:488.440545px;}
.y3f{bottom:491.440545px;}
.y8b{bottom:492.190545px;}
.y12e{bottom:496.029900px;}
.y19{bottom:500.767140px;}
.yfb{bottom:501.940545px;}
.y185{bottom:504.940545px;}
.yc0{bottom:505.690545px;}
.y16c{bottom:506.529900px;}
.y8a{bottom:507.190545px;}
.y63{bottom:507.940545px;}
.ydc{bottom:510.940545px;}
.y18{bottom:513.367170px;}
.y1a2{bottom:513.622680px;}
.y3e{bottom:513.940545px;}
.y12d{bottom:514.029900px;}
.y89{bottom:522.190545px;}
.y1bb{bottom:522.940545px;}
.y184{bottom:527.440545px;}
.ybf{bottom:528.190545px;}
.y16b{bottom:529.029900px;}
.y17{bottom:531.367215px;}
.y12c{bottom:532.029900px;}
.ydb{bottom:533.440545px;}
.y3d{bottom:536.440545px;}
.y88{bottom:537.190545px;}
.y62{bottom:539.440545px;}
.yf9{bottom:542.554800px;}
.y1ba{bottom:545.440545px;}
.y16{bottom:549.367260px;}
.y12b{bottom:550.029900px;}
.ybe{bottom:550.690545px;}
.y16a{bottom:551.529900px;}
.y87{bottom:552.190545px;}
.y1a1{bottom:553.372680px;}
.y3c{bottom:558.940545px;}
.y183{bottom:564.940545px;}
.yf8{bottom:565.690545px;}
.y86{bottom:567.190545px;}
.y15{bottom:567.367305px;}
.y1b9{bottom:567.940545px;}
.y12a{bottom:568.029900px;}
.ybd{bottom:573.190545px;}
.y169{bottom:574.029900px;}
.y61{bottom:576.940545px;}
.y3b{bottom:581.440545px;}
.y85{bottom:582.190545px;}
.y1a0{bottom:582.622680px;}
.y129{bottom:586.029900px;}
.y182{bottom:587.440545px;}
.y1b8{bottom:590.440545px;}
.ybc{bottom:595.690545px;}
.y168{bottom:596.529900px;}
.y84{bottom:597.190545px;}
.y60{bottom:599.440545px;}
.y128{bottom:604.029900px;}
.y181{bottom:609.940545px;}
.yda{bottom:611.440545px;}
.y83{bottom:612.190545px;}
.y1ca{bottom:612.940545px;}
.y3a{bottom:615.190545px;}
.y14{bottom:616.435110px;}
.ybb{bottom:618.190545px;}
.y167{bottom:619.029900px;}
.y5f{bottom:621.940545px;}
.y127{bottom:622.029900px;}
.y19f{bottom:622.372680px;}
.y1b7{bottom:624.940545px;}
.y82{bottom:627.190545px;}
.y180{bottom:632.440545px;}
.yd9{bottom:633.940545px;}
.y126{bottom:640.029900px;}
.yba{bottom:640.690545px;}
.y81{bottom:642.190545px;}
.yf7{bottom:644.440545px;}
.y13{bottom:645.835080px;}
.y1b6{bottom:647.440545px;}
.y19e{bottom:651.622680px;}
.y17f{bottom:654.940545px;}
.y5e{bottom:655.690545px;}
.yd8{bottom:656.440545px;}
.y80{bottom:657.190545px;}
.y166{bottom:657.279900px;}
.y125{bottom:658.029900px;}
.y39{bottom:659.440545px;}
.y12{bottom:660.235050px;}
.yb9{bottom:663.190545px;}
.yf6{bottom:666.940545px;}
.y1b5{bottom:669.940545px;}
.y7f{bottom:672.190545px;}
.y11{bottom:674.635020px;}
.y124{bottom:676.029900px;}
.y17e{bottom:677.440545px;}
.yd7{bottom:678.940545px;}
.y38{bottom:681.940545px;}
.yb8{bottom:685.690545px;}
.y7e{bottom:687.190545px;}
.y10{bottom:689.035005px;}
.yf5{bottom:689.440545px;}
.y1c9{bottom:692.440545px;}
.y19d{bottom:693.940545px;}
.y123{bottom:694.029900px;}
.y5d{bottom:699.940545px;}
.yd6{bottom:701.440545px;}
.y7d{bottom:702.190545px;}
.yf{bottom:703.435020px;}
.y37{bottom:704.440545px;}
.yf4{bottom:711.940545px;}
.y122{bottom:712.029900px;}
.y17d{bottom:714.940545px;}
.y19c{bottom:716.440545px;}
.y7c{bottom:717.190545px;}
.ye{bottom:717.835035px;}
.yb7{bottom:719.440545px;}
.y165{bottom:721.144155px;}
.y5c{bottom:722.440545px;}
.yd5{bottom:723.940545px;}
.y36{bottom:726.940545px;}
.y121{bottom:730.029900px;}
.y7b{bottom:732.190545px;}
.yd{bottom:732.235050px;}
.yf3{bottom:734.440545px;}
.y17c{bottom:737.440545px;}
.y19b{bottom:738.940545px;}
.y164{bottom:739.029900px;}
.y5b{bottom:744.940545px;}
.yd4{bottom:746.440545px;}
.yc{bottom:746.635065px;}
.y7a{bottom:747.190545px;}
.y120{bottom:748.029900px;}
.y35{bottom:749.440545px;}
.yf2{bottom:756.940545px;}
.y163{bottom:757.029900px;}
.y17b{bottom:759.940545px;}
.yb{bottom:761.035080px;}
.y19a{bottom:761.440545px;}
.y79{bottom:762.190545px;}
.yb6{bottom:763.690545px;}
.y11f{bottom:766.029900px;}
.y5a{bottom:767.440545px;}
.yd3{bottom:768.940545px;}
.y34{bottom:771.940545px;}
.y162{bottom:775.029900px;}
.ya{bottom:775.435095px;}
.y78{bottom:777.190545px;}
.yb5{bottom:778.690545px;}
.yf1{bottom:779.440545px;}
.y17a{bottom:782.440545px;}
.y1c8{bottom:783.940545px;}
.y11e{bottom:784.029900px;}
.y9{bottom:789.835110px;}
.y59{bottom:789.940545px;}
.yd2{bottom:791.440545px;}
.y77{bottom:792.190545px;}
.y142{bottom:792.279900px;}
.y161{bottom:793.029900px;}
.yb4{bottom:793.690545px;}
.y33{bottom:794.440545px;}
.y199{bottom:795.190545px;}
.yf0{bottom:801.940545px;}
.y11d{bottom:802.029900px;}
.y179{bottom:804.940545px;}
.y1b4{bottom:806.440545px;}
.y76{bottom:807.190545px;}
.yb3{bottom:808.690545px;}
.y160{bottom:811.029900px;}
.y8{bottom:811.170855px;}
.yd1{bottom:813.940545px;}
.y143{bottom:816.940545px;}
.y11c{bottom:820.029900px;}
.yb2{bottom:823.690545px;}
.y75{bottom:824.440545px;}
.y58{bottom:827.440545px;}
.y1b3{bottom:828.940545px;}
.y15f{bottom:829.029900px;}
.y32{bottom:831.940545px;}
.y11b{bottom:838.029900px;}
.yb1{bottom:838.690545px;}
.y198{bottom:839.440545px;}
.yef{bottom:846.940545px;}
.y15e{bottom:847.029900px;}
.y7{bottom:847.170855px;}
.yd0{bottom:847.690545px;}
.y57{bottom:849.940545px;}
.y1b2{bottom:851.440545px;}
.y141{bottom:853.054800px;}
.yb0{bottom:853.690545px;}
.y31{bottom:854.440545px;}
.y11a{bottom:856.029900px;}
.y74{bottom:860.554800px;}
.y197{bottom:861.940545px;}
.y1c7{bottom:863.440545px;}
.y15d{bottom:865.029900px;}
.y6{bottom:865.170855px;}
.yaf{bottom:868.690545px;}
.yee{bottom:869.440545px;}
.y56{bottom:872.440545px;}
.y1d1{bottom:873.940545px;}
.y119{bottom:874.029900px;}
.y140{bottom:876.190545px;}
.y30{bottom:876.940545px;}
.y15c{bottom:883.029900px;}
.y5{bottom:883.170855px;}
.y73{bottom:883.690545px;}
.y196{bottom:884.440545px;}
.y1b1{bottom:885.940545px;}
.ycf{bottom:889.690545px;}
.yed{bottom:891.940545px;}
.y118{bottom:892.029900px;}
.y55{bottom:894.940545px;}
.y1d0{bottom:896.440545px;}
.yae{bottom:898.690545px;}
.y2f{bottom:899.440545px;}
.y15b{bottom:901.029900px;}
.y1b0{bottom:908.440545px;}
.y13f{bottom:909.940545px;}
.y117{bottom:910.029900px;}
.yad{bottom:913.690545px;}
.yec{bottom:914.440545px;}
.y54{bottom:917.440545px;}
.y15a{bottom:919.029900px;}
.y4{bottom:919.170855px;}
.y2e{bottom:921.940545px;}
.y116{bottom:928.029900px;}
.yac{bottom:928.690545px;}
.y1af{bottom:930.940545px;}
.y13e{bottom:932.440545px;}
.yeb{bottom:936.940545px;}
.y159{bottom:937.029900px;}
.y72{bottom:939.940545px;}
.yab{bottom:943.690545px;}
.y195{bottom:944.440545px;}
.y115{bottom:946.029900px;}
.y1cf{bottom:953.440545px;}
.y53{bottom:954.940545px;}
.y158{bottom:955.029900px;}
.y2d{bottom:955.690545px;}
.yaa{bottom:958.690545px;}
.yea{bottom:959.440545px;}
.y71{bottom:962.440545px;}
.y114{bottom:964.029900px;}
.y1ae{bottom:965.440545px;}
.y194{bottom:966.940545px;}
.y3{bottom:967.170855px;}
.y157{bottom:973.029900px;}
.ya9{bottom:973.690545px;}
.y52{bottom:977.440545px;}
.y113{bottom:982.029900px;}
.y70{bottom:984.940545px;}
.y1ad{bottom:987.940545px;}
.ya8{bottom:988.690545px;}
.y193{bottom:989.440545px;}
.y156{bottom:991.029900px;}
.ye9{bottom:993.190545px;}
.y2{bottom:997.170855px;}
.y2c{bottom:999.940545px;}
.y112{bottom:1000.029900px;}
.ya7{bottom:1003.690545px;}
.y155{bottom:1009.029900px;}
.y1ac{bottom:1010.440545px;}
.y111{bottom:1018.029900px;}
.ya6{bottom:1018.690545px;}
.y2b{bottom:1022.440545px;}
.ye8{bottom:1023.190545px;}
.y154{bottom:1027.029900px;}
.ya5{bottom:1033.690545px;}
.y110{bottom:1036.029900px;}
.y1{bottom:1044.420855px;}
.y2a{bottom:1044.940545px;}
.y153{bottom:1045.029900px;}
.ya4{bottom:1048.690545px;}
.y10d{bottom:1057.779900px;}
.y10f{bottom:1059.940545px;}
.ya3{bottom:1063.690545px;}
.y151{bottom:1066.779900px;}
.y29{bottom:1067.440545px;}
.y152{bottom:1068.940545px;}
.ya2{bottom:1078.690545px;}
.y10e{bottom:1086.940545px;}
.y28{bottom:1089.940545px;}
.ya1{bottom:1091.440545px;}
.y27{bottom:1108.263810px;}
.y26{bottom:1129.651485px;}
.y4e{bottom:1134.710235px;}
.hb{height:26.718750px;}
.h7{height:31.171875px;}
.hc{height:34.945312px;}
.h5{height:35.625000px;}
.he{height:40.078125px;}
.h8{height:44.531250px;}
.hd{height:48.049805px;}
.ha{height:52.417969px;}
.h4{height:53.437500px;}
.h9{height:53.437620px;}
.h6{height:56.786133px;}
.h3{height:61.154297px;}
.h2{height:62.343750px;}
.h1{height:1190.250000px;}
.h0{height:1190.551215px;}
.w0{width:892.913445px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535430px;}
.x7{left:79.540335px;}
.x2{left:94.534935px;}
.xd{left:97.793025px;}
.x5{left:103.541400px;}
.x4{left:127.559055px;}
.x3{left:180.456480px;}
.xe{left:335.480415px;}
.xb{left:387.698415px;}
.xc{left:391.170525px;}
.x6{left:401.876655px;}
.x8{left:406.746150px;}
.xa{left:479.781615px;}
.x9{left:577.065615px;}
@media print{
.v3{vertical-align:-10.666667pt;}
.v2{vertical-align:-8.533387pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.777813pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000053pt;}
.lsb{letter-spacing:0.000213pt;}
.ls3{letter-spacing:0.053387pt;}
.ls1{letter-spacing:5.338667pt;}
.ls2{letter-spacing:125.833173pt;}
.ls6{letter-spacing:164.367200pt;}
.ls7{letter-spacing:215.012480pt;}
.ls5{letter-spacing:215.012533pt;}
.lsa{letter-spacing:215.055200pt;}
.ls9{letter-spacing:219.193813pt;}
.ls4{letter-spacing:219.236480pt;}
.ws5{word-spacing:-24.613333pt;}
.ws16{word-spacing:-19.274667pt;}
.ws3{word-spacing:-17.792000pt;}
.ws2{word-spacing:-14.826667pt;}
.ws17{word-spacing:-13.344000pt;}
.wsc{word-spacing:-11.861333pt;}
.ws1{word-spacing:-10.378667pt;}
.ws0{word-spacing:-8.896000pt;}
.wsd{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:80.734453pt;}
.ws7{word-spacing:80.734507pt;}
.ws8{word-spacing:116.318453pt;}
.ws12{word-spacing:168.164427pt;}
.wsf{word-spacing:168.164480pt;}
.wsb{word-spacing:196.367200pt;}
.wsa{word-spacing:1142.344853pt;}
.ws6{word-spacing:1142.387520pt;}
.ws11{word-spacing:2220.424480pt;}
.ws15{word-spacing:2222.173760pt;}
.wse{word-spacing:2293.896427pt;}
.ws13{word-spacing:2295.645760pt;}
.ws10{word-spacing:2346.077760pt;}
.ws14{word-spacing:2347.827147pt;}
._f{margin-left:-6.672373pt;}
._1{margin-left:-5.461333pt;}
._2{margin-left:-3.968000pt;}
._b{margin-left:-2.528000pt;}
._8{margin-left:-1.578667pt;}
._5{width:1.536000pt;}
._7{width:2.944000pt;}
._3{width:3.893333pt;}
._0{width:5.408000pt;}
._4{width:6.741333pt;}
._6{width:7.850667pt;}
._9{width:8.789333pt;}
._a{width:9.898667pt;}
._e{width:10.794667pt;}
._11{width:11.689333pt;}
._5a{width:12.858667pt;}
._d{width:13.781333pt;}
._c{width:20.320000pt;}
._16{width:92.595840pt;}
._19{width:128.179840pt;}
._39{width:180.025867pt;}
._5d{width:183.140480pt;}
._36{width:197.817813pt;}
._5e{width:203.705813pt;}
._57{width:209.500693pt;}
._28{width:367.006080pt;}
._25{width:583.048907pt;}
._2b{width:587.784853pt;}
._34{width:623.507520pt;}
._46{width:626.422453pt;}
._42{width:688.310400pt;}
._1f{width:689.438187pt;}
._4e{width:693.046347pt;}
._2d{width:698.910187pt;}
._59{width:728.769013pt;}
._22{width:734.579573pt;}
._3c{width:794.657013pt;}
._4f{width:804.171680pt;}
._40{width:839.798400pt;}
._5c{width:851.659733pt;}
._1e{width:860.286187pt;}
._2c{width:864.926187pt;}
._2a{width:898.302187pt;}
._20{width:921.886187pt;}
._33{width:956.488853pt;}
._3b{width:965.505067pt;}
._32{width:968.307520pt;}
._30{width:969.502187pt;}
._1b{width:974.024853pt;}
._1a{width:983.582187pt;}
._31{width:992.030187pt;}
._29{width:995.358187pt;}
._1d{width:1002.440800pt;}
._18{width:1004.830187pt;}
._21{width:1016.734240pt;}
._3d{width:1027.105067pt;}
._15{width:1040.371520pt;}
._26{width:1045.107573pt;}
._27{width:1061.886187pt;}
._17{width:1066.483520pt;}
._2f{width:1071.262133pt;}
._56{width:1073.569067pt;}
._54{width:1074.763733pt;}
._55{width:1097.291733pt;}
._3a{width:1107.659733pt;}
._10{width:1109.973333pt;}
._13{width:1121.054187pt;}
._3f{width:1121.953120pt;}
._14{width:1130.526187pt;}
._1c{width:1137.651520pt;}
._38{width:1145.590400pt;}
._43{width:1150.369013pt;}
._48{width:1157.718400pt;}
._44{width:1167.147733pt;}
._52{width:1176.523733pt;}
._23{width:1184.286240pt;}
._24{width:1199.304853pt;}
._35{width:1226.273067pt;}
._2e{width:1230.110133pt;}
._37{width:1235.745067pt;}
._47{width:1254.774400pt;}
._4b{width:1289.547733pt;}
._4a{width:1304.566400pt;}
._51{width:1335.371680pt;}
._49{width:1509.640427pt;}
._4c{width:1517.960373pt;}
._5f{width:1647.581813pt;}
._4d{width:1659.485813pt;}
._45{width:1770.589707pt;}
._50{width:1788.339093pt;}
._12{width:1927.946613pt;}
._41{width:1998.515093pt;}
._58{width:2024.627040pt;}
._3e{width:2044.979093pt;}
._5b{width:2046.728427pt;}
._53{width:2120.285707pt;}
.fs8{font-size:26.666667pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:65.159880pt;}
.y50{bottom:74.759880pt;}
.y4f{bottom:84.359880pt;}
.y6f{bottom:124.836040pt;}
.y25{bottom:125.609613pt;}
.y13d{bottom:126.248800pt;}
.yce{bottom:126.836040pt;}
.y4d{bottom:127.502707pt;}
.y1ab{bottom:128.836040pt;}
.y1ce{bottom:131.502707pt;}
.y178{bottom:143.582133pt;}
.y6e{bottom:144.836040pt;}
.y24{bottom:145.609613pt;}
.y192{bottom:146.169373pt;}
.y13c{bottom:146.248800pt;}
.ycd{bottom:146.836040pt;}
.y4c{bottom:147.502707pt;}
.y1aa{bottom:148.836040pt;}
.y1c6{bottom:151.502707pt;}
.y150{bottom:152.915467pt;}
.y10c{bottom:156.915467pt;}
.ya0{bottom:157.502707pt;}
.y177{bottom:163.582133pt;}
.y23{bottom:165.609613pt;}
.y191{bottom:166.169373pt;}
.y13b{bottom:166.248800pt;}
.ycc{bottom:166.836040pt;}
.y4b{bottom:167.502707pt;}
.y14f{bottom:168.915467pt;}
.y9f{bottom:170.836040pt;}
.y1c5{bottom:171.502707pt;}
.y10b{bottom:172.915467pt;}
.y6d{bottom:178.169373pt;}
.y1a9{bottom:179.502707pt;}
.y176{bottom:183.582133pt;}
.y9e{bottom:184.169373pt;}
.y14e{bottom:184.915467pt;}
.y22{bottom:185.609613pt;}
.y190{bottom:186.169373pt;}
.y4a{bottom:187.502707pt;}
.y10a{bottom:188.915467pt;}
.ycb{bottom:196.836040pt;}
.y9d{bottom:197.502707pt;}
.y6c{bottom:198.169373pt;}
.y1a8{bottom:199.502707pt;}
.y13a{bottom:199.582133pt;}
.y14d{bottom:200.915467pt;}
.y1c4{bottom:202.169373pt;}
.y175{bottom:203.582133pt;}
.y109{bottom:204.915467pt;}
.y49{bottom:207.502707pt;}
.y9c{bottom:210.836040pt;}
.y14c{bottom:216.915467pt;}
.y6b{bottom:218.169373pt;}
.y21{bottom:218.942947pt;}
.y18f{bottom:219.502707pt;}
.y139{bottom:219.582133pt;}
.ye7{bottom:220.836040pt;}
.y108{bottom:220.915467pt;}
.y1c3{bottom:222.169373pt;}
.y174{bottom:223.582133pt;}
.y9b{bottom:224.169373pt;}
.y48{bottom:227.502707pt;}
.y14b{bottom:232.915467pt;}
.yca{bottom:236.169373pt;}
.y107{bottom:236.915467pt;}
.y9a{bottom:237.502707pt;}
.y6a{bottom:238.169373pt;}
.y20{bottom:238.942947pt;}
.y18e{bottom:239.502707pt;}
.y138{bottom:239.582133pt;}
.ye6{bottom:240.836040pt;}
.y1cd{bottom:242.169373pt;}
.y14a{bottom:248.915467pt;}
.y1a7{bottom:250.169373pt;}
.y99{bottom:250.836040pt;}
.y1c2{bottom:252.836040pt;}
.y106{bottom:252.915467pt;}
.yc9{bottom:256.169373pt;}
.y173{bottom:256.915467pt;}
.y47{bottom:257.502707pt;}
.y69{bottom:258.169373pt;}
.y1f{bottom:258.942947pt;}
.y137{bottom:259.582133pt;}
.ye5{bottom:260.836040pt;}
.y98{bottom:264.169373pt;}
.y149{bottom:264.915467pt;}
.y105{bottom:268.915467pt;}
.y18d{bottom:269.502707pt;}
.y1a6{bottom:270.169373pt;}
.y1c1{bottom:272.836040pt;}
.yc8{bottom:276.169373pt;}
.y172{bottom:276.915467pt;}
.y97{bottom:277.502707pt;}
.y68{bottom:278.169373pt;}
.y1e{bottom:278.942987pt;}
.y136{bottom:279.582133pt;}
.ye4{bottom:280.836040pt;}
.y148{bottom:280.915467pt;}
.y104{bottom:284.915467pt;}
.y1a5{bottom:290.169373pt;}
.y96{bottom:290.836040pt;}
.y1c0{bottom:292.836040pt;}
.yc7{bottom:296.169373pt;}
.y46{bottom:296.836040pt;}
.y147{bottom:296.915467pt;}
.y1d{bottom:298.942987pt;}
.y135{bottom:299.582133pt;}
.ye3{bottom:300.836040pt;}
.y103{bottom:300.915467pt;}
.y95{bottom:304.169373pt;}
.y67{bottom:308.169373pt;}
.y18c{bottom:308.836040pt;}
.y1cc{bottom:312.836040pt;}
.y146{bottom:312.915467pt;}
.yc6{bottom:316.169373pt;}
.y45{bottom:316.836040pt;}
.y102{bottom:316.915467pt;}
.y94{bottom:317.502707pt;}
.y1c{bottom:318.942987pt;}
.ye2{bottom:320.836040pt;}
.y1bf{bottom:323.502707pt;}
.y18b{bottom:328.836040pt;}
.y145{bottom:328.915467pt;}
.y93{bottom:330.836040pt;}
.y101{bottom:332.915467pt;}
.yc5{bottom:336.169373pt;}
.y44{bottom:336.836040pt;}
.y171{bottom:336.915467pt;}
.y1b{bottom:338.942987pt;}
.ye1{bottom:340.836040pt;}
.y1be{bottom:343.502707pt;}
.y92{bottom:344.169373pt;}
.y144{bottom:344.915467pt;}
.y134{bottom:345.017027pt;}
.y66{bottom:345.502707pt;}
.y18a{bottom:348.836040pt;}
.y100{bottom:348.915467pt;}
.y43{bottom:356.836040pt;}
.y170{bottom:356.915467pt;}
.y91{bottom:357.502707pt;}
.ye0{bottom:360.836040pt;}
.y133{bottom:360.915467pt;}
.y1bd{bottom:363.502707pt;}
.yff{bottom:364.915467pt;}
.y189{bottom:368.836040pt;}
.yc4{bottom:369.502707pt;}
.y90{bottom:370.836040pt;}
.y1a4{bottom:374.836040pt;}
.y42{bottom:376.836040pt;}
.y132{bottom:376.915467pt;}
.ydf{bottom:380.836040pt;}
.yfe{bottom:380.915467pt;}
.y1cb{bottom:383.502707pt;}
.y8f{bottom:384.169373pt;}
.y188{bottom:388.836040pt;}
.yc3{bottom:389.502707pt;}
.y16f{bottom:390.248800pt;}
.y131{bottom:392.915467pt;}
.y1bc{bottom:394.169373pt;}
.y41{bottom:396.836040pt;}
.yfd{bottom:396.915467pt;}
.y8e{bottom:397.502707pt;}
.y65{bottom:403.502707pt;}
.y187{bottom:408.836040pt;}
.y130{bottom:408.915467pt;}
.yc2{bottom:409.502707pt;}
.y16e{bottom:410.248800pt;}
.y8d{bottom:410.836040pt;}
.yde{bottom:414.169373pt;}
.y40{bottom:416.836040pt;}
.yfa{bottom:420.248800pt;}
.yfc{bottom:422.169373pt;}
.y64{bottom:423.502707pt;}
.y8c{bottom:424.169373pt;}
.y12f{bottom:424.915467pt;}
.y186{bottom:428.836040pt;}
.yc1{bottom:429.502707pt;}
.y16d{bottom:430.248800pt;}
.y1a3{bottom:430.553493pt;}
.y1a{bottom:433.926320pt;}
.ydd{bottom:434.169373pt;}
.y3f{bottom:436.836040pt;}
.y8b{bottom:437.502707pt;}
.y12e{bottom:440.915467pt;}
.y19{bottom:445.126347pt;}
.yfb{bottom:446.169373pt;}
.y185{bottom:448.836040pt;}
.yc0{bottom:449.502707pt;}
.y16c{bottom:450.248800pt;}
.y8a{bottom:450.836040pt;}
.y63{bottom:451.502707pt;}
.ydc{bottom:454.169373pt;}
.y18{bottom:456.326373pt;}
.y1a2{bottom:456.553493pt;}
.y3e{bottom:456.836040pt;}
.y12d{bottom:456.915467pt;}
.y89{bottom:464.169373pt;}
.y1bb{bottom:464.836040pt;}
.y184{bottom:468.836040pt;}
.ybf{bottom:469.502707pt;}
.y16b{bottom:470.248800pt;}
.y17{bottom:472.326413pt;}
.y12c{bottom:472.915467pt;}
.ydb{bottom:474.169373pt;}
.y3d{bottom:476.836040pt;}
.y88{bottom:477.502707pt;}
.y62{bottom:479.502707pt;}
.yf9{bottom:482.270933pt;}
.y1ba{bottom:484.836040pt;}
.y16{bottom:488.326453pt;}
.y12b{bottom:488.915467pt;}
.ybe{bottom:489.502707pt;}
.y16a{bottom:490.248800pt;}
.y87{bottom:490.836040pt;}
.y1a1{bottom:491.886827pt;}
.y3c{bottom:496.836040pt;}
.y183{bottom:502.169373pt;}
.yf8{bottom:502.836040pt;}
.y86{bottom:504.169373pt;}
.y15{bottom:504.326493pt;}
.y1b9{bottom:504.836040pt;}
.y12a{bottom:504.915467pt;}
.ybd{bottom:509.502707pt;}
.y169{bottom:510.248800pt;}
.y61{bottom:512.836040pt;}
.y3b{bottom:516.836040pt;}
.y85{bottom:517.502707pt;}
.y1a0{bottom:517.886827pt;}
.y129{bottom:520.915467pt;}
.y182{bottom:522.169373pt;}
.y1b8{bottom:524.836040pt;}
.ybc{bottom:529.502707pt;}
.y168{bottom:530.248800pt;}
.y84{bottom:530.836040pt;}
.y60{bottom:532.836040pt;}
.y128{bottom:536.915467pt;}
.y181{bottom:542.169373pt;}
.yda{bottom:543.502707pt;}
.y83{bottom:544.169373pt;}
.y1ca{bottom:544.836040pt;}
.y3a{bottom:546.836040pt;}
.y14{bottom:547.942320pt;}
.ybb{bottom:549.502707pt;}
.y167{bottom:550.248800pt;}
.y5f{bottom:552.836040pt;}
.y127{bottom:552.915467pt;}
.y19f{bottom:553.220160pt;}
.y1b7{bottom:555.502707pt;}
.y82{bottom:557.502707pt;}
.y180{bottom:562.169373pt;}
.yd9{bottom:563.502707pt;}
.y126{bottom:568.915467pt;}
.yba{bottom:569.502707pt;}
.y81{bottom:570.836040pt;}
.yf7{bottom:572.836040pt;}
.y13{bottom:574.075627pt;}
.y1b6{bottom:575.502707pt;}
.y19e{bottom:579.220160pt;}
.y17f{bottom:582.169373pt;}
.y5e{bottom:582.836040pt;}
.yd8{bottom:583.502707pt;}
.y80{bottom:584.169373pt;}
.y166{bottom:584.248800pt;}
.y125{bottom:584.915467pt;}
.y39{bottom:586.169373pt;}
.y12{bottom:586.875600pt;}
.yb9{bottom:589.502707pt;}
.yf6{bottom:592.836040pt;}
.y1b5{bottom:595.502707pt;}
.y7f{bottom:597.502707pt;}
.y11{bottom:599.675573pt;}
.y124{bottom:600.915467pt;}
.y17e{bottom:602.169373pt;}
.yd7{bottom:603.502707pt;}
.y38{bottom:606.169373pt;}
.yb8{bottom:609.502707pt;}
.y7e{bottom:610.836040pt;}
.y10{bottom:612.475560pt;}
.yf5{bottom:612.836040pt;}
.y1c9{bottom:615.502707pt;}
.y19d{bottom:616.836040pt;}
.y123{bottom:616.915467pt;}
.y5d{bottom:622.169373pt;}
.yd6{bottom:623.502707pt;}
.y7d{bottom:624.169373pt;}
.yf{bottom:625.275573pt;}
.y37{bottom:626.169373pt;}
.yf4{bottom:632.836040pt;}
.y122{bottom:632.915467pt;}
.y17d{bottom:635.502707pt;}
.y19c{bottom:636.836040pt;}
.y7c{bottom:637.502707pt;}
.ye{bottom:638.075587pt;}
.yb7{bottom:639.502707pt;}
.y165{bottom:641.017027pt;}
.y5c{bottom:642.169373pt;}
.yd5{bottom:643.502707pt;}
.y36{bottom:646.169373pt;}
.y121{bottom:648.915467pt;}
.y7b{bottom:650.836040pt;}
.yd{bottom:650.875600pt;}
.yf3{bottom:652.836040pt;}
.y17c{bottom:655.502707pt;}
.y19b{bottom:656.836040pt;}
.y164{bottom:656.915467pt;}
.y5b{bottom:662.169373pt;}
.yd4{bottom:663.502707pt;}
.yc{bottom:663.675613pt;}
.y7a{bottom:664.169373pt;}
.y120{bottom:664.915467pt;}
.y35{bottom:666.169373pt;}
.yf2{bottom:672.836040pt;}
.y163{bottom:672.915467pt;}
.y17b{bottom:675.502707pt;}
.yb{bottom:676.475627pt;}
.y19a{bottom:676.836040pt;}
.y79{bottom:677.502707pt;}
.yb6{bottom:678.836040pt;}
.y11f{bottom:680.915467pt;}
.y5a{bottom:682.169373pt;}
.yd3{bottom:683.502707pt;}
.y34{bottom:686.169373pt;}
.y162{bottom:688.915467pt;}
.ya{bottom:689.275640pt;}
.y78{bottom:690.836040pt;}
.yb5{bottom:692.169373pt;}
.yf1{bottom:692.836040pt;}
.y17a{bottom:695.502707pt;}
.y1c8{bottom:696.836040pt;}
.y11e{bottom:696.915467pt;}
.y9{bottom:702.075653pt;}
.y59{bottom:702.169373pt;}
.yd2{bottom:703.502707pt;}
.y77{bottom:704.169373pt;}
.y142{bottom:704.248800pt;}
.y161{bottom:704.915467pt;}
.yb4{bottom:705.502707pt;}
.y33{bottom:706.169373pt;}
.y199{bottom:706.836040pt;}
.yf0{bottom:712.836040pt;}
.y11d{bottom:712.915467pt;}
.y179{bottom:715.502707pt;}
.y1b4{bottom:716.836040pt;}
.y76{bottom:717.502707pt;}
.yb3{bottom:718.836040pt;}
.y160{bottom:720.915467pt;}
.y8{bottom:721.040760pt;}
.yd1{bottom:723.502707pt;}
.y143{bottom:726.169373pt;}
.y11c{bottom:728.915467pt;}
.yb2{bottom:732.169373pt;}
.y75{bottom:732.836040pt;}
.y58{bottom:735.502707pt;}
.y1b3{bottom:736.836040pt;}
.y15f{bottom:736.915467pt;}
.y32{bottom:739.502707pt;}
.y11b{bottom:744.915467pt;}
.yb1{bottom:745.502707pt;}
.y198{bottom:746.169373pt;}
.yef{bottom:752.836040pt;}
.y15e{bottom:752.915467pt;}
.y7{bottom:753.040760pt;}
.yd0{bottom:753.502707pt;}
.y57{bottom:755.502707pt;}
.y1b2{bottom:756.836040pt;}
.y141{bottom:758.270933pt;}
.yb0{bottom:758.836040pt;}
.y31{bottom:759.502707pt;}
.y11a{bottom:760.915467pt;}
.y74{bottom:764.937600pt;}
.y197{bottom:766.169373pt;}
.y1c7{bottom:767.502707pt;}
.y15d{bottom:768.915467pt;}
.y6{bottom:769.040760pt;}
.yaf{bottom:772.169373pt;}
.yee{bottom:772.836040pt;}
.y56{bottom:775.502707pt;}
.y1d1{bottom:776.836040pt;}
.y119{bottom:776.915467pt;}
.y140{bottom:778.836040pt;}
.y30{bottom:779.502707pt;}
.y15c{bottom:784.915467pt;}
.y5{bottom:785.040760pt;}
.y73{bottom:785.502707pt;}
.y196{bottom:786.169373pt;}
.y1b1{bottom:787.502707pt;}
.ycf{bottom:790.836040pt;}
.yed{bottom:792.836040pt;}
.y118{bottom:792.915467pt;}
.y55{bottom:795.502707pt;}
.y1d0{bottom:796.836040pt;}
.yae{bottom:798.836040pt;}
.y2f{bottom:799.502707pt;}
.y15b{bottom:800.915467pt;}
.y1b0{bottom:807.502707pt;}
.y13f{bottom:808.836040pt;}
.y117{bottom:808.915467pt;}
.yad{bottom:812.169373pt;}
.yec{bottom:812.836040pt;}
.y54{bottom:815.502707pt;}
.y15a{bottom:816.915467pt;}
.y4{bottom:817.040760pt;}
.y2e{bottom:819.502707pt;}
.y116{bottom:824.915467pt;}
.yac{bottom:825.502707pt;}
.y1af{bottom:827.502707pt;}
.y13e{bottom:828.836040pt;}
.yeb{bottom:832.836040pt;}
.y159{bottom:832.915467pt;}
.y72{bottom:835.502707pt;}
.yab{bottom:838.836040pt;}
.y195{bottom:839.502707pt;}
.y115{bottom:840.915467pt;}
.y1cf{bottom:847.502707pt;}
.y53{bottom:848.836040pt;}
.y158{bottom:848.915467pt;}
.y2d{bottom:849.502707pt;}
.yaa{bottom:852.169373pt;}
.yea{bottom:852.836040pt;}
.y71{bottom:855.502707pt;}
.y114{bottom:856.915467pt;}
.y1ae{bottom:858.169373pt;}
.y194{bottom:859.502707pt;}
.y3{bottom:859.707427pt;}
.y157{bottom:864.915467pt;}
.ya9{bottom:865.502707pt;}
.y52{bottom:868.836040pt;}
.y113{bottom:872.915467pt;}
.y70{bottom:875.502707pt;}
.y1ad{bottom:878.169373pt;}
.ya8{bottom:878.836040pt;}
.y193{bottom:879.502707pt;}
.y156{bottom:880.915467pt;}
.ye9{bottom:882.836040pt;}
.y2{bottom:886.374093pt;}
.y2c{bottom:888.836040pt;}
.y112{bottom:888.915467pt;}
.ya7{bottom:892.169373pt;}
.y155{bottom:896.915467pt;}
.y1ac{bottom:898.169373pt;}
.y111{bottom:904.915467pt;}
.ya6{bottom:905.502707pt;}
.y2b{bottom:908.836040pt;}
.ye8{bottom:909.502707pt;}
.y154{bottom:912.915467pt;}
.ya5{bottom:918.836040pt;}
.y110{bottom:920.915467pt;}
.y1{bottom:928.374093pt;}
.y2a{bottom:928.836040pt;}
.y153{bottom:928.915467pt;}
.ya4{bottom:932.169373pt;}
.y10d{bottom:940.248800pt;}
.y10f{bottom:942.169373pt;}
.ya3{bottom:945.502707pt;}
.y151{bottom:948.248800pt;}
.y29{bottom:948.836040pt;}
.y152{bottom:950.169373pt;}
.ya2{bottom:958.836040pt;}
.y10e{bottom:966.169373pt;}
.y28{bottom:968.836040pt;}
.ya1{bottom:970.169373pt;}
.y27{bottom:985.123387pt;}
.y26{bottom:1004.134653pt;}
.y4e{bottom:1008.631320pt;}
.hb{height:23.750000pt;}
.h7{height:27.708333pt;}
.hc{height:31.062500pt;}
.h5{height:31.666667pt;}
.he{height:35.625000pt;}
.h8{height:39.583333pt;}
.hd{height:42.710938pt;}
.ha{height:46.593750pt;}
.h4{height:47.500000pt;}
.h9{height:47.500107pt;}
.h6{height:50.476562pt;}
.h3{height:54.359375pt;}
.h2{height:55.416667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.267747pt;}
.w0{width:793.700840pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031493pt;}
.x7{left:70.702520pt;}
.x2{left:84.031053pt;}
.xd{left:86.927133pt;}
.x5{left:92.036800pt;}
.x4{left:113.385827pt;}
.x3{left:160.405760pt;}
.xe{left:298.204813pt;}
.xb{left:344.620813pt;}
.xc{left:347.707133pt;}
.x6{left:357.223693pt;}
.x8{left:361.552133pt;}
.xa{left:426.472547pt;}
.x9{left:512.947213pt;}
}




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