
    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_475173be63097aacd0d4ab9a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.902344;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_dec0bd1e20897d38c08f6809.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_fae37662f7c2dbf657c4d259.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_1087fecf809ae2ab1d7d1d29.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9fcf1eb8a0b7862aa2245553.woff')format("woff");}.ff5{font-family:ff5;line-height:0.683594;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_73c5753f7b7ad1191877c8e1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.965332;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_2d8d739a59d7fa3cbe8f1392.woff')format("woff");}.ff7{font-family:ff7;line-height:0.965332;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_6932b5e52594486f508d63fd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f24d83869b07c7d56db3f929.woff')format("woff");}.ff9{font-family:ff9;line-height:0.902344;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_0300db0b99baed92c5f078dc.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d961535333508c53a2488be1.woff')format("woff");}.ffb{font-family:ffb;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.008000px;}
.ls4{letter-spacing:-0.792000px;}
.ls12{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.504000px;}
.ls32{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.340800px;}
.ls11{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.232800px;}
.lsb{letter-spacing:-0.216000px;}
.ls2b{letter-spacing:-0.072000px;}
.ls21{letter-spacing:-0.000003px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000001px;}
.ls3{letter-spacing:0.072000px;}
.ls34{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.180720px;}
.ls1a{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.288000px;}
.ls19{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.408000px;}
.ls10{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.487440px;}
.ls23{letter-spacing:0.504000px;}
.ls28{letter-spacing:0.624000px;}
.lse{letter-spacing:0.648000px;}
.ls24{letter-spacing:1.152000px;}
.ls1c{letter-spacing:1.368000px;}
.ls7{letter-spacing:2.088000px;}
.ls1e{letter-spacing:2.808000px;}
.ls33{letter-spacing:4.248000px;}
.ls13{letter-spacing:4.968000px;}
.ls25{letter-spacing:7.128000px;}
.ls1d{letter-spacing:7.848000px;}
.lsd{letter-spacing:9.468000px;}
.ls22{letter-spacing:10.008000px;}
.ls20{letter-spacing:11.448000px;}
.ls31{letter-spacing:12.168000px;}
.ls15{letter-spacing:12.888000px;}
.ls2d{letter-spacing:14.328000px;}
.ls1b{letter-spacing:15.048000px;}
.ls14{letter-spacing:15.768000px;}
.ls29{letter-spacing:17.208000px;}
.ls26{letter-spacing:19.368000px;}
.ls0{letter-spacing:22.224000px;}
.ls2e{letter-spacing:25.128000px;}
.ls2f{letter-spacing:33.768000px;}
.ls17{letter-spacing:51.768000px;}
.ls27{letter-spacing:53.208000px;}
.ls18{letter-spacing:54.648000px;}
.ls1f{letter-spacing:54.864000px;}
.ls1{letter-spacing:84.360000px;}
.ls30{letter-spacing:116.784000px;}
.ls2a{letter-spacing:123.264000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws11{word-spacing:-20.736000px;}
.ws7{word-spacing:-20.592000px;}
.ws10{word-spacing:-20.448000px;}
.ws1{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232001px;}
.ws0{word-spacing:-20.232000px;}
.wsa{word-spacing:-20.231997px;}
.wsb{word-spacing:-20.160000px;}
.wsc{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.944000px;}
.ws12{word-spacing:-19.872000px;}
.ws8{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.712000px;}
.wse{word-spacing:-17.152560px;}
.ws4{word-spacing:-16.792560px;}
.ws5{word-spacing:-16.451760px;}
.ws3{word-spacing:0.000000px;}
._8{margin-left:-5.328000px;}
._9{margin-left:-4.248000px;}
._7{margin-left:-2.304000px;}
._1{margin-left:-1.080000px;}
._0{width:1.236000px;}
._19{width:2.328000px;}
._2{width:3.360000px;}
._b{width:4.608000px;}
._d{width:6.120000px;}
._c{width:7.200000px;}
._e{width:8.424000px;}
._5{width:9.936000px;}
._6{width:11.832000px;}
._11{width:13.176000px;}
._14{width:14.328000px;}
._15{width:15.336000px;}
._16{width:17.328000px;}
._20{width:19.224000px;}
._3{width:21.816000px;}
._4{width:22.824000px;}
._f{width:23.904000px;}
._10{width:25.848000px;}
._1b{width:27.360000px;}
._1c{width:28.848000px;}
._1a{width:31.680000px;}
._18{width:33.552000px;}
._17{width:34.632000px;}
._31{width:35.760000px;}
._2c{width:37.224000px;}
._2a{width:41.760000px;}
._1e{width:42.912000px;}
._1f{width:44.364000px;}
._26{width:47.592000px;}
._22{width:50.736000px;}
._21{width:52.488000px;}
._23{width:53.760000px;}
._24{width:55.368000px;}
._37{width:58.680000px;}
._a{width:61.776000px;}
._30{width:62.952000px;}
._2d{width:65.520000px;}
._27{width:68.616000px;}
._28{width:69.768000px;}
._25{width:84.744000px;}
._32{width:86.472000px;}
._2b{width:91.800000px;}
._2e{width:102.240000px;}
._1d{width:103.680000px;}
._34{width:108.936000px;}
._2f{width:126.720000px;}
._35{width:204.012000px;}
._33{width:207.240000px;}
._12{width:387.340320px;}
._13{width:614.343600px;}
._29{width:625.143600px;}
._36{width:843.948000px;}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y27{bottom:57.456000px;}
.y87{bottom:77.796000px;}
.y26{bottom:77.976000px;}
.y25{bottom:94.716000px;}
.y20{bottom:97.596000px;}
.y86{bottom:113.976000px;}
.y24{bottom:114.156000px;}
.y1f{bottom:128.016000px;}
.y84{bottom:132.696000px;}
.y53{bottom:133.416000px;}
.y105{bottom:133.776000px;}
.yf6{bottom:134.496000px;}
.yb8{bottom:140.436000px;}
.y37{bottom:143.856000px;}
.yad{bottom:153.210000px;}
.yc9{bottom:156.990000px;}
.y1e{bottom:158.430000px;}
.y9f{bottom:159.150000px;}
.y83{bottom:162.930000px;}
.y52{bottom:163.650000px;}
.y104{bottom:164.010000px;}
.yf5{bottom:164.730000px;}
.yb7{bottom:170.670000px;}
.y36{bottom:174.450000px;}
.ye2{bottom:182.730000px;}
.yac{bottom:183.450000px;}
.yc8{bottom:187.590000px;}
.y1d{bottom:188.850000px;}
.y9e{bottom:189.030000px;}
.y82{bottom:193.170000px;}
.y51{bottom:193.890000px;}
.y103{bottom:194.250000px;}
.yf4{bottom:194.970000px;}
.y35{bottom:199.650000px;}
.yb6{bottom:200.910000px;}
.ye1{bottom:212.790000px;}
.yab{bottom:213.690000px;}
.y9d{bottom:218.730000px;}
.y1c{bottom:219.450000px;}
.yc7{bottom:220.710000px;}
.y81{bottom:223.410000px;}
.y68{bottom:223.950000px;}
.y50{bottom:224.130000px;}
.y102{bottom:224.490000px;}
.yf3{bottom:225.030000px;}
.y118{bottom:225.570000px;}
.yb5{bottom:230.970000px;}
.yaa{bottom:243.930000px;}
.y117{bottom:245.730000px;}
.ye0{bottom:245.910000px;}
.y9c{bottom:248.610000px;}
.y1b{bottom:249.510000px;}
.yc6{bottom:250.950000px;}
.y72{bottom:251.490000px;}
.y80{bottom:253.470000px;}
.y67{bottom:254.190000px;}
.y4f{bottom:254.370000px;}
.y101{bottom:254.550000px;}
.yf2{bottom:255.270000px;}
.yb4{bottom:261.390000px;}
.y116{bottom:265.710000px;}
.ya9{bottom:274.170000px;}
.ydf{bottom:276.150000px;}
.y9b{bottom:278.490000px;}
.ya7{bottom:278.670000px;}
.y1a{bottom:279.795000px;}
.yc5{bottom:281.055000px;}
.y71{bottom:281.775000px;}
.y7f{bottom:283.935000px;}
.y4e{bottom:284.475000px;}
.y100{bottom:284.835000px;}
.yf1{bottom:285.555000px;}
.y115{bottom:285.735000px;}
.yb3{bottom:291.495000px;}
.ya8{bottom:299.235000px;}
.ya6{bottom:303.735000px;}
.y114{bottom:305.895000px;}
.yde{bottom:306.255000px;}
.y19{bottom:310.035000px;}
.y9a{bottom:310.755000px;}
.yc4{bottom:311.295000px;}
.y70{bottom:311.835000px;}
.y7e{bottom:314.535000px;}
.y4d{bottom:314.715000px;}
.yff{bottom:315.075000px;}
.yf0{bottom:315.795000px;}
.yb2{bottom:322.095000px;}
.y113{bottom:326.055000px;}
.ydd{bottom:339.375000px;}
.y6f{bottom:339.555000px;}
.y18{bottom:340.275000px;}
.y99{bottom:343.155000px;}
.yc3{bottom:344.235000px;}
.y7d{bottom:344.595000px;}
.y66{bottom:344.955000px;}
.y4c{bottom:345.135000px;}
.yfe{bottom:345.315000px;}
.yef{bottom:346.035000px;}
.y112{bottom:346.215000px;}
.yb1{bottom:347.295000px;}
.y111{bottom:366.375000px;}
.y6e{bottom:367.275000px;}
.ydc{bottom:369.615000px;}
.y17{bottom:370.515000px;}
.yc2{bottom:374.655000px;}
.y65{bottom:375.195000px;}
.y4b{bottom:375.375000px;}
.y98{bottom:375.555000px;}
.yee{bottom:376.275000px;}
.y110{bottom:386.535000px;}
.y6d{bottom:397.515000px;}
.ydb{bottom:399.855000px;}
.y16{bottom:400.755000px;}
.yc1{bottom:405.075000px;}
.y64{bottom:405.435000px;}
.y4a{bottom:405.615000px;}
.y97{bottom:405.795000px;}
.yed{bottom:406.515000px;}
.y10f{bottom:406.695000px;}
.y6c{bottom:427.575000px;}
.yda{bottom:430.095000px;}
.y15{bottom:430.995000px;}
.y63{bottom:435.495000px;}
.y7c{bottom:435.675000px;}
.y49{bottom:435.855000px;}
.yfd{bottom:436.035000px;}
.yec{bottom:436.755000px;}
.y10e{bottom:436.935000px;}
.y6b{bottom:453.135000px;}
.yd9{bottom:460.335000px;}
.y14{bottom:461.235000px;}
.y62{bottom:465.915000px;}
.y48{bottom:466.095000px;}
.y96{bottom:466.455000px;}
.yeb{bottom:466.815000px;}
.y10d{bottom:467.175000px;}
.yd8{bottom:490.575000px;}
.y13{bottom:491.295000px;}
.y7b{bottom:495.975000px;}
.y61{bottom:496.155000px;}
.y47{bottom:496.335000px;}
.y95{bottom:496.515000px;}
.yfc{bottom:496.695000px;}
.yea{bottom:497.055000px;}
.y10c{bottom:497.415000px;}
.yd7{bottom:520.815000px;}
.y12{bottom:521.535000px;}
.y60{bottom:526.215000px;}
.y46{bottom:526.575000px;}
.yc0{bottom:526.755000px;}
.yfb{bottom:526.935000px;}
.y94{bottom:527.115000px;}
.ye9{bottom:527.295000px;}
.y10b{bottom:527.475000px;}
.yd6{bottom:550.905000px;}
.y11{bottom:551.805000px;}
.y45{bottom:556.845000px;}
.yfa{bottom:557.025000px;}
.y93{bottom:557.205000px;}
.ye8{bottom:557.565000px;}
.y10a{bottom:557.745000px;}
.yd5{bottom:581.145000px;}
.y10{bottom:582.045000px;}
.y44{bottom:586.905000px;}
.y7a{bottom:587.085000px;}
.yf9{bottom:587.265000px;}
.y92{bottom:587.445000px;}
.ybf{bottom:587.805000px;}
.y109{bottom:587.985000px;}
.yd4{bottom:611.565000px;}
.yf{bottom:612.285000px;}
.y43{bottom:617.145000px;}
.y5f{bottom:617.325000px;}
.y91{bottom:617.505000px;}
.ybe{bottom:618.045000px;}
.y108{bottom:618.225000px;}
.yd3{bottom:641.985000px;}
.ye{bottom:642.525000px;}
.y42{bottom:647.385000px;}
.yf8{bottom:647.565000px;}
.y79{bottom:647.745000px;}
.y5e{bottom:647.925000px;}
.ybd{bottom:648.105000px;}
.ye7{bottom:648.285000px;}
.y107{bottom:648.465000px;}
.yd2{bottom:672.405000px;}
.yd{bottom:672.765000px;}
.y41{bottom:677.625000px;}
.y78{bottom:677.985000px;}
.y5d{bottom:678.165000px;}
.y34{bottom:678.345000px;}
.y106{bottom:678.705000px;}
.yc{bottom:702.825000px;}
.yd1{bottom:703.005000px;}
.y40{bottom:707.865000px;}
.y77{bottom:708.045000px;}
.y5c{bottom:708.225000px;}
.y33{bottom:708.585000px;}
.yb0{bottom:708.945000px;}
.yb{bottom:733.065000px;}
.y3f{bottom:737.925000px;}
.y76{bottom:738.285000px;}
.y5b{bottom:738.465000px;}
.y90{bottom:738.645000px;}
.y32{bottom:738.825000px;}
.yaf{bottom:739.005000px;}
.ya{bottom:763.305000px;}
.yd0{bottom:763.485000px;}
.y3e{bottom:768.345000px;}
.y5a{bottom:768.885000px;}
.y31{bottom:769.065000px;}
.y8f{bottom:769.245000px;}
.ye6{bottom:769.605000px;}
.y9{bottom:793.545000px;}
.ycf{bottom:793.725000px;}
.y3d{bottom:798.810000px;}
.y75{bottom:798.990000px;}
.ybc{bottom:799.170000px;}
.y30{bottom:799.350000px;}
.y8e{bottom:799.530000px;}
.ye5{bottom:799.890000px;}
.y121{bottom:800.970000px;}
.y8{bottom:823.830000px;}
.y74{bottom:829.050000px;}
.y2f{bottom:829.410000px;}
.y8d{bottom:829.590000px;}
.y59{bottom:829.770000px;}
.ye4{bottom:829.950000px;}
.y120{bottom:831.030000px;}
.yce{bottom:854.250000px;}
.y7{bottom:856.410000px;}
.y3c{bottom:859.470000px;}
.y2e{bottom:859.650000px;}
.ybb{bottom:859.830000px;}
.ya5{bottom:860.010000px;}
.y8c{bottom:860.190000px;}
.y58{bottom:860.370000px;}
.yf7{bottom:860.550000px;}
.y11f{bottom:861.270000px;}
.y11e{bottom:881.250000px;}
.ycd{bottom:884.850000px;}
.y6{bottom:889.350000px;}
.ya4{bottom:889.710000px;}
.y2d{bottom:889.890000px;}
.y73{bottom:890.070000px;}
.y8b{bottom:890.250000px;}
.ye3{bottom:890.430000px;}
.y57{bottom:890.610000px;}
.y11d{bottom:901.050000px;}
.ycc{bottom:914.910000px;}
.y5{bottom:917.070000px;}
.ya3{bottom:919.770000px;}
.y2c{bottom:919.950000px;}
.yba{bottom:920.130000px;}
.yae{bottom:920.310000px;}
.y3b{bottom:920.490000px;}
.y6a{bottom:920.670000px;}
.y56{bottom:920.850000px;}
.y11c{bottom:941.010000px;}
.y4{bottom:946.950000px;}
.ycb{bottom:948.030000px;}
.y2b{bottom:950.370000px;}
.yb9{bottom:950.550000px;}
.y69{bottom:950.730000px;}
.y3a{bottom:950.910000px;}
.y8a{bottom:951.090000px;}
.y11b{bottom:961.170000px;}
.yca{bottom:978.270000px;}
.ya2{bottom:980.790000px;}
.y2a{bottom:980.970000px;}
.y39{bottom:981.150000px;}
.y55{bottom:981.330000px;}
.y3{bottom:982.230000px;}
.y11a{bottom:1001.490000px;}
.ya1{bottom:1011.030000px;}
.y29{bottom:1011.210000px;}
.y54{bottom:1011.390000px;}
.y89{bottom:1011.570000px;}
.y2{bottom:1015.170000px;}
.y119{bottom:1021.650000px;}
.y28{bottom:1041.270000px;}
.ya0{bottom:1041.450000px;}
.y38{bottom:1041.630000px;}
.y88{bottom:1041.810000px;}
.y1{bottom:1045.230000px;}
.y23{bottom:1069.380000px;}
.y85{bottom:1069.560000px;}
.y22{bottom:1097.100000px;}
.y21{bottom:1122.480000px;}
.h1{height:47.988281px;}
.h4{height:50.743477px;}
.h7{height:52.136719px;}
.h2{height:61.136719px;}
.h3{height:71.529961px;}
.h6{height:74.004654px;}
.h5{height:74.953125px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:112.716000px;}
.x11{left:123.156000px;}
.x2{left:155.190000px;}
.x4{left:166.710000px;}
.x3{left:176.610000px;}
.x12{left:178.950000px;}
.xb{left:182.010000px;}
.x5{left:183.990000px;}
.xe{left:186.510000px;}
.x7{left:238.530000px;}
.x16{left:358.995000px;}
.xc{left:366.555000px;}
.x18{left:433.155000px;}
.x15{left:457.995000px;}
.x8{left:465.735000px;}
.x13{left:481.395000px;}
.x9{left:485.535000px;}
.xa{left:528.045000px;}
.x17{left:567.285000px;}
.x14{left:677.805000px;}
.xd{left:737.250000px;}
.x10{left:803.310000px;}
.x6{left:805.470000px;}
.xf{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls4{letter-spacing:-0.704000pt;}
.ls12{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.448000pt;}
.ls32{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.302933pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.206933pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls2b{letter-spacing:-0.064000pt;}
.ls21{letter-spacing:-0.000003pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000001pt;}
.ls3{letter-spacing:0.064000pt;}
.ls34{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.160640pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls19{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.362667pt;}
.ls10{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.433280pt;}
.ls23{letter-spacing:0.448000pt;}
.ls28{letter-spacing:0.554667pt;}
.lse{letter-spacing:0.576000pt;}
.ls24{letter-spacing:1.024000pt;}
.ls1c{letter-spacing:1.216000pt;}
.ls7{letter-spacing:1.856000pt;}
.ls1e{letter-spacing:2.496000pt;}
.ls33{letter-spacing:3.776000pt;}
.ls13{letter-spacing:4.416000pt;}
.ls25{letter-spacing:6.336000pt;}
.ls1d{letter-spacing:6.976000pt;}
.lsd{letter-spacing:8.416000pt;}
.ls22{letter-spacing:8.896000pt;}
.ls20{letter-spacing:10.176000pt;}
.ls31{letter-spacing:10.816000pt;}
.ls15{letter-spacing:11.456000pt;}
.ls2d{letter-spacing:12.736000pt;}
.ls1b{letter-spacing:13.376000pt;}
.ls14{letter-spacing:14.016000pt;}
.ls29{letter-spacing:15.296000pt;}
.ls26{letter-spacing:17.216000pt;}
.ls0{letter-spacing:19.754667pt;}
.ls2e{letter-spacing:22.336000pt;}
.ls2f{letter-spacing:30.016000pt;}
.ls17{letter-spacing:46.016000pt;}
.ls27{letter-spacing:47.296000pt;}
.ls18{letter-spacing:48.576000pt;}
.ls1f{letter-spacing:48.768000pt;}
.ls1{letter-spacing:74.986667pt;}
.ls30{letter-spacing:103.808000pt;}
.ls2a{letter-spacing:109.568000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws11{word-spacing:-18.432000pt;}
.ws7{word-spacing:-18.304000pt;}
.ws10{word-spacing:-18.176000pt;}
.ws1{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984001pt;}
.ws0{word-spacing:-17.984000pt;}
.wsa{word-spacing:-17.983997pt;}
.wsb{word-spacing:-17.920000pt;}
.wsc{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.728000pt;}
.ws12{word-spacing:-17.664000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.246720pt;}
.ws4{word-spacing:-14.926720pt;}
.ws5{word-spacing:-14.623787pt;}
.ws3{word-spacing:0.000000pt;}
._8{margin-left:-4.736000pt;}
._9{margin-left:-3.776000pt;}
._7{margin-left:-2.048000pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.098667pt;}
._19{width:2.069333pt;}
._2{width:2.986667pt;}
._b{width:4.096000pt;}
._d{width:5.440000pt;}
._c{width:6.400000pt;}
._e{width:7.488000pt;}
._5{width:8.832000pt;}
._6{width:10.517333pt;}
._11{width:11.712000pt;}
._14{width:12.736000pt;}
._15{width:13.632000pt;}
._16{width:15.402667pt;}
._20{width:17.088000pt;}
._3{width:19.392000pt;}
._4{width:20.288000pt;}
._f{width:21.248000pt;}
._10{width:22.976000pt;}
._1b{width:24.320000pt;}
._1c{width:25.642667pt;}
._1a{width:28.160000pt;}
._18{width:29.824000pt;}
._17{width:30.784000pt;}
._31{width:31.786667pt;}
._2c{width:33.088000pt;}
._2a{width:37.120000pt;}
._1e{width:38.144000pt;}
._1f{width:39.434667pt;}
._26{width:42.304000pt;}
._22{width:45.098667pt;}
._21{width:46.656000pt;}
._23{width:47.786667pt;}
._24{width:49.216000pt;}
._37{width:52.160000pt;}
._a{width:54.912000pt;}
._30{width:55.957333pt;}
._2d{width:58.240000pt;}
._27{width:60.992000pt;}
._28{width:62.016000pt;}
._25{width:75.328000pt;}
._32{width:76.864000pt;}
._2b{width:81.600000pt;}
._2e{width:90.880000pt;}
._1d{width:92.160000pt;}
._34{width:96.832000pt;}
._2f{width:112.640000pt;}
._35{width:181.344000pt;}
._33{width:184.213333pt;}
._12{width:344.302507pt;}
._13{width:546.083200pt;}
._29{width:555.683200pt;}
._36{width:750.176000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:51.072000pt;}
.y87{bottom:69.152000pt;}
.y26{bottom:69.312000pt;}
.y25{bottom:84.192000pt;}
.y20{bottom:86.752000pt;}
.y86{bottom:101.312000pt;}
.y24{bottom:101.472000pt;}
.y1f{bottom:113.792000pt;}
.y84{bottom:117.952000pt;}
.y53{bottom:118.592000pt;}
.y105{bottom:118.912000pt;}
.yf6{bottom:119.552000pt;}
.yb8{bottom:124.832000pt;}
.y37{bottom:127.872000pt;}
.yad{bottom:136.186667pt;}
.yc9{bottom:139.546667pt;}
.y1e{bottom:140.826667pt;}
.y9f{bottom:141.466667pt;}
.y83{bottom:144.826667pt;}
.y52{bottom:145.466667pt;}
.y104{bottom:145.786667pt;}
.yf5{bottom:146.426667pt;}
.yb7{bottom:151.706667pt;}
.y36{bottom:155.066667pt;}
.ye2{bottom:162.426667pt;}
.yac{bottom:163.066667pt;}
.yc8{bottom:166.746667pt;}
.y1d{bottom:167.866667pt;}
.y9e{bottom:168.026667pt;}
.y82{bottom:171.706667pt;}
.y51{bottom:172.346667pt;}
.y103{bottom:172.666667pt;}
.yf4{bottom:173.306667pt;}
.y35{bottom:177.466667pt;}
.yb6{bottom:178.586667pt;}
.ye1{bottom:189.146667pt;}
.yab{bottom:189.946667pt;}
.y9d{bottom:194.426667pt;}
.y1c{bottom:195.066667pt;}
.yc7{bottom:196.186667pt;}
.y81{bottom:198.586667pt;}
.y68{bottom:199.066667pt;}
.y50{bottom:199.226667pt;}
.y102{bottom:199.546667pt;}
.yf3{bottom:200.026667pt;}
.y118{bottom:200.506667pt;}
.yb5{bottom:205.306667pt;}
.yaa{bottom:216.826667pt;}
.y117{bottom:218.426667pt;}
.ye0{bottom:218.586667pt;}
.y9c{bottom:220.986667pt;}
.y1b{bottom:221.786667pt;}
.yc6{bottom:223.066667pt;}
.y72{bottom:223.546667pt;}
.y80{bottom:225.306667pt;}
.y67{bottom:225.946667pt;}
.y4f{bottom:226.106667pt;}
.y101{bottom:226.266667pt;}
.yf2{bottom:226.906667pt;}
.yb4{bottom:232.346667pt;}
.y116{bottom:236.186667pt;}
.ya9{bottom:243.706667pt;}
.ydf{bottom:245.466667pt;}
.y9b{bottom:247.546667pt;}
.ya7{bottom:247.706667pt;}
.y1a{bottom:248.706667pt;}
.yc5{bottom:249.826667pt;}
.y71{bottom:250.466667pt;}
.y7f{bottom:252.386667pt;}
.y4e{bottom:252.866667pt;}
.y100{bottom:253.186667pt;}
.yf1{bottom:253.826667pt;}
.y115{bottom:253.986667pt;}
.yb3{bottom:259.106667pt;}
.ya8{bottom:265.986667pt;}
.ya6{bottom:269.986667pt;}
.y114{bottom:271.906667pt;}
.yde{bottom:272.226667pt;}
.y19{bottom:275.586667pt;}
.y9a{bottom:276.226667pt;}
.yc4{bottom:276.706667pt;}
.y70{bottom:277.186667pt;}
.y7e{bottom:279.586667pt;}
.y4d{bottom:279.746667pt;}
.yff{bottom:280.066667pt;}
.yf0{bottom:280.706667pt;}
.yb2{bottom:286.306667pt;}
.y113{bottom:289.826667pt;}
.ydd{bottom:301.666667pt;}
.y6f{bottom:301.826667pt;}
.y18{bottom:302.466667pt;}
.y99{bottom:305.026667pt;}
.yc3{bottom:305.986667pt;}
.y7d{bottom:306.306667pt;}
.y66{bottom:306.626667pt;}
.y4c{bottom:306.786667pt;}
.yfe{bottom:306.946667pt;}
.yef{bottom:307.586667pt;}
.y112{bottom:307.746667pt;}
.yb1{bottom:308.706667pt;}
.y111{bottom:325.666667pt;}
.y6e{bottom:326.466667pt;}
.ydc{bottom:328.546667pt;}
.y17{bottom:329.346667pt;}
.yc2{bottom:333.026667pt;}
.y65{bottom:333.506667pt;}
.y4b{bottom:333.666667pt;}
.y98{bottom:333.826667pt;}
.yee{bottom:334.466667pt;}
.y110{bottom:343.586667pt;}
.y6d{bottom:353.346667pt;}
.ydb{bottom:355.426667pt;}
.y16{bottom:356.226667pt;}
.yc1{bottom:360.066667pt;}
.y64{bottom:360.386667pt;}
.y4a{bottom:360.546667pt;}
.y97{bottom:360.706667pt;}
.yed{bottom:361.346667pt;}
.y10f{bottom:361.506667pt;}
.y6c{bottom:380.066667pt;}
.yda{bottom:382.306667pt;}
.y15{bottom:383.106667pt;}
.y63{bottom:387.106667pt;}
.y7c{bottom:387.266667pt;}
.y49{bottom:387.426667pt;}
.yfd{bottom:387.586667pt;}
.yec{bottom:388.226667pt;}
.y10e{bottom:388.386667pt;}
.y6b{bottom:402.786667pt;}
.yd9{bottom:409.186667pt;}
.y14{bottom:409.986667pt;}
.y62{bottom:414.146667pt;}
.y48{bottom:414.306667pt;}
.y96{bottom:414.626667pt;}
.yeb{bottom:414.946667pt;}
.y10d{bottom:415.266667pt;}
.yd8{bottom:436.066667pt;}
.y13{bottom:436.706667pt;}
.y7b{bottom:440.866667pt;}
.y61{bottom:441.026667pt;}
.y47{bottom:441.186667pt;}
.y95{bottom:441.346667pt;}
.yfc{bottom:441.506667pt;}
.yea{bottom:441.826667pt;}
.y10c{bottom:442.146667pt;}
.yd7{bottom:462.946667pt;}
.y12{bottom:463.586667pt;}
.y60{bottom:467.746667pt;}
.y46{bottom:468.066667pt;}
.yc0{bottom:468.226667pt;}
.yfb{bottom:468.386667pt;}
.y94{bottom:468.546667pt;}
.ye9{bottom:468.706667pt;}
.y10b{bottom:468.866667pt;}
.yd6{bottom:489.693333pt;}
.y11{bottom:490.493333pt;}
.y45{bottom:494.973333pt;}
.yfa{bottom:495.133333pt;}
.y93{bottom:495.293333pt;}
.ye8{bottom:495.613333pt;}
.y10a{bottom:495.773333pt;}
.yd5{bottom:516.573333pt;}
.y10{bottom:517.373333pt;}
.y44{bottom:521.693333pt;}
.y7a{bottom:521.853333pt;}
.yf9{bottom:522.013333pt;}
.y92{bottom:522.173333pt;}
.ybf{bottom:522.493333pt;}
.y109{bottom:522.653333pt;}
.yd4{bottom:543.613333pt;}
.yf{bottom:544.253333pt;}
.y43{bottom:548.573333pt;}
.y5f{bottom:548.733333pt;}
.y91{bottom:548.893333pt;}
.ybe{bottom:549.373333pt;}
.y108{bottom:549.533333pt;}
.yd3{bottom:570.653333pt;}
.ye{bottom:571.133333pt;}
.y42{bottom:575.453333pt;}
.yf8{bottom:575.613333pt;}
.y79{bottom:575.773333pt;}
.y5e{bottom:575.933333pt;}
.ybd{bottom:576.093333pt;}
.ye7{bottom:576.253333pt;}
.y107{bottom:576.413333pt;}
.yd2{bottom:597.693333pt;}
.yd{bottom:598.013333pt;}
.y41{bottom:602.333333pt;}
.y78{bottom:602.653333pt;}
.y5d{bottom:602.813333pt;}
.y34{bottom:602.973333pt;}
.y106{bottom:603.293333pt;}
.yc{bottom:624.733333pt;}
.yd1{bottom:624.893333pt;}
.y40{bottom:629.213333pt;}
.y77{bottom:629.373333pt;}
.y5c{bottom:629.533333pt;}
.y33{bottom:629.853333pt;}
.yb0{bottom:630.173333pt;}
.yb{bottom:651.613333pt;}
.y3f{bottom:655.933333pt;}
.y76{bottom:656.253333pt;}
.y5b{bottom:656.413333pt;}
.y90{bottom:656.573333pt;}
.y32{bottom:656.733333pt;}
.yaf{bottom:656.893333pt;}
.ya{bottom:678.493333pt;}
.yd0{bottom:678.653333pt;}
.y3e{bottom:682.973333pt;}
.y5a{bottom:683.453333pt;}
.y31{bottom:683.613333pt;}
.y8f{bottom:683.773333pt;}
.ye6{bottom:684.093333pt;}
.y9{bottom:705.373333pt;}
.ycf{bottom:705.533333pt;}
.y3d{bottom:710.053333pt;}
.y75{bottom:710.213333pt;}
.ybc{bottom:710.373333pt;}
.y30{bottom:710.533333pt;}
.y8e{bottom:710.693333pt;}
.ye5{bottom:711.013333pt;}
.y121{bottom:711.973333pt;}
.y8{bottom:732.293333pt;}
.y74{bottom:736.933333pt;}
.y2f{bottom:737.253333pt;}
.y8d{bottom:737.413333pt;}
.y59{bottom:737.573333pt;}
.ye4{bottom:737.733333pt;}
.y120{bottom:738.693333pt;}
.yce{bottom:759.333333pt;}
.y7{bottom:761.253333pt;}
.y3c{bottom:763.973333pt;}
.y2e{bottom:764.133333pt;}
.ybb{bottom:764.293333pt;}
.ya5{bottom:764.453333pt;}
.y8c{bottom:764.613333pt;}
.y58{bottom:764.773333pt;}
.yf7{bottom:764.933333pt;}
.y11f{bottom:765.573333pt;}
.y11e{bottom:783.333333pt;}
.ycd{bottom:786.533333pt;}
.y6{bottom:790.533333pt;}
.ya4{bottom:790.853333pt;}
.y2d{bottom:791.013333pt;}
.y73{bottom:791.173333pt;}
.y8b{bottom:791.333333pt;}
.ye3{bottom:791.493333pt;}
.y57{bottom:791.653333pt;}
.y11d{bottom:800.933333pt;}
.ycc{bottom:813.253333pt;}
.y5{bottom:815.173333pt;}
.ya3{bottom:817.573333pt;}
.y2c{bottom:817.733333pt;}
.yba{bottom:817.893333pt;}
.yae{bottom:818.053333pt;}
.y3b{bottom:818.213333pt;}
.y6a{bottom:818.373333pt;}
.y56{bottom:818.533333pt;}
.y11c{bottom:836.453333pt;}
.y4{bottom:841.733333pt;}
.ycb{bottom:842.693333pt;}
.y2b{bottom:844.773333pt;}
.yb9{bottom:844.933333pt;}
.y69{bottom:845.093333pt;}
.y3a{bottom:845.253333pt;}
.y8a{bottom:845.413333pt;}
.y11b{bottom:854.373333pt;}
.yca{bottom:869.573333pt;}
.ya2{bottom:871.813333pt;}
.y2a{bottom:871.973333pt;}
.y39{bottom:872.133333pt;}
.y55{bottom:872.293333pt;}
.y3{bottom:873.093333pt;}
.y11a{bottom:890.213333pt;}
.ya1{bottom:898.693333pt;}
.y29{bottom:898.853333pt;}
.y54{bottom:899.013333pt;}
.y89{bottom:899.173333pt;}
.y2{bottom:902.373333pt;}
.y119{bottom:908.133333pt;}
.y28{bottom:925.573333pt;}
.ya0{bottom:925.733333pt;}
.y38{bottom:925.893333pt;}
.y88{bottom:926.053333pt;}
.y1{bottom:929.093333pt;}
.y23{bottom:950.560000pt;}
.y85{bottom:950.720000pt;}
.y22{bottom:975.200000pt;}
.y21{bottom:997.760000pt;}
.h1{height:42.656250pt;}
.h4{height:45.105313pt;}
.h7{height:46.343750pt;}
.h2{height:54.343750pt;}
.h3{height:63.582187pt;}
.h6{height:65.781915pt;}
.h5{height:66.625000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:100.192000pt;}
.x11{left:109.472000pt;}
.x2{left:137.946667pt;}
.x4{left:148.186667pt;}
.x3{left:156.986667pt;}
.x12{left:159.066667pt;}
.xb{left:161.786667pt;}
.x5{left:163.546667pt;}
.xe{left:165.786667pt;}
.x7{left:212.026667pt;}
.x16{left:319.106667pt;}
.xc{left:325.826667pt;}
.x18{left:385.026667pt;}
.x15{left:407.106667pt;}
.x8{left:413.986667pt;}
.x13{left:427.906667pt;}
.x9{left:431.586667pt;}
.xa{left:469.373333pt;}
.x17{left:504.253333pt;}
.x14{left:602.493333pt;}
.xd{left:655.333333pt;}
.x10{left:714.053333pt;}
.x6{left:715.973333pt;}
.xf{left:718.213333pt;}
}




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