
    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_bfe04a534335e2c9c258b001.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b1a32a13a0266d567d2fddcc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1884486670aa2f5afb0c569f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e50169d776c9bdfe272e1ce1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5395e9e55e1667b587877986.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.852539;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_b4e4e4db2c9bba4dcec51f8a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_25d3a8b734ade16d38a5a99a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.840332;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_7f9067d09ee87d5c8b2d8550.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690430;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_cad293bb216ae1930bdda517.woff2')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;}
.m1{transform:matrix(0.247459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247459,0.000000,0.000000,0.250000,0,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);}
.m2{transform:matrix(0.256416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256416,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-33.120000px;}
.v5{vertical-align:-16.707173px;}
.v6{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.047353px;}
.v1{vertical-align:33.120000px;}
.v3{vertical-align:50.853511px;}
.ls1d{letter-spacing:-1.512000px;}
.ls10{letter-spacing:-1.195945px;}
.ls8{letter-spacing:-1.008000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.216000px;}
.lse{letter-spacing:0.269280px;}
.ls19{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.720000px;}
.ls16{letter-spacing:1.440000px;}
.ls11{letter-spacing:2.675203px;}
.ls12{letter-spacing:2.698117px;}
.ls1c{letter-spacing:4.320000px;}
.ls18{letter-spacing:20.880000px;}
.ls17{letter-spacing:28.368000px;}
.ls1b{letter-spacing:36.000000px;}
.ls15{letter-spacing:64.368000px;}
.lsd{letter-spacing:115.968119px;}
.lsf{letter-spacing:125.067826px;}
.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;}
}
.ws16{word-spacing:-72.000000px;}
.ws12{word-spacing:-58.687710px;}
.wsd{word-spacing:-23.088635px;}
.wsc{word-spacing:-20.937934px;}
.ws1{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.504000px;}
.ws19{word-spacing:-18.288000px;}
.ws17{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws18{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.928000px;}
.ws15{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws1a{word-spacing:-16.488000px;}
.ws3{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.060000px;}
.ws9{word-spacing:-10.513950px;}
.wse{word-spacing:-10.377154px;}
.ws5{word-spacing:0.000000px;}
.ws13{word-spacing:84.637771px;}
.ws11{word-spacing:172.282311px;}
.wsb{word-spacing:286.274290px;}
.wsa{word-spacing:304.020223px;}
.ws10{word-spacing:501.829155px;}
.wsf{word-spacing:507.649894px;}
._2c{margin-left:-484.630932px;}
._2a{margin-left:-330.293083px;}
._26{margin-left:-324.362559px;}
._24{margin-left:-279.835635px;}
._27{margin-left:-270.785358px;}
._2b{margin-left:-230.877741px;}
._28{margin-left:-193.069408px;}
._2d{margin-left:-190.937867px;}
._29{margin-left:-180.899880px;}
._25{margin-left:-156.590687px;}
._2e{margin-left:-132.815272px;}
._2f{margin-left:-130.924562px;}
._20{margin-left:-26.664000px;}
._36{margin-left:-24.972000px;}
._3{margin-left:-23.796000px;}
._2{margin-left:-19.908000px;}
._22{margin-left:-15.144000px;}
._35{margin-left:-7.920000px;}
._37{margin-left:-4.176000px;}
._23{margin-left:-2.532000px;}
._0{margin-left:-1.464000px;}
._1{width:1.020000px;}
._12{width:2.184000px;}
._6{width:3.312000px;}
._1f{width:4.320000px;}
._d{width:5.328000px;}
._e{width:6.852000px;}
._f{width:8.136000px;}
._1c{width:9.204000px;}
._17{width:10.296000px;}
._18{width:11.364000px;}
._a{width:12.672000px;}
._b{width:14.040000px;}
._19{width:15.168000px;}
._10{width:16.200000px;}
._c{width:19.008000px;}
._11{width:20.880000px;}
._9{width:22.104000px;}
._16{width:23.784000px;}
._7{width:24.888000px;}
._8{width:26.328000px;}
._1a{width:27.720000px;}
._1d{width:29.592000px;}
._1e{width:30.612000px;}
._5{width:32.400000px;}
._1b{width:33.888000px;}
._34{width:35.964000px;}
._33{width:37.716000px;}
._38{width:39.312000px;}
._31{width:40.320000px;}
._32{width:41.736000px;}
._4{width:44.280000px;}
._15{width:50.940000px;}
._30{width:54.144000px;}
._13{width:140.520000px;}
._14{width:194.580000px;}
._21{width:846.120000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,176,240);}
.fc2{color:rgb(51,102,0);}
.fc1{color:rgb(0,128,128);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.508614px;}
.fs6{font-size:42.055802px;}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fsa{font-size:71.216546px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:72.177393px;}
.fs1{font-size:84.240000px;}
.fsb{font-size:106.899289px;}
.fs3{font-size:108.000000px;}
.fs8{font-size:108.121855px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:3.420000px;}
.y2a{bottom:4.140000px;}
.yb5{bottom:4.399455px;}
.y95{bottom:4.500000px;}
.ycb{bottom:4.904301px;}
.yb7{bottom:9.000000px;}
.yee{bottom:9.360000px;}
.y11b{bottom:9.405000px;}
.yeb{bottom:9.540000px;}
.ya0{bottom:14.400000px;}
.yb3{bottom:17.112833px;}
.yc9{bottom:17.448970px;}
.yb8{bottom:21.960000px;}
.y93{bottom:25.560000px;}
.yce{bottom:26.460000px;}
.ycd{bottom:31.680000px;}
.yb4{bottom:39.930445px;}
.yca{bottom:40.016343px;}
.y9a{bottom:77.436000px;}
.y13d{bottom:81.036000px;}
.y156{bottom:85.896000px;}
.y53{bottom:88.416000px;}
.yfe{bottom:91.836000px;}
.y119{bottom:92.736000px;}
.ydf{bottom:102.096000px;}
.y126{bottom:102.816000px;}
.y7a{bottom:103.536000px;}
.yb1{bottom:105.516000px;}
.y13c{bottom:106.416000px;}
.y155{bottom:108.396000px;}
.y99{bottom:109.836000px;}
.y52{bottom:113.976000px;}
.yfd{bottom:117.216000px;}
.y118{bottom:118.116000px;}
.y24{bottom:127.656000px;}
.y125{bottom:128.196000px;}
.y79{bottom:128.916000px;}
.yb0{bottom:131.076000px;}
.y13b{bottom:131.976000px;}
.y157{bottom:136.836000px;}
.y51{bottom:139.536000px;}
.y98{bottom:142.236000px;}
.yfc{bottom:142.776000px;}
.y117{bottom:143.676000px;}
.y7c{bottom:146.736000px;}
.y14a{bottom:146.916000px;}
.y23{bottom:153.210000px;}
.y124{bottom:153.750000px;}
.y78{bottom:154.470000px;}
.yaf{bottom:156.630000px;}
.y13a{bottom:157.530000px;}
.y7b{bottom:163.470000px;}
.y50{bottom:164.910000px;}
.yfb{bottom:168.330000px;}
.y116{bottom:169.230000px;}
.y149{bottom:172.470000px;}
.y97{bottom:174.630000px;}
.yde{bottom:178.590000px;}
.y123{bottom:179.310000px;}
.y77{bottom:180.030000px;}
.yae{bottom:182.010000px;}
.y139{bottom:182.910000px;}
.y4f{bottom:190.470000px;}
.yfa{bottom:193.710000px;}
.y115{bottom:194.610000px;}
.y22{bottom:196.770000px;}
.y148{bottom:198.030000px;}
.ydd{bottom:204.150000px;}
.y122{bottom:204.690000px;}
.y76{bottom:205.410000px;}
.y96{bottom:207.030000px;}
.yad{bottom:207.570000px;}
.y138{bottom:208.470000px;}
.y4e{bottom:216.030000px;}
.yf9{bottom:219.270000px;}
.y114{bottom:220.170000px;}
.y21{bottom:222.330000px;}
.y147{bottom:223.410000px;}
.ydc{bottom:229.710000px;}
.y75{bottom:230.970000px;}
.yac{bottom:233.130000px;}
.y137{bottom:234.030000px;}
.y92{bottom:241.050000px;}
.y4d{bottom:241.410000px;}
.yf8{bottom:244.830000px;}
.y113{bottom:245.730000px;}
.y20{bottom:247.710000px;}
.y121{bottom:247.890000px;}
.y146{bottom:248.970000px;}
.ydb{bottom:255.090000px;}
.y74{bottom:256.530000px;}
.yab{bottom:258.510000px;}
.y136{bottom:259.410000px;}
.y4c{bottom:266.970000px;}
.yf7{bottom:270.210000px;}
.y112{bottom:271.110000px;}
.y1f{bottom:273.270000px;}
.y94{bottom:273.450000px;}
.y145{bottom:274.530000px;}
.yda{bottom:280.650000px;}
.y73{bottom:281.910000px;}
.yaa{bottom:284.070000px;}
.y135{bottom:284.970000px;}
.y120{bottom:287.310000px;}
.y4b{bottom:292.530000px;}
.yf6{bottom:295.770000px;}
.y111{bottom:296.670000px;}
.y1e{bottom:298.830000px;}
.y144{bottom:299.910000px;}
.yd9{bottom:306.210000px;}
.y72{bottom:307.470000px;}
.ya9{bottom:309.630000px;}
.y134{bottom:310.530000px;}
.y4a{bottom:317.910000px;}
.yf5{bottom:321.330000px;}
.y91{bottom:321.510000px;}
.y110{bottom:322.230000px;}
.y1d{bottom:324.210000px;}
.y143{bottom:325.470000px;}
.yd8{bottom:331.590000px;}
.y71{bottom:333.030000px;}
.ya8{bottom:335.010000px;}
.y133{bottom:335.910000px;}
.y49{bottom:343.515000px;}
.yf4{bottom:346.755000px;}
.y90{bottom:347.115000px;}
.y10f{bottom:347.655000px;}
.y1c{bottom:349.815000px;}
.y142{bottom:351.075000px;}
.yd7{bottom:357.195000px;}
.y70{bottom:358.455000px;}
.ya7{bottom:360.615000px;}
.y132{bottom:361.515000px;}
.y48{bottom:369.075000px;}
.y8f{bottom:372.495000px;}
.y1b{bottom:375.375000px;}
.y141{bottom:376.455000px;}
.yd6{bottom:382.755000px;}
.y6f{bottom:384.015000px;}
.y10e{bottom:386.715000px;}
.y131{bottom:387.075000px;}
.yf3{bottom:388.155000px;}
.y47{bottom:394.455000px;}
.y8e{bottom:398.055000px;}
.y1a{bottom:400.755000px;}
.y140{bottom:402.015000px;}
.ya6{bottom:404.175000px;}
.yd5{bottom:408.135000px;}
.y6e{bottom:409.575000px;}
.y130{bottom:412.455000px;}
.y46{bottom:420.015000px;}
.yf2{bottom:420.555000px;}
.y8d{bottom:423.615000px;}
.y19{bottom:426.315000px;}
.y13f{bottom:427.575000px;}
.y6d{bottom:434.955000px;}
.y12f{bottom:438.015000px;}
.ya5{bottom:445.395000px;}
.y45{bottom:445.575000px;}
.yd4{bottom:451.695000px;}
.y18{bottom:451.875000px;}
.y10d{bottom:452.415000px;}
.yf1{bottom:452.955000px;}
.y6c{bottom:460.515000px;}
.y12e{bottom:463.575000px;}
.y8c{bottom:466.995000px;}
.y13e{bottom:470.595000px;}
.y44{bottom:470.955000px;}
.y17{bottom:477.255000px;}
.ya4{bottom:477.795000px;}
.y10c{bottom:484.815000px;}
.yf0{bottom:485.355000px;}
.y6b{bottom:486.075000px;}
.y12d{bottom:488.955000px;}
.y8b{bottom:492.555000px;}
.y43{bottom:496.515000px;}
.yd3{bottom:502.635000px;}
.y16{bottom:502.815000px;}
.ya3{bottom:510.195000px;}
.y6a{bottom:511.455000px;}
.y12c{bottom:514.515000px;}
.y10b{bottom:517.215000px;}
.yef{bottom:517.755000px;}
.y8a{bottom:518.115000px;}
.y42{bottom:522.075000px;}
.y15{bottom:528.375000px;}
.y69{bottom:537.015000px;}
.yd2{bottom:537.195000px;}
.y12b{bottom:540.075000px;}
.ya2{bottom:542.595000px;}
.y89{bottom:543.495000px;}
.y41{bottom:547.455000px;}
.y10a{bottom:549.615000px;}
.yed{bottom:550.155000px;}
.y154{bottom:562.575000px;}
.yd1{bottom:562.755000px;}
.y12a{bottom:565.455000px;}
.y88{bottom:569.055000px;}
.y40{bottom:573.015000px;}
.y14{bottom:574.275000px;}
.ya1{bottom:574.995000px;}
.y68{bottom:580.575000px;}
.y109{bottom:582.735000px;}
.yec{bottom:583.995000px;}
.y153{bottom:587.955000px;}
.yd0{bottom:588.135000px;}
.y129{bottom:591.015000px;}
.y87{bottom:594.615000px;}
.y3f{bottom:598.575000px;}
.y13{bottom:600.015000px;}
.y9f{bottom:609.045000px;}
.y152{bottom:613.545000px;}
.ycf{bottom:613.725000px;}
.y108{bottom:615.165000px;}
.yea{bottom:616.425000px;}
.y128{bottom:616.605000px;}
.y86{bottom:620.025000px;}
.y67{bottom:623.625000px;}
.y3e{bottom:623.985000px;}
.y12{bottom:625.425000px;}
.ycc{bottom:634.785000px;}
.y151{bottom:639.105000px;}
.y127{bottom:641.985000px;}
.yc8{bottom:643.980000px;}
.y85{bottom:645.585000px;}
.y107{bottom:648.285000px;}
.y3d{bottom:649.545000px;}
.y9e{bottom:657.105000px;}
.ye9{bottom:664.485000px;}
.y66{bottom:667.545000px;}
.y11{bottom:668.985000px;}
.y84{bottom:671.145000px;}
.y3c{bottom:675.105000px;}
.y106{bottom:680.685000px;}
.y9d{bottom:682.485000px;}
.ye8{bottom:690.045000px;}
.y65{bottom:693.105000px;}
.y10{bottom:694.545000px;}
.y83{bottom:696.525000px;}
.y3b{bottom:700.485000px;}
.y9c{bottom:708.045000px;}
.yc7{bottom:708.945000px;}
.y105{bottom:713.805000px;}
.ye7{bottom:715.605000px;}
.y64{bottom:718.485000px;}
.y11f{bottom:720.285000px;}
.y82{bottom:722.085000px;}
.y3a{bottom:726.045000px;}
.y9b{bottom:733.605000px;}
.yc6{bottom:734.325000px;}
.yf{bottom:737.925000px;}
.ye6{bottom:740.985000px;}
.y63{bottom:744.045000px;}
.y104{bottom:746.205000px;}
.y81{bottom:747.645000px;}
.y39{bottom:751.605000px;}
.yc5{bottom:759.885000px;}
.y11e{bottom:760.065000px;}
.y150{bottom:766.545000px;}
.y62{bottom:769.605000px;}
.ye{bottom:771.765000px;}
.y80{bottom:773.025000px;}
.y38{bottom:776.985000px;}
.y103{bottom:778.605000px;}
.ye5{bottom:784.545000px;}
.yc4{bottom:785.445000px;}
.yd{bottom:789.045000px;}
.y14f{bottom:792.105000px;}
.y11d{bottom:792.465000px;}
.y61{bottom:794.985000px;}
.y7f{bottom:798.585000px;}
.y37{bottom:802.545000px;}
.ye4{bottom:810.105000px;}
.yc3{bottom:810.825000px;}
.y102{bottom:811.005000px;}
.yc{bottom:814.425000px;}
.y14e{bottom:817.485000px;}
.y60{bottom:820.545000px;}
.y7e{bottom:824.145000px;}
.y11c{bottom:824.865000px;}
.y36{bottom:828.105000px;}
.ye3{bottom:835.485000px;}
.yc2{bottom:836.385000px;}
.y14d{bottom:843.045000px;}
.y101{bottom:843.405000px;}
.y5f{bottom:846.105000px;}
.yb{bottom:848.265000px;}
.y35{bottom:853.485000px;}
.y11a{bottom:857.985000px;}
.ye2{bottom:861.045000px;}
.yc1{bottom:861.945000px;}
.y7d{bottom:863.205000px;}
.y14c{bottom:868.650000px;}
.y5e{bottom:871.530000px;}
.y100{bottom:876.570000px;}
.y34{bottom:879.090000px;}
.ya{bottom:883.230000px;}
.ye1{bottom:886.650000px;}
.yc0{bottom:887.370000px;}
.y5d{bottom:897.090000px;}
.y33{bottom:904.650000px;}
.y9{bottom:908.610000px;}
.yff{bottom:908.970000px;}
.y14b{bottom:911.670000px;}
.ybf{bottom:912.930000px;}
.y5c{bottom:922.650000px;}
.ye0{bottom:929.670000px;}
.y32{bottom:930.030000px;}
.ybe{bottom:938.490000px;}
.y5b{bottom:948.030000px;}
.y8{bottom:954.150000px;}
.y31{bottom:955.590000px;}
.ybd{bottom:963.870000px;}
.y5a{bottom:973.590000px;}
.y30{bottom:981.150000px;}
.y7{bottom:985.110000px;}
.ybc{bottom:989.430000px;}
.y59{bottom:999.150000px;}
.y2f{bottom:1006.530000px;}
.ybb{bottom:1014.990000px;}
.y58{bottom:1024.530000px;}
.y2e{bottom:1032.090000px;}
.y6{bottom:1032.630000px;}
.yba{bottom:1040.370000px;}
.y57{bottom:1050.090000px;}
.y5{bottom:1053.330000px;}
.y2d{bottom:1057.650000px;}
.yb9{bottom:1065.930000px;}
.y4{bottom:1073.670000px;}
.y56{bottom:1075.650000px;}
.y2c{bottom:1083.030000px;}
.yb6{bottom:1086.990000px;}
.yb2{bottom:1095.930000px;}
.y3{bottom:1099.950000px;}
.y55{bottom:1101.030000px;}
.y2b{bottom:1126.230000px;}
.y54{bottom:1126.590000px;}
.y2{bottom:1138.320000px;}
.y25{bottom:1138.860000px;}
.y28{bottom:1152.180000px;}
.y1{bottom:1166.940000px;}
.y29{bottom:1172.880000px;}
.y27{bottom:1177.560000px;}
.h9{height:17.280000px;}
.hb{height:25.560000px;}
.hd{height:32.400000px;}
.hf{height:32.436000px;}
.h16{height:40.718167px;}
.h19{height:40.738435px;}
.h11{height:41.254934px;}
.h13{height:41.275469px;}
.h8{height:47.344922px;}
.h1b{height:50.027344px;}
.h15{height:51.602208px;}
.h10{height:51.675047px;}
.ha{height:60.226875px;}
.h14{height:60.696000px;}
.hc{height:64.800000px;}
.h1a{height:69.660000px;}
.h6{height:70.628906px;}
.h5{height:70.664062px;}
.h2{height:72.562500px;}
.h1c{height:74.004654px;}
.he{height:80.464922px;}
.h3{height:82.676953px;}
.h18{height:87.773349px;}
.h17{height:90.896846px;}
.h7{height:108.843750px;}
.h12{height:139.703785px;}
.h4{height:141.257812px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1b{width:16.920000px;}
.w30{width:20.340000px;}
.w26{width:20.700000px;}
.wf{width:21.060000px;}
.w2d{width:24.840000px;}
.w32{width:25.200000px;}
.w3{width:27.180000px;}
.w9{width:31.860000px;}
.w2a{width:33.840000px;}
.w2f{width:33.876000px;}
.w2b{width:34.200000px;}
.w2c{width:34.236000px;}
.w2e{width:34.920000px;}
.w29{width:37.620000px;}
.w31{width:37.980000px;}
.w22{width:38.700000px;}
.w23{width:39.960000px;}
.w20{width:40.536000px;}
.w1f{width:40.680000px;}
.w24{width:40.716000px;}
.w1e{width:41.940000px;}
.we{width:42.660000px;}
.wd{width:45.036000px;}
.w17{width:48.240000px;}
.w8{width:56.736000px;}
.w21{width:58.320000px;}
.w1d{width:64.116000px;}
.w6{width:70.020000px;}
.w12{width:70.200000px;}
.w13{width:74.340000px;}
.w11{width:74.376000px;}
.w10{width:74.520000px;}
.wb{width:81.036000px;}
.w7{width:83.340000px;}
.w14{width:94.356000px;}
.wa{width:95.760000px;}
.w33{width:103.176000px;}
.w35{width:105.120000px;}
.w34{width:108.216000px;}
.w2{width:118.980000px;}
.w19{width:120.240000px;}
.w15{width:123.002337px;}
.wc{width:134.280000px;}
.w4{width:150.690000px;}
.w18{width:188.853446px;}
.w27{width:196.230000px;}
.w28{width:196.950000px;}
.w25{width:209.010000px;}
.w1c{width:259.050000px;}
.w1a{width:268.635000px;}
.w5{width:418.755000px;}
.w16{width:706.830000px;}
.w1{width:893.250000px;}
.w0{width:893.520000px;}
.x0{left:0.000000px;}
.x26{left:5.220000px;}
.x9{left:7.200000px;}
.x32{left:8.460000px;}
.x44{left:9.720000px;}
.x3b{left:12.780000px;}
.xf{left:16.740000px;}
.x37{left:18.000000px;}
.x45{left:19.260000px;}
.x43{left:20.700000px;}
.x42{left:24.660000px;}
.x35{left:31.140000px;}
.x22{left:51.850179px;}
.x21{left:55.651386px;}
.x34{left:58.500000px;}
.x2c{left:64.043014px;}
.x23{left:69.300000px;}
.x1{left:74.520000px;}
.x2b{left:75.926224px;}
.xc{left:90.900000px;}
.x11{left:94.500000px;}
.x6{left:96.120000px;}
.x2a{left:102.352780px;}
.x29{left:106.434788px;}
.x59{left:107.496000px;}
.x2f{left:108.936000px;}
.x20{left:113.258400px;}
.x7{left:116.676000px;}
.x2e{left:127.656000px;}
.x17{left:131.436000px;}
.x49{left:147.276000px;}
.xe{left:162.030000px;}
.x28{left:174.634722px;}
.x4a{left:181.110000px;}
.x4b{left:215.310000px;}
.x30{left:229.170000px;}
.x4c{left:249.510000px;}
.x18{left:265.710000px;}
.x4d{left:283.710000px;}
.x57{left:288.570000px;}
.x36{left:293.295000px;}
.x19{left:310.755000px;}
.x10{left:312.735000px;}
.x46{left:317.955000px;}
.x27{left:328.215000px;}
.x38{left:335.235000px;}
.x47{left:338.655000px;}
.x1a{left:353.415000px;}
.x1f{left:361.140000px;}
.x4e{left:364.215000px;}
.x1b{left:374.475000px;}
.x39{left:375.915000px;}
.x12{left:382.755000px;}
.x58{left:391.755000px;}
.x4f{left:398.055000px;}
.x24{left:414.795000px;}
.x3a{left:416.595000px;}
.x50{left:432.255000px;}
.x2d{left:447.765000px;}
.x1c{left:448.995000px;}
.x3c{left:457.275000px;}
.x13{left:466.095000px;}
.x31{left:497.805000px;}
.x51{left:500.685000px;}
.x33{left:514.725000px;}
.x14{left:522.825000px;}
.x48{left:534.885000px;}
.x5{left:537.945000px;}
.x15{left:554.685000px;}
.x3d{left:573.045000px;}
.x3{left:579.885000px;}
.x52{left:581.145000px;}
.x1d{left:593.565000px;}
.x3e{left:611.745000px;}
.x53{left:614.985000px;}
.x54{left:649.185000px;}
.x16{left:650.445000px;}
.x3f{left:651.705000px;}
.x1e{left:667.905000px;}
.x55{left:683.430000px;}
.x40{left:692.430000px;}
.x4{left:696.390000px;}
.x8{left:699.810000px;}
.x56{left:718.350000px;}
.x41{left:733.110000px;}
.xb{left:761.730000px;}
.x25{left:776.130000px;}
.x5a{left:789.090000px;}
.xa{left:791.970000px;}
.xd{left:798.810000px;}
.x2{left:818.970000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v5{vertical-align:-14.850821pt;}
.v6{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.042092pt;}
.v1{vertical-align:29.440000pt;}
.v3{vertical-align:45.203121pt;}
.ls1d{letter-spacing:-1.344000pt;}
.ls10{letter-spacing:-1.063062pt;}
.ls8{letter-spacing:-0.896000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.239360pt;}
.ls19{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls16{letter-spacing:1.280000pt;}
.ls11{letter-spacing:2.377958pt;}
.ls12{letter-spacing:2.398326pt;}
.ls1c{letter-spacing:3.840000pt;}
.ls18{letter-spacing:18.560000pt;}
.ls17{letter-spacing:25.216000pt;}
.ls1b{letter-spacing:32.000000pt;}
.ls15{letter-spacing:57.216000pt;}
.lsd{letter-spacing:103.082772pt;}
.lsf{letter-spacing:111.171401pt;}
.ws16{word-spacing:-64.000000pt;}
.ws12{word-spacing:-52.166853pt;}
.wsd{word-spacing:-20.523231pt;}
.wsc{word-spacing:-18.611497pt;}
.ws1{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws19{word-spacing:-16.256000pt;}
.ws17{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.936000pt;}
.ws15{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-14.656000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws9{word-spacing:-9.345734pt;}
.wse{word-spacing:-9.224136pt;}
.ws5{word-spacing:0.000000pt;}
.ws13{word-spacing:75.233575pt;}
.ws11{word-spacing:153.139832pt;}
.wsb{word-spacing:254.466036pt;}
.wsa{word-spacing:270.240198pt;}
.ws10{word-spacing:446.070360pt;}
.wsf{word-spacing:451.244350pt;}
._2c{margin-left:-430.783051pt;}
._2a{margin-left:-293.593851pt;}
._26{margin-left:-288.322275pt;}
._24{margin-left:-248.742787pt;}
._27{margin-left:-240.698096pt;}
._2b{margin-left:-205.224658pt;}
._28{margin-left:-171.617252pt;}
._2d{margin-left:-169.722548pt;}
._29{margin-left:-160.799893pt;}
._25{margin-left:-139.191721pt;}
._2e{margin-left:-118.058020pt;}
._2f{margin-left:-116.377389pt;}
._20{margin-left:-23.701333pt;}
._36{margin-left:-22.197333pt;}
._3{margin-left:-21.152000pt;}
._2{margin-left:-17.696000pt;}
._22{margin-left:-13.461333pt;}
._35{margin-left:-7.040000pt;}
._37{margin-left:-3.712000pt;}
._23{margin-left:-2.250667pt;}
._0{margin-left:-1.301333pt;}
._1{width:0.906667pt;}
._12{width:1.941333pt;}
._6{width:2.944000pt;}
._1f{width:3.840000pt;}
._d{width:4.736000pt;}
._e{width:6.090667pt;}
._f{width:7.232000pt;}
._1c{width:8.181333pt;}
._17{width:9.152000pt;}
._18{width:10.101333pt;}
._a{width:11.264000pt;}
._b{width:12.480000pt;}
._19{width:13.482667pt;}
._10{width:14.400000pt;}
._c{width:16.896000pt;}
._11{width:18.560000pt;}
._9{width:19.648000pt;}
._16{width:21.141333pt;}
._7{width:22.122667pt;}
._8{width:23.402667pt;}
._1a{width:24.640000pt;}
._1d{width:26.304000pt;}
._1e{width:27.210667pt;}
._5{width:28.800000pt;}
._1b{width:30.122667pt;}
._34{width:31.968000pt;}
._33{width:33.525333pt;}
._38{width:34.944000pt;}
._31{width:35.840000pt;}
._32{width:37.098667pt;}
._4{width:39.360000pt;}
._15{width:45.280000pt;}
._30{width:48.128000pt;}
._13{width:124.906667pt;}
._14{width:172.960000pt;}
._21{width:752.106667pt;}
.fs9{font-size:36.896546pt;}
.fs6{font-size:37.382935pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fsa{font-size:63.303596pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:64.157682pt;}
.fs1{font-size:74.880000pt;}
.fsb{font-size:95.021590pt;}
.fs3{font-size:96.000000pt;}
.fs8{font-size:96.108315pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:3.040000pt;}
.y2a{bottom:3.680000pt;}
.yb5{bottom:3.910627pt;}
.y95{bottom:4.000000pt;}
.ycb{bottom:4.359378pt;}
.yb7{bottom:8.000000pt;}
.yee{bottom:8.320000pt;}
.y11b{bottom:8.360000pt;}
.yeb{bottom:8.480000pt;}
.ya0{bottom:12.800000pt;}
.yb3{bottom:15.211407pt;}
.yc9{bottom:15.510196pt;}
.yb8{bottom:19.520000pt;}
.y93{bottom:22.720000pt;}
.yce{bottom:23.520000pt;}
.ycd{bottom:28.160000pt;}
.yb4{bottom:35.493729pt;}
.yca{bottom:35.570083pt;}
.y9a{bottom:68.832000pt;}
.y13d{bottom:72.032000pt;}
.y156{bottom:76.352000pt;}
.y53{bottom:78.592000pt;}
.yfe{bottom:81.632000pt;}
.y119{bottom:82.432000pt;}
.ydf{bottom:90.752000pt;}
.y126{bottom:91.392000pt;}
.y7a{bottom:92.032000pt;}
.yb1{bottom:93.792000pt;}
.y13c{bottom:94.592000pt;}
.y155{bottom:96.352000pt;}
.y99{bottom:97.632000pt;}
.y52{bottom:101.312000pt;}
.yfd{bottom:104.192000pt;}
.y118{bottom:104.992000pt;}
.y24{bottom:113.472000pt;}
.y125{bottom:113.952000pt;}
.y79{bottom:114.592000pt;}
.yb0{bottom:116.512000pt;}
.y13b{bottom:117.312000pt;}
.y157{bottom:121.632000pt;}
.y51{bottom:124.032000pt;}
.y98{bottom:126.432000pt;}
.yfc{bottom:126.912000pt;}
.y117{bottom:127.712000pt;}
.y7c{bottom:130.432000pt;}
.y14a{bottom:130.592000pt;}
.y23{bottom:136.186667pt;}
.y124{bottom:136.666667pt;}
.y78{bottom:137.306667pt;}
.yaf{bottom:139.226667pt;}
.y13a{bottom:140.026667pt;}
.y7b{bottom:145.306667pt;}
.y50{bottom:146.586667pt;}
.yfb{bottom:149.626667pt;}
.y116{bottom:150.426667pt;}
.y149{bottom:153.306667pt;}
.y97{bottom:155.226667pt;}
.yde{bottom:158.746667pt;}
.y123{bottom:159.386667pt;}
.y77{bottom:160.026667pt;}
.yae{bottom:161.786667pt;}
.y139{bottom:162.586667pt;}
.y4f{bottom:169.306667pt;}
.yfa{bottom:172.186667pt;}
.y115{bottom:172.986667pt;}
.y22{bottom:174.906667pt;}
.y148{bottom:176.026667pt;}
.ydd{bottom:181.466667pt;}
.y122{bottom:181.946667pt;}
.y76{bottom:182.586667pt;}
.y96{bottom:184.026667pt;}
.yad{bottom:184.506667pt;}
.y138{bottom:185.306667pt;}
.y4e{bottom:192.026667pt;}
.yf9{bottom:194.906667pt;}
.y114{bottom:195.706667pt;}
.y21{bottom:197.626667pt;}
.y147{bottom:198.586667pt;}
.ydc{bottom:204.186667pt;}
.y75{bottom:205.306667pt;}
.yac{bottom:207.226667pt;}
.y137{bottom:208.026667pt;}
.y92{bottom:214.266667pt;}
.y4d{bottom:214.586667pt;}
.yf8{bottom:217.626667pt;}
.y113{bottom:218.426667pt;}
.y20{bottom:220.186667pt;}
.y121{bottom:220.346667pt;}
.y146{bottom:221.306667pt;}
.ydb{bottom:226.746667pt;}
.y74{bottom:228.026667pt;}
.yab{bottom:229.786667pt;}
.y136{bottom:230.586667pt;}
.y4c{bottom:237.306667pt;}
.yf7{bottom:240.186667pt;}
.y112{bottom:240.986667pt;}
.y1f{bottom:242.906667pt;}
.y94{bottom:243.066667pt;}
.y145{bottom:244.026667pt;}
.yda{bottom:249.466667pt;}
.y73{bottom:250.586667pt;}
.yaa{bottom:252.506667pt;}
.y135{bottom:253.306667pt;}
.y120{bottom:255.386667pt;}
.y4b{bottom:260.026667pt;}
.yf6{bottom:262.906667pt;}
.y111{bottom:263.706667pt;}
.y1e{bottom:265.626667pt;}
.y144{bottom:266.586667pt;}
.yd9{bottom:272.186667pt;}
.y72{bottom:273.306667pt;}
.ya9{bottom:275.226667pt;}
.y134{bottom:276.026667pt;}
.y4a{bottom:282.586667pt;}
.yf5{bottom:285.626667pt;}
.y91{bottom:285.786667pt;}
.y110{bottom:286.426667pt;}
.y1d{bottom:288.186667pt;}
.y143{bottom:289.306667pt;}
.yd8{bottom:294.746667pt;}
.y71{bottom:296.026667pt;}
.ya8{bottom:297.786667pt;}
.y133{bottom:298.586667pt;}
.y49{bottom:305.346667pt;}
.yf4{bottom:308.226667pt;}
.y90{bottom:308.546667pt;}
.y10f{bottom:309.026667pt;}
.y1c{bottom:310.946667pt;}
.y142{bottom:312.066667pt;}
.yd7{bottom:317.506667pt;}
.y70{bottom:318.626667pt;}
.ya7{bottom:320.546667pt;}
.y132{bottom:321.346667pt;}
.y48{bottom:328.066667pt;}
.y8f{bottom:331.106667pt;}
.y1b{bottom:333.666667pt;}
.y141{bottom:334.626667pt;}
.yd6{bottom:340.226667pt;}
.y6f{bottom:341.346667pt;}
.y10e{bottom:343.746667pt;}
.y131{bottom:344.066667pt;}
.yf3{bottom:345.026667pt;}
.y47{bottom:350.626667pt;}
.y8e{bottom:353.826667pt;}
.y1a{bottom:356.226667pt;}
.y140{bottom:357.346667pt;}
.ya6{bottom:359.266667pt;}
.yd5{bottom:362.786667pt;}
.y6e{bottom:364.066667pt;}
.y130{bottom:366.626667pt;}
.y46{bottom:373.346667pt;}
.yf2{bottom:373.826667pt;}
.y8d{bottom:376.546667pt;}
.y19{bottom:378.946667pt;}
.y13f{bottom:380.066667pt;}
.y6d{bottom:386.626667pt;}
.y12f{bottom:389.346667pt;}
.ya5{bottom:395.906667pt;}
.y45{bottom:396.066667pt;}
.yd4{bottom:401.506667pt;}
.y18{bottom:401.666667pt;}
.y10d{bottom:402.146667pt;}
.yf1{bottom:402.626667pt;}
.y6c{bottom:409.346667pt;}
.y12e{bottom:412.066667pt;}
.y8c{bottom:415.106667pt;}
.y13e{bottom:418.306667pt;}
.y44{bottom:418.626667pt;}
.y17{bottom:424.226667pt;}
.ya4{bottom:424.706667pt;}
.y10c{bottom:430.946667pt;}
.yf0{bottom:431.426667pt;}
.y6b{bottom:432.066667pt;}
.y12d{bottom:434.626667pt;}
.y8b{bottom:437.826667pt;}
.y43{bottom:441.346667pt;}
.yd3{bottom:446.786667pt;}
.y16{bottom:446.946667pt;}
.ya3{bottom:453.506667pt;}
.y6a{bottom:454.626667pt;}
.y12c{bottom:457.346667pt;}
.y10b{bottom:459.746667pt;}
.yef{bottom:460.226667pt;}
.y8a{bottom:460.546667pt;}
.y42{bottom:464.066667pt;}
.y15{bottom:469.666667pt;}
.y69{bottom:477.346667pt;}
.yd2{bottom:477.506667pt;}
.y12b{bottom:480.066667pt;}
.ya2{bottom:482.306667pt;}
.y89{bottom:483.106667pt;}
.y41{bottom:486.626667pt;}
.y10a{bottom:488.546667pt;}
.yed{bottom:489.026667pt;}
.y154{bottom:500.066667pt;}
.yd1{bottom:500.226667pt;}
.y12a{bottom:502.626667pt;}
.y88{bottom:505.826667pt;}
.y40{bottom:509.346667pt;}
.y14{bottom:510.466667pt;}
.ya1{bottom:511.106667pt;}
.y68{bottom:516.066667pt;}
.y109{bottom:517.986667pt;}
.yec{bottom:519.106667pt;}
.y153{bottom:522.626667pt;}
.yd0{bottom:522.786667pt;}
.y129{bottom:525.346667pt;}
.y87{bottom:528.546667pt;}
.y3f{bottom:532.066667pt;}
.y13{bottom:533.346667pt;}
.y9f{bottom:541.373333pt;}
.y152{bottom:545.373333pt;}
.ycf{bottom:545.533333pt;}
.y108{bottom:546.813333pt;}
.yea{bottom:547.933333pt;}
.y128{bottom:548.093333pt;}
.y86{bottom:551.133333pt;}
.y67{bottom:554.333333pt;}
.y3e{bottom:554.653333pt;}
.y12{bottom:555.933333pt;}
.ycc{bottom:564.253333pt;}
.y151{bottom:568.093333pt;}
.y127{bottom:570.653333pt;}
.yc8{bottom:572.426667pt;}
.y85{bottom:573.853333pt;}
.y107{bottom:576.253333pt;}
.y3d{bottom:577.373333pt;}
.y9e{bottom:584.093333pt;}
.ye9{bottom:590.653333pt;}
.y66{bottom:593.373333pt;}
.y11{bottom:594.653333pt;}
.y84{bottom:596.573333pt;}
.y3c{bottom:600.093333pt;}
.y106{bottom:605.053333pt;}
.y9d{bottom:606.653333pt;}
.ye8{bottom:613.373333pt;}
.y65{bottom:616.093333pt;}
.y10{bottom:617.373333pt;}
.y83{bottom:619.133333pt;}
.y3b{bottom:622.653333pt;}
.y9c{bottom:629.373333pt;}
.yc7{bottom:630.173333pt;}
.y105{bottom:634.493333pt;}
.ye7{bottom:636.093333pt;}
.y64{bottom:638.653333pt;}
.y11f{bottom:640.253333pt;}
.y82{bottom:641.853333pt;}
.y3a{bottom:645.373333pt;}
.y9b{bottom:652.093333pt;}
.yc6{bottom:652.733333pt;}
.yf{bottom:655.933333pt;}
.ye6{bottom:658.653333pt;}
.y63{bottom:661.373333pt;}
.y104{bottom:663.293333pt;}
.y81{bottom:664.573333pt;}
.y39{bottom:668.093333pt;}
.yc5{bottom:675.453333pt;}
.y11e{bottom:675.613333pt;}
.y150{bottom:681.373333pt;}
.y62{bottom:684.093333pt;}
.ye{bottom:686.013333pt;}
.y80{bottom:687.133333pt;}
.y38{bottom:690.653333pt;}
.y103{bottom:692.093333pt;}
.ye5{bottom:697.373333pt;}
.yc4{bottom:698.173333pt;}
.yd{bottom:701.373333pt;}
.y14f{bottom:704.093333pt;}
.y11d{bottom:704.413333pt;}
.y61{bottom:706.653333pt;}
.y7f{bottom:709.853333pt;}
.y37{bottom:713.373333pt;}
.ye4{bottom:720.093333pt;}
.yc3{bottom:720.733333pt;}
.y102{bottom:720.893333pt;}
.yc{bottom:723.933333pt;}
.y14e{bottom:726.653333pt;}
.y60{bottom:729.373333pt;}
.y7e{bottom:732.573333pt;}
.y11c{bottom:733.213333pt;}
.y36{bottom:736.093333pt;}
.ye3{bottom:742.653333pt;}
.yc2{bottom:743.453333pt;}
.y14d{bottom:749.373333pt;}
.y101{bottom:749.693333pt;}
.y5f{bottom:752.093333pt;}
.yb{bottom:754.013333pt;}
.y35{bottom:758.653333pt;}
.y11a{bottom:762.653333pt;}
.ye2{bottom:765.373333pt;}
.yc1{bottom:766.173333pt;}
.y7d{bottom:767.293333pt;}
.y14c{bottom:772.133333pt;}
.y5e{bottom:774.693333pt;}
.y100{bottom:779.173333pt;}
.y34{bottom:781.413333pt;}
.ya{bottom:785.093333pt;}
.ye1{bottom:788.133333pt;}
.yc0{bottom:788.773333pt;}
.y5d{bottom:797.413333pt;}
.y33{bottom:804.133333pt;}
.y9{bottom:807.653333pt;}
.yff{bottom:807.973333pt;}
.y14b{bottom:810.373333pt;}
.ybf{bottom:811.493333pt;}
.y5c{bottom:820.133333pt;}
.ye0{bottom:826.373333pt;}
.y32{bottom:826.693333pt;}
.ybe{bottom:834.213333pt;}
.y5b{bottom:842.693333pt;}
.y8{bottom:848.133333pt;}
.y31{bottom:849.413333pt;}
.ybd{bottom:856.773333pt;}
.y5a{bottom:865.413333pt;}
.y30{bottom:872.133333pt;}
.y7{bottom:875.653333pt;}
.ybc{bottom:879.493333pt;}
.y59{bottom:888.133333pt;}
.y2f{bottom:894.693333pt;}
.ybb{bottom:902.213333pt;}
.y58{bottom:910.693333pt;}
.y2e{bottom:917.413333pt;}
.y6{bottom:917.893333pt;}
.yba{bottom:924.773333pt;}
.y57{bottom:933.413333pt;}
.y5{bottom:936.293333pt;}
.y2d{bottom:940.133333pt;}
.yb9{bottom:947.493333pt;}
.y4{bottom:954.373333pt;}
.y56{bottom:956.133333pt;}
.y2c{bottom:962.693333pt;}
.yb6{bottom:966.213333pt;}
.yb2{bottom:974.160000pt;}
.y3{bottom:977.733333pt;}
.y55{bottom:978.693333pt;}
.y2b{bottom:1001.093333pt;}
.y54{bottom:1001.413333pt;}
.y2{bottom:1011.840000pt;}
.y25{bottom:1012.320000pt;}
.y28{bottom:1024.160000pt;}
.y1{bottom:1037.280000pt;}
.y29{bottom:1042.560000pt;}
.y27{bottom:1046.720000pt;}
.h9{height:15.360000pt;}
.hb{height:22.720000pt;}
.hd{height:28.800000pt;}
.hf{height:28.832000pt;}
.h16{height:36.193926pt;}
.h19{height:36.211942pt;}
.h11{height:36.671053pt;}
.h13{height:36.689306pt;}
.h8{height:42.084375pt;}
.h1b{height:44.468750pt;}
.h15{height:45.868629pt;}
.h10{height:45.933375pt;}
.ha{height:53.535000pt;}
.h14{height:53.952000pt;}
.hc{height:57.600000pt;}
.h1a{height:61.920000pt;}
.h6{height:62.781250pt;}
.h5{height:62.812500pt;}
.h2{height:64.500000pt;}
.h1c{height:65.781915pt;}
.he{height:71.524375pt;}
.h3{height:73.490625pt;}
.h18{height:78.020755pt;}
.h17{height:80.797196pt;}
.h7{height:96.750000pt;}
.h12{height:124.181142pt;}
.h4{height:125.562500pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1b{width:15.040000pt;}
.w30{width:18.080000pt;}
.w26{width:18.400000pt;}
.wf{width:18.720000pt;}
.w2d{width:22.080000pt;}
.w32{width:22.400000pt;}
.w3{width:24.160000pt;}
.w9{width:28.320000pt;}
.w2a{width:30.080000pt;}
.w2f{width:30.112000pt;}
.w2b{width:30.400000pt;}
.w2c{width:30.432000pt;}
.w2e{width:31.040000pt;}
.w29{width:33.440000pt;}
.w31{width:33.760000pt;}
.w22{width:34.400000pt;}
.w23{width:35.520000pt;}
.w20{width:36.032000pt;}
.w1f{width:36.160000pt;}
.w24{width:36.192000pt;}
.w1e{width:37.280000pt;}
.we{width:37.920000pt;}
.wd{width:40.032000pt;}
.w17{width:42.880000pt;}
.w8{width:50.432000pt;}
.w21{width:51.840000pt;}
.w1d{width:56.992000pt;}
.w6{width:62.240000pt;}
.w12{width:62.400000pt;}
.w13{width:66.080000pt;}
.w11{width:66.112000pt;}
.w10{width:66.240000pt;}
.wb{width:72.032000pt;}
.w7{width:74.080000pt;}
.w14{width:83.872000pt;}
.wa{width:85.120000pt;}
.w33{width:91.712000pt;}
.w35{width:93.440000pt;}
.w34{width:96.192000pt;}
.w2{width:105.760000pt;}
.w19{width:106.880000pt;}
.w15{width:109.335411pt;}
.wc{width:119.360000pt;}
.w4{width:133.946667pt;}
.w18{width:167.869730pt;}
.w27{width:174.426667pt;}
.w28{width:175.066667pt;}
.w25{width:185.786667pt;}
.w1c{width:230.266667pt;}
.w1a{width:238.786667pt;}
.w5{width:372.226667pt;}
.w16{width:628.293333pt;}
.w1{width:794.000000pt;}
.w0{width:794.240000pt;}
.x0{left:0.000000pt;}
.x26{left:4.640000pt;}
.x9{left:6.400000pt;}
.x32{left:7.520000pt;}
.x44{left:8.640000pt;}
.x3b{left:11.360000pt;}
.xf{left:14.880000pt;}
.x37{left:16.000000pt;}
.x45{left:17.120000pt;}
.x43{left:18.400000pt;}
.x42{left:21.920000pt;}
.x35{left:27.680000pt;}
.x22{left:46.089048pt;}
.x21{left:49.467898pt;}
.x34{left:52.000000pt;}
.x2c{left:56.927123pt;}
.x23{left:61.600000pt;}
.x1{left:66.240000pt;}
.x2b{left:67.489977pt;}
.xc{left:80.800000pt;}
.x11{left:84.000000pt;}
.x6{left:85.440000pt;}
.x2a{left:90.980249pt;}
.x29{left:94.608701pt;}
.x59{left:95.552000pt;}
.x2f{left:96.832000pt;}
.x20{left:100.674133pt;}
.x7{left:103.712000pt;}
.x2e{left:113.472000pt;}
.x17{left:116.832000pt;}
.x49{left:130.912000pt;}
.xe{left:144.026667pt;}
.x28{left:155.230864pt;}
.x4a{left:160.986667pt;}
.x4b{left:191.386667pt;}
.x30{left:203.706667pt;}
.x4c{left:221.786667pt;}
.x18{left:236.186667pt;}
.x4d{left:252.186667pt;}
.x57{left:256.506667pt;}
.x36{left:260.706667pt;}
.x19{left:276.226667pt;}
.x10{left:277.986667pt;}
.x46{left:282.626667pt;}
.x27{left:291.746667pt;}
.x38{left:297.986667pt;}
.x47{left:301.026667pt;}
.x1a{left:314.146667pt;}
.x1f{left:321.013333pt;}
.x4e{left:323.746667pt;}
.x1b{left:332.866667pt;}
.x39{left:334.146667pt;}
.x12{left:340.226667pt;}
.x58{left:348.226667pt;}
.x4f{left:353.826667pt;}
.x24{left:368.706667pt;}
.x3a{left:370.306667pt;}
.x50{left:384.226667pt;}
.x2d{left:398.013333pt;}
.x1c{left:399.106667pt;}
.x3c{left:406.466667pt;}
.x13{left:414.306667pt;}
.x31{left:442.493333pt;}
.x51{left:445.053333pt;}
.x33{left:457.533333pt;}
.x14{left:464.733333pt;}
.x48{left:475.453333pt;}
.x5{left:478.173333pt;}
.x15{left:493.053333pt;}
.x3d{left:509.373333pt;}
.x3{left:515.453333pt;}
.x52{left:516.573333pt;}
.x1d{left:527.613333pt;}
.x3e{left:543.773333pt;}
.x53{left:546.653333pt;}
.x54{left:577.053333pt;}
.x16{left:578.173333pt;}
.x3f{left:579.293333pt;}
.x1e{left:593.693333pt;}
.x55{left:607.493333pt;}
.x40{left:615.493333pt;}
.x4{left:619.013333pt;}
.x8{left:622.053333pt;}
.x56{left:638.533333pt;}
.x41{left:651.653333pt;}
.xb{left:677.093333pt;}
.x25{left:689.893333pt;}
.x5a{left:701.413333pt;}
.xa{left:703.973333pt;}
.xd{left:710.053333pt;}
.x2{left:727.973333pt;}
}




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