
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dff5bc1b5ef9967d6995d532.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fa129fe4d071df9bb9069b4b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4b688ac38dc765cb71b7244c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8785cf89d22012a2179683c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_6b257d4f5e8c43192ca230fc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f7b89792a848af182ca3b4aa.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls15{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.162000px;}
.ls17{letter-spacing:-0.141600px;}
.ls9{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.084600px;}
.lsc{letter-spacing:-0.084000px;}
.ls1b{letter-spacing:-0.049680px;}
.lsd{letter-spacing:-0.031800px;}
.ls18{letter-spacing:-0.031680px;}
.ls19{letter-spacing:-0.014760px;}
.ls8{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.048960px;}
.ls11{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.065400px;}
.ls2{letter-spacing:0.065520px;}
.lse{letter-spacing:0.074160px;}
.lsb{letter-spacing:0.080400px;}
.ls4{letter-spacing:0.080640px;}
.ls1{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.143400px;}
.ls14{letter-spacing:0.173400px;}
.ls1c{letter-spacing:0.198000px;}
.ls6{letter-spacing:0.239040px;}
.ls5{letter-spacing:0.266400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.785520px;}
.ls1e{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls10{letter-spacing:71.126640px;}
.ls7{letter-spacing:72.045360px;}
.ls1d{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws9{word-spacing:-13.424400px;}
.ws3{word-spacing:-13.399800px;}
.ws6{word-spacing:-13.275360px;}
.ws1{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.211640px;}
.ws8{word-spacing:-13.176720px;}
.ws5{word-spacing:-13.064400px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-3.695401px;}
._8{margin-left:-2.460120px;}
._0{margin-left:-1.020000px;}
._3{width:1.056720px;}
._7{width:2.704320px;}
._a{width:4.629000px;}
._9{width:6.072000px;}
._e{width:7.088637px;}
._6{width:8.116801px;}
._5{width:9.138000px;}
._11{width:10.461120px;}
._22{width:12.144000px;}
._4{width:14.778120px;}
._12{width:15.857160px;}
._33{width:17.434800px;}
._30{width:18.757440px;}
._24{width:19.899720px;}
._f{width:21.042000px;}
._10{width:22.304520px;}
._1e{width:23.625601px;}
._c{width:24.769200px;}
._d{width:25.786204px;}
._17{width:26.933760px;}
._5c{width:28.557000px;}
._4f{width:29.639160px;}
._18{width:30.841560px;}
._2f{width:32.284440px;}
._2a{width:33.907680px;}
._5b{width:35.348520px;}
._45{width:36.913680px;}
._36{width:38.296440px;}
._1a{width:39.558960px;}
._3e{width:41.246640px;}
._3d{width:42.264360px;}
._42{width:44.428680px;}
._2e{width:45.691200px;}
._31{width:47.190120px;}
._29{width:48.336480px;}
._2{width:49.724604px;}
._1{width:51.350880px;}
._46{width:52.476360px;}
._34{width:54.288360px;}
._16{width:55.791360px;}
._27{width:57.114000px;}
._26{width:58.496760px;}
._3c{width:59.939640px;}
._47{width:61.562880px;}
._68{width:62.584920px;}
._3b{width:64.208160px;}
._75{width:65.709120px;}
._41{width:66.733200px;}
._21{width:68.236200px;}
._23{width:69.679080px;}
._69{width:70.941600px;}
._1b{width:72.204120px;}
._6a{width:73.558920px;}
._37{width:75.510720px;}
._40{width:77.675040px;}
._3a{width:79.899480px;}
._53{width:81.522720px;}
._14{width:83.566800px;}
._52{width:85.550760px;}
._2b{width:87.354360px;}
._2d{width:88.677000px;}
._48{width:90.119880px;}
._61{width:92.344320px;}
._5f{width:93.907440px;}
._1d{width:96.973560px;}
._1c{width:98.416440px;}
._73{width:99.558720px;}
._19{width:104.787120px;}
._56{width:106.414440px;}
._76{width:109.117800px;}
._57{width:110.139840px;}
._58{width:111.702960px;}
._6c{width:113.205960px;}
._38{width:115.310160px;}
._6d{width:116.632800px;}
._43{width:118.737000px;}
._5a{width:121.983480px;}
._25{width:123.304080px;}
._4b{width:124.388280px;}
._5e{width:125.891280px;}
._15{width:128.536560px;}
._70{width:129.859200px;}
._35{width:131.121720px;}
._72{width:132.384240px;}
._3f{width:134.067600px;}
._32{width:136.712880px;}
._28{width:143.626680px;}
._4c{width:149.277960px;}
._6f{width:150.841080px;}
._63{width:152.404200px;}
._62{width:154.267920px;}
._51{width:162.324000px;}
._55{width:163.947240px;}
._60{width:175.430160px;}
._59{width:177.651000px;}
._71{width:186.071400px;}
._2c{width:191.301840px;}
._49{width:202.773600px;}
._44{width:206.331840px;}
._65{width:214.027200px;}
._20{width:218.836800px;}
._1f{width:224.548200px;}
._6b{width:227.975040px;}
._4d{width:233.201880px;}
._67{width:235.282800px;}
._54{width:245.765520px;}
._64{width:247.814640px;}
._39{width:250.820640px;}
._66{width:258.275520px;}
._50{width:259.357680px;}
._5d{width:262.121160px;}
._74{width:269.457840px;}
._4e{width:277.333560px;}
._6e{width:313.165080px;}
._4a{width:326.872440px;}
._13{width:547.053600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y69{bottom:3.330000px;}
.yd1{bottom:3.420000px;}
.y7c{bottom:7.830000px;}
.y64{bottom:7.920000px;}
.ye8{bottom:8.280000px;}
.y10d{bottom:12.330000px;}
.y2{bottom:19.470000px;}
.y68{bottom:20.880000px;}
.yd0{bottom:20.970000px;}
.y95{bottom:25.380000px;}
.y63{bottom:25.470000px;}
.y7b{bottom:29.970000px;}
.ye7{bottom:30.330000px;}
.yb0{bottom:34.020000px;}
.y2b{bottom:38.280000px;}
.y67{bottom:38.520000px;}
.ybe{bottom:43.020000px;}
.y94{bottom:43.050000px;}
.ya5{bottom:43.110000px;}
.y7a{bottom:47.520000px;}
.y106{bottom:47.610000px;}
.y1{bottom:47.730000px;}
.yec{bottom:52.020000px;}
.ye6{bottom:52.470000px;}
.y2a{bottom:55.920000px;}
.y66{bottom:56.070000px;}
.yaf{bottom:56.160000px;}
.ybd{bottom:60.570000px;}
.y93{bottom:60.600000px;}
.ya4{bottom:60.660000px;}
.yb8{bottom:64.620000px;}
.ycf{bottom:65.070000px;}
.y79{bottom:65.160000px;}
.y105{bottom:65.190000px;}
.ye5{bottom:70.020000px;}
.y29{bottom:73.470000px;}
.ya6{bottom:73.710000px;}
.yeb{bottom:74.070000px;}
.ybc{bottom:78.120000px;}
.ya3{bottom:78.210000px;}
.y92{bottom:78.240000px;}
.y78{bottom:82.710000px;}
.y104{bottom:82.740000px;}
.yb7{bottom:86.760000px;}
.ye4{bottom:87.570000px;}
.yff{bottom:91.260000px;}
.ybb{bottom:95.760000px;}
.y91{bottom:95.790000px;}
.ya2{bottom:95.850000px;}
.yea{bottom:96.210000px;}
.y77{bottom:100.260000px;}
.yae{bottom:100.350000px;}
.y103{bottom:100.380000px;}
.ye3{bottom:105.210000px;}
.yb6{bottom:108.810000px;}
.yfe{bottom:108.900000px;}
.y149{bottom:112.170000px;}
.ya7{bottom:113.070000px;}
.yba{bottom:113.310000px;}
.y90{bottom:113.340000px;}
.ya1{bottom:113.400000px;}
.y65{bottom:115.500000px;}
.yce{bottom:117.810000px;}
.y76{bottom:117.900000px;}
.yf6{bottom:117.930000px;}
.ye9{bottom:118.260000px;}
.y26{bottom:122.430000px;}
.ye2{bottom:122.760000px;}
.y10e{bottom:126.210000px;}
.yb5{bottom:126.450000px;}
.y148{bottom:129.810000px;}
.y7d{bottom:130.950000px;}
.y8f{bottom:130.980000px;}
.y128{bottom:131.040000px;}
.y75{bottom:135.450000px;}
.yf5{bottom:135.480000px;}
.y9d{bottom:139.590000px;}
.y25{bottom:140.070000px;}
.ye1{bottom:140.400000px;}
.yb4{bottom:144.000000px;}
.y16e{bottom:145.740000px;}
.y147{bottom:147.360000px;}
.yb9{bottom:148.500000px;}
.y8e{bottom:148.530000px;}
.ya0{bottom:148.590000px;}
.yfb{bottom:152.640000px;}
.ycd{bottom:153.000000px;}
.yf4{bottom:153.030000px;}
.y74{bottom:153.090000px;}
.y102{bottom:153.120000px;}
.y24{bottom:157.620000px;}
.ye0{bottom:157.950000px;}
.y96{bottom:157.980000px;}
.y58{bottom:159.510000px;}
.y9c{bottom:161.640000px;}
.y16d{bottom:163.290000px;}
.y146{bottom:165.000000px;}
.yb3{bottom:166.050000px;}
.y9f{bottom:166.140000px;}
.y8d{bottom:166.170000px;}
.yad{bottom:170.640000px;}
.y73{bottom:170.670000px;}
.ybf{bottom:171.120000px;}
.yfa{bottom:174.690000px;}
.y23{bottom:175.260000px;}
.ydf{bottom:175.500000px;}
.yfd{bottom:179.190000px;}
.y9b{bottom:179.280000px;}
.y16c{bottom:180.840000px;}
.yb2{bottom:183.690000px;}
.y8c{bottom:183.720000px;}
.y9e{bottom:183.780000px;}
.y57{bottom:186.060000px;}
.ycc{bottom:188.190000px;}
.y72{bottom:188.220000px;}
.yac{bottom:188.280000px;}
.y101{bottom:188.310000px;}
.y62{bottom:191.010000px;}
.yfc{bottom:192.330000px;}
.y22{bottom:192.810000px;}
.yde{bottom:193.140000px;}
.yf9{bottom:196.830000px;}
.y145{bottom:200.550000px;}
.y8b{bottom:201.270000px;}
.y9a{bottom:201.330000px;}
.y70{bottom:201.360000px;}
.ycb{bottom:205.740000px;}
.y10a{bottom:205.830000px;}
.y71{bottom:205.860000px;}
.y16b{bottom:207.480000px;}
.ydd{bottom:210.690000px;}
.yf8{bottom:214.380000px;}
.y144{bottom:218.100000px;}
.y99{bottom:218.880000px;}
.y8a{bottom:218.910000px;}
.y127{bottom:218.970000px;}
.y56{bottom:221.700000px;}
.yca{bottom:223.380000px;}
.y6f{bottom:223.410000px;}
.y16a{bottom:225.030000px;}
.ydc{bottom:228.330000px;}
.y21{bottom:228.360000px;}
.yf7{bottom:231.930000px;}
.y88{bottom:231.960000px;}
.y143{bottom:235.740000px;}
.y89{bottom:236.460000px;}
.y98{bottom:236.520000px;}
.y10c{bottom:236.550000px;}
.y55{bottom:239.250000px;}
.yf2{bottom:240.600000px;}
.yc9{bottom:240.930000px;}
.y6e{bottom:240.960000px;}
.yab{bottom:241.050000px;}
.y169{bottom:242.580000px;}
.y115{bottom:245.070000px;}
.ydb{bottom:245.910000px;}
.y20{bottom:246.000000px;}
.y142{bottom:253.290000px;}
.y87{bottom:254.010000px;}
.y97{bottom:254.070000px;}
.y126{bottom:254.100000px;}
.y54{bottom:256.890000px;}
.y61{bottom:257.340000px;}
.yc8{bottom:258.570000px;}
.y6d{bottom:258.600000px;}
.yf1{bottom:262.650000px;}
.y123{bottom:262.740000px;}
.yda{bottom:263.460000px;}
.y1f{bottom:263.550000px;}
.y114{bottom:267.120000px;}
.y168{bottom:269.220000px;}
.y141{bottom:270.930000px;}
.y117{bottom:271.620000px;}
.y86{bottom:271.650000px;}
.y120{bottom:271.710000px;}
.y125{bottom:271.740000px;}
.y10b{bottom:272.100000px;}
.y53{bottom:274.440000px;}
.yc7{bottom:276.120000px;}
.y6c{bottom:276.150000px;}
.yd8{bottom:276.600000px;}
.y11e{bottom:280.260000px;}
.yd9{bottom:281.100000px;}
.y1e{bottom:281.190000px;}
.yf0{bottom:284.700000px;}
.y113{bottom:284.760000px;}
.y122{bottom:284.790000px;}
.y167{bottom:286.770000px;}
.y140{bottom:288.480000px;}
.y85{bottom:289.200000px;}
.y116{bottom:289.260000px;}
.y124{bottom:289.290000px;}
.y60{bottom:292.890000px;}
.yc6{bottom:293.670000px;}
.yf3{bottom:293.700000px;}
.y109{bottom:293.760000px;}
.y6b{bottom:293.790000px;}
.yd7{bottom:298.650000px;}
.y1d{bottom:298.740000px;}
.y52{bottom:300.990000px;}
.y11d{bottom:302.310000px;}
.yef{bottom:302.340000px;}
.y166{bottom:304.410000px;}
.y13f{bottom:306.030000px;}
.y112{bottom:306.810000px;}
.y84{bottom:306.840000px;}
.y5f{bottom:310.530000px;}
.y108{bottom:311.310000px;}
.yaa{bottom:311.340000px;}
.yd6{bottom:316.200000px;}
.y1c{bottom:316.290000px;}
.y11c{bottom:319.980000px;}
.y83{bottom:324.390000px;}
.y111{bottom:324.450000px;}
.y11f{bottom:324.480000px;}
.y5e{bottom:328.080000px;}
.yc5{bottom:328.890000px;}
.ya9{bottom:328.980000px;}
.y165{bottom:330.960000px;}
.yd5{bottom:333.840000px;}
.y1b{bottom:333.930000px;}
.y51{bottom:336.540000px;}
.y11b{bottom:337.530000px;}
.y13e{bottom:341.670000px;}
.y82{bottom:341.940000px;}
.y110{bottom:342.000000px;}
.yee{bottom:342.030000px;}
.y5d{bottom:345.720000px;}
.yc4{bottom:346.530000px;}
.y164{bottom:348.510000px;}
.yd4{bottom:351.390000px;}
.y50{bottom:354.990000px;}
.y13d{bottom:359.220000px;}
.y81{bottom:359.580000px;}
.y11a{bottom:359.670000px;}
.y1a{bottom:360.840000px;}
.y5c{bottom:363.270000px;}
.yc3{bottom:364.080000px;}
.y163{bottom:366.150000px;}
.yd3{bottom:369.030000px;}
.yed{bottom:369.390000px;}
.y4f{bottom:373.350000px;}
.y13c{bottom:376.860000px;}
.y80{bottom:377.130000px;}
.y119{bottom:377.220000px;}
.yc2{bottom:381.630000px;}
.y5b{bottom:390.180000px;}
.y162{bottom:392.700000px;}
.y13b{bottom:394.410000px;}
.y7f{bottom:394.770000px;}
.yc1{bottom:399.270000px;}
.y4e{bottom:400.800000px;}
.y19{bottom:409.440000px;}
.y161{bottom:410.340000px;}
.y13a{bottom:411.960000px;}
.y118{bottom:412.410000px;}
.yc0{bottom:416.820000px;}
.y160{bottom:427.890000px;}
.y139{bottom:429.600000px;}
.y7e{bottom:431.580000px;}
.y4d{bottom:436.350000px;}
.y5a{bottom:438.420000px;}
.y18{bottom:446.430000px;}
.y15f{bottom:454.440000px;}
.y4c{bottom:454.800000px;}
.y17{bottom:463.980000px;}
.y138{bottom:465.150000px;}
.y15e{bottom:472.110000px;}
.y4b{bottom:473.280000px;}
.y59{bottom:479.490000px;}
.y16{bottom:481.650000px;}
.y137{bottom:482.820000px;}
.y15d{bottom:498.660000px;}
.y136{bottom:500.370000px;}
.y4a{bottom:500.730000px;}
.y15c{bottom:516.300000px;}
.y15{bottom:517.200000px;}
.y135{bottom:517.920000px;}
.y15b{bottom:533.850000px;}
.y14{bottom:534.840000px;}
.y49{bottom:536.280000px;}
.y13{bottom:552.390000px;}
.y134{bottom:553.560000px;}
.y48{bottom:553.830000px;}
.y15a{bottom:560.400000px;}
.y12{bottom:569.940000px;}
.y133{bottom:571.110000px;}
.y47{bottom:571.470000px;}
.y159{bottom:578.040000px;}
.y132{bottom:588.750000px;}
.y46{bottom:589.020000px;}
.y10f{bottom:589.830000px;}
.y158{bottom:604.950000px;}
.y11{bottom:605.580000px;}
.y131{bottom:606.300000px;}
.y45{bottom:606.660000px;}
.yb1{bottom:607.470000px;}
.y107{bottom:620.520000px;}
.y10{bottom:623.130000px;}
.y130{bottom:623.850000px;}
.y44{bottom:624.210000px;}
.yf{bottom:640.770000px;}
.y12f{bottom:641.490000px;}
.y43{bottom:641.760000px;}
.y157{bottom:653.190000px;}
.y12e{bottom:659.040000px;}
.y42{bottom:668.400000px;}
.ye{bottom:676.320000px;}
.y12d{bottom:676.590000px;}
.y156{bottom:680.100000px;}
.yd{bottom:693.870000px;}
.y12c{bottom:694.230000px;}
.y41{bottom:704.310000px;}
.yc{bottom:711.510000px;}
.y12b{bottom:711.780000px;}
.y155{bottom:717.450000px;}
.y12a{bottom:729.420000px;}
.yb{bottom:738.420000px;}
.y40{bottom:752.550000px;}
.y129{bottom:764.970000px;}
.y154{bottom:765.690000px;}
.y3f{bottom:770.190000px;}
.yd2{bottom:770.550000px;}
.y121{bottom:779.910000px;}
.y153{bottom:783.330000px;}
.ya{bottom:785.130000px;}
.y3e{bottom:787.740000px;}
.y152{bottom:800.880000px;}
.y3d{bottom:805.290000px;}
.ya8{bottom:810.600000px;}
.y151{bottom:818.520000px;}
.y9{bottom:820.950000px;}
.y3c{bottom:822.930000px;}
.y150{bottom:836.070000px;}
.y6a{bottom:845.790000px;}
.y14f{bottom:853.620000px;}
.y8{bottom:856.950000px;}
.y3b{bottom:858.480000px;}
.y14e{bottom:871.260000px;}
.y177{bottom:875.670000px;}
.y3a{bottom:876.030000px;}
.y14d{bottom:888.810000px;}
.y176{bottom:893.220000px;}
.y39{bottom:893.670000px;}
.y7{bottom:896.730000px;}
.y175{bottom:910.860000px;}
.y38{bottom:911.220000px;}
.y6{bottom:914.730000px;}
.y14c{bottom:915.720000px;}
.y37{bottom:928.860000px;}
.y174{bottom:937.410000px;}
.y36{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y100{bottom:951.270000px;}
.y173{bottom:954.960000px;}
.y35{bottom:963.960000px;}
.y172{bottom:972.600000px;}
.y34{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y33{bottom:999.150000px;}
.y3{bottom:1010.070000px;}
.y32{bottom:1016.820000px;}
.y31{bottom:1034.370000px;}
.y171{bottom:1043.370000px;}
.y14b{bottom:1051.920000px;}
.y170{bottom:1060.920000px;}
.y14a{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y16f{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y28{bottom:1176.750000px;}
.y27{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hb{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.h13{height:57.240000px;}
.ha{height:61.793886px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.hc{height:74.790000px;}
.h1a{height:145.170000px;}
.h11{height:202.410000px;}
.h17{height:202.530000px;}
.h16{height:250.650000px;}
.hf{height:272.790000px;}
.hd{height:308.010000px;}
.h18{height:330.030000px;}
.h10{height:343.200000px;}
.h19{height:347.700000px;}
.h1b{height:360.720000px;}
.h1d{height:373.890000px;}
.h14{height:383.250000px;}
.h15{height:400.350000px;}
.he{height:413.490000px;}
.h1c{height:431.130000px;}
.h12{height:435.540000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:36.810000px;}
.w5{width:94.860000px;}
.w4{width:163.470000px;}
.w7{width:203.130000px;}
.w6{width:254.370000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x7{left:106.290000px;}
.xb{left:111.239987px;}
.x2{left:202.799987px;}
.x8{left:270.480000px;}
.x9{left:366.150000px;}
.xa{left:621.330000px;}
.x5{left:768.389987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls15{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.144000pt;}
.ls17{letter-spacing:-0.125867pt;}
.ls9{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.075200pt;}
.lsc{letter-spacing:-0.074667pt;}
.ls1b{letter-spacing:-0.044160pt;}
.lsd{letter-spacing:-0.028267pt;}
.ls18{letter-spacing:-0.028160pt;}
.ls19{letter-spacing:-0.013120pt;}
.ls8{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.043520pt;}
.ls11{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.058133pt;}
.ls2{letter-spacing:0.058240pt;}
.lse{letter-spacing:0.065920pt;}
.lsb{letter-spacing:0.071467pt;}
.ls4{letter-spacing:0.071680pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.127467pt;}
.ls14{letter-spacing:0.154133pt;}
.ls1c{letter-spacing:0.176000pt;}
.ls6{letter-spacing:0.212480pt;}
.ls5{letter-spacing:0.236800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698240pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls10{letter-spacing:63.223680pt;}
.ls7{letter-spacing:64.040320pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws9{word-spacing:-11.932800pt;}
.ws3{word-spacing:-11.910933pt;}
.ws6{word-spacing:-11.800320pt;}
.ws1{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.743680pt;}
.ws8{word-spacing:-11.712640pt;}
.ws5{word-spacing:-11.612800pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-3.284801pt;}
._8{margin-left:-2.186773pt;}
._0{margin-left:-0.906667pt;}
._3{width:0.939307pt;}
._7{width:2.403840pt;}
._a{width:4.114666pt;}
._9{width:5.397333pt;}
._e{width:6.301011pt;}
._6{width:7.214934pt;}
._5{width:8.122666pt;}
._11{width:9.298774pt;}
._22{width:10.794666pt;}
._4{width:13.136107pt;}
._12{width:14.095253pt;}
._33{width:15.497600pt;}
._30{width:16.673280pt;}
._24{width:17.688640pt;}
._f{width:18.704000pt;}
._10{width:19.826240pt;}
._1e{width:21.000534pt;}
._c{width:22.017066pt;}
._d{width:22.921070pt;}
._17{width:23.941120pt;}
._5c{width:25.384000pt;}
._4f{width:26.345920pt;}
._18{width:27.414720pt;}
._2f{width:28.697280pt;}
._2a{width:30.140160pt;}
._5b{width:31.420907pt;}
._45{width:32.812160pt;}
._36{width:34.041280pt;}
._1a{width:35.163520pt;}
._3e{width:36.663680pt;}
._3d{width:37.568320pt;}
._42{width:39.492160pt;}
._2e{width:40.614400pt;}
._31{width:41.946773pt;}
._29{width:42.965760pt;}
._2{width:44.199648pt;}
._1{width:45.645227pt;}
._46{width:46.645653pt;}
._34{width:48.256320pt;}
._16{width:49.592320pt;}
._27{width:50.768000pt;}
._26{width:51.997120pt;}
._3c{width:53.279680pt;}
._47{width:54.722560pt;}
._68{width:55.631040pt;}
._3b{width:57.073920pt;}
._75{width:58.408107pt;}
._41{width:59.318400pt;}
._21{width:60.654400pt;}
._23{width:61.936960pt;}
._69{width:63.059200pt;}
._1b{width:64.181440pt;}
._6a{width:65.385707pt;}
._37{width:67.120640pt;}
._40{width:69.044480pt;}
._3a{width:71.021760pt;}
._53{width:72.464640pt;}
._14{width:74.281600pt;}
._52{width:76.045120pt;}
._2b{width:77.648320pt;}
._2d{width:78.824000pt;}
._48{width:80.106560pt;}
._61{width:82.083840pt;}
._5f{width:83.473280pt;}
._1d{width:86.198720pt;}
._1c{width:87.481280pt;}
._73{width:88.496640pt;}
._19{width:93.144107pt;}
._56{width:94.590613pt;}
._76{width:96.993600pt;}
._57{width:97.902080pt;}
._58{width:99.291520pt;}
._6c{width:100.627520pt;}
._38{width:102.497920pt;}
._6d{width:103.673600pt;}
._43{width:105.544000pt;}
._5a{width:108.429760pt;}
._25{width:109.603627pt;}
._4b{width:110.567360pt;}
._5e{width:111.903360pt;}
._15{width:114.254720pt;}
._70{width:115.430400pt;}
._35{width:116.552640pt;}
._72{width:117.674880pt;}
._3f{width:119.171200pt;}
._32{width:121.522560pt;}
._28{width:127.668160pt;}
._4c{width:132.691520pt;}
._6f{width:134.080960pt;}
._63{width:135.470400pt;}
._62{width:137.127040pt;}
._51{width:144.288000pt;}
._55{width:145.730880pt;}
._60{width:155.937920pt;}
._59{width:157.912000pt;}
._71{width:165.396800pt;}
._2c{width:170.046080pt;}
._49{width:180.243200pt;}
._44{width:183.406080pt;}
._65{width:190.246400pt;}
._20{width:194.521600pt;}
._1f{width:199.598400pt;}
._6b{width:202.644480pt;}
._4d{width:207.290560pt;}
._67{width:209.140267pt;}
._54{width:218.458240pt;}
._64{width:220.279680pt;}
._39{width:222.951680pt;}
._66{width:229.578240pt;}
._50{width:230.540160pt;}
._5d{width:232.996587pt;}
._74{width:239.518080pt;}
._4e{width:246.518720pt;}
._6e{width:278.368960pt;}
._4a{width:290.553280pt;}
._13{width:486.269867pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:2.960000pt;}
.yd1{bottom:3.040000pt;}
.y7c{bottom:6.960000pt;}
.y64{bottom:7.040000pt;}
.ye8{bottom:7.360000pt;}
.y10d{bottom:10.960000pt;}
.y2{bottom:17.306667pt;}
.y68{bottom:18.560000pt;}
.yd0{bottom:18.640000pt;}
.y95{bottom:22.560000pt;}
.y63{bottom:22.640000pt;}
.y7b{bottom:26.640000pt;}
.ye7{bottom:26.960000pt;}
.yb0{bottom:30.240000pt;}
.y2b{bottom:34.026667pt;}
.y67{bottom:34.240000pt;}
.ybe{bottom:38.240000pt;}
.y94{bottom:38.266667pt;}
.ya5{bottom:38.320000pt;}
.y7a{bottom:42.240000pt;}
.y106{bottom:42.320000pt;}
.y1{bottom:42.426667pt;}
.yec{bottom:46.240000pt;}
.ye6{bottom:46.640000pt;}
.y2a{bottom:49.706667pt;}
.y66{bottom:49.840000pt;}
.yaf{bottom:49.920000pt;}
.ybd{bottom:53.840000pt;}
.y93{bottom:53.866667pt;}
.ya4{bottom:53.920000pt;}
.yb8{bottom:57.440000pt;}
.ycf{bottom:57.840000pt;}
.y79{bottom:57.920000pt;}
.y105{bottom:57.946667pt;}
.ye5{bottom:62.240000pt;}
.y29{bottom:65.306667pt;}
.ya6{bottom:65.520000pt;}
.yeb{bottom:65.840000pt;}
.ybc{bottom:69.440000pt;}
.ya3{bottom:69.520000pt;}
.y92{bottom:69.546667pt;}
.y78{bottom:73.520000pt;}
.y104{bottom:73.546667pt;}
.yb7{bottom:77.120000pt;}
.ye4{bottom:77.840000pt;}
.yff{bottom:81.120000pt;}
.ybb{bottom:85.120000pt;}
.y91{bottom:85.146667pt;}
.ya2{bottom:85.200000pt;}
.yea{bottom:85.520000pt;}
.y77{bottom:89.120000pt;}
.yae{bottom:89.200000pt;}
.y103{bottom:89.226667pt;}
.ye3{bottom:93.520000pt;}
.yb6{bottom:96.720000pt;}
.yfe{bottom:96.800000pt;}
.y149{bottom:99.706667pt;}
.ya7{bottom:100.506667pt;}
.yba{bottom:100.720000pt;}
.y90{bottom:100.746667pt;}
.ya1{bottom:100.800000pt;}
.y65{bottom:102.666667pt;}
.yce{bottom:104.720000pt;}
.y76{bottom:104.800000pt;}
.yf6{bottom:104.826667pt;}
.ye9{bottom:105.120000pt;}
.y26{bottom:108.826667pt;}
.ye2{bottom:109.120000pt;}
.y10e{bottom:112.186667pt;}
.yb5{bottom:112.400000pt;}
.y148{bottom:115.386667pt;}
.y7d{bottom:116.400000pt;}
.y8f{bottom:116.426667pt;}
.y128{bottom:116.480000pt;}
.y75{bottom:120.400000pt;}
.yf5{bottom:120.426667pt;}
.y9d{bottom:124.080000pt;}
.y25{bottom:124.506667pt;}
.ye1{bottom:124.800000pt;}
.yb4{bottom:128.000000pt;}
.y16e{bottom:129.546667pt;}
.y147{bottom:130.986667pt;}
.yb9{bottom:132.000000pt;}
.y8e{bottom:132.026667pt;}
.ya0{bottom:132.080000pt;}
.yfb{bottom:135.680000pt;}
.ycd{bottom:136.000000pt;}
.yf4{bottom:136.026667pt;}
.y74{bottom:136.080000pt;}
.y102{bottom:136.106667pt;}
.y24{bottom:140.106667pt;}
.ye0{bottom:140.400000pt;}
.y96{bottom:140.426667pt;}
.y58{bottom:141.786667pt;}
.y9c{bottom:143.680000pt;}
.y16d{bottom:145.146667pt;}
.y146{bottom:146.666667pt;}
.yb3{bottom:147.600000pt;}
.y9f{bottom:147.680000pt;}
.y8d{bottom:147.706667pt;}
.yad{bottom:151.680000pt;}
.y73{bottom:151.706667pt;}
.ybf{bottom:152.106667pt;}
.yfa{bottom:155.280000pt;}
.y23{bottom:155.786667pt;}
.ydf{bottom:156.000000pt;}
.yfd{bottom:159.280000pt;}
.y9b{bottom:159.360000pt;}
.y16c{bottom:160.746667pt;}
.yb2{bottom:163.280000pt;}
.y8c{bottom:163.306667pt;}
.y9e{bottom:163.360000pt;}
.y57{bottom:165.386667pt;}
.ycc{bottom:167.280000pt;}
.y72{bottom:167.306667pt;}
.yac{bottom:167.360000pt;}
.y101{bottom:167.386667pt;}
.y62{bottom:169.786667pt;}
.yfc{bottom:170.960000pt;}
.y22{bottom:171.386667pt;}
.yde{bottom:171.680000pt;}
.yf9{bottom:174.960000pt;}
.y145{bottom:178.266667pt;}
.y8b{bottom:178.906667pt;}
.y9a{bottom:178.960000pt;}
.y70{bottom:178.986667pt;}
.ycb{bottom:182.880000pt;}
.y10a{bottom:182.960000pt;}
.y71{bottom:182.986667pt;}
.y16b{bottom:184.426667pt;}
.ydd{bottom:187.280000pt;}
.yf8{bottom:190.560000pt;}
.y144{bottom:193.866667pt;}
.y99{bottom:194.560000pt;}
.y8a{bottom:194.586667pt;}
.y127{bottom:194.640000pt;}
.y56{bottom:197.066667pt;}
.yca{bottom:198.560000pt;}
.y6f{bottom:198.586667pt;}
.y16a{bottom:200.026667pt;}
.ydc{bottom:202.960000pt;}
.y21{bottom:202.986667pt;}
.yf7{bottom:206.160000pt;}
.y88{bottom:206.186667pt;}
.y143{bottom:209.546667pt;}
.y89{bottom:210.186667pt;}
.y98{bottom:210.240000pt;}
.y10c{bottom:210.266667pt;}
.y55{bottom:212.666667pt;}
.yf2{bottom:213.866667pt;}
.yc9{bottom:214.160000pt;}
.y6e{bottom:214.186667pt;}
.yab{bottom:214.266667pt;}
.y169{bottom:215.626667pt;}
.y115{bottom:217.840000pt;}
.ydb{bottom:218.586667pt;}
.y20{bottom:218.666667pt;}
.y142{bottom:225.146667pt;}
.y87{bottom:225.786667pt;}
.y97{bottom:225.840000pt;}
.y126{bottom:225.866667pt;}
.y54{bottom:228.346667pt;}
.y61{bottom:228.746667pt;}
.yc8{bottom:229.840000pt;}
.y6d{bottom:229.866667pt;}
.yf1{bottom:233.466667pt;}
.y123{bottom:233.546667pt;}
.yda{bottom:234.186667pt;}
.y1f{bottom:234.266667pt;}
.y114{bottom:237.440000pt;}
.y168{bottom:239.306667pt;}
.y141{bottom:240.826667pt;}
.y117{bottom:241.440000pt;}
.y86{bottom:241.466667pt;}
.y120{bottom:241.520000pt;}
.y125{bottom:241.546667pt;}
.y10b{bottom:241.866667pt;}
.y53{bottom:243.946667pt;}
.yc7{bottom:245.440000pt;}
.y6c{bottom:245.466667pt;}
.yd8{bottom:245.866667pt;}
.y11e{bottom:249.120000pt;}
.yd9{bottom:249.866667pt;}
.y1e{bottom:249.946667pt;}
.yf0{bottom:253.066667pt;}
.y113{bottom:253.120000pt;}
.y122{bottom:253.146667pt;}
.y167{bottom:254.906667pt;}
.y140{bottom:256.426667pt;}
.y85{bottom:257.066667pt;}
.y116{bottom:257.120000pt;}
.y124{bottom:257.146667pt;}
.y60{bottom:260.346667pt;}
.yc6{bottom:261.040000pt;}
.yf3{bottom:261.066667pt;}
.y109{bottom:261.120000pt;}
.y6b{bottom:261.146667pt;}
.yd7{bottom:265.466667pt;}
.y1d{bottom:265.546667pt;}
.y52{bottom:267.546667pt;}
.y11d{bottom:268.720000pt;}
.yef{bottom:268.746667pt;}
.y166{bottom:270.586667pt;}
.y13f{bottom:272.026667pt;}
.y112{bottom:272.720000pt;}
.y84{bottom:272.746667pt;}
.y5f{bottom:276.026667pt;}
.y108{bottom:276.720000pt;}
.yaa{bottom:276.746667pt;}
.yd6{bottom:281.066667pt;}
.y1c{bottom:281.146667pt;}
.y11c{bottom:284.426667pt;}
.y83{bottom:288.346667pt;}
.y111{bottom:288.400000pt;}
.y11f{bottom:288.426667pt;}
.y5e{bottom:291.626667pt;}
.yc5{bottom:292.346667pt;}
.ya9{bottom:292.426667pt;}
.y165{bottom:294.186667pt;}
.yd5{bottom:296.746667pt;}
.y1b{bottom:296.826667pt;}
.y51{bottom:299.146667pt;}
.y11b{bottom:300.026667pt;}
.y13e{bottom:303.706667pt;}
.y82{bottom:303.946667pt;}
.y110{bottom:304.000000pt;}
.yee{bottom:304.026667pt;}
.y5d{bottom:307.306667pt;}
.yc4{bottom:308.026667pt;}
.y164{bottom:309.786667pt;}
.yd4{bottom:312.346667pt;}
.y50{bottom:315.546667pt;}
.y13d{bottom:319.306667pt;}
.y81{bottom:319.626667pt;}
.y11a{bottom:319.706667pt;}
.y1a{bottom:320.746667pt;}
.y5c{bottom:322.906667pt;}
.yc3{bottom:323.626667pt;}
.y163{bottom:325.466667pt;}
.yd3{bottom:328.026667pt;}
.yed{bottom:328.346667pt;}
.y4f{bottom:331.866667pt;}
.y13c{bottom:334.986667pt;}
.y80{bottom:335.226667pt;}
.y119{bottom:335.306667pt;}
.yc2{bottom:339.226667pt;}
.y5b{bottom:346.826667pt;}
.y162{bottom:349.066667pt;}
.y13b{bottom:350.586667pt;}
.y7f{bottom:350.906667pt;}
.yc1{bottom:354.906667pt;}
.y4e{bottom:356.266667pt;}
.y19{bottom:363.946667pt;}
.y161{bottom:364.746667pt;}
.y13a{bottom:366.186667pt;}
.y118{bottom:366.586667pt;}
.yc0{bottom:370.506667pt;}
.y160{bottom:380.346667pt;}
.y139{bottom:381.866667pt;}
.y7e{bottom:383.626667pt;}
.y4d{bottom:387.866667pt;}
.y5a{bottom:389.706667pt;}
.y18{bottom:396.826667pt;}
.y15f{bottom:403.946667pt;}
.y4c{bottom:404.266667pt;}
.y17{bottom:412.426667pt;}
.y138{bottom:413.466667pt;}
.y15e{bottom:419.653333pt;}
.y4b{bottom:420.693333pt;}
.y59{bottom:426.213333pt;}
.y16{bottom:428.133333pt;}
.y137{bottom:429.173333pt;}
.y15d{bottom:443.253333pt;}
.y136{bottom:444.773333pt;}
.y4a{bottom:445.093333pt;}
.y15c{bottom:458.933333pt;}
.y15{bottom:459.733333pt;}
.y135{bottom:460.373333pt;}
.y15b{bottom:474.533333pt;}
.y14{bottom:475.413333pt;}
.y49{bottom:476.693333pt;}
.y13{bottom:491.013333pt;}
.y134{bottom:492.053333pt;}
.y48{bottom:492.293333pt;}
.y15a{bottom:498.133333pt;}
.y12{bottom:506.613333pt;}
.y133{bottom:507.653333pt;}
.y47{bottom:507.973333pt;}
.y159{bottom:513.813333pt;}
.y132{bottom:523.333333pt;}
.y46{bottom:523.573333pt;}
.y10f{bottom:524.293333pt;}
.y158{bottom:537.733333pt;}
.y11{bottom:538.293333pt;}
.y131{bottom:538.933333pt;}
.y45{bottom:539.253333pt;}
.yb1{bottom:539.973333pt;}
.y107{bottom:551.573333pt;}
.y10{bottom:553.893333pt;}
.y130{bottom:554.533333pt;}
.y44{bottom:554.853333pt;}
.yf{bottom:569.573333pt;}
.y12f{bottom:570.213333pt;}
.y43{bottom:570.453333pt;}
.y157{bottom:580.613333pt;}
.y12e{bottom:585.813333pt;}
.y42{bottom:594.133333pt;}
.ye{bottom:601.173333pt;}
.y12d{bottom:601.413333pt;}
.y156{bottom:604.533333pt;}
.yd{bottom:616.773333pt;}
.y12c{bottom:617.093333pt;}
.y41{bottom:626.053333pt;}
.yc{bottom:632.453333pt;}
.y12b{bottom:632.693333pt;}
.y155{bottom:637.733333pt;}
.y12a{bottom:648.373333pt;}
.yb{bottom:656.373333pt;}
.y40{bottom:668.933333pt;}
.y129{bottom:679.973333pt;}
.y154{bottom:680.613333pt;}
.y3f{bottom:684.613333pt;}
.yd2{bottom:684.933333pt;}
.y121{bottom:693.253333pt;}
.y153{bottom:696.293333pt;}
.ya{bottom:697.893333pt;}
.y3e{bottom:700.213333pt;}
.y152{bottom:711.893333pt;}
.y3d{bottom:715.813333pt;}
.ya8{bottom:720.533333pt;}
.y151{bottom:727.573333pt;}
.y9{bottom:729.733333pt;}
.y3c{bottom:731.493333pt;}
.y150{bottom:743.173333pt;}
.y6a{bottom:751.813333pt;}
.y14f{bottom:758.773333pt;}
.y8{bottom:761.733333pt;}
.y3b{bottom:763.093333pt;}
.y14e{bottom:774.453333pt;}
.y177{bottom:778.373333pt;}
.y3a{bottom:778.693333pt;}
.y14d{bottom:790.053333pt;}
.y176{bottom:793.973333pt;}
.y39{bottom:794.373333pt;}
.y7{bottom:797.093333pt;}
.y175{bottom:809.653333pt;}
.y38{bottom:809.973333pt;}
.y6{bottom:813.093333pt;}
.y14c{bottom:813.973333pt;}
.y37{bottom:825.653333pt;}
.y174{bottom:833.253333pt;}
.y36{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y100{bottom:845.573333pt;}
.y173{bottom:848.853333pt;}
.y35{bottom:856.853333pt;}
.y172{bottom:864.533333pt;}
.y34{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y33{bottom:888.133333pt;}
.y3{bottom:897.840000pt;}
.y32{bottom:903.840000pt;}
.y31{bottom:919.440000pt;}
.y171{bottom:927.440000pt;}
.y14b{bottom:935.040000pt;}
.y170{bottom:943.040000pt;}
.y14a{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y16f{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y28{bottom:1046.000000pt;}
.y27{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hb{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.h13{height:50.880000pt;}
.ha{height:54.927899pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.hc{height:66.480000pt;}
.h1a{height:129.040000pt;}
.h11{height:179.920000pt;}
.h17{height:180.026667pt;}
.h16{height:222.800000pt;}
.hf{height:242.480000pt;}
.hd{height:273.786667pt;}
.h18{height:293.360000pt;}
.h10{height:305.066667pt;}
.h19{height:309.066667pt;}
.h1b{height:320.640000pt;}
.h1d{height:332.346667pt;}
.h14{height:340.666667pt;}
.h15{height:355.866667pt;}
.he{height:367.546667pt;}
.h1c{height:383.226667pt;}
.h12{height:387.146667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:32.720000pt;}
.w5{width:84.320000pt;}
.w4{width:145.306667pt;}
.w7{width:180.560000pt;}
.w6{width:226.106667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x7{left:94.480000pt;}
.xb{left:98.879988pt;}
.x2{left:180.266655pt;}
.x8{left:240.426667pt;}
.x9{left:325.466667pt;}
.xa{left:552.293333pt;}
.x5{left:683.013322pt;}
.x3{left:704.053322pt;}
}




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