
    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_06155c6e1fdbe851019e6aa3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9fad6464684432385a859a33.woff')format("woff");}.ff2{font-family:ff2;line-height:0.896484;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_ce5ef2a3cf86a17e142e0cea.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6d94265fc21bba599eeb62aa.woff')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_ca20a9e0da61061cb9a734bb.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_855ac45d9591e414842fa1f4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090820;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_620aa5e0bb61c6438080bb06.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_10fd574c1f8e93ad8eca8940.woff')format("woff");}.ff8{font-family:ff8;line-height:1.123047;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_0e0fa0ab4f0bd8a562673b3c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.691406;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:-79.920000px;}
.v0{vertical-align:0.000000px;}
.ls2c{letter-spacing:-5.496000px;}
.ls1d{letter-spacing:-5.184000px;}
.ls18{letter-spacing:-4.776000px;}
.ls17{letter-spacing:-3.390000px;}
.lsa{letter-spacing:-2.670000px;}
.ls1f{letter-spacing:-2.160000px;}
.ls11{letter-spacing:-1.710000px;}
.lsc{letter-spacing:-1.566000px;}
.ls8{letter-spacing:-1.440000px;}
.ls2a{letter-spacing:-1.176000px;}
.ls27{letter-spacing:-1.026000px;}
.ls2d{letter-spacing:-0.948000px;}
.lsb{letter-spacing:-0.888000px;}
.ls10{letter-spacing:-0.816000px;}
.ls3{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.457800px;}
.ls25{letter-spacing:-0.414600px;}
.ls26{letter-spacing:-0.305400px;}
.ls21{letter-spacing:-0.262200px;}
.ls28{letter-spacing:-0.259800px;}
.ls20{letter-spacing:-0.198600px;}
.ls1e{letter-spacing:-0.169800px;}
.ls12{letter-spacing:-0.158400px;}
.ls30{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.109200px;}
.ls23{letter-spacing:0.115200px;}
.ls9{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.198600px;}
.ls0{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.262200px;}
.ls1b{letter-spacing:0.305400px;}
.ls7{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.414600px;}
.ls29{letter-spacing:0.442080px;}
.ls2e{letter-spacing:0.477120px;}
.ls1{letter-spacing:0.501120px;}
.ls14{letter-spacing:0.828000px;}
.ls24{letter-spacing:2.340000px;}
.ls15{letter-spacing:6.660000px;}
.lse{letter-spacing:8.100000px;}
.ls22{letter-spacing:10.260000px;}
.ls4{letter-spacing:10.980000px;}
.lsf{letter-spacing:12.420000px;}
.ls2b{letter-spacing:13.860000px;}
.ls5{letter-spacing:32.580000px;}
.ls2f{letter-spacing:635.220000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.388000px;}
.ws17{word-spacing:-16.974600px;}
.ws14{word-spacing:-16.865400px;}
.ws15{word-spacing:-16.822200px;}
.ws11{word-spacing:-16.675200px;}
.wsd{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.401600px;}
.wse{word-spacing:-16.390200px;}
.ws10{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.102200px;}
.ws18{word-spacing:-15.948000px;}
.ws2{word-spacing:-15.840000px;}
.ws19{word-spacing:-15.788160px;}
.ws12{word-spacing:-15.534000px;}
.ws16{word-spacing:-15.384000px;}
.ws6{word-spacing:-14.994000px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.850000px;}
.ws13{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.400000px;}
.ws5{word-spacing:-13.890000px;}
.wsa{word-spacing:-13.170000px;}
.wsc{word-spacing:-11.376000px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-9.120960px;}
._5{margin-left:-7.855200px;}
._1b{margin-left:-6.642720px;}
._1a{margin-left:-5.004000px;}
._a{margin-left:-3.928320px;}
._2{margin-left:-2.724480px;}
._0{margin-left:-1.268640px;}
._d{width:1.053120px;}
._c{width:2.280960px;}
._3{width:4.118400px;}
._1{width:5.957280px;}
._6{width:7.063680px;}
._18{width:8.401440px;}
._4{width:9.567360px;}
._12{width:10.712160px;}
._f{width:11.721600px;}
._9{width:13.052160px;}
._b{width:14.257440px;}
._25{width:15.313920px;}
._e{width:17.550720px;}
._1e{width:19.447200px;}
._1c{width:20.845440px;}
._1d{width:22.021920px;}
._8{width:23.127840px;}
._7{width:24.140160px;}
._2d{width:25.378560px;}
._30{width:26.650560px;}
._2a{width:27.820800px;}
._10{width:29.272320px;}
._11{width:30.540960px;}
._19{width:32.505120px;}
._13{width:33.708960px;}
._14{width:35.098560px;}
._27{width:36.372480px;}
._26{width:37.491840px;}
._2c{width:39.296160px;}
._2b{width:40.356960px;}
._2f{width:42.334080px;}
._17{width:43.585440px;}
._16{width:44.732160px;}
._29{width:46.080000px;}
._2e{width:47.329440px;}
._31{width:49.476480px;}
._35{width:51.620640px;}
._32{width:52.851360px;}
._22{width:54.466080px;}
._24{width:55.498560px;}
._23{width:56.540640px;}
._28{width:57.604320px;}
._36{width:59.427360px;}
._3b{width:60.716160px;}
._38{width:62.398080px;}
._1f{width:63.542880px;}
._20{width:64.547040px;}
._3d{width:66.043680px;}
._37{width:67.055040px;}
._21{width:69.042240px;}
._3f{width:70.735200px;}
._33{width:71.804160px;}
._34{width:78.438240px;}
._39{width:84.805920px;}
._3a{width:85.847040px;}
._3c{width:97.513920px;}
._3e{width:99.767520px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:54.720000px;}
.y4b{bottom:88.560000px;}
.y81{bottom:88.920000px;}
.y74{bottom:95.400000px;}
.y24{bottom:96.120000px;}
.y6f{bottom:99.720000px;}
.y4a{bottom:105.840000px;}
.y80{bottom:106.920000px;}
.y8c{bottom:112.680000px;}
.y23{bottom:115.020000px;}
.y129{bottom:117.360000px;}
.y6e{bottom:119.700000px;}
.y49{bottom:123.120000px;}
.yac{bottom:123.300000px;}
.y7f{bottom:124.200000px;}
.y10e{bottom:125.820000px;}
.y73{bottom:129.996000px;}
.y22{bottom:134.136000px;}
.y128{bottom:135.396000px;}
.y6d{bottom:139.716000px;}
.y48{bottom:140.436000px;}
.y72{bottom:140.616000px;}
.y7e{bottom:141.336000px;}
.yab{bottom:144.576000px;}
.y10d{bottom:144.936000px;}
.y88{bottom:147.276000px;}
.y21{bottom:153.030000px;}
.y127{bottom:153.570000px;}
.y47{bottom:157.530000px;}
.y8b{bottom:157.890000px;}
.y7d{bottom:158.610000px;}
.y6c{bottom:159.690000px;}
.yf1{bottom:161.310000px;}
.ycb{bottom:162.570000px;}
.y10c{bottom:164.010000px;}
.y46{bottom:164.370000px;}
.yf2{bottom:168.870000px;}
.y126{bottom:171.750000px;}
.y20{bottom:172.110000px;}
.y87{bottom:174.810000px;}
.y45{bottom:175.170000px;}
.y7c{bottom:175.890000px;}
.y6b{bottom:179.490000px;}
.yf0{bottom:181.290000px;}
.yca{bottom:182.550000px;}
.yde{bottom:182.910000px;}
.yaa{bottom:184.170000px;}
.y125{bottom:189.750000px;}
.ydf{bottom:190.470000px;}
.y1f{bottom:191.190000px;}
.y86{bottom:192.090000px;}
.y7b{bottom:193.170000px;}
.y85{bottom:198.930000px;}
.y6a{bottom:199.470000px;}
.y7a{bottom:200.010000px;}
.yef{bottom:201.270000px;}
.y10b{bottom:201.990000px;}
.yc9{bottom:202.530000px;}
.ya9{bottom:203.790000px;}
.y124{bottom:207.930000px;}
.y84{bottom:209.550000px;}
.y1e{bottom:210.090000px;}
.y79{bottom:210.450000px;}
.y44{bottom:212.070000px;}
.y78{bottom:217.290000px;}
.y69{bottom:219.450000px;}
.yee{bottom:221.070000px;}
.yc8{bottom:222.330000px;}
.ya8{bottom:223.590000px;}
.y123{bottom:225.930000px;}
.y77{bottom:227.910000px;}
.y1d{bottom:229.170000px;}
.y43{bottom:232.050000px;}
.y68{bottom:239.250000px;}
.y10a{bottom:239.970000px;}
.yed{bottom:241.050000px;}
.ydd{bottom:242.130000px;}
.yc7{bottom:242.310000px;}
.ya7{bottom:243.390000px;}
.y122{bottom:244.110000px;}
.y1c{bottom:248.250000px;}
.y42{bottom:252.030000px;}
.y109{bottom:259.050000px;}
.y67{bottom:259.230000px;}
.yec{bottom:261.030000px;}
.ydc{bottom:261.930000px;}
.yc6{bottom:262.290000px;}
.ya6{bottom:263.190000px;}
.y76{bottom:266.790000px;}
.y1b{bottom:267.150000px;}
.y41{bottom:271.830000px;}
.y108{bottom:278.130000px;}
.y66{bottom:279.210000px;}
.y121{bottom:280.290000px;}
.yeb{bottom:280.830000px;}
.ydb{bottom:281.730000px;}
.yc5{bottom:282.090000px;}
.ya5{bottom:282.990000px;}
.y1a{bottom:286.230000px;}
.y40{bottom:291.810000px;}
.y107{bottom:297.030000px;}
.y120{bottom:298.515000px;}
.y65{bottom:299.055000px;}
.yea{bottom:300.855000px;}
.yda{bottom:301.395000px;}
.yc4{bottom:302.115000px;}
.ya4{bottom:302.655000px;}
.y19{bottom:305.355000px;}
.y3f{bottom:311.835000px;}
.y106{bottom:316.155000px;}
.y11f{bottom:316.695000px;}
.y64{bottom:319.035000px;}
.ye9{bottom:320.835000px;}
.yd9{bottom:321.195000px;}
.yc3{bottom:322.095000px;}
.ya3{bottom:322.455000px;}
.y18{bottom:324.255000px;}
.y83{bottom:326.595000px;}
.y3e{bottom:331.635000px;}
.y11e{bottom:334.695000px;}
.y105{bottom:335.055000px;}
.y63{bottom:339.015000px;}
.ye8{bottom:340.635000px;}
.yd8{bottom:340.995000px;}
.yc2{bottom:341.895000px;}
.ya2{bottom:342.255000px;}
.y17{bottom:343.335000px;}
.y3d{bottom:351.615000px;}
.y11d{bottom:352.875000px;}
.y104{bottom:354.135000px;}
.y62{bottom:358.815000px;}
.ye7{bottom:360.615000px;}
.yd7{bottom:360.795000px;}
.yc1{bottom:361.875000px;}
.ya1{bottom:362.055000px;}
.y16{bottom:362.415000px;}
.y75{bottom:366.375000px;}
.y11c{bottom:370.875000px;}
.y3c{bottom:371.595000px;}
.y103{bottom:373.215000px;}
.y61{bottom:378.795000px;}
.yd6{bottom:380.595000px;}
.y15{bottom:381.315000px;}
.ya0{bottom:381.855000px;}
.y8a{bottom:386.355000px;}
.y11b{bottom:389.055000px;}
.y3b{bottom:391.395000px;}
.y102{bottom:392.115000px;}
.y60{bottom:398.775000px;}
.yd5{bottom:400.215000px;}
.y14{bottom:400.395000px;}
.y9e{bottom:401.475000px;}
.yc0{bottom:401.655000px;}
.y11a{bottom:407.235000px;}
.y9f{bottom:409.035000px;}
.y101{bottom:411.195000px;}
.y3a{bottom:411.375000px;}
.y5f{bottom:418.575000px;}
.y13{bottom:419.475000px;}
.yd4{bottom:420.015000px;}
.ye6{bottom:420.375000px;}
.y9d{bottom:421.275000px;}
.ybf{bottom:421.635000px;}
.y119{bottom:425.055000px;}
.y100{bottom:430.275000px;}
.y39{bottom:431.355000px;}
.y12{bottom:438.375000px;}
.y5e{bottom:438.555000px;}
.yd3{bottom:439.815000px;}
.ye5{bottom:440.355000px;}
.y9c{bottom:441.075000px;}
.ybe{bottom:441.435000px;}
.y118{bottom:443.235000px;}
.y82{bottom:446.115000px;}
.yff{bottom:449.175000px;}
.y38{bottom:451.155000px;}
.y11{bottom:457.455000px;}
.y5d{bottom:458.535000px;}
.yd2{bottom:459.615000px;}
.ye4{bottom:460.155000px;}
.y9b{bottom:460.875000px;}
.ybd{bottom:461.235000px;}
.y117{bottom:464.655000px;}
.yfe{bottom:468.285000px;}
.y36{bottom:471.165000px;}
.y10{bottom:476.385000px;}
.y5c{bottom:478.365000px;}
.y37{bottom:478.725000px;}
.yd1{bottom:479.445000px;}
.ye3{bottom:480.165000px;}
.y9a{bottom:480.705000px;}
.ybc{bottom:480.885000px;}
.yfd{bottom:487.365000px;}
.y116{bottom:487.725000px;}
.y35{bottom:491.145000px;}
.yf{bottom:495.465000px;}
.y5b{bottom:498.345000px;}
.yd0{bottom:499.065000px;}
.ye2{bottom:500.145000px;}
.y99{bottom:500.325000px;}
.ybb{bottom:500.685000px;}
.yfc{bottom:506.265000px;}
.y115{bottom:506.805000px;}
.y34{bottom:511.125000px;}
.ye{bottom:514.545000px;}
.y5a{bottom:518.325000px;}
.ycf{bottom:518.865000px;}
.ye1{bottom:519.945000px;}
.y98{bottom:520.125000px;}
.yba{bottom:520.485000px;}
.yfb{bottom:525.345000px;}
.y114{bottom:526.065000px;}
.y33{bottom:530.925000px;}
.yd{bottom:533.445000px;}
.y59{bottom:538.125000px;}
.yce{bottom:538.665000px;}
.y97{bottom:539.925000px;}
.yb9{bottom:540.285000px;}
.yfa{bottom:544.425000px;}
.y113{bottom:545.145000px;}
.y71{bottom:545.685000px;}
.y32{bottom:550.725000px;}
.yc{bottom:552.525000px;}
.y58{bottom:558.105000px;}
.ycd{bottom:558.465000px;}
.y96{bottom:559.725000px;}
.ye0{bottom:559.905000px;}
.yb8{bottom:560.085000px;}
.yf9{bottom:563.325000px;}
.y112{bottom:563.685000px;}
.y31{bottom:569.625000px;}
.yb{bottom:571.605000px;}
.y57{bottom:578.085000px;}
.ycc{bottom:578.265000px;}
.y95{bottom:579.525000px;}
.yb7{bottom:579.705000px;}
.yf8{bottom:582.405000px;}
.y30{bottom:588.705000px;}
.ya{bottom:590.325000px;}
.y56{bottom:597.885000px;}
.y94{bottom:599.145000px;}
.yb5{bottom:599.505000px;}
.yf7{bottom:601.485000px;}
.y111{bottom:602.385000px;}
.yb6{bottom:607.065000px;}
.y2f{bottom:607.785000px;}
.y9{bottom:609.405000px;}
.y55{bottom:617.865000px;}
.y93{bottom:618.945000px;}
.yb4{bottom:619.305000px;}
.yf6{bottom:620.385000px;}
.y110{bottom:623.085000px;}
.y2e{bottom:626.685000px;}
.y8{bottom:628.485000px;}
.y54{bottom:637.890000px;}
.y92{bottom:638.790000px;}
.yb3{bottom:639.150000px;}
.yf5{bottom:639.510000px;}
.y10f{bottom:643.830000px;}
.y89{bottom:645.450000px;}
.y2d{bottom:645.810000px;}
.y7{bottom:648.690000px;}
.y53{bottom:657.690000px;}
.yf4{bottom:658.410000px;}
.y91{bottom:658.590000px;}
.yb2{bottom:658.950000px;}
.y2c{bottom:664.890000px;}
.y52{bottom:677.670000px;}
.y90{bottom:678.390000px;}
.yb1{bottom:678.570000px;}
.y6{bottom:681.090000px;}
.y2b{bottom:683.790000px;}
.y70{bottom:685.230000px;}
.yf3{bottom:697.290000px;}
.y51{bottom:697.650000px;}
.y8f{bottom:698.010000px;}
.yb0{bottom:698.370000px;}
.y2a{bottom:702.870000px;}
.y5{bottom:704.850000px;}
.y50{bottom:717.630000px;}
.y8e{bottom:717.810000px;}
.yaf{bottom:718.170000px;}
.y29{bottom:721.950000px;}
.y4f{bottom:737.430000px;}
.y8d{bottom:737.610000px;}
.yae{bottom:737.970000px;}
.y4{bottom:738.690000px;}
.y28{bottom:740.850000px;}
.y4e{bottom:757.410000px;}
.yad{bottom:757.770000px;}
.y3{bottom:758.130000px;}
.y27{bottom:759.930000px;}
.y4d{bottom:777.390000px;}
.y26{bottom:779.010000px;}
.y2{bottom:795.930000px;}
.y4c{bottom:797.190000px;}
.y25{bottom:797.910000px;}
.hc{height:38.158594px;}
.hf{height:40.764023px;}
.hb{height:40.985156px;}
.h6{height:43.126875px;}
.h8{height:52.965000px;}
.he{height:53.573906px;}
.h12{height:56.801250px;}
.h10{height:58.621992px;}
.hd{height:58.651172px;}
.h9{height:59.383125px;}
.h7{height:62.153438px;}
.h11{height:62.184375px;}
.h4{height:64.978594px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:70.664062px;}
.ha{height:892.978080px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.458125px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x8{left:76.536000px;}
.x1a{left:81.396000px;}
.x1b{left:87.156000px;}
.xa{left:93.636000px;}
.xf{left:98.496000px;}
.x7{left:102.096000px;}
.x10{left:104.256000px;}
.xb{left:119.196000px;}
.x2f{left:143.676000px;}
.x22{left:148.354125px;}
.x23{left:158.790000px;}
.x21{left:164.008125px;}
.x6{left:168.510000px;}
.x20{left:195.508125px;}
.x5{left:200.910000px;}
.xc{left:216.433125px;}
.xd{left:221.655000px;}
.x2{left:233.175000px;}
.x2b{left:250.275000px;}
.x28{left:259.813125px;}
.x13{left:263.953125px;}
.x14{left:269.175000px;}
.x29{left:270.255000px;}
.x19{left:292.575000px;}
.x1{left:293.835000px;}
.xe{left:309.675000px;}
.x9{left:310.935000px;}
.x26{left:320.113125px;}
.x27{left:330.555000px;}
.x3{left:356.685000px;}
.x4{left:358.305000px;}
.x24{left:364.963125px;}
.x1e{left:372.343125px;}
.x25{left:375.405000px;}
.x1f{left:377.565000px;}
.x2d{left:424.725000px;}
.x11{left:436.963125px;}
.x12{left:442.185000px;}
.x17{left:455.323125px;}
.x18{left:460.545000px;}
.x2c{left:461.985000px;}
.x15{left:495.508125px;}
.x16{left:500.730000px;}
.x1c{left:538.528125px;}
.x1d{left:543.750000px;}
.x2a{left:548.790000px;}
.x2e{left:553.110000px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls2c{letter-spacing:-4.885333pt;}
.ls1d{letter-spacing:-4.608000pt;}
.ls18{letter-spacing:-4.245333pt;}
.ls17{letter-spacing:-3.013333pt;}
.lsa{letter-spacing:-2.373333pt;}
.ls1f{letter-spacing:-1.920000pt;}
.ls11{letter-spacing:-1.520000pt;}
.lsc{letter-spacing:-1.392000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls2a{letter-spacing:-1.045333pt;}
.ls27{letter-spacing:-0.912000pt;}
.ls2d{letter-spacing:-0.842667pt;}
.lsb{letter-spacing:-0.789333pt;}
.ls10{letter-spacing:-0.725333pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.406933pt;}
.ls25{letter-spacing:-0.368533pt;}
.ls26{letter-spacing:-0.271467pt;}
.ls21{letter-spacing:-0.233067pt;}
.ls28{letter-spacing:-0.230933pt;}
.ls20{letter-spacing:-0.176533pt;}
.ls1e{letter-spacing:-0.150933pt;}
.ls12{letter-spacing:-0.140800pt;}
.ls30{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.097067pt;}
.ls23{letter-spacing:0.102400pt;}
.ls9{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.176533pt;}
.ls0{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls7{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.368533pt;}
.ls29{letter-spacing:0.392960pt;}
.ls2e{letter-spacing:0.424107pt;}
.ls1{letter-spacing:0.445440pt;}
.ls14{letter-spacing:0.736000pt;}
.ls24{letter-spacing:2.080000pt;}
.ls15{letter-spacing:5.920000pt;}
.lse{letter-spacing:7.200000pt;}
.ls22{letter-spacing:9.120000pt;}
.ls4{letter-spacing:9.760000pt;}
.lsf{letter-spacing:11.040000pt;}
.ls2b{letter-spacing:12.320000pt;}
.ls5{letter-spacing:28.960000pt;}
.ls2f{letter-spacing:564.640000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.456000pt;}
.ws17{word-spacing:-15.088533pt;}
.ws14{word-spacing:-14.991467pt;}
.ws15{word-spacing:-14.953067pt;}
.ws11{word-spacing:-14.822400pt;}
.wsd{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.579200pt;}
.wse{word-spacing:-14.569067pt;}
.ws10{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.313067pt;}
.ws18{word-spacing:-14.176000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws19{word-spacing:-14.033920pt;}
.ws12{word-spacing:-13.808000pt;}
.ws16{word-spacing:-13.674667pt;}
.ws6{word-spacing:-13.328000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.200000pt;}
.ws13{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.800000pt;}
.ws5{word-spacing:-12.346667pt;}
.wsa{word-spacing:-11.706667pt;}
.wsc{word-spacing:-10.112000pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-8.107520pt;}
._5{margin-left:-6.982400pt;}
._1b{margin-left:-5.904640pt;}
._1a{margin-left:-4.448000pt;}
._a{margin-left:-3.491840pt;}
._2{margin-left:-2.421760pt;}
._0{margin-left:-1.127680pt;}
._d{width:0.936107pt;}
._c{width:2.027520pt;}
._3{width:3.660800pt;}
._1{width:5.295360pt;}
._6{width:6.278827pt;}
._18{width:7.467947pt;}
._4{width:8.504320pt;}
._12{width:9.521920pt;}
._f{width:10.419200pt;}
._9{width:11.601920pt;}
._b{width:12.673280pt;}
._25{width:13.612373pt;}
._e{width:15.600640pt;}
._1e{width:17.286400pt;}
._1c{width:18.529280pt;}
._1d{width:19.575040pt;}
._8{width:20.558080pt;}
._7{width:21.457920pt;}
._2d{width:22.558720pt;}
._30{width:23.689387pt;}
._2a{width:24.729600pt;}
._10{width:26.019840pt;}
._11{width:27.147520pt;}
._19{width:28.893440pt;}
._13{width:29.963520pt;}
._14{width:31.198720pt;}
._27{width:32.331093pt;}
._26{width:33.326080pt;}
._2c{width:34.929920pt;}
._2b{width:35.872853pt;}
._2f{width:37.630293pt;}
._17{width:38.742613pt;}
._16{width:39.761920pt;}
._29{width:40.960000pt;}
._2e{width:42.070613pt;}
._31{width:43.979093pt;}
._35{width:45.885013pt;}
._32{width:46.978987pt;}
._22{width:48.414293pt;}
._24{width:49.332053pt;}
._23{width:50.258347pt;}
._28{width:51.203840pt;}
._36{width:52.824320pt;}
._3b{width:53.969920pt;}
._38{width:55.464960pt;}
._1f{width:56.482560pt;}
._20{width:57.375147pt;}
._3d{width:58.705493pt;}
._37{width:59.604480pt;}
._21{width:61.370880pt;}
._3f{width:62.875733pt;}
._33{width:63.825920pt;}
._34{width:69.722880pt;}
._39{width:75.383040pt;}
._3a{width:76.308480pt;}
._3c{width:86.679040pt;}
._3e{width:88.682240pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.640000pt;}
.y4b{bottom:78.720000pt;}
.y81{bottom:79.040000pt;}
.y74{bottom:84.800000pt;}
.y24{bottom:85.440000pt;}
.y6f{bottom:88.640000pt;}
.y4a{bottom:94.080000pt;}
.y80{bottom:95.040000pt;}
.y8c{bottom:100.160000pt;}
.y23{bottom:102.240000pt;}
.y129{bottom:104.320000pt;}
.y6e{bottom:106.400000pt;}
.y49{bottom:109.440000pt;}
.yac{bottom:109.600000pt;}
.y7f{bottom:110.400000pt;}
.y10e{bottom:111.840000pt;}
.y73{bottom:115.552000pt;}
.y22{bottom:119.232000pt;}
.y128{bottom:120.352000pt;}
.y6d{bottom:124.192000pt;}
.y48{bottom:124.832000pt;}
.y72{bottom:124.992000pt;}
.y7e{bottom:125.632000pt;}
.yab{bottom:128.512000pt;}
.y10d{bottom:128.832000pt;}
.y88{bottom:130.912000pt;}
.y21{bottom:136.026667pt;}
.y127{bottom:136.506667pt;}
.y47{bottom:140.026667pt;}
.y8b{bottom:140.346667pt;}
.y7d{bottom:140.986667pt;}
.y6c{bottom:141.946667pt;}
.yf1{bottom:143.386667pt;}
.ycb{bottom:144.506667pt;}
.y10c{bottom:145.786667pt;}
.y46{bottom:146.106667pt;}
.yf2{bottom:150.106667pt;}
.y126{bottom:152.666667pt;}
.y20{bottom:152.986667pt;}
.y87{bottom:155.386667pt;}
.y45{bottom:155.706667pt;}
.y7c{bottom:156.346667pt;}
.y6b{bottom:159.546667pt;}
.yf0{bottom:161.146667pt;}
.yca{bottom:162.266667pt;}
.yde{bottom:162.586667pt;}
.yaa{bottom:163.706667pt;}
.y125{bottom:168.666667pt;}
.ydf{bottom:169.306667pt;}
.y1f{bottom:169.946667pt;}
.y86{bottom:170.746667pt;}
.y7b{bottom:171.706667pt;}
.y85{bottom:176.826667pt;}
.y6a{bottom:177.306667pt;}
.y7a{bottom:177.786667pt;}
.yef{bottom:178.906667pt;}
.y10b{bottom:179.546667pt;}
.yc9{bottom:180.026667pt;}
.ya9{bottom:181.146667pt;}
.y124{bottom:184.826667pt;}
.y84{bottom:186.266667pt;}
.y1e{bottom:186.746667pt;}
.y79{bottom:187.066667pt;}
.y44{bottom:188.506667pt;}
.y78{bottom:193.146667pt;}
.y69{bottom:195.066667pt;}
.yee{bottom:196.506667pt;}
.yc8{bottom:197.626667pt;}
.ya8{bottom:198.746667pt;}
.y123{bottom:200.826667pt;}
.y77{bottom:202.586667pt;}
.y1d{bottom:203.706667pt;}
.y43{bottom:206.266667pt;}
.y68{bottom:212.666667pt;}
.y10a{bottom:213.306667pt;}
.yed{bottom:214.266667pt;}
.ydd{bottom:215.226667pt;}
.yc7{bottom:215.386667pt;}
.ya7{bottom:216.346667pt;}
.y122{bottom:216.986667pt;}
.y1c{bottom:220.666667pt;}
.y42{bottom:224.026667pt;}
.y109{bottom:230.266667pt;}
.y67{bottom:230.426667pt;}
.yec{bottom:232.026667pt;}
.ydc{bottom:232.826667pt;}
.yc6{bottom:233.146667pt;}
.ya6{bottom:233.946667pt;}
.y76{bottom:237.146667pt;}
.y1b{bottom:237.466667pt;}
.y41{bottom:241.626667pt;}
.y108{bottom:247.226667pt;}
.y66{bottom:248.186667pt;}
.y121{bottom:249.146667pt;}
.yeb{bottom:249.626667pt;}
.ydb{bottom:250.426667pt;}
.yc5{bottom:250.746667pt;}
.ya5{bottom:251.546667pt;}
.y1a{bottom:254.426667pt;}
.y40{bottom:259.386667pt;}
.y107{bottom:264.026667pt;}
.y120{bottom:265.346667pt;}
.y65{bottom:265.826667pt;}
.yea{bottom:267.426667pt;}
.yda{bottom:267.906667pt;}
.yc4{bottom:268.546667pt;}
.ya4{bottom:269.026667pt;}
.y19{bottom:271.426667pt;}
.y3f{bottom:277.186667pt;}
.y106{bottom:281.026667pt;}
.y11f{bottom:281.506667pt;}
.y64{bottom:283.586667pt;}
.ye9{bottom:285.186667pt;}
.yd9{bottom:285.506667pt;}
.yc3{bottom:286.306667pt;}
.ya3{bottom:286.626667pt;}
.y18{bottom:288.226667pt;}
.y83{bottom:290.306667pt;}
.y3e{bottom:294.786667pt;}
.y11e{bottom:297.506667pt;}
.y105{bottom:297.826667pt;}
.y63{bottom:301.346667pt;}
.ye8{bottom:302.786667pt;}
.yd8{bottom:303.106667pt;}
.yc2{bottom:303.906667pt;}
.ya2{bottom:304.226667pt;}
.y17{bottom:305.186667pt;}
.y3d{bottom:312.546667pt;}
.y11d{bottom:313.666667pt;}
.y104{bottom:314.786667pt;}
.y62{bottom:318.946667pt;}
.ye7{bottom:320.546667pt;}
.yd7{bottom:320.706667pt;}
.yc1{bottom:321.666667pt;}
.ya1{bottom:321.826667pt;}
.y16{bottom:322.146667pt;}
.y75{bottom:325.666667pt;}
.y11c{bottom:329.666667pt;}
.y3c{bottom:330.306667pt;}
.y103{bottom:331.746667pt;}
.y61{bottom:336.706667pt;}
.yd6{bottom:338.306667pt;}
.y15{bottom:338.946667pt;}
.ya0{bottom:339.426667pt;}
.y8a{bottom:343.426667pt;}
.y11b{bottom:345.826667pt;}
.y3b{bottom:347.906667pt;}
.y102{bottom:348.546667pt;}
.y60{bottom:354.466667pt;}
.yd5{bottom:355.746667pt;}
.y14{bottom:355.906667pt;}
.y9e{bottom:356.866667pt;}
.yc0{bottom:357.026667pt;}
.y11a{bottom:361.986667pt;}
.y9f{bottom:363.586667pt;}
.y101{bottom:365.506667pt;}
.y3a{bottom:365.666667pt;}
.y5f{bottom:372.066667pt;}
.y13{bottom:372.866667pt;}
.yd4{bottom:373.346667pt;}
.ye6{bottom:373.666667pt;}
.y9d{bottom:374.466667pt;}
.ybf{bottom:374.786667pt;}
.y119{bottom:377.826667pt;}
.y100{bottom:382.466667pt;}
.y39{bottom:383.426667pt;}
.y12{bottom:389.666667pt;}
.y5e{bottom:389.826667pt;}
.yd3{bottom:390.946667pt;}
.ye5{bottom:391.426667pt;}
.y9c{bottom:392.066667pt;}
.ybe{bottom:392.386667pt;}
.y118{bottom:393.986667pt;}
.y82{bottom:396.546667pt;}
.yff{bottom:399.266667pt;}
.y38{bottom:401.026667pt;}
.y11{bottom:406.626667pt;}
.y5d{bottom:407.586667pt;}
.yd2{bottom:408.546667pt;}
.ye4{bottom:409.026667pt;}
.y9b{bottom:409.666667pt;}
.ybd{bottom:409.986667pt;}
.y117{bottom:413.026667pt;}
.yfe{bottom:416.253333pt;}
.y36{bottom:418.813333pt;}
.y10{bottom:423.453333pt;}
.y5c{bottom:425.213333pt;}
.y37{bottom:425.533333pt;}
.yd1{bottom:426.173333pt;}
.ye3{bottom:426.813333pt;}
.y9a{bottom:427.293333pt;}
.ybc{bottom:427.453333pt;}
.yfd{bottom:433.213333pt;}
.y116{bottom:433.533333pt;}
.y35{bottom:436.573333pt;}
.yf{bottom:440.413333pt;}
.y5b{bottom:442.973333pt;}
.yd0{bottom:443.613333pt;}
.ye2{bottom:444.573333pt;}
.y99{bottom:444.733333pt;}
.ybb{bottom:445.053333pt;}
.yfc{bottom:450.013333pt;}
.y115{bottom:450.493333pt;}
.y34{bottom:454.333333pt;}
.ye{bottom:457.373333pt;}
.y5a{bottom:460.733333pt;}
.ycf{bottom:461.213333pt;}
.ye1{bottom:462.173333pt;}
.y98{bottom:462.333333pt;}
.yba{bottom:462.653333pt;}
.yfb{bottom:466.973333pt;}
.y114{bottom:467.613333pt;}
.y33{bottom:471.933333pt;}
.yd{bottom:474.173333pt;}
.y59{bottom:478.333333pt;}
.yce{bottom:478.813333pt;}
.y97{bottom:479.933333pt;}
.yb9{bottom:480.253333pt;}
.yfa{bottom:483.933333pt;}
.y113{bottom:484.573333pt;}
.y71{bottom:485.053333pt;}
.y32{bottom:489.533333pt;}
.yc{bottom:491.133333pt;}
.y58{bottom:496.093333pt;}
.ycd{bottom:496.413333pt;}
.y96{bottom:497.533333pt;}
.ye0{bottom:497.693333pt;}
.yb8{bottom:497.853333pt;}
.yf9{bottom:500.733333pt;}
.y112{bottom:501.053333pt;}
.y31{bottom:506.333333pt;}
.yb{bottom:508.093333pt;}
.y57{bottom:513.853333pt;}
.ycc{bottom:514.013333pt;}
.y95{bottom:515.133333pt;}
.yb7{bottom:515.293333pt;}
.yf8{bottom:517.693333pt;}
.y30{bottom:523.293333pt;}
.ya{bottom:524.733333pt;}
.y56{bottom:531.453333pt;}
.y94{bottom:532.573333pt;}
.yb5{bottom:532.893333pt;}
.yf7{bottom:534.653333pt;}
.y111{bottom:535.453333pt;}
.yb6{bottom:539.613333pt;}
.y2f{bottom:540.253333pt;}
.y9{bottom:541.693333pt;}
.y55{bottom:549.213333pt;}
.y93{bottom:550.173333pt;}
.yb4{bottom:550.493333pt;}
.yf6{bottom:551.453333pt;}
.y110{bottom:553.853333pt;}
.y2e{bottom:557.053333pt;}
.y8{bottom:558.653333pt;}
.y54{bottom:567.013333pt;}
.y92{bottom:567.813333pt;}
.yb3{bottom:568.133333pt;}
.yf5{bottom:568.453333pt;}
.y10f{bottom:572.293333pt;}
.y89{bottom:573.733333pt;}
.y2d{bottom:574.053333pt;}
.y7{bottom:576.613333pt;}
.y53{bottom:584.613333pt;}
.yf4{bottom:585.253333pt;}
.y91{bottom:585.413333pt;}
.yb2{bottom:585.733333pt;}
.y2c{bottom:591.013333pt;}
.y52{bottom:602.373333pt;}
.y90{bottom:603.013333pt;}
.yb1{bottom:603.173333pt;}
.y6{bottom:605.413333pt;}
.y2b{bottom:607.813333pt;}
.y70{bottom:609.093333pt;}
.yf3{bottom:619.813333pt;}
.y51{bottom:620.133333pt;}
.y8f{bottom:620.453333pt;}
.yb0{bottom:620.773333pt;}
.y2a{bottom:624.773333pt;}
.y5{bottom:626.533333pt;}
.y50{bottom:637.893333pt;}
.y8e{bottom:638.053333pt;}
.yaf{bottom:638.373333pt;}
.y29{bottom:641.733333pt;}
.y4f{bottom:655.493333pt;}
.y8d{bottom:655.653333pt;}
.yae{bottom:655.973333pt;}
.y4{bottom:656.613333pt;}
.y28{bottom:658.533333pt;}
.y4e{bottom:673.253333pt;}
.yad{bottom:673.573333pt;}
.y3{bottom:673.893333pt;}
.y27{bottom:675.493333pt;}
.y4d{bottom:691.013333pt;}
.y26{bottom:692.453333pt;}
.y2{bottom:707.493333pt;}
.y4c{bottom:708.613333pt;}
.y25{bottom:709.253333pt;}
.hc{height:33.918750pt;}
.hf{height:36.234687pt;}
.hb{height:36.431250pt;}
.h6{height:38.335000pt;}
.h8{height:47.080000pt;}
.he{height:47.621250pt;}
.h12{height:50.490000pt;}
.h10{height:52.108438pt;}
.hd{height:52.134375pt;}
.h9{height:52.785000pt;}
.h7{height:55.247500pt;}
.h11{height:55.275000pt;}
.h4{height:57.758750pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:62.812500pt;}
.ha{height:793.758293pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.518333pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x8{left:68.032000pt;}
.x1a{left:72.352000pt;}
.x1b{left:77.472000pt;}
.xa{left:83.232000pt;}
.xf{left:87.552000pt;}
.x7{left:90.752000pt;}
.x10{left:92.672000pt;}
.xb{left:105.952000pt;}
.x2f{left:127.712000pt;}
.x22{left:131.870333pt;}
.x23{left:141.146667pt;}
.x21{left:145.785000pt;}
.x6{left:149.786667pt;}
.x20{left:173.785000pt;}
.x5{left:178.586667pt;}
.xc{left:192.385000pt;}
.xd{left:197.026667pt;}
.x2{left:207.266667pt;}
.x2b{left:222.466667pt;}
.x28{left:230.945000pt;}
.x13{left:234.625000pt;}
.x14{left:239.266667pt;}
.x29{left:240.226667pt;}
.x19{left:260.066667pt;}
.x1{left:261.186667pt;}
.xe{left:275.266667pt;}
.x9{left:276.386667pt;}
.x26{left:284.545000pt;}
.x27{left:293.826667pt;}
.x3{left:317.053333pt;}
.x4{left:318.493333pt;}
.x24{left:324.411667pt;}
.x1e{left:330.971667pt;}
.x25{left:333.693333pt;}
.x1f{left:335.613333pt;}
.x2d{left:377.533333pt;}
.x11{left:388.411667pt;}
.x12{left:393.053333pt;}
.x17{left:404.731667pt;}
.x18{left:409.373333pt;}
.x2c{left:410.653333pt;}
.x15{left:440.451667pt;}
.x16{left:445.093333pt;}
.x1c{left:478.691667pt;}
.x1d{left:483.333333pt;}
.x2a{left:487.813333pt;}
.x2e{left:491.653333pt;}
}




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