
    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_733dbc020a270e49ad74afd1.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_6ce561b5d49ece155a0d0c27.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3d5a8e1f0fcac815343c97dd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_3d824465591601a2fc39e07f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6e98a80a76a5721c9670e308.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b2c7a9ca5e2edaa8621abe97.woff')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_d02ec7f0aa64d59ec617a58a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_195c8ba4b89d1d648a4a8805.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37ddcfa245e412b9facc3e57.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0b0eaf2b41d43719fa3c4ad7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-77.040000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls6{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.972000px;}
.ls12{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.828000px;}
.ls13{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.108000px;}
.ls7{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.lsd{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:8.100000px;}
.ls18{letter-spacing:9.540000px;}
.ls14{letter-spacing:19.620000px;}
.ls16{letter-spacing:21.060000px;}
.ls15{letter-spacing:21.780000px;}
.ls10{letter-spacing:25.308000px;}
.lsf{letter-spacing:36.180000px;}
.lse{letter-spacing:52.668000px;}
.lsc{letter-spacing:63.468000px;}
.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;}
}
.wsa{word-spacing:-54.000000px;}
.ws3{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.431360px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.284000px;}
.wsf{word-spacing:-13.140000px;}
.ws7{word-spacing:-12.672000px;}
.wsd{word-spacing:-12.528000px;}
.wsb{word-spacing:-8.280000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._9{width:2.464080px;}
._8{width:4.433040px;}
._e{width:6.334560px;}
._d{width:7.410240px;}
._1c{width:8.411760px;}
._a{width:9.442080px;}
._b{width:10.531680px;}
._c{width:12.420480px;}
._7{width:13.757280px;}
._12{width:15.102000px;}
._15{width:16.146000px;}
._11{width:17.766000px;}
._14{width:19.278000px;}
._13{width:20.466000px;}
._20{width:21.624000px;}
._19{width:22.650000px;}
._1a{width:23.958000px;}
._1b{width:25.128000px;}
._18{width:26.622000px;}
._1e{width:28.458000px;}
._17{width:29.538000px;}
._16{width:30.564000px;}
._1d{width:31.698000px;}
._1f{width:32.844000px;}
._10{width:33.966000px;}
._f{width:34.992000px;}
._24{width:36.690000px;}
._26{width:38.394000px;}
._25{width:40.680000px;}
._30{width:42.030000px;}
._38{width:43.686000px;}
._36{width:45.414000px;}
._37{width:46.914000px;}
._29{width:49.086000px;}
._27{width:50.328000px;}
._28{width:51.480000px;}
._2c{width:53.286000px;}
._21{width:55.134000px;}
._3a{width:56.196000px;}
._2e{width:57.744000px;}
._2f{width:63.984000px;}
._23{width:66.474000px;}
._34{width:67.602000px;}
._31{width:69.114000px;}
._6{width:71.574240px;}
._3{width:78.192000px;}
._32{width:82.566000px;}
._33{width:83.916000px;}
._22{width:86.346000px;}
._2a{width:88.038000px;}
._2b{width:89.334000px;}
._3f{width:101.106000px;}
._3b{width:102.762000px;}
._3c{width:103.812000px;}
._35{width:156.600000px;}
._4{width:157.860000px;}
._2d{width:391.362000px;}
._39{width:755.190000px;}
._3d{width:916.002000px;}
._3e{width:942.624000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y3c{bottom:-11.520000px;}
.y91{bottom:-10.290000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y13a{bottom:10.065000px;}
.y12e{bottom:10.080000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y139{bottom:27.885000px;}
.y12d{bottom:27.900000px;}
.y3a{bottom:36.180000px;}
.y8f{bottom:37.410000px;}
.y5{bottom:39.780000px;}
.y138{bottom:45.705000px;}
.y12c{bottom:45.720000px;}
.y13c{bottom:54.525000px;}
.y39{bottom:55.980000px;}
.y1{bottom:60.660000px;}
.y137{bottom:63.525000px;}
.y12a{bottom:68.940000px;}
.y38{bottom:75.780000px;}
.y13b{bottom:76.845000px;}
.y136{bottom:81.345000px;}
.y8c{bottom:86.040000px;}
.y129{bottom:91.260000px;}
.y37{bottom:95.610000px;}
.y135{bottom:99.345000px;}
.y124{bottom:103.500000px;}
.y143{bottom:106.380000px;}
.ycd{bottom:107.100000px;}
.y101{bottom:107.280000px;}
.y8a{bottom:109.800000px;}
.y17d{bottom:113.220000px;}
.y36{bottom:115.410000px;}
.y115{bottom:116.280000px;}
.y1ae{bottom:117.180000px;}
.y72{bottom:118.440000px;}
.y28{bottom:121.320000px;}
.y134{bottom:121.665000px;}
.ycc{bottom:125.100000px;}
.y142{bottom:125.280000px;}
.y89{bottom:127.620000px;}
.y17c{bottom:131.040000px;}
.y114{bottom:134.100000px;}
.y1ad{bottom:135.000000px;}
.y35{bottom:135.390000px;}
.y71{bottom:136.260000px;}
.y3b{bottom:137.520000px;}
.y123{bottom:139.320000px;}
.ycb{bottom:142.920000px;}
.y100{bottom:143.100000px;}
.y133{bottom:143.985000px;}
.y88{bottom:145.440000px;}
.y17b{bottom:148.860000px;}
.y113{bottom:152.100000px;}
.y27{bottom:153.000000px;}
.y70{bottom:154.260000px;}
.y34{bottom:155.190000px;}
.y122{bottom:157.140000px;}
.yca{bottom:160.740000px;}
.yff{bottom:160.920000px;}
.y141{bottom:161.100000px;}
.y87{bottom:163.260000px;}
.y132{bottom:166.305000px;}
.y17a{bottom:166.680000px;}
.y112{bottom:169.920000px;}
.y1ac{bottom:170.820000px;}
.y6f{bottom:172.080000px;}
.y121{bottom:174.960000px;}
.y33{bottom:174.990000px;}
.yc9{bottom:178.560000px;}
.yfe{bottom:178.740000px;}
.y140{bottom:178.920000px;}
.y86{bottom:181.260000px;}
.y111{bottom:187.740000px;}
.y1ab{bottom:188.640000px;}
.y131{bottom:188.670000px;}
.y6e{bottom:189.540000px;}
.y120{bottom:193.140000px;}
.y179{bottom:193.680000px;}
.yc8{bottom:196.380000px;}
.yfd{bottom:196.560000px;}
.y13f{bottom:196.740000px;}
.y85{bottom:199.080000px;}
.y1be{bottom:205.200000px;}
.y110{bottom:205.590000px;}
.y26{bottom:205.770000px;}
.y1aa{bottom:206.490000px;}
.y11f{bottom:210.990000px;}
.y178{bottom:211.530000px;}
.yc7{bottom:214.230000px;}
.yfc{bottom:214.410000px;}
.y13e{bottom:214.590000px;}
.y6d{bottom:216.750000px;}
.y84{bottom:216.930000px;}
.y10f{bottom:223.410000px;}
.y31{bottom:223.590000px;}
.y1a9{bottom:224.310000px;}
.y11e{bottom:228.810000px;}
.y177{bottom:229.350000px;}
.yc6{bottom:232.230000px;}
.y13d{bottom:232.410000px;}
.y6c{bottom:234.570000px;}
.y83{bottom:234.750000px;}
.yfb{bottom:241.230000px;}
.y1a8{bottom:242.310000px;}
.y30{bottom:243.570000px;}
.y11d{bottom:246.810000px;}
.y176{bottom:247.170000px;}
.yc5{bottom:250.050000px;}
.y1bc{bottom:250.230000px;}
.y6b{bottom:252.390000px;}
.y82{bottom:252.570000px;}
.y11c{bottom:252.750000px;}
.y130{bottom:254.565000px;}
.y25{bottom:258.510000px;}
.yfa{bottom:259.230000px;}
.y1a7{bottom:260.130000px;}
.y11b{bottom:263.730000px;}
.y175{bottom:264.990000px;}
.yc4{bottom:267.870000px;}
.y1bb{bottom:268.230000px;}
.y6a{bottom:270.390000px;}
.yf9{bottom:277.050000px;}
.y1a6{bottom:277.950000px;}
.y174{bottom:282.990000px;}
.y1ba{bottom:286.050000px;}
.y69{bottom:288.210000px;}
.y81{bottom:288.390000px;}
.y2e{bottom:292.170000px;}
.y24{bottom:293.430000px;}
.yc3{bottom:294.690000px;}
.yf8{bottom:294.870000px;}
.y1a5{bottom:295.770000px;}
.y173{bottom:300.810000px;}
.y1b9{bottom:303.870000px;}
.y68{bottom:305.670000px;}
.y80{bottom:306.210000px;}
.y2d{bottom:311.970000px;}
.yc2{bottom:312.510000px;}
.yf7{bottom:312.690000px;}
.y1a4{bottom:313.590000px;}
.y172{bottom:318.630000px;}
.y1b8{bottom:321.690000px;}
.y7f{bottom:324.030000px;}
.y32{bottom:325.110000px;}
.y22{bottom:328.170000px;}
.yc1{bottom:330.510000px;}
.y1a3{bottom:331.410000px;}
.y67{bottom:332.850000px;}
.y11a{bottom:336.450000px;}
.y1b7{bottom:339.510000px;}
.y7e{bottom:341.850000px;}
.yc0{bottom:348.330000px;}
.yf6{bottom:348.510000px;}
.y1a2{bottom:349.410000px;}
.y66{bottom:350.670000px;}
.y171{bottom:354.270000px;}
.y1b6{bottom:357.510000px;}
.y7d{bottom:359.670000px;}
.y2b{bottom:360.795000px;}
.y21{bottom:362.910000px;}
.ybf{bottom:366.150000px;}
.yf5{bottom:366.330000px;}
.y1a1{bottom:367.230000px;}
.y23{bottom:368.490000px;}
.y65{bottom:368.670000px;}
.y170{bottom:372.090000px;}
.y1b5{bottom:375.330000px;}
.y7c{bottom:377.670000px;}
.y2a{bottom:380.595000px;}
.ybe{bottom:383.970000px;}
.yf4{bottom:384.150000px;}
.y1a0{bottom:385.050000px;}
.y64{bottom:386.490000px;}
.y16f{bottom:390.090000px;}
.y1b4{bottom:393.150000px;}
.y2f{bottom:393.690000px;}
.y7b{bottom:395.490000px;}
.y20{bottom:397.650000px;}
.ybd{bottom:401.790000px;}
.yf3{bottom:401.970000px;}
.y19f{bottom:402.870000px;}
.y63{bottom:404.310000px;}
.y29{bottom:410.835000px;}
.y1b3{bottom:410.970000px;}
.y7a{bottom:413.310000px;}
.y16e{bottom:416.910000px;}
.ybc{bottom:419.610000px;}
.yf2{bottom:419.790000px;}
.y19e{bottom:420.690000px;}
.y62{bottom:422.130000px;}
.y1b2{bottom:428.790000px;}
.y1e{bottom:430.590000px;}
.y79{bottom:431.130000px;}
.y16d{bottom:434.730000px;}
.ybb{bottom:437.610000px;}
.y19d{bottom:438.690000px;}
.y1b1{bottom:446.655000px;}
.y61{bottom:448.995000px;}
.y16c{bottom:452.595000px;}
.yf1{bottom:455.655000px;}
.y19c{bottom:456.555000px;}
.y1d{bottom:457.455000px;}
.y2c{bottom:462.135000px;}
.yba{bottom:464.475000px;}
.y1b0{bottom:464.655000px;}
.y60{bottom:466.815000px;}
.y16b{bottom:470.415000px;}
.yf0{bottom:473.475000px;}
.y19b{bottom:474.375000px;}
.yb9{bottom:482.295000px;}
.y1af{bottom:482.475000px;}
.y12f{bottom:483.195000px;}
.y1c{bottom:484.275000px;}
.y78{bottom:484.455000px;}
.y5f{bottom:484.815000px;}
.y16a{bottom:488.415000px;}
.y10e{bottom:491.295000px;}
.y19a{bottom:492.195000px;}
.yb8{bottom:500.115000px;}
.yef{bottom:500.295000px;}
.y5e{bottom:502.635000px;}
.y169{bottom:506.235000px;}
.y10d{bottom:509.115000px;}
.y199{bottom:510.015000px;}
.y128{bottom:510.735000px;}
.y1b{bottom:511.095000px;}
.y77{bottom:511.635000px;}
.yb7{bottom:517.935000px;}
.yee{bottom:518.115000px;}
.y5d{bottom:520.455000px;}
.y10c{bottom:526.935000px;}
.y198{bottom:527.835000px;}
.y76{bottom:529.455000px;}
.y168{bottom:533.055000px;}
.yb6{bottom:535.935000px;}
.y1a{bottom:537.915000px;}
.y5c{bottom:538.275000px;}
.y10b{bottom:544.935000px;}
.y197{bottom:545.475000px;}
.y75{bottom:547.275000px;}
.y1d5{bottom:547.635000px;}
.y167{bottom:550.875000px;}
.yb5{bottom:553.755000px;}
.yed{bottom:553.935000px;}
.y5b{bottom:556.095000px;}
.y12b{bottom:556.275000px;}
.y10a{bottom:562.755000px;}
.y196{bottom:563.655000px;}
.y19{bottom:564.555000px;}
.y1f{bottom:564.915000px;}
.y74{bottom:565.095000px;}
.y166{bottom:568.695000px;}
.yb4{bottom:571.575000px;}
.yec{bottom:571.755000px;}
.y5a{bottom:573.735000px;}
.y109{bottom:580.575000px;}
.y195{bottom:581.475000px;}
.y73{bottom:583.095000px;}
.y165{bottom:586.515000px;}
.yb3{bottom:589.395000px;}
.yeb{bottom:589.575000px;}
.y18{bottom:592.995000px;}
.y108{bottom:598.395000px;}
.y194{bottom:599.295000px;}
.y59{bottom:600.915000px;}
.y164{bottom:604.515000px;}
.yb2{bottom:607.215000px;}
.yea{bottom:607.395000px;}
.y107{bottom:616.215000px;}
.y193{bottom:616.755000px;}
.y58{bottom:618.735000px;}
.y17{bottom:619.275000px;}
.y163{bottom:622.335000px;}
.yb1{bottom:625.035000px;}
.ye9{bottom:625.215000px;}
.y106{bottom:634.035000px;}
.y192{bottom:634.755000px;}
.y57{bottom:636.555000px;}
.y162{bottom:640.155000px;}
.y1d4{bottom:642.315000px;}
.yb0{bottom:643.035000px;}
.y16{bottom:650.055000px;}
.y105{bottom:652.035000px;}
.y191{bottom:652.935000px;}
.y56{bottom:654.375000px;}
.y161{bottom:657.975000px;}
.yaf{bottom:660.855000px;}
.ye8{bottom:661.035000px;}
.y104{bottom:669.855000px;}
.y190{bottom:670.755000px;}
.y55{bottom:672.195000px;}
.y160{bottom:675.825000px;}
.yae{bottom:678.705000px;}
.ye7{bottom:678.885000px;}
.y103{bottom:687.705000px;}
.y18f{bottom:688.605000px;}
.y54{bottom:690.225000px;}
.y1d3{bottom:693.105000px;}
.y15f{bottom:693.825000px;}
.yad{bottom:696.165000px;}
.y127{bottom:696.525000px;}
.ye6{bottom:696.705000px;}
.y15{bottom:698.865000px;}
.y102{bottom:705.525000px;}
.y18e{bottom:706.425000px;}
.y53{bottom:708.045000px;}
.y15e{bottom:711.645000px;}
.y126{bottom:714.345000px;}
.ye5{bottom:714.525000px;}
.y1d2{bottom:719.925000px;}
.yac{bottom:723.345000px;}
.y18d{bottom:724.245000px;}
.y52{bottom:725.865000px;}
.y15d{bottom:729.465000px;}
.y125{bottom:731.805000px;}
.ye4{bottom:732.345000px;}
.yab{bottom:741.165000px;}
.y18c{bottom:742.245000px;}
.y51{bottom:743.685000px;}
.y1d1{bottom:746.745000px;}
.y15c{bottom:747.285000px;}
.y14{bottom:747.465000px;}
.ye3{bottom:750.165000px;}
.yaa{bottom:759.165000px;}
.y18b{bottom:760.065000px;}
.y50{bottom:761.505000px;}
.y15b{bottom:765.105000px;}
.ye2{bottom:768.165000px;}
.y1d0{bottom:773.565000px;}
.ya9{bottom:776.985000px;}
.y18a{bottom:777.885000px;}
.y4f{bottom:779.505000px;}
.y15a{bottom:782.925000px;}
.ye1{bottom:785.985000px;}
.ya8{bottom:794.805000px;}
.y189{bottom:795.705000px;}
.y4e{bottom:797.325000px;}
.y13{bottom:800.565000px;}
.y159{bottom:800.925000px;}
.ye0{bottom:803.805000px;}
.ya7{bottom:812.625000px;}
.y188{bottom:813.525000px;}
.y4d{bottom:815.145000px;}
.y158{bottom:818.745000px;}
.y1bd{bottom:821.265000px;}
.ydf{bottom:821.625000px;}
.y1cf{bottom:827.385000px;}
.y12{bottom:828.465000px;}
.y119{bottom:830.085000px;}
.ya6{bottom:830.445000px;}
.y187{bottom:831.345000px;}
.y4c{bottom:832.965000px;}
.y157{bottom:836.565000px;}
.yde{bottom:839.445000px;}
.y118{bottom:848.085000px;}
.ya5{bottom:848.445000px;}
.y186{bottom:849.345000px;}
.y4b{bottom:850.785000px;}
.y1ce{bottom:854.205000px;}
.y156{bottom:854.385000px;}
.ydd{bottom:857.445000px;}
.ya4{bottom:866.265000px;}
.y185{bottom:867.165000px;}
.y4a{bottom:868.605000px;}
.y155{bottom:872.205000px;}
.y11{bottom:874.545000px;}
.ydc{bottom:875.265000px;}
.y1cd{bottom:881.025000px;}
.ya3{bottom:884.085000px;}
.y184{bottom:884.985000px;}
.y49{bottom:886.605000px;}
.y154{bottom:890.205000px;}
.ydb{bottom:893.085000px;}
.y10{bottom:899.745000px;}
.ya2{bottom:901.905000px;}
.y183{bottom:902.805000px;}
.y48{bottom:904.425000px;}
.y1cc{bottom:907.845000px;}
.y153{bottom:908.025000px;}
.yda{bottom:910.950000px;}
.yf{bottom:919.590000px;}
.ya1{bottom:919.770000px;}
.y182{bottom:920.670000px;}
.y47{bottom:922.290000px;}
.y152{bottom:925.890000px;}
.yd9{bottom:928.770000px;}
.y1cb{bottom:934.710000px;}
.ya0{bottom:937.590000px;}
.y181{bottom:938.670000px;}
.ye{bottom:939.570000px;}
.y46{bottom:940.110000px;}
.y151{bottom:943.710000px;}
.yd8{bottom:946.590000px;}
.y9f{bottom:955.590000px;}
.y180{bottom:956.490000px;}
.y45{bottom:957.930000px;}
.yd{bottom:959.010000px;}
.y150{bottom:961.530000px;}
.y1ca{bottom:961.710000px;}
.yd7{bottom:964.590000px;}
.y9e{bottom:973.410000px;}
.y17f{bottom:974.310000px;}
.y44{bottom:975.930000px;}
.yc{bottom:979.170000px;}
.y14f{bottom:979.350000px;}
.yd6{bottom:982.410000px;}
.y1c9{bottom:988.530000px;}
.y9d{bottom:991.230000px;}
.y43{bottom:993.750000px;}
.y17e{bottom:994.110000px;}
.y14e{bottom:997.350000px;}
.yd5{bottom:1000.230000px;}
.y9c{bottom:1009.050000px;}
.y42{bottom:1011.570000px;}
.y1c8{bottom:1015.350000px;}
.y14d{bottom:1017.150000px;}
.yd4{bottom:1018.050000px;}
.yb{bottom:1019.130000px;}
.y9b{bottom:1026.870000px;}
.y41{bottom:1029.390000px;}
.ya{bottom:1031.190000px;}
.yd3{bottom:1035.870000px;}
.y1c7{bottom:1042.170000px;}
.y9{bottom:1043.250000px;}
.y9a{bottom:1044.870000px;}
.y40{bottom:1047.210000px;}
.y14c{bottom:1049.910000px;}
.yd2{bottom:1053.870000px;}
.y8{bottom:1055.310000px;}
.y99{bottom:1062.690000px;}
.y3f{bottom:1067.010000px;}
.y14b{bottom:1067.730000px;}
.y1c6{bottom:1068.990000px;}
.y7{bottom:1069.890000px;}
.yd1{bottom:1071.690000px;}
.y98{bottom:1080.510000px;}
.y14a{bottom:1085.550000px;}
.yd0{bottom:1089.510000px;}
.y3e{bottom:1092.930000px;}
.y6{bottom:1095.450000px;}
.y1c5{bottom:1095.990000px;}
.y97{bottom:1098.330000px;}
.y149{bottom:1103.550000px;}
.ycf{bottom:1107.330000px;}
.y8b{bottom:1109.520000px;}
.y96{bottom:1116.150000px;}
.y148{bottom:1121.370000px;}
.y1c4{bottom:1122.810000px;}
.yce{bottom:1125.150000px;}
.y90{bottom:1126.950000px;}
.y1c1{bottom:1133.970000px;}
.y147{bottom:1140.270000px;}
.y95{bottom:1142.970000px;}
.y8e{bottom:1146.930000px;}
.y1c3{bottom:1149.660000px;}
.y1c0{bottom:1152.000000px;}
.y146{bottom:1159.020000px;}
.y94{bottom:1161.000000px;}
.y1bf{bottom:1169.820000px;}
.y1c2{bottom:1175.580000px;}
.y8d{bottom:1175.760000px;}
.y145{bottom:1176.840000px;}
.y117{bottom:1178.460000px;}
.y93{bottom:1178.820000px;}
.y3d{bottom:1190.700000px;}
.y144{bottom:1195.740000px;}
.y116{bottom:1196.280000px;}
.y92{bottom:1196.640000px;}
.h19{height:26.805000px;}
.h2{height:31.135500px;}
.h15{height:35.332031px;}
.h7{height:40.985156px;}
.h18{height:44.625000px;}
.h12{height:47.381836px;}
.h1c{height:47.961914px;}
.h1e{height:52.971680px;}
.h3{height:52.998047px;}
.hd{height:54.421875px;}
.h1b{height:55.503491px;}
.h10{height:58.621992px;}
.h8{height:58.651172px;}
.h11{height:58.763250px;}
.h1d{height:59.092031px;}
.h9{height:60.226875px;}
.h17{height:62.445000px;}
.hc{height:65.010937px;}
.h4{height:65.884219px;}
.hb{height:66.757500px;}
.he{height:78.367500px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.h16{height:107.985000px;}
.h13{height:108.720000px;}
.h1a{height:227.715000px;}
.hf{height:438.120000px;}
.h14{height:1262.875980px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.wa{width:94.536000px;}
.wc{width:108.936000px;}
.w6{width:123.322500px;}
.wd{width:140.961000px;}
.wb{width:147.960000px;}
.w9{width:161.670000px;}
.w7{width:243.210000px;}
.w8{width:250.815000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w5{width:892.976250px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x12{left:10.800000px;}
.x24{left:12.420000px;}
.x31{left:14.575500px;}
.x2f{left:15.655500px;}
.x20{left:19.650000px;}
.x32{left:21.595500px;}
.x36{left:23.565000px;}
.x29{left:26.265000px;}
.x23{left:28.080000px;}
.x27{left:30.060000px;}
.x30{left:31.135500px;}
.x35{left:32.940000px;}
.x25{left:34.020000px;}
.x34{left:37.080000px;}
.x11{left:38.340000px;}
.x14{left:40.140000px;}
.x2b{left:43.740000px;}
.x1{left:45.364500px;}
.x33{left:47.160000px;}
.x13{left:49.140000px;}
.x15{left:50.940000px;}
.x5{left:54.000000px;}
.x1b{left:55.984500px;}
.x2a{left:58.171500px;}
.x1c{left:61.591500px;}
.xe{left:64.800000px;}
.x2d{left:66.765000px;}
.x2c{left:70.560000px;}
.x37{left:72.360000px;}
.x1e{left:73.800000px;}
.x2e{left:77.400000px;}
.x16{left:80.856000px;}
.xb{left:89.496000px;}
.x39{left:108.036000px;}
.x21{left:113.070000px;}
.xc{left:160.590000px;}
.x1d{left:180.030000px;}
.x2{left:222.370500px;}
.x26{left:275.295000px;}
.x8{left:281.775000px;}
.x6{left:285.735000px;}
.x9{left:297.795000px;}
.xf{left:314.355000px;}
.xd{left:348.915000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.x1f{left:423.975000px;}
.x10{left:473.505000px;}
.x1a{left:478.005000px;}
.x38{left:500.505000px;}
.x3a{left:527.505000px;}
.x28{left:533.820000px;}
.x22{left:675.510000px;}
.x19{left:689.550000px;}
.x4{left:767.490000px;}
.x17{left:800.456250px;}
.x18{left:804.960000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.864000pt;}
.ls12{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.736000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.lsd{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:7.200000pt;}
.ls18{letter-spacing:8.480000pt;}
.ls14{letter-spacing:17.440000pt;}
.ls16{letter-spacing:18.720000pt;}
.ls15{letter-spacing:19.360000pt;}
.ls10{letter-spacing:22.496000pt;}
.lsf{letter-spacing:32.160000pt;}
.lse{letter-spacing:46.816000pt;}
.lsc{letter-spacing:56.416000pt;}
.wsa{word-spacing:-48.000000pt;}
.ws3{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.272320pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.808000pt;}
.wsf{word-spacing:-11.680000pt;}
.ws7{word-spacing:-11.264000pt;}
.wsd{word-spacing:-11.136000pt;}
.wsb{word-spacing:-7.360000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._9{width:2.190293pt;}
._8{width:3.940480pt;}
._e{width:5.630720pt;}
._d{width:6.586880pt;}
._1c{width:7.477120pt;}
._a{width:8.392960pt;}
._b{width:9.361493pt;}
._c{width:11.040427pt;}
._7{width:12.228693pt;}
._12{width:13.424000pt;}
._15{width:14.352000pt;}
._11{width:15.792000pt;}
._14{width:17.136000pt;}
._13{width:18.192000pt;}
._20{width:19.221333pt;}
._19{width:20.133333pt;}
._1a{width:21.296000pt;}
._1b{width:22.336000pt;}
._18{width:23.664000pt;}
._1e{width:25.296000pt;}
._17{width:26.256000pt;}
._16{width:27.168000pt;}
._1d{width:28.176000pt;}
._1f{width:29.194667pt;}
._10{width:30.192000pt;}
._f{width:31.104000pt;}
._24{width:32.613333pt;}
._26{width:34.128000pt;}
._25{width:36.160000pt;}
._30{width:37.360000pt;}
._38{width:38.832000pt;}
._36{width:40.368000pt;}
._37{width:41.701333pt;}
._29{width:43.632000pt;}
._27{width:44.736000pt;}
._28{width:45.760000pt;}
._2c{width:47.365333pt;}
._21{width:49.008000pt;}
._3a{width:49.952000pt;}
._2e{width:51.328000pt;}
._2f{width:56.874667pt;}
._23{width:59.088000pt;}
._34{width:60.090667pt;}
._31{width:61.434667pt;}
._6{width:63.621547pt;}
._3{width:69.504000pt;}
._32{width:73.392000pt;}
._33{width:74.592000pt;}
._22{width:76.752000pt;}
._2a{width:78.256000pt;}
._2b{width:79.408000pt;}
._3f{width:89.872000pt;}
._3b{width:91.344000pt;}
._3c{width:92.277333pt;}
._35{width:139.200000pt;}
._4{width:140.320000pt;}
._2d{width:347.877333pt;}
._39{width:671.280000pt;}
._3d{width:814.224000pt;}
._3e{width:837.888000pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y3c{bottom:-10.240000pt;}
.y91{bottom:-9.146667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y13a{bottom:8.946667pt;}
.y12e{bottom:8.960000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y139{bottom:24.786667pt;}
.y12d{bottom:24.800000pt;}
.y3a{bottom:32.160000pt;}
.y8f{bottom:33.253333pt;}
.y5{bottom:35.360000pt;}
.y138{bottom:40.626667pt;}
.y12c{bottom:40.640000pt;}
.y13c{bottom:48.466667pt;}
.y39{bottom:49.760000pt;}
.y1{bottom:53.920000pt;}
.y137{bottom:56.466667pt;}
.y12a{bottom:61.280000pt;}
.y38{bottom:67.360000pt;}
.y13b{bottom:68.306667pt;}
.y136{bottom:72.306667pt;}
.y8c{bottom:76.480000pt;}
.y129{bottom:81.120000pt;}
.y37{bottom:84.986667pt;}
.y135{bottom:88.306667pt;}
.y124{bottom:92.000000pt;}
.y143{bottom:94.560000pt;}
.ycd{bottom:95.200000pt;}
.y101{bottom:95.360000pt;}
.y8a{bottom:97.600000pt;}
.y17d{bottom:100.640000pt;}
.y36{bottom:102.586667pt;}
.y115{bottom:103.360000pt;}
.y1ae{bottom:104.160000pt;}
.y72{bottom:105.280000pt;}
.y28{bottom:107.840000pt;}
.y134{bottom:108.146667pt;}
.ycc{bottom:111.200000pt;}
.y142{bottom:111.360000pt;}
.y89{bottom:113.440000pt;}
.y17c{bottom:116.480000pt;}
.y114{bottom:119.200000pt;}
.y1ad{bottom:120.000000pt;}
.y35{bottom:120.346667pt;}
.y71{bottom:121.120000pt;}
.y3b{bottom:122.240000pt;}
.y123{bottom:123.840000pt;}
.ycb{bottom:127.040000pt;}
.y100{bottom:127.200000pt;}
.y133{bottom:127.986667pt;}
.y88{bottom:129.280000pt;}
.y17b{bottom:132.320000pt;}
.y113{bottom:135.200000pt;}
.y27{bottom:136.000000pt;}
.y70{bottom:137.120000pt;}
.y34{bottom:137.946667pt;}
.y122{bottom:139.680000pt;}
.yca{bottom:142.880000pt;}
.yff{bottom:143.040000pt;}
.y141{bottom:143.200000pt;}
.y87{bottom:145.120000pt;}
.y132{bottom:147.826667pt;}
.y17a{bottom:148.160000pt;}
.y112{bottom:151.040000pt;}
.y1ac{bottom:151.840000pt;}
.y6f{bottom:152.960000pt;}
.y121{bottom:155.520000pt;}
.y33{bottom:155.546667pt;}
.yc9{bottom:158.720000pt;}
.yfe{bottom:158.880000pt;}
.y140{bottom:159.040000pt;}
.y86{bottom:161.120000pt;}
.y111{bottom:166.880000pt;}
.y1ab{bottom:167.680000pt;}
.y131{bottom:167.706667pt;}
.y6e{bottom:168.480000pt;}
.y120{bottom:171.680000pt;}
.y179{bottom:172.160000pt;}
.yc8{bottom:174.560000pt;}
.yfd{bottom:174.720000pt;}
.y13f{bottom:174.880000pt;}
.y85{bottom:176.960000pt;}
.y1be{bottom:182.400000pt;}
.y110{bottom:182.746667pt;}
.y26{bottom:182.906667pt;}
.y1aa{bottom:183.546667pt;}
.y11f{bottom:187.546667pt;}
.y178{bottom:188.026667pt;}
.yc7{bottom:190.426667pt;}
.yfc{bottom:190.586667pt;}
.y13e{bottom:190.746667pt;}
.y6d{bottom:192.666667pt;}
.y84{bottom:192.826667pt;}
.y10f{bottom:198.586667pt;}
.y31{bottom:198.746667pt;}
.y1a9{bottom:199.386667pt;}
.y11e{bottom:203.386667pt;}
.y177{bottom:203.866667pt;}
.yc6{bottom:206.426667pt;}
.y13d{bottom:206.586667pt;}
.y6c{bottom:208.506667pt;}
.y83{bottom:208.666667pt;}
.yfb{bottom:214.426667pt;}
.y1a8{bottom:215.386667pt;}
.y30{bottom:216.506667pt;}
.y11d{bottom:219.386667pt;}
.y176{bottom:219.706667pt;}
.yc5{bottom:222.266667pt;}
.y1bc{bottom:222.426667pt;}
.y6b{bottom:224.346667pt;}
.y82{bottom:224.506667pt;}
.y11c{bottom:224.666667pt;}
.y130{bottom:226.280000pt;}
.y25{bottom:229.786667pt;}
.yfa{bottom:230.426667pt;}
.y1a7{bottom:231.226667pt;}
.y11b{bottom:234.426667pt;}
.y175{bottom:235.546667pt;}
.yc4{bottom:238.106667pt;}
.y1bb{bottom:238.426667pt;}
.y6a{bottom:240.346667pt;}
.yf9{bottom:246.266667pt;}
.y1a6{bottom:247.066667pt;}
.y174{bottom:251.546667pt;}
.y1ba{bottom:254.266667pt;}
.y69{bottom:256.186667pt;}
.y81{bottom:256.346667pt;}
.y2e{bottom:259.706667pt;}
.y24{bottom:260.826667pt;}
.yc3{bottom:261.946667pt;}
.yf8{bottom:262.106667pt;}
.y1a5{bottom:262.906667pt;}
.y173{bottom:267.386667pt;}
.y1b9{bottom:270.106667pt;}
.y68{bottom:271.706667pt;}
.y80{bottom:272.186667pt;}
.y2d{bottom:277.306667pt;}
.yc2{bottom:277.786667pt;}
.yf7{bottom:277.946667pt;}
.y1a4{bottom:278.746667pt;}
.y172{bottom:283.226667pt;}
.y1b8{bottom:285.946667pt;}
.y7f{bottom:288.026667pt;}
.y32{bottom:288.986667pt;}
.y22{bottom:291.706667pt;}
.yc1{bottom:293.786667pt;}
.y1a3{bottom:294.586667pt;}
.y67{bottom:295.866667pt;}
.y11a{bottom:299.066667pt;}
.y1b7{bottom:301.786667pt;}
.y7e{bottom:303.866667pt;}
.yc0{bottom:309.626667pt;}
.yf6{bottom:309.786667pt;}
.y1a2{bottom:310.586667pt;}
.y66{bottom:311.706667pt;}
.y171{bottom:314.906667pt;}
.y1b6{bottom:317.786667pt;}
.y7d{bottom:319.706667pt;}
.y2b{bottom:320.706667pt;}
.y21{bottom:322.586667pt;}
.ybf{bottom:325.466667pt;}
.yf5{bottom:325.626667pt;}
.y1a1{bottom:326.426667pt;}
.y23{bottom:327.546667pt;}
.y65{bottom:327.706667pt;}
.y170{bottom:330.746667pt;}
.y1b5{bottom:333.626667pt;}
.y7c{bottom:335.706667pt;}
.y2a{bottom:338.306667pt;}
.ybe{bottom:341.306667pt;}
.yf4{bottom:341.466667pt;}
.y1a0{bottom:342.266667pt;}
.y64{bottom:343.546667pt;}
.y16f{bottom:346.746667pt;}
.y1b4{bottom:349.466667pt;}
.y2f{bottom:349.946667pt;}
.y7b{bottom:351.546667pt;}
.y20{bottom:353.466667pt;}
.ybd{bottom:357.146667pt;}
.yf3{bottom:357.306667pt;}
.y19f{bottom:358.106667pt;}
.y63{bottom:359.386667pt;}
.y29{bottom:365.186667pt;}
.y1b3{bottom:365.306667pt;}
.y7a{bottom:367.386667pt;}
.y16e{bottom:370.586667pt;}
.ybc{bottom:372.986667pt;}
.yf2{bottom:373.146667pt;}
.y19e{bottom:373.946667pt;}
.y62{bottom:375.226667pt;}
.y1b2{bottom:381.146667pt;}
.y1e{bottom:382.746667pt;}
.y79{bottom:383.226667pt;}
.y16d{bottom:386.426667pt;}
.ybb{bottom:388.986667pt;}
.y19d{bottom:389.946667pt;}
.y1b1{bottom:397.026667pt;}
.y61{bottom:399.106667pt;}
.y16c{bottom:402.306667pt;}
.yf1{bottom:405.026667pt;}
.y19c{bottom:405.826667pt;}
.y1d{bottom:406.626667pt;}
.y2c{bottom:410.786667pt;}
.yba{bottom:412.866667pt;}
.y1b0{bottom:413.026667pt;}
.y60{bottom:414.946667pt;}
.y16b{bottom:418.146667pt;}
.yf0{bottom:420.866667pt;}
.y19b{bottom:421.666667pt;}
.yb9{bottom:428.706667pt;}
.y1af{bottom:428.866667pt;}
.y12f{bottom:429.506667pt;}
.y1c{bottom:430.466667pt;}
.y78{bottom:430.626667pt;}
.y5f{bottom:430.946667pt;}
.y16a{bottom:434.146667pt;}
.y10e{bottom:436.706667pt;}
.y19a{bottom:437.506667pt;}
.yb8{bottom:444.546667pt;}
.yef{bottom:444.706667pt;}
.y5e{bottom:446.786667pt;}
.y169{bottom:449.986667pt;}
.y10d{bottom:452.546667pt;}
.y199{bottom:453.346667pt;}
.y128{bottom:453.986667pt;}
.y1b{bottom:454.306667pt;}
.y77{bottom:454.786667pt;}
.yb7{bottom:460.386667pt;}
.yee{bottom:460.546667pt;}
.y5d{bottom:462.626667pt;}
.y10c{bottom:468.386667pt;}
.y198{bottom:469.186667pt;}
.y76{bottom:470.626667pt;}
.y168{bottom:473.826667pt;}
.yb6{bottom:476.386667pt;}
.y1a{bottom:478.146667pt;}
.y5c{bottom:478.466667pt;}
.y10b{bottom:484.386667pt;}
.y197{bottom:484.866667pt;}
.y75{bottom:486.466667pt;}
.y1d5{bottom:486.786667pt;}
.y167{bottom:489.666667pt;}
.yb5{bottom:492.226667pt;}
.yed{bottom:492.386667pt;}
.y5b{bottom:494.306667pt;}
.y12b{bottom:494.466667pt;}
.y10a{bottom:500.226667pt;}
.y196{bottom:501.026667pt;}
.y19{bottom:501.826667pt;}
.y1f{bottom:502.146667pt;}
.y74{bottom:502.306667pt;}
.y166{bottom:505.506667pt;}
.yb4{bottom:508.066667pt;}
.yec{bottom:508.226667pt;}
.y5a{bottom:509.986667pt;}
.y109{bottom:516.066667pt;}
.y195{bottom:516.866667pt;}
.y73{bottom:518.306667pt;}
.y165{bottom:521.346667pt;}
.yb3{bottom:523.906667pt;}
.yeb{bottom:524.066667pt;}
.y18{bottom:527.106667pt;}
.y108{bottom:531.906667pt;}
.y194{bottom:532.706667pt;}
.y59{bottom:534.146667pt;}
.y164{bottom:537.346667pt;}
.yb2{bottom:539.746667pt;}
.yea{bottom:539.906667pt;}
.y107{bottom:547.746667pt;}
.y193{bottom:548.226667pt;}
.y58{bottom:549.986667pt;}
.y17{bottom:550.466667pt;}
.y163{bottom:553.186667pt;}
.yb1{bottom:555.586667pt;}
.ye9{bottom:555.746667pt;}
.y106{bottom:563.586667pt;}
.y192{bottom:564.226667pt;}
.y57{bottom:565.826667pt;}
.y162{bottom:569.026667pt;}
.y1d4{bottom:570.946667pt;}
.yb0{bottom:571.586667pt;}
.y16{bottom:577.826667pt;}
.y105{bottom:579.586667pt;}
.y191{bottom:580.386667pt;}
.y56{bottom:581.666667pt;}
.y161{bottom:584.866667pt;}
.yaf{bottom:587.426667pt;}
.ye8{bottom:587.586667pt;}
.y104{bottom:595.426667pt;}
.y190{bottom:596.226667pt;}
.y55{bottom:597.506667pt;}
.y160{bottom:600.733333pt;}
.yae{bottom:603.293333pt;}
.ye7{bottom:603.453333pt;}
.y103{bottom:611.293333pt;}
.y18f{bottom:612.093333pt;}
.y54{bottom:613.533333pt;}
.y1d3{bottom:616.093333pt;}
.y15f{bottom:616.733333pt;}
.yad{bottom:618.813333pt;}
.y127{bottom:619.133333pt;}
.ye6{bottom:619.293333pt;}
.y15{bottom:621.213333pt;}
.y102{bottom:627.133333pt;}
.y18e{bottom:627.933333pt;}
.y53{bottom:629.373333pt;}
.y15e{bottom:632.573333pt;}
.y126{bottom:634.973333pt;}
.ye5{bottom:635.133333pt;}
.y1d2{bottom:639.933333pt;}
.yac{bottom:642.973333pt;}
.y18d{bottom:643.773333pt;}
.y52{bottom:645.213333pt;}
.y15d{bottom:648.413333pt;}
.y125{bottom:650.493333pt;}
.ye4{bottom:650.973333pt;}
.yab{bottom:658.813333pt;}
.y18c{bottom:659.773333pt;}
.y51{bottom:661.053333pt;}
.y1d1{bottom:663.773333pt;}
.y15c{bottom:664.253333pt;}
.y14{bottom:664.413333pt;}
.ye3{bottom:666.813333pt;}
.yaa{bottom:674.813333pt;}
.y18b{bottom:675.613333pt;}
.y50{bottom:676.893333pt;}
.y15b{bottom:680.093333pt;}
.ye2{bottom:682.813333pt;}
.y1d0{bottom:687.613333pt;}
.ya9{bottom:690.653333pt;}
.y18a{bottom:691.453333pt;}
.y4f{bottom:692.893333pt;}
.y15a{bottom:695.933333pt;}
.ye1{bottom:698.653333pt;}
.ya8{bottom:706.493333pt;}
.y189{bottom:707.293333pt;}
.y4e{bottom:708.733333pt;}
.y13{bottom:711.613333pt;}
.y159{bottom:711.933333pt;}
.ye0{bottom:714.493333pt;}
.ya7{bottom:722.333333pt;}
.y188{bottom:723.133333pt;}
.y4d{bottom:724.573333pt;}
.y158{bottom:727.773333pt;}
.y1bd{bottom:730.013333pt;}
.ydf{bottom:730.333333pt;}
.y1cf{bottom:735.453333pt;}
.y12{bottom:736.413333pt;}
.y119{bottom:737.853333pt;}
.ya6{bottom:738.173333pt;}
.y187{bottom:738.973333pt;}
.y4c{bottom:740.413333pt;}
.y157{bottom:743.613333pt;}
.yde{bottom:746.173333pt;}
.y118{bottom:753.853333pt;}
.ya5{bottom:754.173333pt;}
.y186{bottom:754.973333pt;}
.y4b{bottom:756.253333pt;}
.y1ce{bottom:759.293333pt;}
.y156{bottom:759.453333pt;}
.ydd{bottom:762.173333pt;}
.ya4{bottom:770.013333pt;}
.y185{bottom:770.813333pt;}
.y4a{bottom:772.093333pt;}
.y155{bottom:775.293333pt;}
.y11{bottom:777.373333pt;}
.ydc{bottom:778.013333pt;}
.y1cd{bottom:783.133333pt;}
.ya3{bottom:785.853333pt;}
.y184{bottom:786.653333pt;}
.y49{bottom:788.093333pt;}
.y154{bottom:791.293333pt;}
.ydb{bottom:793.853333pt;}
.y10{bottom:799.773333pt;}
.ya2{bottom:801.693333pt;}
.y183{bottom:802.493333pt;}
.y48{bottom:803.933333pt;}
.y1cc{bottom:806.973333pt;}
.y153{bottom:807.133333pt;}
.yda{bottom:809.733333pt;}
.yf{bottom:817.413333pt;}
.ya1{bottom:817.573333pt;}
.y182{bottom:818.373333pt;}
.y47{bottom:819.813333pt;}
.y152{bottom:823.013333pt;}
.yd9{bottom:825.573333pt;}
.y1cb{bottom:830.853333pt;}
.ya0{bottom:833.413333pt;}
.y181{bottom:834.373333pt;}
.ye{bottom:835.173333pt;}
.y46{bottom:835.653333pt;}
.y151{bottom:838.853333pt;}
.yd8{bottom:841.413333pt;}
.y9f{bottom:849.413333pt;}
.y180{bottom:850.213333pt;}
.y45{bottom:851.493333pt;}
.yd{bottom:852.453333pt;}
.y150{bottom:854.693333pt;}
.y1ca{bottom:854.853333pt;}
.yd7{bottom:857.413333pt;}
.y9e{bottom:865.253333pt;}
.y17f{bottom:866.053333pt;}
.y44{bottom:867.493333pt;}
.yc{bottom:870.373333pt;}
.y14f{bottom:870.533333pt;}
.yd6{bottom:873.253333pt;}
.y1c9{bottom:878.693333pt;}
.y9d{bottom:881.093333pt;}
.y43{bottom:883.333333pt;}
.y17e{bottom:883.653333pt;}
.y14e{bottom:886.533333pt;}
.yd5{bottom:889.093333pt;}
.y9c{bottom:896.933333pt;}
.y42{bottom:899.173333pt;}
.y1c8{bottom:902.533333pt;}
.y14d{bottom:904.133333pt;}
.yd4{bottom:904.933333pt;}
.yb{bottom:905.893333pt;}
.y9b{bottom:912.773333pt;}
.y41{bottom:915.013333pt;}
.ya{bottom:916.613333pt;}
.yd3{bottom:920.773333pt;}
.y1c7{bottom:926.373333pt;}
.y9{bottom:927.333333pt;}
.y9a{bottom:928.773333pt;}
.y40{bottom:930.853333pt;}
.y14c{bottom:933.253333pt;}
.yd2{bottom:936.773333pt;}
.y8{bottom:938.053333pt;}
.y99{bottom:944.613333pt;}
.y3f{bottom:948.453333pt;}
.y14b{bottom:949.093333pt;}
.y1c6{bottom:950.213333pt;}
.y7{bottom:951.013333pt;}
.yd1{bottom:952.613333pt;}
.y98{bottom:960.453333pt;}
.y14a{bottom:964.933333pt;}
.yd0{bottom:968.453333pt;}
.y3e{bottom:971.493333pt;}
.y6{bottom:973.733333pt;}
.y1c5{bottom:974.213333pt;}
.y97{bottom:976.293333pt;}
.y149{bottom:980.933333pt;}
.ycf{bottom:984.293333pt;}
.y8b{bottom:986.240000pt;}
.y96{bottom:992.133333pt;}
.y148{bottom:996.773333pt;}
.y1c4{bottom:998.053333pt;}
.yce{bottom:1000.133333pt;}
.y90{bottom:1001.733333pt;}
.y1c1{bottom:1007.973333pt;}
.y147{bottom:1013.573333pt;}
.y95{bottom:1015.973333pt;}
.y8e{bottom:1019.493333pt;}
.y1c3{bottom:1021.920000pt;}
.y1c0{bottom:1024.000000pt;}
.y146{bottom:1030.240000pt;}
.y94{bottom:1032.000000pt;}
.y1bf{bottom:1039.840000pt;}
.y1c2{bottom:1044.960000pt;}
.y8d{bottom:1045.120000pt;}
.y145{bottom:1046.080000pt;}
.y117{bottom:1047.520000pt;}
.y93{bottom:1047.840000pt;}
.y3d{bottom:1058.400000pt;}
.y144{bottom:1062.880000pt;}
.y116{bottom:1063.360000pt;}
.y92{bottom:1063.680000pt;}
.h19{height:23.826667pt;}
.h2{height:27.676000pt;}
.h15{height:31.406250pt;}
.h7{height:36.431250pt;}
.h18{height:39.666667pt;}
.h12{height:42.117188pt;}
.h1c{height:42.632812pt;}
.h1e{height:47.085938pt;}
.h3{height:47.109375pt;}
.hd{height:48.375000pt;}
.h1b{height:49.336436pt;}
.h10{height:52.108438pt;}
.h8{height:52.134375pt;}
.h11{height:52.234000pt;}
.h1d{height:52.526250pt;}
.h9{height:53.535000pt;}
.h17{height:55.506667pt;}
.hc{height:57.787500pt;}
.h4{height:58.563750pt;}
.hb{height:59.340000pt;}
.he{height:69.660000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.h16{height:95.986667pt;}
.h13{height:96.640000pt;}
.h1a{height:202.413333pt;}
.hf{height:389.440000pt;}
.h14{height:1122.556427pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.wa{width:84.032000pt;}
.wc{width:96.832000pt;}
.w6{width:109.620000pt;}
.wd{width:125.298667pt;}
.wb{width:131.520000pt;}
.w9{width:143.706667pt;}
.w7{width:216.186667pt;}
.w8{width:222.946667pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w5{width:793.756667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x12{left:9.600000pt;}
.x24{left:11.040000pt;}
.x31{left:12.956000pt;}
.x2f{left:13.916000pt;}
.x20{left:17.466667pt;}
.x32{left:19.196000pt;}
.x36{left:20.946667pt;}
.x29{left:23.346667pt;}
.x23{left:24.960000pt;}
.x27{left:26.720000pt;}
.x30{left:27.676000pt;}
.x35{left:29.280000pt;}
.x25{left:30.240000pt;}
.x34{left:32.960000pt;}
.x11{left:34.080000pt;}
.x14{left:35.680000pt;}
.x2b{left:38.880000pt;}
.x1{left:40.324000pt;}
.x33{left:41.920000pt;}
.x13{left:43.680000pt;}
.x15{left:45.280000pt;}
.x5{left:48.000000pt;}
.x1b{left:49.764000pt;}
.x2a{left:51.708000pt;}
.x1c{left:54.748000pt;}
.xe{left:57.600000pt;}
.x2d{left:59.346667pt;}
.x2c{left:62.720000pt;}
.x37{left:64.320000pt;}
.x1e{left:65.600000pt;}
.x2e{left:68.800000pt;}
.x16{left:71.872000pt;}
.xb{left:79.552000pt;}
.x39{left:96.032000pt;}
.x21{left:100.506667pt;}
.xc{left:142.746667pt;}
.x1d{left:160.026667pt;}
.x2{left:197.662667pt;}
.x26{left:244.706667pt;}
.x8{left:250.466667pt;}
.x6{left:253.986667pt;}
.x9{left:264.706667pt;}
.xf{left:279.426667pt;}
.xd{left:310.146667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.x1f{left:376.866667pt;}
.x10{left:420.893333pt;}
.x1a{left:424.893333pt;}
.x38{left:444.893333pt;}
.x3a{left:468.893333pt;}
.x28{left:474.506667pt;}
.x22{left:600.453333pt;}
.x19{left:612.933333pt;}
.x4{left:682.213333pt;}
.x17{left:711.516667pt;}
.x18{left:715.520000pt;}
}




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