
    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_e01208769ea365549e062fe9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_9f211a729b7eed86f22cb8ae.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f4f0311e32e92b1f94d5ff60.woff')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_5b74f946e677675431a297a1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_833ca733eb664e8b64ffb54f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_2ff2fee4b0e6a5541dc66c84.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4835ff5eb2e59832400648f4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.936035;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_c07459626f818fcf28051ea1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.201172;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_c86ec477c8d3b801d4ec1c16.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_40b8a0127783c7804ec454c6.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0ce54018debea461db2b5d96.woff')format("woff");}.ffb{font-family:ffb;line-height:1.060059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bb44b3ed1b05be50cc6a99f9.woff')format("woff");}.ffc{font-family:ffc;line-height:0.688477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_26f0a0b7d195402664a8eea9.woff')format("woff");}.ffd{font-family:ffd;line-height:0.977539;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:ffe;src:url('chunks/assets/font_4317350fd52c09d95111e26b.woff')format("woff");}.ffe{font-family:ffe;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;}
.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:-82.800000px;}
.v4{vertical-align:-15.120000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:9.360000px;}
.ls9{letter-spacing:-1.512000px;}
.lsa{letter-spacing:-0.864000px;}
.ls3{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.056160px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.048000px;}
.lse{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.221760px;}
.lsd{letter-spacing:0.245280px;}
.ls2{letter-spacing:0.247800px;}
.lsf{letter-spacing:0.269280px;}
.ls5{letter-spacing:0.287400px;}
.ls12{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.720000px;}
.ls7{letter-spacing:7.200000px;}
.ls6{letter-spacing:10.080000px;}
.ls8{letter-spacing:13.680000px;}
.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;}
}
.wsf{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.136000px;}
.wsd{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.488000px;}
.ws1{word-spacing:-15.840000px;}
.wsb{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.880000px;}
.ws3{word-spacing:-11.592000px;}
.ws5{word-spacing:-9.742440px;}
.ws4{word-spacing:-9.398880px;}
.ws6{word-spacing:0.000000px;}
._1d{margin-left:-12.240000px;}
._1f{margin-left:-6.990720px;}
._10{margin-left:-5.490000px;}
._1b{margin-left:-4.062000px;}
._c{margin-left:-2.250000px;}
._0{margin-left:-1.134000px;}
._4{width:1.117200px;}
._f{width:2.251200px;}
._13{width:4.011600px;}
._7{width:5.040000px;}
._8{width:6.264000px;}
._e{width:7.758000px;}
._14{width:8.856000px;}
._15{width:9.895200px;}
._6{width:11.232000px;}
._5{width:12.312000px;}
._11{width:13.480320px;}
._17{width:14.816880px;}
._b{width:16.272000px;}
._12{width:19.209600px;}
._9{width:20.232000px;}
._a{width:21.816000px;}
._16{width:22.896000px;}
._d{width:23.904000px;}
._1a{width:25.848000px;}
._19{width:27.198000px;}
._18{width:28.206000px;}
._1c{width:29.394000px;}
._2{width:30.870000px;}
._25{width:32.016000px;}
._24{width:37.992000px;}
._27{width:44.064000px;}
._28{width:45.556800px;}
._26{width:73.992000px;}
._21{width:113.016000px;}
._23{width:157.824000px;}
._1e{width:196.824000px;}
._22{width:198.000000px;}
._20{width:203.940000px;}
._3{width:1091.557200px;}
._1{width:2098.266000px;}
.fc9{color:rgb(0,0,204);}
.fc7{color:rgb(62,62,61);}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc8{color:rgb(128,128,128);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs7{font-size:12.240000px;}
.fs8{font-size:23.760000px;}
.fs0{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs9{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:0.690000px;}
.y37{bottom:1.080000px;}
.y2c{bottom:1.590000px;}
.y3{bottom:4.500000px;}
.y6e{bottom:4.860000px;}
.y30{bottom:8.430000px;}
.y35{bottom:9.180000px;}
.y6d{bottom:14.760000px;}
.y3c{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y38{bottom:37.080000px;}
.y1{bottom:42.660000px;}
.y32{bottom:46.080000px;}
.y36{bottom:89.100000px;}
.y6c{bottom:119.700000px;}
.y149{bottom:126.000000px;}
.yc8{bottom:126.360000px;}
.ye3{bottom:129.420000px;}
.y125{bottom:130.500000px;}
.y9b{bottom:137.160000px;}
.y6b{bottom:140.400000px;}
.y10b{bottom:140.760000px;}
.y2a{bottom:144.000000px;}
.y191{bottom:144.720000px;}
.yc7{bottom:147.060000px;}
.y148{bottom:149.760000px;}
.y168{bottom:152.820000px;}
.y124{bottom:154.260000px;}
.y6a{bottom:161.100000px;}
.ye2{bottom:165.420000px;}
.yc6{bottom:167.760000px;}
.y190{bottom:168.660000px;}
.y9a{bottom:172.800000px;}
.y147{bottom:173.520000px;}
.y10a{bottom:177.840000px;}
.y69{bottom:181.800000px;}
.y29{bottom:182.880000px;}
.ye1{bottom:186.300000px;}
.y18f{bottom:192.420000px;}
.y123{bottom:192.960000px;}
.y167{bottom:194.220000px;}
.y146{bottom:197.280000px;}
.y68{bottom:202.500000px;}
.yc5{bottom:202.860000px;}
.y109{bottom:205.560000px;}
.ye0{bottom:207.030000px;}
.y99{bottom:208.830000px;}
.y18e{bottom:216.210000px;}
.y122{bottom:216.930000px;}
.y145{bottom:221.070000px;}
.y28{bottom:221.610000px;}
.y67{bottom:223.230000px;}
.y108{bottom:226.290000px;}
.ydf{bottom:227.730000px;}
.y98{bottom:229.710000px;}
.y166{bottom:235.650000px;}
.yc4{bottom:239.070000px;}
.y18d{bottom:239.970000px;}
.y121{bottom:240.690000px;}
.y66{bottom:243.570000px;}
.y27{bottom:245.010000px;}
.y107{bottom:246.990000px;}
.yde{bottom:248.430000px;}
.y97{bottom:250.410000px;}
.yc3{bottom:259.950000px;}
.y18c{bottom:263.910000px;}
.y120{bottom:264.450000px;}
.y65{bottom:264.630000px;}
.y26{bottom:267.150000px;}
.y106{bottom:267.690000px;}
.ydd{bottom:269.130000px;}
.y96{bottom:271.110000px;}
.y165{bottom:274.350000px;}
.yc2{bottom:280.650000px;}
.y144{bottom:283.710000px;}
.y64{bottom:285.330000px;}
.y18b{bottom:287.670000px;}
.y11f{bottom:288.210000px;}
.y105{bottom:288.390000px;}
.y25{bottom:289.470000px;}
.ydc{bottom:289.830000px;}
.y164{bottom:298.110000px;}
.y63{bottom:306.030000px;}
.y1af{bottom:306.210000px;}
.y95{bottom:306.390000px;}
.y143{bottom:307.650000px;}
.y104{bottom:309.090000px;}
.y24{bottom:309.990000px;}
.ydb{bottom:310.530000px;}
.y18a{bottom:311.430000px;}
.y163{bottom:321.870000px;}
.yc1{bottom:322.050000px;}
.y62{bottom:326.730000px;}
.y11e{bottom:327.090000px;}
.y23{bottom:328.350000px;}
.y103{bottom:329.790000px;}
.y1ae{bottom:330.510000px;}
.yda{bottom:331.230000px;}
.y142{bottom:331.410000px;}
.y189{bottom:335.190000px;}
.y94{bottom:342.390000px;}
.yc0{bottom:342.750000px;}
.y61{bottom:347.430000px;}
.y102{bottom:350.490000px;}
.y11d{bottom:350.850000px;}
.yd9{bottom:351.930000px;}
.y1ad{bottom:353.730000px;}
.y141{bottom:355.170000px;}
.y188{bottom:359.130000px;}
.y22{bottom:359.490000px;}
.y162{bottom:360.750000px;}
.y93{bottom:363.270000px;}
.ybf{bottom:363.450000px;}
.y60{bottom:368.130000px;}
.yd8{bottom:372.630000px;}
.y11c{bottom:374.610000px;}
.y1ac{bottom:376.590000px;}
.y187{bottom:382.890000px;}
.y21{bottom:383.250000px;}
.y92{bottom:383.970000px;}
.ybe{bottom:384.150000px;}
.y161{bottom:384.510000px;}
.y101{bottom:385.950000px;}
.y5f{bottom:388.830000px;}
.yd7{bottom:393.330000px;}
.y140{bottom:394.050000px;}
.y11b{bottom:398.550000px;}
.y1ab{bottom:400.530000px;}
.y91{bottom:404.670000px;}
.ybd{bottom:404.850000px;}
.y20{bottom:405.750000px;}
.y186{bottom:406.650000px;}
.y5e{bottom:409.530000px;}
.yd6{bottom:414.030000px;}
.y13f{bottom:417.810000px;}
.y100{bottom:421.770000px;}
.y11a{bottom:422.310000px;}
.y160{bottom:423.210000px;}
.y1aa{bottom:424.290000px;}
.ybc{bottom:425.550000px;}
.y1f{bottom:429.510000px;}
.y5d{bottom:430.050000px;}
.y185{bottom:430.410000px;}
.yd5{bottom:434.730000px;}
.y90{bottom:440.130000px;}
.yff{bottom:442.695000px;}
.y119{bottom:446.115000px;}
.ybb{bottom:446.295000px;}
.y15f{bottom:447.195000px;}
.y1a9{bottom:448.095000px;}
.y5c{bottom:450.795000px;}
.y1e{bottom:453.315000px;}
.y184{bottom:454.395000px;}
.yd4{bottom:455.475000px;}
.y13e{bottom:456.555000px;}
.y8f{bottom:461.055000px;}
.yfe{bottom:463.395000px;}
.yba{bottom:466.995000px;}
.y118{bottom:469.875000px;}
.y15e{bottom:470.955000px;}
.y5b{bottom:471.495000px;}
.y1a8{bottom:471.855000px;}
.yd3{bottom:476.175000px;}
.y1d{bottom:477.075000px;}
.y183{bottom:478.155000px;}
.y13d{bottom:480.495000px;}
.y8e{bottom:481.755000px;}
.yfd{bottom:484.095000px;}
.yb9{bottom:487.695000px;}
.y5a{bottom:492.195000px;}
.y15d{bottom:494.715000px;}
.y1a7{bottom:495.795000px;}
.yd2{bottom:496.875000px;}
.y117{bottom:500.835000px;}
.y1c{bottom:501.015000px;}
.y182{bottom:501.915000px;}
.y8d{bottom:502.455000px;}
.y13c{bottom:504.255000px;}
.yfc{bottom:504.435000px;}
.yb8{bottom:508.395000px;}
.y59{bottom:512.895000px;}
.yd1{bottom:517.215000px;}
.y15c{bottom:518.475000px;}
.y1a6{bottom:519.555000px;}
.y8c{bottom:523.155000px;}
.y1b{bottom:524.775000px;}
.yfb{bottom:525.495000px;}
.y181{bottom:525.675000px;}
.y13b{bottom:528.015000px;}
.yb7{bottom:529.095000px;}
.y58{bottom:533.595000px;}
.yd0{bottom:538.275000px;}
.y116{bottom:542.415000px;}
.y1a5{bottom:543.315000px;}
.y8b{bottom:543.855000px;}
.yfa{bottom:546.195000px;}
.y1a{bottom:548.535000px;}
.y180{bottom:549.615000px;}
.yb6{bottom:549.795000px;}
.y13a{bottom:551.775000px;}
.y57{bottom:554.295000px;}
.ycf{bottom:558.975000px;}
.y15b{bottom:566.175000px;}
.yf9{bottom:566.895000px;}
.y1a4{bottom:567.075000px;}
.yb5{bottom:570.495000px;}
.y19{bottom:572.295000px;}
.y17f{bottom:573.375000px;}
.y56{bottom:574.995000px;}
.y139{bottom:575.715000px;}
.y8a{bottom:578.955000px;}
.yce{bottom:579.675000px;}
.yf8{bottom:587.595000px;}
.y15a{bottom:589.935000px;}
.y1a3{bottom:591.015000px;}
.yb4{bottom:591.195000px;}
.y55{bottom:595.695000px;}
.y18{bottom:596.235000px;}
.y17e{bottom:597.135000px;}
.y138{bottom:599.475000px;}
.ycd{bottom:600.375000px;}
.yf7{bottom:608.295000px;}
.yb3{bottom:611.895000px;}
.y159{bottom:613.695000px;}
.y89{bottom:614.775000px;}
.y54{bottom:616.395000px;}
.y17{bottom:619.995000px;}
.y17d{bottom:620.895000px;}
.ycc{bottom:621.075000px;}
.y137{bottom:623.235000px;}
.yf6{bottom:628.995000px;}
.yb2{bottom:632.595000px;}
.y53{bottom:637.095000px;}
.y1a2{bottom:638.535000px;}
.y88{bottom:641.775000px;}
.y16{bottom:643.755000px;}
.y17c{bottom:644.655000px;}
.y115{bottom:649.155000px;}
.yf5{bottom:649.695000px;}
.y158{bottom:652.575000px;}
.yb1{bottom:653.295000px;}
.y52{bottom:657.795000px;}
.y136{bottom:662.115000px;}
.y1a1{bottom:662.295000px;}
.y87{bottom:662.475000px;}
.y15{bottom:667.515000px;}
.y17b{bottom:668.595000px;}
.yf4{bottom:670.395000px;}
.yb0{bottom:673.995000px;}
.y51{bottom:678.525000px;}
.y86{bottom:683.205000px;}
.y135{bottom:685.905000px;}
.y1a0{bottom:686.085000px;}
.y157{bottom:690.945000px;}
.yf3{bottom:691.125000px;}
.y17a{bottom:692.385000px;}
.yaf{bottom:694.725000px;}
.y14{bottom:698.685000px;}
.y50{bottom:699.225000px;}
.y85{bottom:703.905000px;}
.y19f{bottom:710.025000px;}
.yf2{bottom:711.645000px;}
.yae{bottom:715.425000px;}
.y179{bottom:716.145000px;}
.y13{bottom:719.025000px;}
.y4f{bottom:719.925000px;}
.y84{bottom:724.605000px;}
.y156{bottom:730.185000px;}
.y19e{bottom:733.785000px;}
.yad{bottom:736.125000px;}
.y178{bottom:739.905000px;}
.y4e{bottom:740.625000px;}
.y12{bottom:740.805000px;}
.y83{bottom:745.305000px;}
.yf1{bottom:747.285000px;}
.y134{bottom:748.545000px;}
.y155{bottom:753.945000px;}
.yac{bottom:756.645000px;}
.y19d{bottom:757.545000px;}
.y4d{bottom:761.325000px;}
.y177{bottom:763.845000px;}
.y11{bottom:764.025000px;}
.y82{bottom:766.005000px;}
.yf0{bottom:768.165000px;}
.y133{bottom:772.305000px;}
.yab{bottom:777.345000px;}
.y154{bottom:777.705000px;}
.y19c{bottom:781.305000px;}
.y4c{bottom:782.025000px;}
.y114{bottom:783.105000px;}
.y81{bottom:786.705000px;}
.y10{bottom:787.245000px;}
.y176{bottom:787.605000px;}
.yef{bottom:788.865000px;}
.y132{bottom:796.065000px;}
.yaa{bottom:798.045000px;}
.y113{bottom:801.465000px;}
.y4b{bottom:802.725000px;}
.y19b{bottom:805.245000px;}
.y80{bottom:807.405000px;}
.yf{bottom:810.465000px;}
.y175{bottom:811.365000px;}
.y153{bottom:816.585000px;}
.ya9{bottom:818.745000px;}
.y4a{bottom:823.425000px;}
.yee{bottom:824.325000px;}
.y7f{bottom:828.105000px;}
.y19a{bottom:829.005000px;}
.ye{bottom:833.505000px;}
.y131{bottom:834.945000px;}
.y174{bottom:835.125000px;}
.ya8{bottom:839.445000px;}
.y152{bottom:840.345000px;}
.y49{bottom:844.125000px;}
.yed{bottom:845.205000px;}
.ycb{bottom:848.445000px;}
.y7e{bottom:848.805000px;}
.y199{bottom:852.765000px;}
.y130{bottom:858.705000px;}
.y173{bottom:859.065000px;}
.ya7{bottom:860.145000px;}
.yd{bottom:864.825000px;}
.yec{bottom:865.905000px;}
.yca{bottom:869.145000px;}
.y7d{bottom:869.505000px;}
.y198{bottom:876.525000px;}
.y151{bottom:879.225000px;}
.ya6{bottom:880.845000px;}
.y12f{bottom:882.465000px;}
.y172{bottom:882.825000px;}
.yc{bottom:884.985000px;}
.y48{bottom:885.525000px;}
.yeb{bottom:886.605000px;}
.y7c{bottom:890.205000px;}
.y112{bottom:895.605000px;}
.y197{bottom:900.465000px;}
.ya5{bottom:901.545000px;}
.y150{bottom:902.985000px;}
.y47{bottom:906.225000px;}
.y171{bottom:906.585000px;}
.yea{bottom:907.305000px;}
.yb{bottom:908.205000px;}
.y7b{bottom:910.950000px;}
.ya4{bottom:922.290000px;}
.y196{bottom:924.270000px;}
.y46{bottom:926.970000px;}
.ye9{bottom:928.050000px;}
.y12e{bottom:930.210000px;}
.y170{bottom:930.390000px;}
.y7a{bottom:931.650000px;}
.y14f{bottom:941.550000px;}
.ya3{bottom:942.990000px;}
.ya{bottom:944.610000px;}
.y45{bottom:947.670000px;}
.y195{bottom:948.030000px;}
.ye8{bottom:948.750000px;}
.y79{bottom:951.990000px;}
.yc9{bottom:952.350000px;}
.y12d{bottom:953.970000px;}
.y16f{bottom:954.330000px;}
.ya2{bottom:963.690000px;}
.y44{bottom:968.370000px;}
.y194{bottom:971.790000px;}
.y78{bottom:973.050000px;}
.y9{bottom:973.590000px;}
.y12c{bottom:977.730000px;}
.y16e{bottom:978.090000px;}
.y14e{bottom:980.610000px;}
.y2f{bottom:983.700000px;}
.ye7{bottom:983.850000px;}
.ya1{bottom:984.390000px;}
.y43{bottom:989.070000px;}
.y2d{bottom:990.540000px;}
.y2b{bottom:990.900000px;}
.y8{bottom:993.390000px;}
.y77{bottom:993.750000px;}
.y193{bottom:995.730000px;}
.y12b{bottom:998.430000px;}
.y16d{bottom:1001.850000px;}
.y14d{bottom:1004.370000px;}
.ya0{bottom:1005.090000px;}
.y42{bottom:1009.770000px;}
.y76{bottom:1014.450000px;}
.y192{bottom:1019.490000px;}
.ye6{bottom:1020.030000px;}
.y9f{bottom:1025.430000px;}
.y16c{bottom:1025.610000px;}
.y7{bottom:1027.590000px;}
.y14c{bottom:1028.310000px;}
.y41{bottom:1030.470000px;}
.y111{bottom:1030.650000px;}
.y75{bottom:1035.150000px;}
.ye5{bottom:1040.910000px;}
.y12a{bottom:1043.250000px;}
.y16b{bottom:1049.550000px;}
.y40{bottom:1051.170000px;}
.y14b{bottom:1052.070000px;}
.y110{bottom:1055.490000px;}
.y74{bottom:1055.850000px;}
.y9e{bottom:1061.430000px;}
.ye4{bottom:1061.610000px;}
.y6{bottom:1062.870000px;}
.y129{bottom:1067.010000px;}
.y3f{bottom:1071.870000px;}
.y16a{bottom:1073.310000px;}
.y14a{bottom:1075.830000px;}
.y10f{bottom:1076.190000px;}
.y73{bottom:1076.550000px;}
.y9d{bottom:1082.310000px;}
.y128{bottom:1090.950000px;}
.y3e{bottom:1092.570000px;}
.y10e{bottom:1096.890000px;}
.y169{bottom:1097.070000px;}
.y72{bottom:1097.250000px;}
.y5{bottom:1101.030000px;}
.y9c{bottom:1103.010000px;}
.y127{bottom:1114.710000px;}
.y10d{bottom:1117.590000px;}
.y71{bottom:1117.950000px;}
.y3d{bottom:1138.110000px;}
.y10c{bottom:1138.290000px;}
.y126{bottom:1138.470000px;}
.y70{bottom:1138.650000px;}
.y4{bottom:1139.190000px;}
.y3b{bottom:1164.600000px;}
.y3a{bottom:1180.440000px;}
.y39{bottom:1196.280000px;}
.y6f{bottom:1198.260000px;}
.y31{bottom:1208.340000px;}
.y34{bottom:1234.800000px;}
.y33{bottom:1247.760000px;}
.h18{height:8.289492px;}
.h15{height:13.500000px;}
.h13{height:14.400000px;}
.h1f{height:18.180000px;}
.h19{height:20.117109px;}
.h16{height:21.240000px;}
.h1b{height:24.660000px;}
.h2{height:38.405391px;}
.h1a{height:38.464805px;}
.h5{height:38.469727px;}
.h1e{height:40.843828px;}
.h6{height:42.573164px;}
.h1d{height:43.057617px;}
.h14{height:45.720703px;}
.h10{height:47.344922px;}
.h17{height:48.600000px;}
.h1c{height:49.680000px;}
.hd{height:50.273438px;}
.hb{height:50.597578px;}
.h4{height:53.709961px;}
.h8{height:54.421875px;}
.h9{height:54.597656px;}
.h11{height:56.084062px;}
.hc{height:60.960938px;}
.hf{height:65.010937px;}
.h3{height:65.884219px;}
.ha{height:67.824844px;}
.h20{height:70.628906px;}
.he{height:70.664062px;}
.h12{height:72.562500px;}
.h7{height:91.441406px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:66.960000px;}
.w9{width:69.300000px;}
.wd{width:70.380000px;}
.w8{width:71.460000px;}
.wa{width:73.800000px;}
.wb{width:74.880000px;}
.w5{width:76.860000px;}
.w7{width:79.020000px;}
.w2{width:168.840000px;}
.w3{width:193.680000px;}
.w4{width:209.520000px;}
.w6{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:9.900000px;}
.xb{left:10.905000px;}
.x10{left:12.420000px;}
.x14{left:18.510000px;}
.xe{left:20.235000px;}
.x11{left:95.040000px;}
.x27{left:98.316000px;}
.x1{left:108.036000px;}
.x1b{left:109.476000px;}
.xc{left:115.380000px;}
.x2{left:118.476000px;}
.x1f{left:129.276000px;}
.x15{left:150.330000px;}
.x9{left:153.570000px;}
.x25{left:162.030000px;}
.x18{left:183.630000px;}
.x6{left:241.410000px;}
.x8{left:246.090000px;}
.x1a{left:252.030000px;}
.x7{left:261.930000px;}
.x5{left:269.490000px;}
.x16{left:273.990000px;}
.x3{left:315.255000px;}
.xd{left:366.480000px;}
.x4{left:435.135000px;}
.x12{left:454.965000px;}
.x17{left:532.365000px;}
.xa{left:630.180000px;}
.x24{left:700.350000px;}
.x21{left:713.310000px;}
.x22{left:718.890000px;}
.x26{left:785.130000px;}
.x13{left:813.960000px;}
.x23{left:816.090000px;}
.x1e{left:818.100000px;}
.x1d{left:819.180000px;}
.x19{left:821.520000px;}
.x28{left:822.600000px;}
.x1c{left:823.680000px;}
.x20{left:826.020000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v4{vertical-align:-13.440000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:8.320000pt;}
.ls9{letter-spacing:-1.344000pt;}
.lsa{letter-spacing:-0.768000pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.049920pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.042667pt;}
.lse{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.197120pt;}
.lsd{letter-spacing:0.218027pt;}
.ls2{letter-spacing:0.220267pt;}
.lsf{letter-spacing:0.239360pt;}
.ls5{letter-spacing:0.255467pt;}
.ls12{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls7{letter-spacing:6.400000pt;}
.ls6{letter-spacing:8.960000pt;}
.ls8{letter-spacing:12.160000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.232000pt;}
.wsd{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.656000pt;}
.ws1{word-spacing:-14.080000pt;}
.wsb{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.560000pt;}
.ws3{word-spacing:-10.304000pt;}
.ws5{word-spacing:-8.659947pt;}
.ws4{word-spacing:-8.354560pt;}
.ws6{word-spacing:0.000000pt;}
._1d{margin-left:-10.880000pt;}
._1f{margin-left:-6.213973pt;}
._10{margin-left:-4.880000pt;}
._1b{margin-left:-3.610667pt;}
._c{margin-left:-2.000000pt;}
._0{margin-left:-1.008000pt;}
._4{width:0.993067pt;}
._f{width:2.001067pt;}
._13{width:3.565867pt;}
._7{width:4.480000pt;}
._8{width:5.568000pt;}
._e{width:6.896000pt;}
._14{width:7.872000pt;}
._15{width:8.795733pt;}
._6{width:9.984000pt;}
._5{width:10.944000pt;}
._11{width:11.982507pt;}
._17{width:13.170560pt;}
._b{width:14.464000pt;}
._12{width:17.075200pt;}
._9{width:17.984000pt;}
._a{width:19.392000pt;}
._16{width:20.352000pt;}
._d{width:21.248000pt;}
._1a{width:22.976000pt;}
._19{width:24.176000pt;}
._18{width:25.072000pt;}
._1c{width:26.128000pt;}
._2{width:27.440000pt;}
._25{width:28.458667pt;}
._24{width:33.770667pt;}
._27{width:39.168000pt;}
._28{width:40.494933pt;}
._26{width:65.770667pt;}
._21{width:100.458667pt;}
._23{width:140.288000pt;}
._1e{width:174.954667pt;}
._22{width:176.000000pt;}
._20{width:181.280000pt;}
._3{width:970.273067pt;}
._1{width:1865.125333pt;}
.fs7{font-size:10.880000pt;}
.fs8{font-size:21.120000pt;}
.fs0{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs9{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:0.613333pt;}
.y37{bottom:0.960000pt;}
.y2c{bottom:1.413333pt;}
.y3{bottom:4.000000pt;}
.y6e{bottom:4.320000pt;}
.y30{bottom:7.493333pt;}
.y35{bottom:8.160000pt;}
.y6d{bottom:13.120000pt;}
.y3c{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y38{bottom:32.960000pt;}
.y1{bottom:37.920000pt;}
.y32{bottom:40.960000pt;}
.y36{bottom:79.200000pt;}
.y6c{bottom:106.400000pt;}
.y149{bottom:112.000000pt;}
.yc8{bottom:112.320000pt;}
.ye3{bottom:115.040000pt;}
.y125{bottom:116.000000pt;}
.y9b{bottom:121.920000pt;}
.y6b{bottom:124.800000pt;}
.y10b{bottom:125.120000pt;}
.y2a{bottom:128.000000pt;}
.y191{bottom:128.640000pt;}
.yc7{bottom:130.720000pt;}
.y148{bottom:133.120000pt;}
.y168{bottom:135.840000pt;}
.y124{bottom:137.120000pt;}
.y6a{bottom:143.200000pt;}
.ye2{bottom:147.040000pt;}
.yc6{bottom:149.120000pt;}
.y190{bottom:149.920000pt;}
.y9a{bottom:153.600000pt;}
.y147{bottom:154.240000pt;}
.y10a{bottom:158.080000pt;}
.y69{bottom:161.600000pt;}
.y29{bottom:162.560000pt;}
.ye1{bottom:165.600000pt;}
.y18f{bottom:171.040000pt;}
.y123{bottom:171.520000pt;}
.y167{bottom:172.640000pt;}
.y146{bottom:175.360000pt;}
.y68{bottom:180.000000pt;}
.yc5{bottom:180.320000pt;}
.y109{bottom:182.720000pt;}
.ye0{bottom:184.026667pt;}
.y99{bottom:185.626667pt;}
.y18e{bottom:192.186667pt;}
.y122{bottom:192.826667pt;}
.y145{bottom:196.506667pt;}
.y28{bottom:196.986667pt;}
.y67{bottom:198.426667pt;}
.y108{bottom:201.146667pt;}
.ydf{bottom:202.426667pt;}
.y98{bottom:204.186667pt;}
.y166{bottom:209.466667pt;}
.yc4{bottom:212.506667pt;}
.y18d{bottom:213.306667pt;}
.y121{bottom:213.946667pt;}
.y66{bottom:216.506667pt;}
.y27{bottom:217.786667pt;}
.y107{bottom:219.546667pt;}
.yde{bottom:220.826667pt;}
.y97{bottom:222.586667pt;}
.yc3{bottom:231.066667pt;}
.y18c{bottom:234.586667pt;}
.y120{bottom:235.066667pt;}
.y65{bottom:235.226667pt;}
.y26{bottom:237.466667pt;}
.y106{bottom:237.946667pt;}
.ydd{bottom:239.226667pt;}
.y96{bottom:240.986667pt;}
.y165{bottom:243.866667pt;}
.yc2{bottom:249.466667pt;}
.y144{bottom:252.186667pt;}
.y64{bottom:253.626667pt;}
.y18b{bottom:255.706667pt;}
.y11f{bottom:256.186667pt;}
.y105{bottom:256.346667pt;}
.y25{bottom:257.306667pt;}
.ydc{bottom:257.626667pt;}
.y164{bottom:264.986667pt;}
.y63{bottom:272.026667pt;}
.y1af{bottom:272.186667pt;}
.y95{bottom:272.346667pt;}
.y143{bottom:273.466667pt;}
.y104{bottom:274.746667pt;}
.y24{bottom:275.546667pt;}
.ydb{bottom:276.026667pt;}
.y18a{bottom:276.826667pt;}
.y163{bottom:286.106667pt;}
.yc1{bottom:286.266667pt;}
.y62{bottom:290.426667pt;}
.y11e{bottom:290.746667pt;}
.y23{bottom:291.866667pt;}
.y103{bottom:293.146667pt;}
.y1ae{bottom:293.786667pt;}
.yda{bottom:294.426667pt;}
.y142{bottom:294.586667pt;}
.y189{bottom:297.946667pt;}
.y94{bottom:304.346667pt;}
.yc0{bottom:304.666667pt;}
.y61{bottom:308.826667pt;}
.y102{bottom:311.546667pt;}
.y11d{bottom:311.866667pt;}
.yd9{bottom:312.826667pt;}
.y1ad{bottom:314.426667pt;}
.y141{bottom:315.706667pt;}
.y188{bottom:319.226667pt;}
.y22{bottom:319.546667pt;}
.y162{bottom:320.666667pt;}
.y93{bottom:322.906667pt;}
.ybf{bottom:323.066667pt;}
.y60{bottom:327.226667pt;}
.yd8{bottom:331.226667pt;}
.y11c{bottom:332.986667pt;}
.y1ac{bottom:334.746667pt;}
.y187{bottom:340.346667pt;}
.y21{bottom:340.666667pt;}
.y92{bottom:341.306667pt;}
.ybe{bottom:341.466667pt;}
.y161{bottom:341.786667pt;}
.y101{bottom:343.066667pt;}
.y5f{bottom:345.626667pt;}
.yd7{bottom:349.626667pt;}
.y140{bottom:350.266667pt;}
.y11b{bottom:354.266667pt;}
.y1ab{bottom:356.026667pt;}
.y91{bottom:359.706667pt;}
.ybd{bottom:359.866667pt;}
.y20{bottom:360.666667pt;}
.y186{bottom:361.466667pt;}
.y5e{bottom:364.026667pt;}
.yd6{bottom:368.026667pt;}
.y13f{bottom:371.386667pt;}
.y100{bottom:374.906667pt;}
.y11a{bottom:375.386667pt;}
.y160{bottom:376.186667pt;}
.y1aa{bottom:377.146667pt;}
.ybc{bottom:378.266667pt;}
.y1f{bottom:381.786667pt;}
.y5d{bottom:382.266667pt;}
.y185{bottom:382.586667pt;}
.yd5{bottom:386.426667pt;}
.y90{bottom:391.226667pt;}
.yff{bottom:393.506667pt;}
.y119{bottom:396.546667pt;}
.ybb{bottom:396.706667pt;}
.y15f{bottom:397.506667pt;}
.y1a9{bottom:398.306667pt;}
.y5c{bottom:400.706667pt;}
.y1e{bottom:402.946667pt;}
.y184{bottom:403.906667pt;}
.yd4{bottom:404.866667pt;}
.y13e{bottom:405.826667pt;}
.y8f{bottom:409.826667pt;}
.yfe{bottom:411.906667pt;}
.yba{bottom:415.106667pt;}
.y118{bottom:417.666667pt;}
.y15e{bottom:418.626667pt;}
.y5b{bottom:419.106667pt;}
.y1a8{bottom:419.426667pt;}
.yd3{bottom:423.266667pt;}
.y1d{bottom:424.066667pt;}
.y183{bottom:425.026667pt;}
.y13d{bottom:427.106667pt;}
.y8e{bottom:428.226667pt;}
.yfd{bottom:430.306667pt;}
.yb9{bottom:433.506667pt;}
.y5a{bottom:437.506667pt;}
.y15d{bottom:439.746667pt;}
.y1a7{bottom:440.706667pt;}
.yd2{bottom:441.666667pt;}
.y117{bottom:445.186667pt;}
.y1c{bottom:445.346667pt;}
.y182{bottom:446.146667pt;}
.y8d{bottom:446.626667pt;}
.y13c{bottom:448.226667pt;}
.yfc{bottom:448.386667pt;}
.yb8{bottom:451.906667pt;}
.y59{bottom:455.906667pt;}
.yd1{bottom:459.746667pt;}
.y15c{bottom:460.866667pt;}
.y1a6{bottom:461.826667pt;}
.y8c{bottom:465.026667pt;}
.y1b{bottom:466.466667pt;}
.yfb{bottom:467.106667pt;}
.y181{bottom:467.266667pt;}
.y13b{bottom:469.346667pt;}
.yb7{bottom:470.306667pt;}
.y58{bottom:474.306667pt;}
.yd0{bottom:478.466667pt;}
.y116{bottom:482.146667pt;}
.y1a5{bottom:482.946667pt;}
.y8b{bottom:483.426667pt;}
.yfa{bottom:485.506667pt;}
.y1a{bottom:487.586667pt;}
.y180{bottom:488.546667pt;}
.yb6{bottom:488.706667pt;}
.y13a{bottom:490.466667pt;}
.y57{bottom:492.706667pt;}
.ycf{bottom:496.866667pt;}
.y15b{bottom:503.266667pt;}
.yf9{bottom:503.906667pt;}
.y1a4{bottom:504.066667pt;}
.yb5{bottom:507.106667pt;}
.y19{bottom:508.706667pt;}
.y17f{bottom:509.666667pt;}
.y56{bottom:511.106667pt;}
.y139{bottom:511.746667pt;}
.y8a{bottom:514.626667pt;}
.yce{bottom:515.266667pt;}
.yf8{bottom:522.306667pt;}
.y15a{bottom:524.386667pt;}
.y1a3{bottom:525.346667pt;}
.yb4{bottom:525.506667pt;}
.y55{bottom:529.506667pt;}
.y18{bottom:529.986667pt;}
.y17e{bottom:530.786667pt;}
.y138{bottom:532.866667pt;}
.ycd{bottom:533.666667pt;}
.yf7{bottom:540.706667pt;}
.yb3{bottom:543.906667pt;}
.y159{bottom:545.506667pt;}
.y89{bottom:546.466667pt;}
.y54{bottom:547.906667pt;}
.y17{bottom:551.106667pt;}
.y17d{bottom:551.906667pt;}
.ycc{bottom:552.066667pt;}
.y137{bottom:553.986667pt;}
.yf6{bottom:559.106667pt;}
.yb2{bottom:562.306667pt;}
.y53{bottom:566.306667pt;}
.y1a2{bottom:567.586667pt;}
.y88{bottom:570.466667pt;}
.y16{bottom:572.226667pt;}
.y17c{bottom:573.026667pt;}
.y115{bottom:577.026667pt;}
.yf5{bottom:577.506667pt;}
.y158{bottom:580.066667pt;}
.yb1{bottom:580.706667pt;}
.y52{bottom:584.706667pt;}
.y136{bottom:588.546667pt;}
.y1a1{bottom:588.706667pt;}
.y87{bottom:588.866667pt;}
.y15{bottom:593.346667pt;}
.y17b{bottom:594.306667pt;}
.yf4{bottom:595.906667pt;}
.yb0{bottom:599.106667pt;}
.y51{bottom:603.133333pt;}
.y86{bottom:607.293333pt;}
.y135{bottom:609.693333pt;}
.y1a0{bottom:609.853333pt;}
.y157{bottom:614.173333pt;}
.yf3{bottom:614.333333pt;}
.y17a{bottom:615.453333pt;}
.yaf{bottom:617.533333pt;}
.y14{bottom:621.053333pt;}
.y50{bottom:621.533333pt;}
.y85{bottom:625.693333pt;}
.y19f{bottom:631.133333pt;}
.yf2{bottom:632.573333pt;}
.yae{bottom:635.933333pt;}
.y179{bottom:636.573333pt;}
.y13{bottom:639.133333pt;}
.y4f{bottom:639.933333pt;}
.y84{bottom:644.093333pt;}
.y156{bottom:649.053333pt;}
.y19e{bottom:652.253333pt;}
.yad{bottom:654.333333pt;}
.y178{bottom:657.693333pt;}
.y4e{bottom:658.333333pt;}
.y12{bottom:658.493333pt;}
.y83{bottom:662.493333pt;}
.yf1{bottom:664.253333pt;}
.y134{bottom:665.373333pt;}
.y155{bottom:670.173333pt;}
.yac{bottom:672.573333pt;}
.y19d{bottom:673.373333pt;}
.y4d{bottom:676.733333pt;}
.y177{bottom:678.973333pt;}
.y11{bottom:679.133333pt;}
.y82{bottom:680.893333pt;}
.yf0{bottom:682.813333pt;}
.y133{bottom:686.493333pt;}
.yab{bottom:690.973333pt;}
.y154{bottom:691.293333pt;}
.y19c{bottom:694.493333pt;}
.y4c{bottom:695.133333pt;}
.y114{bottom:696.093333pt;}
.y81{bottom:699.293333pt;}
.y10{bottom:699.773333pt;}
.y176{bottom:700.093333pt;}
.yef{bottom:701.213333pt;}
.y132{bottom:707.613333pt;}
.yaa{bottom:709.373333pt;}
.y113{bottom:712.413333pt;}
.y4b{bottom:713.533333pt;}
.y19b{bottom:715.773333pt;}
.y80{bottom:717.693333pt;}
.yf{bottom:720.413333pt;}
.y175{bottom:721.213333pt;}
.y153{bottom:725.853333pt;}
.ya9{bottom:727.773333pt;}
.y4a{bottom:731.933333pt;}
.yee{bottom:732.733333pt;}
.y7f{bottom:736.093333pt;}
.y19a{bottom:736.893333pt;}
.ye{bottom:740.893333pt;}
.y131{bottom:742.173333pt;}
.y174{bottom:742.333333pt;}
.ya8{bottom:746.173333pt;}
.y152{bottom:746.973333pt;}
.y49{bottom:750.333333pt;}
.yed{bottom:751.293333pt;}
.ycb{bottom:754.173333pt;}
.y7e{bottom:754.493333pt;}
.y199{bottom:758.013333pt;}
.y130{bottom:763.293333pt;}
.y173{bottom:763.613333pt;}
.ya7{bottom:764.573333pt;}
.yd{bottom:768.733333pt;}
.yec{bottom:769.693333pt;}
.yca{bottom:772.573333pt;}
.y7d{bottom:772.893333pt;}
.y198{bottom:779.133333pt;}
.y151{bottom:781.533333pt;}
.ya6{bottom:782.973333pt;}
.y12f{bottom:784.413333pt;}
.y172{bottom:784.733333pt;}
.yc{bottom:786.653333pt;}
.y48{bottom:787.133333pt;}
.yeb{bottom:788.093333pt;}
.y7c{bottom:791.293333pt;}
.y112{bottom:796.093333pt;}
.y197{bottom:800.413333pt;}
.ya5{bottom:801.373333pt;}
.y150{bottom:802.653333pt;}
.y47{bottom:805.533333pt;}
.y171{bottom:805.853333pt;}
.yea{bottom:806.493333pt;}
.yb{bottom:807.293333pt;}
.y7b{bottom:809.733333pt;}
.ya4{bottom:819.813333pt;}
.y196{bottom:821.573333pt;}
.y46{bottom:823.973333pt;}
.ye9{bottom:824.933333pt;}
.y12e{bottom:826.853333pt;}
.y170{bottom:827.013333pt;}
.y7a{bottom:828.133333pt;}
.y14f{bottom:836.933333pt;}
.ya3{bottom:838.213333pt;}
.ya{bottom:839.653333pt;}
.y45{bottom:842.373333pt;}
.y195{bottom:842.693333pt;}
.ye8{bottom:843.333333pt;}
.y79{bottom:846.213333pt;}
.yc9{bottom:846.533333pt;}
.y12d{bottom:847.973333pt;}
.y16f{bottom:848.293333pt;}
.ya2{bottom:856.613333pt;}
.y44{bottom:860.773333pt;}
.y194{bottom:863.813333pt;}
.y78{bottom:864.933333pt;}
.y9{bottom:865.413333pt;}
.y12c{bottom:869.093333pt;}
.y16e{bottom:869.413333pt;}
.y14e{bottom:871.653333pt;}
.y2f{bottom:874.400000pt;}
.ye7{bottom:874.533333pt;}
.ya1{bottom:875.013333pt;}
.y43{bottom:879.173333pt;}
.y2d{bottom:880.480000pt;}
.y2b{bottom:880.800000pt;}
.y8{bottom:883.013333pt;}
.y77{bottom:883.333333pt;}
.y193{bottom:885.093333pt;}
.y12b{bottom:887.493333pt;}
.y16d{bottom:890.533333pt;}
.y14d{bottom:892.773333pt;}
.ya0{bottom:893.413333pt;}
.y42{bottom:897.573333pt;}
.y76{bottom:901.733333pt;}
.y192{bottom:906.213333pt;}
.ye6{bottom:906.693333pt;}
.y9f{bottom:911.493333pt;}
.y16c{bottom:911.653333pt;}
.y7{bottom:913.413333pt;}
.y14c{bottom:914.053333pt;}
.y41{bottom:915.973333pt;}
.y111{bottom:916.133333pt;}
.y75{bottom:920.133333pt;}
.ye5{bottom:925.253333pt;}
.y12a{bottom:927.333333pt;}
.y16b{bottom:932.933333pt;}
.y40{bottom:934.373333pt;}
.y14b{bottom:935.173333pt;}
.y110{bottom:938.213333pt;}
.y74{bottom:938.533333pt;}
.y9e{bottom:943.493333pt;}
.ye4{bottom:943.653333pt;}
.y6{bottom:944.773333pt;}
.y129{bottom:948.453333pt;}
.y3f{bottom:952.773333pt;}
.y16a{bottom:954.053333pt;}
.y14a{bottom:956.293333pt;}
.y10f{bottom:956.613333pt;}
.y73{bottom:956.933333pt;}
.y9d{bottom:962.053333pt;}
.y128{bottom:969.733333pt;}
.y3e{bottom:971.173333pt;}
.y10e{bottom:975.013333pt;}
.y169{bottom:975.173333pt;}
.y72{bottom:975.333333pt;}
.y5{bottom:978.693333pt;}
.y9c{bottom:980.453333pt;}
.y127{bottom:990.853333pt;}
.y10d{bottom:993.413333pt;}
.y71{bottom:993.733333pt;}
.y3d{bottom:1011.653333pt;}
.y10c{bottom:1011.813333pt;}
.y126{bottom:1011.973333pt;}
.y70{bottom:1012.133333pt;}
.y4{bottom:1012.613333pt;}
.y3b{bottom:1035.200000pt;}
.y3a{bottom:1049.280000pt;}
.y39{bottom:1063.360000pt;}
.y6f{bottom:1065.120000pt;}
.y31{bottom:1074.080000pt;}
.y34{bottom:1097.600000pt;}
.y33{bottom:1109.120000pt;}
.h18{height:7.368437pt;}
.h15{height:12.000000pt;}
.h13{height:12.800000pt;}
.h1f{height:16.160000pt;}
.h19{height:17.881875pt;}
.h16{height:18.880000pt;}
.h1b{height:21.920000pt;}
.h2{height:34.138125pt;}
.h1a{height:34.190937pt;}
.h5{height:34.195312pt;}
.h1e{height:36.305625pt;}
.h6{height:37.842813pt;}
.h1d{height:38.273438pt;}
.h14{height:40.640625pt;}
.h10{height:42.084375pt;}
.h17{height:43.200000pt;}
.h1c{height:44.160000pt;}
.hd{height:44.687500pt;}
.hb{height:44.975625pt;}
.h4{height:47.742188pt;}
.h8{height:48.375000pt;}
.h9{height:48.531250pt;}
.h11{height:49.852500pt;}
.hc{height:54.187500pt;}
.hf{height:57.787500pt;}
.h3{height:58.563750pt;}
.ha{height:60.288750pt;}
.h20{height:62.781250pt;}
.he{height:62.812500pt;}
.h12{height:64.500000pt;}
.h7{height:81.281250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:59.520000pt;}
.w9{width:61.600000pt;}
.wd{width:62.560000pt;}
.w8{width:63.520000pt;}
.wa{width:65.600000pt;}
.wb{width:66.560000pt;}
.w5{width:68.320000pt;}
.w7{width:70.240000pt;}
.w2{width:150.080000pt;}
.w3{width:172.160000pt;}
.w4{width:186.240000pt;}
.w6{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:8.800000pt;}
.xb{left:9.693333pt;}
.x10{left:11.040000pt;}
.x14{left:16.453333pt;}
.xe{left:17.986667pt;}
.x11{left:84.480000pt;}
.x27{left:87.392000pt;}
.x1{left:96.032000pt;}
.x1b{left:97.312000pt;}
.xc{left:102.560000pt;}
.x2{left:105.312000pt;}
.x1f{left:114.912000pt;}
.x15{left:133.626667pt;}
.x9{left:136.506667pt;}
.x25{left:144.026667pt;}
.x18{left:163.226667pt;}
.x6{left:214.586667pt;}
.x8{left:218.746667pt;}
.x1a{left:224.026667pt;}
.x7{left:232.826667pt;}
.x5{left:239.546667pt;}
.x16{left:243.546667pt;}
.x3{left:280.226667pt;}
.xd{left:325.760000pt;}
.x4{left:386.786667pt;}
.x12{left:404.413333pt;}
.x17{left:473.213333pt;}
.xa{left:560.160000pt;}
.x24{left:622.533333pt;}
.x21{left:634.053333pt;}
.x22{left:639.013333pt;}
.x26{left:697.893333pt;}
.x13{left:723.520000pt;}
.x23{left:725.413333pt;}
.x1e{left:727.200000pt;}
.x1d{left:728.160000pt;}
.x19{left:730.240000pt;}
.x28{left:731.200000pt;}
.x1c{left:732.160000pt;}
.x20{left:734.240000pt;}
}




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