
    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_88bdb1495e5289265cb60cbd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_664704235afb2e332311e41b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_a8d3304e1cdd30e95c905977.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_004cf1f48f43b941592ccb07.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_05e520eba37402ce6d95c63f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7ff338b10207dbef3b5cb70f.woff')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_53f7ad184f4a472d7bba6876.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_eb8e3cec459f42c1721f8c8e.woff')format("woff");}.ff9{font-family:ff9;line-height:2.885742;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_aae2069187c1f7d283c4122b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-133.200000px;}
.v4{vertical-align:-81.360000px;}
.v7{vertical-align:-78.480000px;}
.v3{vertical-align:-72.000000px;}
.vb{vertical-align:-38.160000px;}
.va{vertical-align:-22.320000px;}
.v2{vertical-align:-20.880000px;}
.v5{vertical-align:-5.760000px;}
.ve{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:15.120000px;}
.v1{vertical-align:30.240000px;}
.vd{vertical-align:33.840000px;}
.vf{vertical-align:35.280000px;}
.v8{vertical-align:48.240000px;}
.vc{vertical-align:52.560000px;}
.v9{vertical-align:54.720000px;}
.v11{vertical-align:101.520000px;}
.ls1c{letter-spacing:-1.656000px;}
.lsc{letter-spacing:-0.942000px;}
.lsb{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.245400px;}
.lsa{letter-spacing:-0.223800px;}
.ls3{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.063120px;}
.ls10{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.100800px;}
.lsd{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.192000px;}
.ls6{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.346800px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.ls9{letter-spacing:16.416000px;}
.ls1b{letter-spacing:31.824000px;}
.ls15{letter-spacing:33.984000px;}
.ls19{letter-spacing:36.305280px;}
.ls1{letter-spacing:41.040000px;}
.ls12{letter-spacing:59.112000px;}
.ls5{letter-spacing:64.026720px;}
.lsf{letter-spacing:75.096000px;}
.ls14{letter-spacing:162.971760px;}
.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;}
}
.wsd{word-spacing:-72.216000px;}
.wsb{word-spacing:-72.144000px;}
.ws4{word-spacing:-72.000000px;}
.ws12{word-spacing:-71.856000px;}
.wsc{word-spacing:-71.712000px;}
.ws15{word-spacing:-66.240000px;}
.ws5{word-spacing:-59.760000px;}
.ws11{word-spacing:-51.120000px;}
.ws10{word-spacing:-41.760000px;}
.wsf{word-spacing:-28.414800px;}
.ws6{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.ws14{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.ws16{word-spacing:-16.344000px;}
.ws2{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.500000px;}
.ws7{word-spacing:-11.836200px;}
.ws9{word-spacing:-11.118000px;}
.ws1{word-spacing:-9.720000px;}
.wsa{word-spacing:-4.104000px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:2.928000px;}
._2{margin-left:-7.992000px;}
._16{margin-left:-5.064000px;}
._f{margin-left:-4.056000px;}
._1{margin-left:-2.592000px;}
._3{margin-left:-1.404000px;}
._0{width:1.248000px;}
._5{width:2.560320px;}
._9{width:4.352160px;}
._8{width:5.677200px;}
._14{width:7.320000px;}
._4{width:8.964000px;}
._a{width:10.100400px;}
._b{width:11.447280px;}
._1a{width:12.703680px;}
._e{width:13.864320px;}
._1b{width:15.552000px;}
._17{width:16.560000px;}
._6{width:18.711840px;}
._7{width:19.824240px;}
._c{width:21.563760px;}
._d{width:22.700160px;}
._15{width:23.963520px;}
._1c{width:25.068480px;}
._13{width:26.496000px;}
._12{width:27.624000px;}
._18{width:29.496000px;}
._19{width:31.008000px;}
._36{width:32.256000px;}
._1f{width:33.336000px;}
._20{width:34.416000px;}
._1d{width:35.796000px;}
._1e{width:36.840000px;}
._10{width:38.304000px;}
._11{width:39.420000px;}
._2f{width:41.081760px;}
._39{width:42.102240px;}
._3a{width:43.164480px;}
._3f{width:44.747520px;}
._2a{width:47.509920px;}
._29{width:49.481280px;}
._33{width:53.238240px;}
._22{width:54.324000px;}
._40{width:55.728000px;}
._23{width:57.888000px;}
._24{width:59.112000px;}
._2c{width:60.874560px;}
._34{width:62.994240px;}
._44{width:64.080000px;}
._45{width:65.136000px;}
._3e{width:66.960000px;}
._28{width:69.154560px;}
._35{width:76.278720px;}
._3c{width:103.536000px;}
._3b{width:104.580000px;}
._30{width:115.222080px;}
._47{width:122.400000px;}
._48{width:123.456000px;}
._3d{width:129.384000px;}
._27{width:147.240000px;}
._2e{width:155.001600px;}
._31{width:159.487200px;}
._25{width:187.200000px;}
._2d{width:202.230720px;}
._37{width:219.216000px;}
._38{width:220.344000px;}
._46{width:224.424000px;}
._43{width:231.624000px;}
._42{width:252.720000px;}
._2b{width:259.876800px;}
._26{width:286.320000px;}
._32{width:316.542240px;}
._41{width:373.824000px;}
._21{width:906.211680px;}
.fc3{color:rgb(31,73,125);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.y39{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:3.960000px;}
.ybd{bottom:4.140000px;}
.yc9{bottom:4.485000px;}
.y4{bottom:4.500000px;}
.yc4{bottom:4.530000px;}
.ye6{bottom:21.780000px;}
.yed{bottom:22.500000px;}
.yef{bottom:22.680000px;}
.ye1{bottom:22.860000px;}
.yd5{bottom:23.040000px;}
.yea{bottom:23.220000px;}
.ybc{bottom:24.840000px;}
.yc2{bottom:24.870000px;}
.yc8{bottom:25.185000px;}
.ybf{bottom:25.200000px;}
.yc3{bottom:25.230000px;}
.yda{bottom:41.580000px;}
.yd8{bottom:41.940000px;}
.yd4{bottom:42.120000px;}
.yde{bottom:43.020000px;}
.ye9{bottom:43.200000px;}
.ye0{bottom:44.640000px;}
.yc6{bottom:45.525000px;}
.yc7{bottom:45.885000px;}
.y3{bottom:52.200000px;}
.y2{bottom:56.880000px;}
.yd6{bottom:60.480000px;}
.yd2{bottom:60.660000px;}
.yd7{bottom:61.020000px;}
.yd3{bottom:61.200000px;}
.yf3{bottom:61.740000px;}
.ydd{bottom:62.100000px;}
.ye8{bottom:62.280000px;}
.ydc{bottom:63.180000px;}
.ydf{bottom:63.720000px;}
.yf1{bottom:80.640000px;}
.ye5{bottom:81.180000px;}
.ye7{bottom:82.260000px;}
.y77{bottom:100.656000px;}
.ye3{bottom:100.800000px;}
.ye4{bottom:101.340000px;}
.y120{bottom:103.536000px;}
.y109{bottom:105.336000px;}
.y99{bottom:105.876000px;}
.yff{bottom:108.576000px;}
.y37{bottom:115.416000px;}
.y76{bottom:121.356000px;}
.y11f{bottom:124.236000px;}
.y108{bottom:126.036000px;}
.y98{bottom:126.576000px;}
.yfe{bottom:129.276000px;}
.y6a{bottom:132.516000px;}
.y36{bottom:136.116000px;}
.y75{bottom:142.056000px;}
.y11e{bottom:144.936000px;}
.y107{bottom:146.736000px;}
.y97{bottom:147.276000px;}
.y69{bottom:148.896000px;}
.yfd{bottom:149.976000px;}
.y35{bottom:156.810000px;}
.y74{bottom:162.750000px;}
.yce{bottom:163.290000px;}
.y11d{bottom:165.630000px;}
.y106{bottom:167.430000px;}
.y96{bottom:167.970000px;}
.yfc{bottom:170.670000px;}
.y34{bottom:177.510000px;}
.y73{bottom:183.450000px;}
.ycd{bottom:183.990000px;}
.y60{bottom:186.330000px;}
.y95{bottom:188.130000px;}
.yfb{bottom:191.370000px;}
.y33{bottom:198.210000px;}
.y94{bottom:200.190000px;}
.y72{bottom:204.150000px;}
.ycc{bottom:204.690000px;}
.y5f{bottom:207.030000px;}
.y105{bottom:208.830000px;}
.yfa{bottom:212.070000px;}
.y32{bottom:218.910000px;}
.y71{bottom:224.670000px;}
.y7e{bottom:224.850000px;}
.ycb{bottom:225.390000px;}
.y5e{bottom:227.730000px;}
.y104{bottom:229.170000px;}
.y10e{bottom:229.530000px;}
.yf9{bottom:232.410000px;}
.y93{bottom:232.770000px;}
.y31{bottom:239.610000px;}
.y7d{bottom:245.550000px;}
.yca{bottom:246.090000px;}
.y11c{bottom:248.430000px;}
.y10d{bottom:249.870000px;}
.y103{bottom:250.230000px;}
.y5d{bottom:252.570000px;}
.yf8{bottom:252.750000px;}
.y92{bottom:253.830000px;}
.y30{bottom:260.310000px;}
.yc5{bottom:263.025000px;}
.y70{bottom:265.710000px;}
.y7c{bottom:266.250000px;}
.y11b{bottom:269.130000px;}
.yf7{bottom:270.750000px;}
.y102{bottom:270.930000px;}
.y91{bottom:274.530000px;}
.y2f{bottom:281.010000px;}
.y6f{bottom:286.770000px;}
.y7b{bottom:286.950000px;}
.y11a{bottom:289.830000px;}
.yf6{bottom:291.450000px;}
.y5c{bottom:291.630000px;}
.y90{bottom:294.870000px;}
.y2e{bottom:301.710000px;}
.y6e{bottom:302.970000px;}
.y7a{bottom:307.650000px;}
.y119{bottom:310.530000px;}
.yf5{bottom:312.150000px;}
.y5b{bottom:312.330000px;}
.y8f{bottom:315.570000px;}
.y2d{bottom:322.410000px;}
.yc1{bottom:325.845000px;}
.y79{bottom:328.395000px;}
.y118{bottom:331.275000px;}
.yf4{bottom:332.895000px;}
.y5a{bottom:333.075000px;}
.y8e{bottom:336.675000px;}
.y2c{bottom:343.155000px;}
.y78{bottom:344.595000px;}
.yf2{bottom:349.815000px;}
.y117{bottom:351.975000px;}
.y59{bottom:353.775000px;}
.y8d{bottom:356.655000px;}
.y2b{bottom:363.855000px;}
.yc0{bottom:367.995000px;}
.y116{bottom:372.675000px;}
.y58{bottom:374.475000px;}
.y2a{bottom:388.695000px;}
.y115{bottom:393.375000px;}
.y101{bottom:394.815000px;}
.y57{bottom:395.175000px;}
.y8c{bottom:402.015000px;}
.ybe{bottom:410.115000px;}
.y114{bottom:413.895000px;}
.y100{bottom:415.515000px;}
.y56{bottom:415.875000px;}
.y8b{bottom:422.355000px;}
.yf0{bottom:428.835000px;}
.y29{bottom:429.195000px;}
.y113{bottom:434.595000px;}
.y55{bottom:436.395000px;}
.y8a{bottom:444.675000px;}
.y28{bottom:446.475000px;}
.ybb{bottom:452.235000px;}
.y125{bottom:455.295000px;}
.y54{bottom:457.095000px;}
.y112{bottom:459.435000px;}
.y27{bottom:463.755000px;}
.y89{bottom:470.955000px;}
.y124{bottom:475.995000px;}
.y53{bottom:477.795000px;}
.y26{bottom:481.035000px;}
.y88{bottom:491.655000px;}
.y123{bottom:496.695000px;}
.y25{bottom:498.315000px;}
.y52{bottom:498.495000px;}
.y87{bottom:512.355000px;}
.yba{bottom:512.715000px;}
.y24{bottom:515.595000px;}
.y122{bottom:517.395000px;}
.y51{bottom:519.195000px;}
.yee{bottom:526.755000px;}
.yb9{bottom:529.095000px;}
.y23{bottom:532.695000px;}
.y86{bottom:533.055000px;}
.y132{bottom:538.095000px;}
.y50{bottom:539.895000px;}
.y121{bottom:542.235000px;}
.y22{bottom:549.975000px;}
.yb8{bottom:550.155000px;}
.y85{bottom:553.755000px;}
.y131{bottom:558.795000px;}
.y4f{bottom:560.595000px;}
.yec{bottom:566.715000px;}
.y21{bottom:567.255000px;}
.yb7{bottom:570.855000px;}
.y84{bottom:575.715000px;}
.y130{bottom:579.495000px;}
.y4e{bottom:581.295000px;}
.y20{bottom:584.535000px;}
.yb6{bottom:591.555000px;}
.y12f{bottom:600.225000px;}
.y83{bottom:601.665000px;}
.y1f{bottom:601.845000px;}
.y4d{bottom:602.025000px;}
.yeb{bottom:606.525000px;}
.yb5{bottom:612.285000px;}
.y1e{bottom:619.125000px;}
.y12e{bottom:620.925000px;}
.y4c{bottom:622.725000px;}
.yb4{bottom:632.985000px;}
.y1d{bottom:636.225000px;}
.y12d{bottom:641.625000px;}
.y82{bottom:643.065000px;}
.y4b{bottom:643.425000px;}
.y1c{bottom:653.505000px;}
.yb3{bottom:653.685000px;}
.y12c{bottom:662.325000px;}
.y81{bottom:663.765000px;}
.y4a{bottom:664.125000px;}
.ye2{bottom:665.385000px;}
.y1b{bottom:670.785000px;}
.yb2{bottom:674.025000px;}
.y12b{bottom:683.025000px;}
.y49{bottom:684.825000px;}
.y1a{bottom:688.065000px;}
.yb1{bottom:695.085000px;}
.y12a{bottom:703.725000px;}
.y80{bottom:705.165000px;}
.y48{bottom:705.525000px;}
.yb0{bottom:715.785000px;}
.y19{bottom:723.345000px;}
.y129{bottom:724.425000px;}
.y47{bottom:726.225000px;}
.yaf{bottom:736.485000px;}
.y18{bottom:742.965000px;}
.y128{bottom:745.125000px;}
.y10c{bottom:746.565000px;}
.y46{bottom:746.925000px;}
.yae{bottom:757.185000px;}
.y17{bottom:761.325000px;}
.y45{bottom:767.625000px;}
.y127{bottom:769.965000px;}
.yad{bottom:777.885000px;}
.ydb{bottom:783.645000px;}
.y16{bottom:784.725000px;}
.y44{bottom:788.325000px;}
.yac{bottom:796.785000px;}
.y15{bottom:805.605000px;}
.y7f{bottom:808.665000px;}
.y43{bottom:809.025000px;}
.yaa{bottom:816.585000px;}
.y14{bottom:825.585000px;}
.ya9{bottom:828.645000px;}
.y126{bottom:829.365000px;}
.y42{bottom:829.725000px;}
.y13{bottom:842.865000px;}
.y41{bottom:850.425000px;}
.y6d{bottom:851.685000px;}
.y68{bottom:860.865000px;}
.yab{bottom:864.150000px;}
.y12{bottom:865.410000px;}
.y111{bottom:870.810000px;}
.y40{bottom:871.170000px;}
.y6c{bottom:872.070000px;}
.y11{bottom:877.290000px;}
.ya8{bottom:879.990000px;}
.y67{bottom:881.610000px;}
.y3f{bottom:891.870000px;}
.y6b{bottom:894.210000px;}
.y10{bottom:894.570000px;}
.ya7{bottom:900.690000px;}
.y66{bottom:902.310000px;}
.y3e{bottom:912.570000px;}
.yf{bottom:917.070000px;}
.ya6{bottom:921.030000px;}
.y65{bottom:923.010000px;}
.ye{bottom:930.030000px;}
.y3d{bottom:933.270000px;}
.ya5{bottom:942.090000px;}
.y64{bottom:943.710000px;}
.yd{bottom:953.970000px;}
.y63{bottom:964.410000px;}
.ya4{bottom:966.750000px;}
.y3c{bottom:974.670000px;}
.yc{bottom:976.290000px;}
.y62{bottom:985.110000px;}
.ya3{bottom:987.990000px;}
.ya1{bottom:992.310000px;}
.y110{bottom:995.010000px;}
.y3b{bottom:995.370000px;}
.yd1{bottom:1000.770000px;}
.y61{bottom:1001.310000px;}
.yb{bottom:1007.250000px;}
.ya2{bottom:1008.330000px;}
.y9e{bottom:1013.370000px;}
.y10b{bottom:1015.710000px;}
.y3a{bottom:1016.070000px;}
.y9f{bottom:1022.910000px;}
.y10a{bottom:1036.410000px;}
.ya{bottom:1036.770000px;}
.ya0{bottom:1043.250000px;}
.y9d{bottom:1057.110000px;}
.y9{bottom:1057.470000px;}
.y38{bottom:1077.090000px;}
.y9c{bottom:1077.810000px;}
.y8{bottom:1078.170000px;}
.yd0{bottom:1078.710000px;}
.y9b{bottom:1098.510000px;}
.y7{bottom:1098.870000px;}
.y9a{bottom:1119.210000px;}
.ycf{bottom:1119.390000px;}
.y6{bottom:1119.570000px;}
.y10f{bottom:1139.940000px;}
.y5{bottom:1140.300000px;}
.y1{bottom:1193.760000px;}
.h1a{height:20.685000px;}
.h3{height:20.736000px;}
.h7{height:38.139609px;}
.h23{height:39.090000px;}
.h24{height:39.225000px;}
.h17{height:41.385000px;}
.h18{height:41.421000px;}
.h16{height:52.971680px;}
.h1f{height:58.125000px;}
.h22{height:58.140000px;}
.h8{height:58.621992px;}
.ha{height:58.651172px;}
.h9{height:60.226875px;}
.h19{height:62.085000px;}
.h27{height:63.175781px;}
.h1d{height:65.010937px;}
.h1c{height:68.084282px;}
.hd{height:70.628906px;}
.h2{height:70.664062px;}
.h12{height:72.182812px;}
.hb{height:72.562500px;}
.h15{height:74.004654px;}
.h4{height:76.201172px;}
.h1e{height:77.025000px;}
.h1b{height:77.205000px;}
.h26{height:78.285000px;}
.h20{height:79.762500px;}
.he{height:84.023789px;}
.h6{height:84.898125px;}
.hc{height:87.510000px;}
.h14{height:88.361719px;}
.h25{height:97.185000px;}
.h5{height:108.843750px;}
.h21{height:117.360000px;}
.hf{height:124.453125px;}
.h11{height:141.013125px;}
.h13{height:174.082500px;}
.h10{height:179.173125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:9.180000px;}
.wb{width:18.180000px;}
.w4{width:101.151000px;}
.w8{width:136.971000px;}
.w7{width:146.181000px;}
.w3{width:164.685000px;}
.w6{width:192.990000px;}
.w5{width:193.875000px;}
.wa{width:232.755000px;}
.w9{width:265.200000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:7.551000px;}
.x28{left:10.425000px;}
.x29{left:31.710000px;}
.x2{left:127.476000px;}
.x1{left:133.776000px;}
.x4{left:138.276000px;}
.xd{left:142.236000px;}
.xa{left:144.756000px;}
.x7{left:146.196000px;}
.xf{left:153.900000px;}
.x13{left:180.570000px;}
.x1c{left:192.270000px;}
.x5{left:227.550000px;}
.x23{left:230.265000px;}
.x26{left:266.085000px;}
.x9{left:310.035000px;}
.xb{left:331.275000px;}
.xc{left:353.055000px;}
.x1d{left:380.235000px;}
.x16{left:384.195000px;}
.x14{left:387.975000px;}
.x8{left:391.575000px;}
.x17{left:396.615000px;}
.x24{left:424.875000px;}
.x20{left:437.655000px;}
.x1f{left:439.095000px;}
.x3{left:441.975000px;}
.x19{left:443.235000px;}
.x6{left:446.475000px;}
.x15{left:454.395000px;}
.x1b{left:456.015000px;}
.x1e{left:462.675000px;}
.x18{left:475.305000px;}
.x1a{left:488.985000px;}
.x21{left:512.745000px;}
.x27{left:532.020000px;}
.x25{left:618.600000px;}
.xe{left:664.890000px;}
.x11{left:791.250000px;}
.x12{left:802.590000px;}
.x10{left:829.590000px;}
@media print{
.v6{vertical-align:-118.400000pt;}
.v4{vertical-align:-72.320000pt;}
.v7{vertical-align:-69.760000pt;}
.v3{vertical-align:-64.000000pt;}
.vb{vertical-align:-33.920000pt;}
.va{vertical-align:-19.840000pt;}
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.120000pt;}
.ve{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:13.440000pt;}
.v1{vertical-align:26.880000pt;}
.vd{vertical-align:30.080000pt;}
.vf{vertical-align:31.360000pt;}
.v8{vertical-align:42.880000pt;}
.vc{vertical-align:46.720000pt;}
.v9{vertical-align:48.640000pt;}
.v11{vertical-align:90.240000pt;}
.ls1c{letter-spacing:-1.472000pt;}
.lsc{letter-spacing:-0.837333pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.218133pt;}
.lsa{letter-spacing:-0.198933pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.056107pt;}
.ls10{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.089600pt;}
.lsd{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.170667pt;}
.ls6{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.308267pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls9{letter-spacing:14.592000pt;}
.ls1b{letter-spacing:28.288000pt;}
.ls15{letter-spacing:30.208000pt;}
.ls19{letter-spacing:32.271360pt;}
.ls1{letter-spacing:36.480000pt;}
.ls12{letter-spacing:52.544000pt;}
.ls5{letter-spacing:56.912640pt;}
.lsf{letter-spacing:66.752000pt;}
.ls14{letter-spacing:144.863787pt;}
.wsd{word-spacing:-64.192000pt;}
.wsb{word-spacing:-64.128000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws12{word-spacing:-63.872000pt;}
.wsc{word-spacing:-63.744000pt;}
.ws15{word-spacing:-58.880000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws11{word-spacing:-45.440000pt;}
.ws10{word-spacing:-37.120000pt;}
.wsf{word-spacing:-25.257600pt;}
.ws6{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.ws14{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws16{word-spacing:-14.528000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws7{word-spacing:-10.521067pt;}
.ws9{word-spacing:-9.882667pt;}
.ws1{word-spacing:-8.640000pt;}
.wsa{word-spacing:-3.648000pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:2.602667pt;}
._2{margin-left:-7.104000pt;}
._16{margin-left:-4.501333pt;}
._f{margin-left:-3.605333pt;}
._1{margin-left:-2.304000pt;}
._3{margin-left:-1.248000pt;}
._0{width:1.109333pt;}
._5{width:2.275840pt;}
._9{width:3.868587pt;}
._8{width:5.046400pt;}
._14{width:6.506667pt;}
._4{width:7.968000pt;}
._a{width:8.978133pt;}
._b{width:10.175360pt;}
._1a{width:11.292160pt;}
._e{width:12.323840pt;}
._1b{width:13.824000pt;}
._17{width:14.720000pt;}
._6{width:16.632747pt;}
._7{width:17.621547pt;}
._c{width:19.167787pt;}
._d{width:20.177920pt;}
._15{width:21.300907pt;}
._1c{width:22.283093pt;}
._13{width:23.552000pt;}
._12{width:24.554667pt;}
._18{width:26.218667pt;}
._19{width:27.562667pt;}
._36{width:28.672000pt;}
._1f{width:29.632000pt;}
._20{width:30.592000pt;}
._1d{width:31.818667pt;}
._1e{width:32.746667pt;}
._10{width:34.048000pt;}
._11{width:35.040000pt;}
._2f{width:36.517120pt;}
._39{width:37.424213pt;}
._3a{width:38.368427pt;}
._3f{width:39.775573pt;}
._2a{width:42.231040pt;}
._29{width:43.983360pt;}
._33{width:47.322880pt;}
._22{width:48.288000pt;}
._40{width:49.536000pt;}
._23{width:51.456000pt;}
._24{width:52.544000pt;}
._2c{width:54.110720pt;}
._34{width:55.994880pt;}
._44{width:56.960000pt;}
._45{width:57.898667pt;}
._3e{width:59.520000pt;}
._28{width:61.470720pt;}
._35{width:67.803307pt;}
._3c{width:92.032000pt;}
._3b{width:92.960000pt;}
._30{width:102.419627pt;}
._47{width:108.800000pt;}
._48{width:109.738667pt;}
._3d{width:115.008000pt;}
._27{width:130.880000pt;}
._2e{width:137.779200pt;}
._31{width:141.766400pt;}
._25{width:166.400000pt;}
._2d{width:179.760640pt;}
._37{width:194.858667pt;}
._38{width:195.861333pt;}
._46{width:199.488000pt;}
._43{width:205.888000pt;}
._42{width:224.640000pt;}
._2b{width:231.001600pt;}
._26{width:254.506667pt;}
._32{width:281.370880pt;}
._41{width:332.288000pt;}
._21{width:805.521493pt;}
.fs4{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.y39{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:3.520000pt;}
.ybd{bottom:3.680000pt;}
.yc9{bottom:3.986667pt;}
.y4{bottom:4.000000pt;}
.yc4{bottom:4.026667pt;}
.ye6{bottom:19.360000pt;}
.yed{bottom:20.000000pt;}
.yef{bottom:20.160000pt;}
.ye1{bottom:20.320000pt;}
.yd5{bottom:20.480000pt;}
.yea{bottom:20.640000pt;}
.ybc{bottom:22.080000pt;}
.yc2{bottom:22.106667pt;}
.yc8{bottom:22.386667pt;}
.ybf{bottom:22.400000pt;}
.yc3{bottom:22.426667pt;}
.yda{bottom:36.960000pt;}
.yd8{bottom:37.280000pt;}
.yd4{bottom:37.440000pt;}
.yde{bottom:38.240000pt;}
.ye9{bottom:38.400000pt;}
.ye0{bottom:39.680000pt;}
.yc6{bottom:40.466667pt;}
.yc7{bottom:40.786667pt;}
.y3{bottom:46.400000pt;}
.y2{bottom:50.560000pt;}
.yd6{bottom:53.760000pt;}
.yd2{bottom:53.920000pt;}
.yd7{bottom:54.240000pt;}
.yd3{bottom:54.400000pt;}
.yf3{bottom:54.880000pt;}
.ydd{bottom:55.200000pt;}
.ye8{bottom:55.360000pt;}
.ydc{bottom:56.160000pt;}
.ydf{bottom:56.640000pt;}
.yf1{bottom:71.680000pt;}
.ye5{bottom:72.160000pt;}
.ye7{bottom:73.120000pt;}
.y77{bottom:89.472000pt;}
.ye3{bottom:89.600000pt;}
.ye4{bottom:90.080000pt;}
.y120{bottom:92.032000pt;}
.y109{bottom:93.632000pt;}
.y99{bottom:94.112000pt;}
.yff{bottom:96.512000pt;}
.y37{bottom:102.592000pt;}
.y76{bottom:107.872000pt;}
.y11f{bottom:110.432000pt;}
.y108{bottom:112.032000pt;}
.y98{bottom:112.512000pt;}
.yfe{bottom:114.912000pt;}
.y6a{bottom:117.792000pt;}
.y36{bottom:120.992000pt;}
.y75{bottom:126.272000pt;}
.y11e{bottom:128.832000pt;}
.y107{bottom:130.432000pt;}
.y97{bottom:130.912000pt;}
.y69{bottom:132.352000pt;}
.yfd{bottom:133.312000pt;}
.y35{bottom:139.386667pt;}
.y74{bottom:144.666667pt;}
.yce{bottom:145.146667pt;}
.y11d{bottom:147.226667pt;}
.y106{bottom:148.826667pt;}
.y96{bottom:149.306667pt;}
.yfc{bottom:151.706667pt;}
.y34{bottom:157.786667pt;}
.y73{bottom:163.066667pt;}
.ycd{bottom:163.546667pt;}
.y60{bottom:165.626667pt;}
.y95{bottom:167.226667pt;}
.yfb{bottom:170.106667pt;}
.y33{bottom:176.186667pt;}
.y94{bottom:177.946667pt;}
.y72{bottom:181.466667pt;}
.ycc{bottom:181.946667pt;}
.y5f{bottom:184.026667pt;}
.y105{bottom:185.626667pt;}
.yfa{bottom:188.506667pt;}
.y32{bottom:194.586667pt;}
.y71{bottom:199.706667pt;}
.y7e{bottom:199.866667pt;}
.ycb{bottom:200.346667pt;}
.y5e{bottom:202.426667pt;}
.y104{bottom:203.706667pt;}
.y10e{bottom:204.026667pt;}
.yf9{bottom:206.586667pt;}
.y93{bottom:206.906667pt;}
.y31{bottom:212.986667pt;}
.y7d{bottom:218.266667pt;}
.yca{bottom:218.746667pt;}
.y11c{bottom:220.826667pt;}
.y10d{bottom:222.106667pt;}
.y103{bottom:222.426667pt;}
.y5d{bottom:224.506667pt;}
.yf8{bottom:224.666667pt;}
.y92{bottom:225.626667pt;}
.y30{bottom:231.386667pt;}
.yc5{bottom:233.800000pt;}
.y70{bottom:236.186667pt;}
.y7c{bottom:236.666667pt;}
.y11b{bottom:239.226667pt;}
.yf7{bottom:240.666667pt;}
.y102{bottom:240.826667pt;}
.y91{bottom:244.026667pt;}
.y2f{bottom:249.786667pt;}
.y6f{bottom:254.906667pt;}
.y7b{bottom:255.066667pt;}
.y11a{bottom:257.626667pt;}
.yf6{bottom:259.066667pt;}
.y5c{bottom:259.226667pt;}
.y90{bottom:262.106667pt;}
.y2e{bottom:268.186667pt;}
.y6e{bottom:269.306667pt;}
.y7a{bottom:273.466667pt;}
.y119{bottom:276.026667pt;}
.yf5{bottom:277.466667pt;}
.y5b{bottom:277.626667pt;}
.y8f{bottom:280.506667pt;}
.y2d{bottom:286.586667pt;}
.yc1{bottom:289.640000pt;}
.y79{bottom:291.906667pt;}
.y118{bottom:294.466667pt;}
.yf4{bottom:295.906667pt;}
.y5a{bottom:296.066667pt;}
.y8e{bottom:299.266667pt;}
.y2c{bottom:305.026667pt;}
.y78{bottom:306.306667pt;}
.yf2{bottom:310.946667pt;}
.y117{bottom:312.866667pt;}
.y59{bottom:314.466667pt;}
.y8d{bottom:317.026667pt;}
.y2b{bottom:323.426667pt;}
.yc0{bottom:327.106667pt;}
.y116{bottom:331.266667pt;}
.y58{bottom:332.866667pt;}
.y2a{bottom:345.506667pt;}
.y115{bottom:349.666667pt;}
.y101{bottom:350.946667pt;}
.y57{bottom:351.266667pt;}
.y8c{bottom:357.346667pt;}
.ybe{bottom:364.546667pt;}
.y114{bottom:367.906667pt;}
.y100{bottom:369.346667pt;}
.y56{bottom:369.666667pt;}
.y8b{bottom:375.426667pt;}
.yf0{bottom:381.186667pt;}
.y29{bottom:381.506667pt;}
.y113{bottom:386.306667pt;}
.y55{bottom:387.906667pt;}
.y8a{bottom:395.266667pt;}
.y28{bottom:396.866667pt;}
.ybb{bottom:401.986667pt;}
.y125{bottom:404.706667pt;}
.y54{bottom:406.306667pt;}
.y112{bottom:408.386667pt;}
.y27{bottom:412.226667pt;}
.y89{bottom:418.626667pt;}
.y124{bottom:423.106667pt;}
.y53{bottom:424.706667pt;}
.y26{bottom:427.586667pt;}
.y88{bottom:437.026667pt;}
.y123{bottom:441.506667pt;}
.y25{bottom:442.946667pt;}
.y52{bottom:443.106667pt;}
.y87{bottom:455.426667pt;}
.yba{bottom:455.746667pt;}
.y24{bottom:458.306667pt;}
.y122{bottom:459.906667pt;}
.y51{bottom:461.506667pt;}
.yee{bottom:468.226667pt;}
.yb9{bottom:470.306667pt;}
.y23{bottom:473.506667pt;}
.y86{bottom:473.826667pt;}
.y132{bottom:478.306667pt;}
.y50{bottom:479.906667pt;}
.y121{bottom:481.986667pt;}
.y22{bottom:488.866667pt;}
.yb8{bottom:489.026667pt;}
.y85{bottom:492.226667pt;}
.y131{bottom:496.706667pt;}
.y4f{bottom:498.306667pt;}
.yec{bottom:503.746667pt;}
.y21{bottom:504.226667pt;}
.yb7{bottom:507.426667pt;}
.y84{bottom:511.746667pt;}
.y130{bottom:515.106667pt;}
.y4e{bottom:516.706667pt;}
.y20{bottom:519.586667pt;}
.yb6{bottom:525.826667pt;}
.y12f{bottom:533.533333pt;}
.y83{bottom:534.813333pt;}
.y1f{bottom:534.973333pt;}
.y4d{bottom:535.133333pt;}
.yeb{bottom:539.133333pt;}
.yb5{bottom:544.253333pt;}
.y1e{bottom:550.333333pt;}
.y12e{bottom:551.933333pt;}
.y4c{bottom:553.533333pt;}
.yb4{bottom:562.653333pt;}
.y1d{bottom:565.533333pt;}
.y12d{bottom:570.333333pt;}
.y82{bottom:571.613333pt;}
.y4b{bottom:571.933333pt;}
.y1c{bottom:580.893333pt;}
.yb3{bottom:581.053333pt;}
.y12c{bottom:588.733333pt;}
.y81{bottom:590.013333pt;}
.y4a{bottom:590.333333pt;}
.ye2{bottom:591.453333pt;}
.y1b{bottom:596.253333pt;}
.yb2{bottom:599.133333pt;}
.y12b{bottom:607.133333pt;}
.y49{bottom:608.733333pt;}
.y1a{bottom:611.613333pt;}
.yb1{bottom:617.853333pt;}
.y12a{bottom:625.533333pt;}
.y80{bottom:626.813333pt;}
.y48{bottom:627.133333pt;}
.yb0{bottom:636.253333pt;}
.y19{bottom:642.973333pt;}
.y129{bottom:643.933333pt;}
.y47{bottom:645.533333pt;}
.yaf{bottom:654.653333pt;}
.y18{bottom:660.413333pt;}
.y128{bottom:662.333333pt;}
.y10c{bottom:663.613333pt;}
.y46{bottom:663.933333pt;}
.yae{bottom:673.053333pt;}
.y17{bottom:676.733333pt;}
.y45{bottom:682.333333pt;}
.y127{bottom:684.413333pt;}
.yad{bottom:691.453333pt;}
.ydb{bottom:696.573333pt;}
.y16{bottom:697.533333pt;}
.y44{bottom:700.733333pt;}
.yac{bottom:708.253333pt;}
.y15{bottom:716.093333pt;}
.y7f{bottom:718.813333pt;}
.y43{bottom:719.133333pt;}
.yaa{bottom:725.853333pt;}
.y14{bottom:733.853333pt;}
.ya9{bottom:736.573333pt;}
.y126{bottom:737.213333pt;}
.y42{bottom:737.533333pt;}
.y13{bottom:749.213333pt;}
.y41{bottom:755.933333pt;}
.y6d{bottom:757.053333pt;}
.y68{bottom:765.213333pt;}
.yab{bottom:768.133333pt;}
.y12{bottom:769.253333pt;}
.y111{bottom:774.053333pt;}
.y40{bottom:774.373333pt;}
.y6c{bottom:775.173333pt;}
.y11{bottom:779.813333pt;}
.ya8{bottom:782.213333pt;}
.y67{bottom:783.653333pt;}
.y3f{bottom:792.773333pt;}
.y6b{bottom:794.853333pt;}
.y10{bottom:795.173333pt;}
.ya7{bottom:800.613333pt;}
.y66{bottom:802.053333pt;}
.y3e{bottom:811.173333pt;}
.yf{bottom:815.173333pt;}
.ya6{bottom:818.693333pt;}
.y65{bottom:820.453333pt;}
.ye{bottom:826.693333pt;}
.y3d{bottom:829.573333pt;}
.ya5{bottom:837.413333pt;}
.y64{bottom:838.853333pt;}
.yd{bottom:847.973333pt;}
.y63{bottom:857.253333pt;}
.ya4{bottom:859.333333pt;}
.y3c{bottom:866.373333pt;}
.yc{bottom:867.813333pt;}
.y62{bottom:875.653333pt;}
.ya3{bottom:878.213333pt;}
.ya1{bottom:882.053333pt;}
.y110{bottom:884.453333pt;}
.y3b{bottom:884.773333pt;}
.yd1{bottom:889.573333pt;}
.y61{bottom:890.053333pt;}
.yb{bottom:895.333333pt;}
.ya2{bottom:896.293333pt;}
.y9e{bottom:900.773333pt;}
.y10b{bottom:902.853333pt;}
.y3a{bottom:903.173333pt;}
.y9f{bottom:909.253333pt;}
.y10a{bottom:921.253333pt;}
.ya{bottom:921.573333pt;}
.ya0{bottom:927.333333pt;}
.y9d{bottom:939.653333pt;}
.y9{bottom:939.973333pt;}
.y38{bottom:957.413333pt;}
.y9c{bottom:958.053333pt;}
.y8{bottom:958.373333pt;}
.yd0{bottom:958.853333pt;}
.y9b{bottom:976.453333pt;}
.y7{bottom:976.773333pt;}
.y9a{bottom:994.853333pt;}
.ycf{bottom:995.013333pt;}
.y6{bottom:995.173333pt;}
.y10f{bottom:1013.280000pt;}
.y5{bottom:1013.600000pt;}
.y1{bottom:1061.120000pt;}
.h1a{height:18.386667pt;}
.h3{height:18.432000pt;}
.h7{height:33.901875pt;}
.h23{height:34.746667pt;}
.h24{height:34.866667pt;}
.h17{height:36.786667pt;}
.h18{height:36.818667pt;}
.h16{height:47.085938pt;}
.h1f{height:51.666667pt;}
.h22{height:51.680000pt;}
.h8{height:52.108438pt;}
.ha{height:52.134375pt;}
.h9{height:53.535000pt;}
.h19{height:55.186667pt;}
.h27{height:56.156250pt;}
.h1d{height:57.787500pt;}
.h1c{height:60.519362pt;}
.hd{height:62.781250pt;}
.h2{height:62.812500pt;}
.h12{height:64.162500pt;}
.hb{height:64.500000pt;}
.h15{height:65.781915pt;}
.h4{height:67.734375pt;}
.h1e{height:68.466667pt;}
.h1b{height:68.626667pt;}
.h26{height:69.586667pt;}
.h20{height:70.900000pt;}
.he{height:74.687812pt;}
.h6{height:75.465000pt;}
.hc{height:77.786667pt;}
.h14{height:78.543750pt;}
.h25{height:86.386667pt;}
.h5{height:96.750000pt;}
.h21{height:104.320000pt;}
.hf{height:110.625000pt;}
.h11{height:125.345000pt;}
.h13{height:154.740000pt;}
.h10{height:159.265000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:8.160000pt;}
.wb{width:16.160000pt;}
.w4{width:89.912000pt;}
.w8{width:121.752000pt;}
.w7{width:129.938667pt;}
.w3{width:146.386667pt;}
.w6{width:171.546667pt;}
.w5{width:172.333333pt;}
.wa{width:206.893333pt;}
.w9{width:235.733333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.712000pt;}
.x28{left:9.266667pt;}
.x29{left:28.186667pt;}
.x2{left:113.312000pt;}
.x1{left:118.912000pt;}
.x4{left:122.912000pt;}
.xd{left:126.432000pt;}
.xa{left:128.672000pt;}
.x7{left:129.952000pt;}
.xf{left:136.800000pt;}
.x13{left:160.506667pt;}
.x1c{left:170.906667pt;}
.x5{left:202.266667pt;}
.x23{left:204.680000pt;}
.x26{left:236.520000pt;}
.x9{left:275.586667pt;}
.xb{left:294.466667pt;}
.xc{left:313.826667pt;}
.x1d{left:337.986667pt;}
.x16{left:341.506667pt;}
.x14{left:344.866667pt;}
.x8{left:348.066667pt;}
.x17{left:352.546667pt;}
.x24{left:377.666667pt;}
.x20{left:389.026667pt;}
.x1f{left:390.306667pt;}
.x3{left:392.866667pt;}
.x19{left:393.986667pt;}
.x6{left:396.866667pt;}
.x15{left:403.906667pt;}
.x1b{left:405.346667pt;}
.x1e{left:411.266667pt;}
.x18{left:422.493333pt;}
.x1a{left:434.653333pt;}
.x21{left:455.773333pt;}
.x27{left:472.906667pt;}
.x25{left:549.866667pt;}
.xe{left:591.013333pt;}
.x11{left:703.333333pt;}
.x12{left:713.413333pt;}
.x10{left:737.413333pt;}
}




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