
    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_2da229154614fdf4e352daf4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_4f141be2902969f14e91a2bb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.401855;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_3dc4f57acbae48f86776a720.woff')format("woff");}.ff3{font-family:ff3;line-height:0.976074;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_a026a0ae2988b09e2dcc6d8e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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_bcc0dec237c9b9002102bd72.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5576e839fbaa2413aeb37c64.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9c8d2a2ffdb45aa8fdce7c0a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_d6ceca4d5b1f214f43c50058.woff')format("woff");}.ff8{font-family:ff8;line-height:0.892578;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_7dff302dd4461c2ee5a62ee9.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a1d25d579c93ced9248faa79.woff')format("woff");}.ffa{font-family:ffa;line-height:1.049000;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_d2b7c23cb35bf96a7089c2f6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ac5ebd8acab76f068b622b54.woff')format("woff");}.ffc{font-family:ffc;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e1935a91e592151068a74389.woff')format("woff");}.ffd{font-family:ffd;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_78d4f68e6bff351da131404e.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_25427a391fdff207ebd3308f.woff')format("woff");}.fff{font-family:fff;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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;}
.lsd{letter-spacing:-0.762000px;}
.ls15{letter-spacing:-0.504600px;}
.ls23{letter-spacing:-0.381000px;}
.ls13{letter-spacing:-0.369600px;}
.ls8{letter-spacing:-0.348600px;}
.ls12{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.068937px;}
.ls22{letter-spacing:-0.057600px;}
.ls24{letter-spacing:-0.046800px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.023040px;}
.lsf{letter-spacing:0.028080px;}
.ls2{letter-spacing:0.045536px;}
.ls1d{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.179400px;}
.ls1c{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.313800px;}
.ls1f{letter-spacing:0.313920px;}
.ls21{letter-spacing:0.339000px;}
.ls4{letter-spacing:0.339120px;}
.ls11{letter-spacing:0.341280px;}
.ls1a{letter-spacing:0.348600px;}
.ls14{letter-spacing:0.350400px;}
.lse{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.419040px;}
.ls5{letter-spacing:0.468000px;}
.ls1b{letter-spacing:0.473040px;}
.ls0{letter-spacing:0.504000px;}
.ls17{letter-spacing:0.511920px;}
.lsb{letter-spacing:0.519120px;}
.lsc{letter-spacing:0.866880px;}
.ls10{letter-spacing:1.193040px;}
.lsa{letter-spacing:4.392000px;}
.ls26{letter-spacing:5.381280px;}
.ls18{letter-spacing:10.013040px;}
.ls1e{letter-spacing:14.741280px;}
.ls25{letter-spacing:24.821280px;}
.ls20{letter-spacing:37.781280px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-41.400000px;}
.ws6{word-spacing:-40.932000px;}
.ws1{word-spacing:-38.186904px;}
.wsf{word-spacing:-36.641640px;}
.wsd{word-spacing:-32.277360px;}
.ws13{word-spacing:-32.265960px;}
.ws9{word-spacing:-32.240760px;}
.ws8{word-spacing:-32.106360px;}
.ws7{word-spacing:-31.950000px;}
.ws2{word-spacing:-31.926960px;}
.ws16{word-spacing:-31.880160px;}
.ws14{word-spacing:-31.869360px;}
.wsc{word-spacing:-31.557360px;}
.ws15{word-spacing:-31.545960px;}
.wsa{word-spacing:-21.060000px;}
.wse{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.ws11{word-spacing:-15.300000px;}
.ws12{word-spacing:-14.993280px;}
.ws10{word-spacing:-14.940000px;}
.ws3{word-spacing:-0.084240px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-7.992000px;}
._6{margin-left:-6.486480px;}
._0{margin-left:-4.968000px;}
._5{margin-left:-3.923760px;}
._1{margin-left:-2.736000px;}
._4{margin-left:-1.608000px;}
._3{width:1.680000px;}
._c{width:3.210720px;}
._b{width:4.801680px;}
._a{width:6.791760px;}
._9{width:8.654160px;}
._8{width:10.284720px;}
._7{width:11.288160px;}
._f{width:13.141440px;}
._10{width:14.417280px;}
._15{width:15.889440px;}
._11{width:17.353440px;}
._12{width:19.134720px;}
._16{width:20.277360px;}
._18{width:21.312720px;}
._19{width:22.437120px;}
._17{width:24.041040px;}
._13{width:25.187760px;}
._14{width:26.206080px;}
._e{width:27.883440px;}
._d{width:28.914960px;}
._1a{width:29.934720px;}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(148,54,52);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,80);}
.fs6{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:100.938894px;}
.fs5{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:58.320000px;}
.y3{bottom:78.660000px;}
.y58{bottom:114.660000px;}
.y22{bottom:117.000000px;}
.y3f{bottom:119.340000px;}
.y92{bottom:123.660000px;}
.y70{bottom:126.540000px;}
.y81{bottom:127.440000px;}
.y100{bottom:127.620000px;}
.ya6{bottom:131.040000px;}
.y132{bottom:146.736000px;}
.y57{bottom:147.636000px;}
.y21{bottom:150.150000px;}
.y3e{bottom:152.310000px;}
.ybd{bottom:152.490000px;}
.y91{bottom:156.810000px;}
.y6f{bottom:159.690000px;}
.y80{bottom:160.590000px;}
.yd6{bottom:165.270000px;}
.y119{bottom:172.110000px;}
.y131{bottom:179.670000px;}
.ya5{bottom:180.030000px;}
.y56{bottom:180.750000px;}
.y20{bottom:183.090000px;}
.y90{bottom:189.750000px;}
.y6e{bottom:192.630000px;}
.y7f{bottom:193.530000px;}
.yff{bottom:193.710000px;}
.y3d{bottom:197.490000px;}
.yd5{bottom:198.390000px;}
.ybc{bottom:202.350000px;}
.y118{bottom:205.230000px;}
.y130{bottom:212.790000px;}
.y55{bottom:213.690000px;}
.y1f{bottom:217.650000px;}
.y6d{bottom:225.750000px;}
.y7e{bottom:226.650000px;}
.yfe{bottom:226.830000px;}
.ya4{bottom:227.730000px;}
.yed{bottom:228.270000px;}
.y3c{bottom:230.430000px;}
.yd4{bottom:231.510000px;}
.ybb{bottom:236.550000px;}
.y117{bottom:238.170000px;}
.y8f{bottom:239.610000px;}
.y12f{bottom:245.730000px;}
.y54{bottom:246.810000px;}
.y6c{bottom:258.870000px;}
.y7d{bottom:259.590000px;}
.yfd{bottom:259.770000px;}
.ya3{bottom:261.930000px;}
.yec{bottom:265.890000px;}
.y1e{bottom:267.150000px;}
.y116{bottom:271.290000px;}
.y3b{bottom:275.430000px;}
.yd3{bottom:278.850000px;}
.y53{bottom:279.750000px;}
.yba{bottom:284.430000px;}
.y8e{bottom:289.290000px;}
.y6b{bottom:291.810000px;}
.y7c{bottom:292.710000px;}
.yfc{bottom:292.890000px;}
.y1d{bottom:300.090000px;}
.y115{bottom:304.230000px;}
.y3a{bottom:308.550000px;}
.ya2{bottom:310.710000px;}
.y12e{bottom:311.970000px;}
.y52{bottom:312.870000px;}
.yeb{bottom:313.410000px;}
.yb9{bottom:318.630000px;}
.y8d{bottom:322.410000px;}
.y7b{bottom:325.830000px;}
.yd2{bottom:326.190000px;}
.y1c{bottom:333.210000px;}
.y114{bottom:337.350000px;}
.y6a{bottom:341.670000px;}
.y12d{bottom:344.910000px;}
.yea{bottom:346.350000px;}
.y39{bottom:353.550000px;}
.y51{bottom:357.870000px;}
.yd1{bottom:359.310000px;}
.ya1{bottom:359.670000px;}
.y1b{bottom:366.150000px;}
.yb8{bottom:366.330000px;}
.y8c{bottom:367.410000px;}
.y113{bottom:370.290000px;}
.y7a{bottom:370.830000px;}
.yfb{bottom:375.690000px;}
.y12c{bottom:378.030000px;}
.ye9{bottom:379.470000px;}
.y38{bottom:386.670000px;}
.y50{bottom:391.035000px;}
.y69{bottom:391.395000px;}
.yd0{bottom:392.295000px;}
.y1a{bottom:399.315000px;}
.yb7{bottom:400.575000px;}
.y8b{bottom:401.655000px;}
.y112{bottom:403.455000px;}
.y79{bottom:403.815000px;}
.ya0{bottom:408.675000px;}
.y12b{bottom:411.015000px;}
.ye8{bottom:412.455000px;}
.y37{bottom:419.655000px;}
.y4f{bottom:423.975000px;}
.y68{bottom:424.515000px;}
.ycf{bottom:425.415000px;}
.yfa{bottom:426.675000px;}
.y19{bottom:432.255000px;}
.y111{bottom:436.575000px;}
.y78{bottom:436.935000px;}
.y12a{bottom:444.135000px;}
.ye7{bottom:445.575000px;}
.yb6{bottom:448.275000px;}
.y8a{bottom:449.355000px;}
.y36{bottom:452.775000px;}
.y4e{bottom:457.095000px;}
.y67{bottom:457.455000px;}
.yce{bottom:458.535000px;}
.yf9{bottom:463.395000px;}
.y110{bottom:469.515000px;}
.y77{bottom:471.135000px;}
.y129{bottom:477.075000px;}
.y18{bottom:477.435000px;}
.yb5{bottom:481.395000px;}
.y89{bottom:483.555000px;}
.y35{bottom:485.895000px;}
.y66{bottom:490.575000px;}
.ycd{bottom:491.475000px;}
.ye6{bottom:492.915000px;}
.y9f{bottom:493.275000px;}
.yf8{bottom:500.295000px;}
.y4d{bottom:502.095000px;}
.y10f{bottom:502.635000px;}
.y128{bottom:510.195000px;}
.y17{bottom:510.375000px;}
.y34{bottom:518.835000px;}
.y65{bottom:523.515000px;}
.y9e{bottom:526.215000px;}
.ycc{bottom:526.935000px;}
.yb4{bottom:527.475000px;}
.y88{bottom:532.515000px;}
.y4c{bottom:535.215000px;}
.y10e{bottom:535.575000px;}
.yf7{bottom:537.195000px;}
.ye5{bottom:540.435000px;}
.y127{bottom:543.315000px;}
.y16{bottom:543.495000px;}
.y33{bottom:551.955000px;}
.y4b{bottom:568.155000px;}
.y64{bottom:568.695000px;}
.y9d{bottom:571.395000px;}
.ye4{bottom:573.375000px;}
.yf6{bottom:574.095000px;}
.y126{bottom:576.255000px;}
.y15{bottom:576.435000px;}
.ycb{bottom:579.135000px;}
.y87{bottom:580.215000px;}
.y10d{bottom:583.095000px;}
.y32{bottom:584.895000px;}
.y4a{bottom:601.275000px;}
.y63{bottom:601.635000px;}
.y9c{bottom:604.335000px;}
.ye3{bottom:606.495000px;}
.y125{bottom:609.375000px;}
.y14{bottom:609.555000px;}
.yf5{bottom:612.255000px;}
.y86{bottom:613.335000px;}
.y31{bottom:618.015000px;}
.y10c{bottom:618.375000px;}
.yb3{bottom:628.815000px;}
.y49{bottom:634.395000px;}
.y62{bottom:634.755000px;}
.ye2{bottom:639.435000px;}
.y124{bottom:642.345000px;}
.y13{bottom:642.705000px;}
.y85{bottom:646.305000px;}
.y9b{bottom:650.625000px;}
.y30{bottom:650.985000px;}
.y10b{bottom:651.525000px;}
.yf4{bottom:659.625000px;}
.yca{bottom:661.785000px;}
.y76{bottom:663.045000px;}
.y61{bottom:667.725000px;}
.ye1{bottom:672.585000px;}
.y123{bottom:675.465000px;}
.y12{bottom:675.645000px;}
.yb2{bottom:678.705000px;}
.y48{bottom:681.765000px;}
.y10a{bottom:684.645000px;}
.y84{bottom:693.825000px;}
.y2f{bottom:696.165000px;}
.y9a{bottom:698.325000px;}
.y60{bottom:700.845000px;}
.ye0{bottom:705.525000px;}
.yc9{bottom:706.965000px;}
.y122{bottom:708.585000px;}
.y11{bottom:708.765000px;}
.yb1{bottom:712.905000px;}
.y109{bottom:717.585000px;}
.y2e{bottom:729.105000px;}
.yf3{bottom:730.725000px;}
.y99{bottom:732.525000px;}
.yc8{bottom:739.905000px;}
.y83{bottom:741.165000px;}
.y121{bottom:741.525000px;}
.y10{bottom:741.705000px;}
.y5f{bottom:745.845000px;}
.ydf{bottom:750.705000px;}
.y108{bottom:751.785000px;}
.yb0{bottom:760.605000px;}
.y2d{bottom:762.225000px;}
.yf2{bottom:766.545000px;}
.y82{bottom:774.105000px;}
.y120{bottom:774.645000px;}
.yf{bottom:774.825000px;}
.y5e{bottom:778.965000px;}
.y98{bottom:781.485000px;}
.yc7{bottom:784.905000px;}
.y107{bottom:787.605000px;}
.yaf{bottom:794.805000px;}
.y47{bottom:795.165000px;}
.yf1{bottom:800.745000px;}
.y2c{bottom:807.225000px;}
.y11f{bottom:807.585000px;}
.ye{bottom:807.765000px;}
.y5d{bottom:811.905000px;}
.yc6{bottom:818.025000px;}
.yde{bottom:820.545000px;}
.y106{bottom:821.805000px;}
.y46{bottom:828.285000px;}
.y97{bottom:829.185000px;}
.yf0{bottom:837.645000px;}
.y2b{bottom:840.345000px;}
.y11e{bottom:840.705000px;}
.yae{bottom:842.505000px;}
.y5c{bottom:845.025000px;}
.ydd{bottom:854.745000px;}
.y105{bottom:857.445000px;}
.yd{bottom:857.625000px;}
.y75{bottom:861.765000px;}
.y96{bottom:862.125000px;}
.yc5{bottom:863.025000px;}
.y2a{bottom:873.285000px;}
.y11d{bottom:873.645000px;}
.yad{bottom:876.705000px;}
.y5b{bottom:877.965000px;}
.yef{bottom:890.070000px;}
.ydc{bottom:890.610000px;}
.yc{bottom:891.150000px;}
.y104{bottom:891.690000px;}
.y74{bottom:894.750000px;}
.yc4{bottom:896.190000px;}
.y95{bottom:896.370000px;}
.y29{bottom:906.450000px;}
.y11c{bottom:906.810000px;}
.y5a{bottom:911.130000px;}
.yb{bottom:920.850000px;}
.yac{bottom:924.450000px;}
.ydb{bottom:924.810000px;}
.y103{bottom:927.510000px;}
.y73{bottom:927.870000px;}
.yc3{bottom:929.130000px;}
.y11b{bottom:939.930000px;}
.y94{bottom:946.590000px;}
.ya{bottom:950.010000px;}
.y28{bottom:951.450000px;}
.y45{bottom:956.130000px;}
.y59{bottom:958.470000px;}
.yab{bottom:958.650000px;}
.yda{bottom:960.450000px;}
.y72{bottom:960.810000px;}
.y102{bottom:961.710000px;}
.y11a{bottom:972.870000px;}
.y133{bottom:976.830000px;}
.yc2{bottom:977.910000px;}
.y27{bottom:984.570000px;}
.y9{bottom:987.990000px;}
.y71{bottom:993.930000px;}
.yd9{bottom:994.650000px;}
.y101{bottom:997.350000px;}
.y44{bottom:1005.990000px;}
.yaa{bottom:1006.350000px;}
.yc1{bottom:1016.430000px;}
.y26{bottom:1017.510000px;}
.y8{bottom:1023.990000px;}
.y93{bottom:1027.050000px;}
.yd8{bottom:1031.550000px;}
.y43{bottom:1038.930000px;}
.ya9{bottom:1039.470000px;}
.y7{bottom:1047.930000px;}
.yc0{bottom:1049.370000px;}
.y25{bottom:1050.630000px;}
.yee{bottom:1059.990000px;}
.yd7{bottom:1069.710000px;}
.y42{bottom:1072.050000px;}
.y24{bottom:1083.570000px;}
.ya8{bottom:1086.810000px;}
.y6{bottom:1088.430000px;}
.ybf{bottom:1096.890000px;}
.y41{bottom:1104.990000px;}
.y5{bottom:1126.230000px;}
.y23{bottom:1133.430000px;}
.ybe{bottom:1133.790000px;}
.ya7{bottom:1135.410000px;}
.y40{bottom:1138.110000px;}
.y2{bottom:1171.980000px;}
.y1{bottom:1192.320000px;}
.hf{height:39.830273px;}
.h6{height:58.038398px;}
.h9{height:65.460938px;}
.hb{height:67.476240px;}
.h4{height:70.664062px;}
.h3{height:71.824219px;}
.h2{height:72.562500px;}
.hc{height:76.703760px;}
.h8{height:80.852054px;}
.hd{height:82.676953px;}
.h7{height:84.898125px;}
.ha{height:86.508000px;}
.he{height:86.585445px;}
.h5{height:115.344000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:97.380000px;}
.xb{left:102.276000px;}
.x1{left:108.036000px;}
.x8{left:109.116000px;}
.x2{left:110.376000px;}
.x3{left:119.916000px;}
.xa{left:129.276000px;}
.x5{left:131.796000px;}
.x7{left:165.810000px;}
.x6{left:208.830000px;}
.x4{left:230.430000px;}
.x9{left:406.335000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.677333pt;}
.ls15{letter-spacing:-0.448533pt;}
.ls23{letter-spacing:-0.338667pt;}
.ls13{letter-spacing:-0.328533pt;}
.ls8{letter-spacing:-0.309867pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.061277pt;}
.ls22{letter-spacing:-0.051200pt;}
.ls24{letter-spacing:-0.041600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.020480pt;}
.lsf{letter-spacing:0.024960pt;}
.ls2{letter-spacing:0.040477pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.159467pt;}
.ls1c{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.278933pt;}
.ls1f{letter-spacing:0.279040pt;}
.ls21{letter-spacing:0.301333pt;}
.ls4{letter-spacing:0.301440pt;}
.ls11{letter-spacing:0.303360pt;}
.ls1a{letter-spacing:0.309867pt;}
.ls14{letter-spacing:0.311467pt;}
.lse{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.372480pt;}
.ls5{letter-spacing:0.416000pt;}
.ls1b{letter-spacing:0.420480pt;}
.ls0{letter-spacing:0.448000pt;}
.ls17{letter-spacing:0.455040pt;}
.lsb{letter-spacing:0.461440pt;}
.lsc{letter-spacing:0.770560pt;}
.ls10{letter-spacing:1.060480pt;}
.lsa{letter-spacing:3.904000pt;}
.ls26{letter-spacing:4.783360pt;}
.ls18{letter-spacing:8.900480pt;}
.ls1e{letter-spacing:13.103360pt;}
.ls25{letter-spacing:22.063360pt;}
.ls20{letter-spacing:33.583360pt;}
.ws5{word-spacing:-36.800000pt;}
.ws6{word-spacing:-36.384000pt;}
.ws1{word-spacing:-33.943914pt;}
.wsf{word-spacing:-32.570347pt;}
.wsd{word-spacing:-28.690987pt;}
.ws13{word-spacing:-28.680853pt;}
.ws9{word-spacing:-28.658453pt;}
.ws8{word-spacing:-28.538987pt;}
.ws7{word-spacing:-28.400000pt;}
.ws2{word-spacing:-28.379520pt;}
.ws16{word-spacing:-28.337920pt;}
.ws14{word-spacing:-28.328320pt;}
.wsc{word-spacing:-28.050987pt;}
.ws15{word-spacing:-28.040853pt;}
.wsa{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws11{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.327360pt;}
.ws10{word-spacing:-13.280000pt;}
.ws3{word-spacing:-0.074880pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-7.104000pt;}
._6{margin-left:-5.765760pt;}
._0{margin-left:-4.416000pt;}
._5{margin-left:-3.487787pt;}
._1{margin-left:-2.432000pt;}
._4{margin-left:-1.429333pt;}
._3{width:1.493333pt;}
._c{width:2.853973pt;}
._b{width:4.268160pt;}
._a{width:6.037120pt;}
._9{width:7.692587pt;}
._8{width:9.141973pt;}
._7{width:10.033920pt;}
._f{width:11.681280pt;}
._10{width:12.815360pt;}
._15{width:14.123947pt;}
._11{width:15.425280pt;}
._12{width:17.008640pt;}
._16{width:18.024320pt;}
._18{width:18.944640pt;}
._19{width:19.944107pt;}
._17{width:21.369813pt;}
._13{width:22.389120pt;}
._14{width:23.294293pt;}
._e{width:24.785280pt;}
._d{width:25.702187pt;}
._1a{width:26.608640pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:89.723461pt;}
.fs5{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:51.840000pt;}
.y3{bottom:69.920000pt;}
.y58{bottom:101.920000pt;}
.y22{bottom:104.000000pt;}
.y3f{bottom:106.080000pt;}
.y92{bottom:109.920000pt;}
.y70{bottom:112.480000pt;}
.y81{bottom:113.280000pt;}
.y100{bottom:113.440000pt;}
.ya6{bottom:116.480000pt;}
.y132{bottom:130.432000pt;}
.y57{bottom:131.232000pt;}
.y21{bottom:133.466667pt;}
.y3e{bottom:135.386667pt;}
.ybd{bottom:135.546667pt;}
.y91{bottom:139.386667pt;}
.y6f{bottom:141.946667pt;}
.y80{bottom:142.746667pt;}
.yd6{bottom:146.906667pt;}
.y119{bottom:152.986667pt;}
.y131{bottom:159.706667pt;}
.ya5{bottom:160.026667pt;}
.y56{bottom:160.666667pt;}
.y20{bottom:162.746667pt;}
.y90{bottom:168.666667pt;}
.y6e{bottom:171.226667pt;}
.y7f{bottom:172.026667pt;}
.yff{bottom:172.186667pt;}
.y3d{bottom:175.546667pt;}
.yd5{bottom:176.346667pt;}
.ybc{bottom:179.866667pt;}
.y118{bottom:182.426667pt;}
.y130{bottom:189.146667pt;}
.y55{bottom:189.946667pt;}
.y1f{bottom:193.466667pt;}
.y6d{bottom:200.666667pt;}
.y7e{bottom:201.466667pt;}
.yfe{bottom:201.626667pt;}
.ya4{bottom:202.426667pt;}
.yed{bottom:202.906667pt;}
.y3c{bottom:204.826667pt;}
.yd4{bottom:205.786667pt;}
.ybb{bottom:210.266667pt;}
.y117{bottom:211.706667pt;}
.y8f{bottom:212.986667pt;}
.y12f{bottom:218.426667pt;}
.y54{bottom:219.386667pt;}
.y6c{bottom:230.106667pt;}
.y7d{bottom:230.746667pt;}
.yfd{bottom:230.906667pt;}
.ya3{bottom:232.826667pt;}
.yec{bottom:236.346667pt;}
.y1e{bottom:237.466667pt;}
.y116{bottom:241.146667pt;}
.y3b{bottom:244.826667pt;}
.yd3{bottom:247.866667pt;}
.y53{bottom:248.666667pt;}
.yba{bottom:252.826667pt;}
.y8e{bottom:257.146667pt;}
.y6b{bottom:259.386667pt;}
.y7c{bottom:260.186667pt;}
.yfc{bottom:260.346667pt;}
.y1d{bottom:266.746667pt;}
.y115{bottom:270.426667pt;}
.y3a{bottom:274.266667pt;}
.ya2{bottom:276.186667pt;}
.y12e{bottom:277.306667pt;}
.y52{bottom:278.106667pt;}
.yeb{bottom:278.586667pt;}
.yb9{bottom:283.226667pt;}
.y8d{bottom:286.586667pt;}
.y7b{bottom:289.626667pt;}
.yd2{bottom:289.946667pt;}
.y1c{bottom:296.186667pt;}
.y114{bottom:299.866667pt;}
.y6a{bottom:303.706667pt;}
.y12d{bottom:306.586667pt;}
.yea{bottom:307.866667pt;}
.y39{bottom:314.266667pt;}
.y51{bottom:318.106667pt;}
.yd1{bottom:319.386667pt;}
.ya1{bottom:319.706667pt;}
.y1b{bottom:325.466667pt;}
.yb8{bottom:325.626667pt;}
.y8c{bottom:326.586667pt;}
.y113{bottom:329.146667pt;}
.y7a{bottom:329.626667pt;}
.yfb{bottom:333.946667pt;}
.y12c{bottom:336.026667pt;}
.ye9{bottom:337.306667pt;}
.y38{bottom:343.706667pt;}
.y50{bottom:347.586667pt;}
.y69{bottom:347.906667pt;}
.yd0{bottom:348.706667pt;}
.y1a{bottom:354.946667pt;}
.yb7{bottom:356.066667pt;}
.y8b{bottom:357.026667pt;}
.y112{bottom:358.626667pt;}
.y79{bottom:358.946667pt;}
.ya0{bottom:363.266667pt;}
.y12b{bottom:365.346667pt;}
.ye8{bottom:366.626667pt;}
.y37{bottom:373.026667pt;}
.y4f{bottom:376.866667pt;}
.y68{bottom:377.346667pt;}
.ycf{bottom:378.146667pt;}
.yfa{bottom:379.266667pt;}
.y19{bottom:384.226667pt;}
.y111{bottom:388.066667pt;}
.y78{bottom:388.386667pt;}
.y12a{bottom:394.786667pt;}
.ye7{bottom:396.066667pt;}
.yb6{bottom:398.466667pt;}
.y8a{bottom:399.426667pt;}
.y36{bottom:402.466667pt;}
.y4e{bottom:406.306667pt;}
.y67{bottom:406.626667pt;}
.yce{bottom:407.586667pt;}
.yf9{bottom:411.906667pt;}
.y110{bottom:417.346667pt;}
.y77{bottom:418.786667pt;}
.y129{bottom:424.066667pt;}
.y18{bottom:424.386667pt;}
.yb5{bottom:427.906667pt;}
.y89{bottom:429.826667pt;}
.y35{bottom:431.906667pt;}
.y66{bottom:436.066667pt;}
.ycd{bottom:436.866667pt;}
.ye6{bottom:438.146667pt;}
.y9f{bottom:438.466667pt;}
.yf8{bottom:444.706667pt;}
.y4d{bottom:446.306667pt;}
.y10f{bottom:446.786667pt;}
.y128{bottom:453.506667pt;}
.y17{bottom:453.666667pt;}
.y34{bottom:461.186667pt;}
.y65{bottom:465.346667pt;}
.y9e{bottom:467.746667pt;}
.ycc{bottom:468.386667pt;}
.yb4{bottom:468.866667pt;}
.y88{bottom:473.346667pt;}
.y4c{bottom:475.746667pt;}
.y10e{bottom:476.066667pt;}
.yf7{bottom:477.506667pt;}
.ye5{bottom:480.386667pt;}
.y127{bottom:482.946667pt;}
.y16{bottom:483.106667pt;}
.y33{bottom:490.626667pt;}
.y4b{bottom:505.026667pt;}
.y64{bottom:505.506667pt;}
.y9d{bottom:507.906667pt;}
.ye4{bottom:509.666667pt;}
.yf6{bottom:510.306667pt;}
.y126{bottom:512.226667pt;}
.y15{bottom:512.386667pt;}
.ycb{bottom:514.786667pt;}
.y87{bottom:515.746667pt;}
.y10d{bottom:518.306667pt;}
.y32{bottom:519.906667pt;}
.y4a{bottom:534.466667pt;}
.y63{bottom:534.786667pt;}
.y9c{bottom:537.186667pt;}
.ye3{bottom:539.106667pt;}
.y125{bottom:541.666667pt;}
.y14{bottom:541.826667pt;}
.yf5{bottom:544.226667pt;}
.y86{bottom:545.186667pt;}
.y31{bottom:549.346667pt;}
.y10c{bottom:549.666667pt;}
.yb3{bottom:558.946667pt;}
.y49{bottom:563.906667pt;}
.y62{bottom:564.226667pt;}
.ye2{bottom:568.386667pt;}
.y124{bottom:570.973333pt;}
.y13{bottom:571.293333pt;}
.y85{bottom:574.493333pt;}
.y9b{bottom:578.333333pt;}
.y30{bottom:578.653333pt;}
.y10b{bottom:579.133333pt;}
.yf4{bottom:586.333333pt;}
.yca{bottom:588.253333pt;}
.y76{bottom:589.373333pt;}
.y61{bottom:593.533333pt;}
.ye1{bottom:597.853333pt;}
.y123{bottom:600.413333pt;}
.y12{bottom:600.573333pt;}
.yb2{bottom:603.293333pt;}
.y48{bottom:606.013333pt;}
.y10a{bottom:608.573333pt;}
.y84{bottom:616.733333pt;}
.y2f{bottom:618.813333pt;}
.y9a{bottom:620.733333pt;}
.y60{bottom:622.973333pt;}
.ye0{bottom:627.133333pt;}
.yc9{bottom:628.413333pt;}
.y122{bottom:629.853333pt;}
.y11{bottom:630.013333pt;}
.yb1{bottom:633.693333pt;}
.y109{bottom:637.853333pt;}
.y2e{bottom:648.093333pt;}
.yf3{bottom:649.533333pt;}
.y99{bottom:651.133333pt;}
.yc8{bottom:657.693333pt;}
.y83{bottom:658.813333pt;}
.y121{bottom:659.133333pt;}
.y10{bottom:659.293333pt;}
.y5f{bottom:662.973333pt;}
.ydf{bottom:667.293333pt;}
.y108{bottom:668.253333pt;}
.yb0{bottom:676.093333pt;}
.y2d{bottom:677.533333pt;}
.yf2{bottom:681.373333pt;}
.y82{bottom:688.093333pt;}
.y120{bottom:688.573333pt;}
.yf{bottom:688.733333pt;}
.y5e{bottom:692.413333pt;}
.y98{bottom:694.653333pt;}
.yc7{bottom:697.693333pt;}
.y107{bottom:700.093333pt;}
.yaf{bottom:706.493333pt;}
.y47{bottom:706.813333pt;}
.yf1{bottom:711.773333pt;}
.y2c{bottom:717.533333pt;}
.y11f{bottom:717.853333pt;}
.ye{bottom:718.013333pt;}
.y5d{bottom:721.693333pt;}
.yc6{bottom:727.133333pt;}
.yde{bottom:729.373333pt;}
.y106{bottom:730.493333pt;}
.y46{bottom:736.253333pt;}
.y97{bottom:737.053333pt;}
.yf0{bottom:744.573333pt;}
.y2b{bottom:746.973333pt;}
.y11e{bottom:747.293333pt;}
.yae{bottom:748.893333pt;}
.y5c{bottom:751.133333pt;}
.ydd{bottom:759.773333pt;}
.y105{bottom:762.173333pt;}
.yd{bottom:762.333333pt;}
.y75{bottom:766.013333pt;}
.y96{bottom:766.333333pt;}
.yc5{bottom:767.133333pt;}
.y2a{bottom:776.253333pt;}
.y11d{bottom:776.573333pt;}
.yad{bottom:779.293333pt;}
.y5b{bottom:780.413333pt;}
.yef{bottom:791.173333pt;}
.ydc{bottom:791.653333pt;}
.yc{bottom:792.133333pt;}
.y104{bottom:792.613333pt;}
.y74{bottom:795.333333pt;}
.yc4{bottom:796.613333pt;}
.y95{bottom:796.773333pt;}
.y29{bottom:805.733333pt;}
.y11c{bottom:806.053333pt;}
.y5a{bottom:809.893333pt;}
.yb{bottom:818.533333pt;}
.yac{bottom:821.733333pt;}
.ydb{bottom:822.053333pt;}
.y103{bottom:824.453333pt;}
.y73{bottom:824.773333pt;}
.yc3{bottom:825.893333pt;}
.y11b{bottom:835.493333pt;}
.y94{bottom:841.413333pt;}
.ya{bottom:844.453333pt;}
.y28{bottom:845.733333pt;}
.y45{bottom:849.893333pt;}
.y59{bottom:851.973333pt;}
.yab{bottom:852.133333pt;}
.yda{bottom:853.733333pt;}
.y72{bottom:854.053333pt;}
.y102{bottom:854.853333pt;}
.y11a{bottom:864.773333pt;}
.y133{bottom:868.293333pt;}
.yc2{bottom:869.253333pt;}
.y27{bottom:875.173333pt;}
.y9{bottom:878.213333pt;}
.y71{bottom:883.493333pt;}
.yd9{bottom:884.133333pt;}
.y101{bottom:886.533333pt;}
.y44{bottom:894.213333pt;}
.yaa{bottom:894.533333pt;}
.yc1{bottom:903.493333pt;}
.y26{bottom:904.453333pt;}
.y8{bottom:910.213333pt;}
.y93{bottom:912.933333pt;}
.yd8{bottom:916.933333pt;}
.y43{bottom:923.493333pt;}
.ya9{bottom:923.973333pt;}
.y7{bottom:931.493333pt;}
.yc0{bottom:932.773333pt;}
.y25{bottom:933.893333pt;}
.yee{bottom:942.213333pt;}
.yd7{bottom:950.853333pt;}
.y42{bottom:952.933333pt;}
.y24{bottom:963.173333pt;}
.ya8{bottom:966.053333pt;}
.y6{bottom:967.493333pt;}
.ybf{bottom:975.013333pt;}
.y41{bottom:982.213333pt;}
.y5{bottom:1001.093333pt;}
.y23{bottom:1007.493333pt;}
.ybe{bottom:1007.813333pt;}
.ya7{bottom:1009.253333pt;}
.y40{bottom:1011.653333pt;}
.y2{bottom:1041.760000pt;}
.y1{bottom:1059.840000pt;}
.hf{height:35.404688pt;}
.h6{height:51.589687pt;}
.h9{height:58.187500pt;}
.hb{height:59.978880pt;}
.h4{height:62.812500pt;}
.h3{height:63.843750pt;}
.h2{height:64.500000pt;}
.hc{height:68.181120pt;}
.h8{height:71.868492pt;}
.hd{height:73.490625pt;}
.h7{height:75.465000pt;}
.ha{height:76.896000pt;}
.he{height:76.964840pt;}
.h5{height:102.528000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:86.560000pt;}
.xb{left:90.912000pt;}
.x1{left:96.032000pt;}
.x8{left:96.992000pt;}
.x2{left:98.112000pt;}
.x3{left:106.592000pt;}
.xa{left:114.912000pt;}
.x5{left:117.152000pt;}
.x7{left:147.386667pt;}
.x6{left:185.626667pt;}
.x4{left:204.826667pt;}
.x9{left:361.186667pt;}
}




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