
    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_20394abd1e099e1a2092e1a1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.008301;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_051fbc9ade30cc11c26f41b7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_272b3ef4eb493abef1f5045e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.076000;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_105b3e2ff99b42608ca10f29.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_ee5c73177a42efa3b8ea3eca.woff')format("woff");}.ff5{font-family:ff5;line-height:1.015137;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_c36df49249a5743379e84025.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_1c5469df76dba651f1e00ced.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_9c8650eb4258fd4e106dcb73.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls1e{letter-spacing:-1.059840px;}
.ls15{letter-spacing:-0.794880px;}
.ls14{letter-spacing:-0.662400px;}
.ls16{letter-spacing:-0.463680px;}
.lsb{letter-spacing:-0.331200px;}
.ls26{letter-spacing:-0.287280px;}
.ls12{letter-spacing:-0.264960px;}
.ls4{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.198720px;}
.ls8{letter-spacing:-0.191520px;}
.ls7{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.132480px;}
.ls17{letter-spacing:-0.066240px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.066240px;}
.ls18{letter-spacing:0.095760px;}
.ls1c{letter-spacing:0.119520px;}
.ls11{letter-spacing:0.132480px;}
.ls5{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.162000px;}
.ls25{letter-spacing:0.191520px;}
.ls1{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.264960px;}
.ls3{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.378000px;}
.ls10{letter-spacing:0.403200px;}
.ls1f{letter-spacing:0.574560px;}
.ls20{letter-spacing:0.766080px;}
.lsc{letter-spacing:0.847872px;}
.ls23{letter-spacing:11.525760px;}
.ls24{letter-spacing:34.113600px;}
.ls1d{letter-spacing:55.411200px;}
.ls1b{letter-spacing:64.016640px;}
.ls1a{letter-spacing:89.556480px;}
.lse{letter-spacing:407.508480px;}
.lsf{letter-spacing:446.391360px;}
.ls0{letter-spacing:845.553600px;}
.lsd{letter-spacing:846.362880px;}
.ls21{letter-spacing:1191.780000px;}
.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;}
}
.ws39{word-spacing:-59.760000px;}
.ws0{word-spacing:-46.008000px;}
.ws9{word-spacing:-30.672000px;}
.ws7b{word-spacing:-21.067200px;}
.ws7a{word-spacing:-20.875680px;}
.ws7f{word-spacing:-20.492640px;}
.ws32{word-spacing:-20.396880px;}
.ws37{word-spacing:-20.109600px;}
.ws80{word-spacing:-20.013840px;}
.ws17{word-spacing:-16.824960px;}
.ws38{word-spacing:-16.692480px;}
.ws15{word-spacing:-16.626240px;}
.ws11{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.493760px;}
.wsa{word-spacing:-16.427520px;}
.ws30{word-spacing:-16.361280px;}
.ws12{word-spacing:-16.295040px;}
.ws14{word-spacing:-16.228800px;}
.ws13{word-spacing:-16.096320px;}
.ws7e{word-spacing:-13.878000px;}
.ws8{word-spacing:-13.662000px;}
.ws1a{word-spacing:-3.643200px;}
.ws19{word-spacing:-3.444480px;}
.ws85{word-spacing:-3.113280px;}
.ws24{word-spacing:-2.980800px;}
.ws88{word-spacing:-2.848320px;}
.ws33{word-spacing:-2.715840px;}
.ws4c{word-spacing:-2.583360px;}
.ws22{word-spacing:-2.517120px;}
.ws23{word-spacing:-2.053440px;}
.ws6f{word-spacing:-1.920960px;}
.ws35{word-spacing:-1.324800px;}
.ws58{word-spacing:-1.192320px;}
.ws2d{word-spacing:-0.993600px;}
.ws2e{word-spacing:-0.794880px;}
.ws2c{word-spacing:-0.596160px;}
.wsc{word-spacing:-0.432000px;}
.ws2a{word-spacing:-0.397440px;}
.ws2b{word-spacing:-0.288000px;}
.ws2f{word-spacing:-0.264960px;}
.ws2{word-spacing:-0.216000px;}
.ws31{word-spacing:-0.191520px;}
.ws4{word-spacing:-0.168480px;}
.wsd{word-spacing:-0.144000px;}
.ws18{word-spacing:-0.132480px;}
.ws82{word-spacing:-0.095760px;}
.ws5{word-spacing:-0.072000px;}
.wsf{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
.ws27{word-spacing:0.066240px;}
.wse{word-spacing:0.095760px;}
.ws21{word-spacing:0.132480px;}
.ws20{word-spacing:0.144000px;}
.ws6e{word-spacing:0.198720px;}
.ws3{word-spacing:0.216000px;}
.ws1b{word-spacing:0.264960px;}
.ws10{word-spacing:0.331200px;}
.wsb{word-spacing:0.378000px;}
.ws6{word-spacing:0.432000px;}
.ws1f{word-spacing:0.662400px;}
.ws55{word-spacing:0.766080px;}
.ws45{word-spacing:0.861120px;}
.ws1e{word-spacing:1.192320px;}
.ws83{word-spacing:1.324800px;}
.ws1d{word-spacing:1.589760px;}
.ws1c{word-spacing:1.788480px;}
.ws57{word-spacing:2.318400px;}
.ws56{word-spacing:2.450880px;}
.ws5d{word-spacing:3.047040px;}
.ws5c{word-spacing:3.179520px;}
.ws28{word-spacing:3.709440px;}
.ws29{word-spacing:4.438080px;}
.ws3d{word-spacing:5.166720px;}
.ws3a{word-spacing:5.365440px;}
.ws4d{word-spacing:5.895360px;}
.ws62{word-spacing:6.027840px;}
.ws6b{word-spacing:6.511680px;}
.ws5f{word-spacing:6.624000px;}
.ws47{word-spacing:7.352640px;}
.ws72{word-spacing:7.485120px;}
.ws61{word-spacing:8.081280px;}
.ws60{word-spacing:8.213760px;}
.ws36{word-spacing:8.743680px;}
.ws71{word-spacing:8.876160px;}
.ws26{word-spacing:9.472320px;}
.ws25{word-spacing:9.671040px;}
.ws3c{word-spacing:10.200960px;}
.ws3f{word-spacing:10.929600px;}
.ws81{word-spacing:11.260800px;}
.ws5a{word-spacing:11.658240px;}
.ws59{word-spacing:11.790720px;}
.ws73{word-spacing:12.386880px;}
.ws49{word-spacing:13.115520px;}
.ws48{word-spacing:13.248000px;}
.ws46{word-spacing:13.844160px;}
.ws76{word-spacing:13.976640px;}
.ws4a{word-spacing:14.109120px;}
.ws79{word-spacing:14.241600px;}
.ws87{word-spacing:14.374080px;}
.ws34{word-spacing:14.506560px;}
.ws50{word-spacing:14.639040px;}
.ws3b{word-spacing:15.235200px;}
.ws5b{word-spacing:15.367680px;}
.ws78{word-spacing:15.963840px;}
.ws77{word-spacing:16.096320px;}
.ws43{word-spacing:16.692480px;}
.ws6c{word-spacing:16.824960px;}
.ws52{word-spacing:17.023680px;}
.ws53{word-spacing:17.421120px;}
.ws51{word-spacing:17.553600px;}
.ws44{word-spacing:18.098640px;}
.ws7d{word-spacing:18.149760px;}
.ws70{word-spacing:18.282240px;}
.ws4b{word-spacing:18.878400px;}
.ws5e{word-spacing:20.998080px;}
.ws86{word-spacing:21.726720px;}
.ws64{word-spacing:22.455360px;}
.ws3e{word-spacing:23.184000px;}
.ws69{word-spacing:23.912640px;}
.ws4e{word-spacing:24.045120px;}
.ws4f{word-spacing:24.641280px;}
.ws75{word-spacing:24.773760px;}
.ws6d{word-spacing:25.303680px;}
.ws6a{word-spacing:26.760960px;}
.ws74{word-spacing:28.218240px;}
.ws54{word-spacing:28.823760px;}
.ws68{word-spacing:28.946880px;}
.ws67{word-spacing:29.079360px;}
.ws7c{word-spacing:29.675520px;}
.ws40{word-spacing:34.709760px;}
.ws66{word-spacing:39.015360px;}
.ws65{word-spacing:39.147840px;}
.ws84{word-spacing:40.472640px;}
.ws41{word-spacing:43.320960px;}
.ws42{word-spacing:44.049600px;}
.ws63{word-spacing:64.829520px;}
.ws7{word-spacing:247.176000px;}
._2{margin-left:-50.400000px;}
._7{margin-left:-13.842720px;}
._8{margin-left:-11.923200px;}
._a{margin-left:-10.408320px;}
._9{margin-left:-8.447040px;}
._b{margin-left:-2.289600px;}
._0{margin-left:-1.231200px;}
._1{width:1.296000px;}
._f{width:17.624160px;}
._d{width:23.676480px;}
._4{width:33.848640px;}
._e{width:44.051040px;}
._c{width:397.042560px;}
._3{width:859.662720px;}
._6{width:1223.488800px;}
._5{width:1287.374400px;}
.fca{color:rgb(15,71,97);}
.fc9{color:rgb(11,118,159);}
.fc6{color:rgb(33,94,153);}
.fc5{color:transparent;}
.fc4{color:rgb(80,21,73);}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(21,96,130);}
.fc7{color:rgb(70,120,134);}
.fc1{color:rgb(0,32,96);}
.fc8{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs7{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:216.000000px;}
.y15{bottom:-129.780000px;}
.y14{bottom:-96.840000px;}
.y13{bottom:-63.720000px;}
.y12{bottom:-30.780000px;}
.y0{bottom:0.000000px;}
.y11{bottom:2.340000px;}
.y39{bottom:8.100000px;}
.y3b{bottom:8.280000px;}
.y48{bottom:12.780000px;}
.y10{bottom:29.340000px;}
.y41{bottom:32.220000px;}
.y2{bottom:57.420000px;}
.y1a{bottom:57.424500px;}
.yf{bottom:61.200000px;}
.y19{bottom:73.800000px;}
.y31{bottom:80.280000px;}
.yd{bottom:91.800000px;}
.yfa{bottom:128.520000px;}
.y36{bottom:129.780000px;}
.yc8{bottom:144.712080px;}
.y4d{bottom:145.620000px;}
.y58{bottom:153.839520px;}
.ya8{bottom:156.060000px;}
.yf9{bottom:161.640000px;}
.yc7{bottom:168.840000px;}
.yb{bottom:174.780000px;}
.y57{bottom:177.785280px;}
.ya7{bottom:189.174240px;}
.y88{bottom:192.946320px;}
.yf8{bottom:194.580000px;}
.y5a{bottom:198.900000px;}
.y122{bottom:200.454480px;}
.yc6{bottom:201.774240px;}
.y56{bottom:201.913200px;}
.ya6{bottom:213.120000px;}
.y87{bottom:216.892080px;}
.yc5{bottom:225.720000px;}
.y55{bottom:225.858960px;}
.yf7{bottom:227.520000px;}
.y121{bottom:233.574480px;}
.y86{bottom:241.020000px;}
.ya5{bottom:246.234240px;}
.y9{bottom:247.860000px;}
.y4e{bottom:248.400000px;}
.y54{bottom:249.804720px;}
.yc4{bottom:258.826320px;}
.yf6{bottom:260.640000px;}
.y120{bottom:266.512320px;}
.ya4{bottom:270.180000px;}
.y53{bottom:273.932640px;}
.y85{bottom:273.946320px;}
.yc3{bottom:282.772080px;}
.yf5{bottom:293.580000px;}
.y52{bottom:297.878400px;}
.y84{bottom:298.074240px;}
.y11f{bottom:299.450160px;}
.ya3{bottom:303.106320px;}
.yc2{bottom:306.900000px;}
.y8{bottom:320.760000px;}
.y51{bottom:322.006320px;}
.y83{bottom:322.020000px;}
.yf4{bottom:326.700000px;}
.ya2{bottom:327.234240px;}
.y11e{bottom:332.570160px;}
.yc1{bottom:339.826320px;}
.y50{bottom:345.952080px;}
.ya1{bottom:351.180000px;}
.y2c{bottom:353.880000px;}
.y82{bottom:354.960000px;}
.y11d{bottom:356.515920px;}
.yf3{bottom:359.634240px;}
.y59{bottom:361.080000px;}
.yc0{bottom:363.772080px;}
.y4f{bottom:370.080000px;}
.y11c{bottom:380.643840px;}
.yf2{bottom:383.580000px;}
.ya0{bottom:384.288480px;}
.y4c{bottom:385.920000px;}
.ybf{bottom:387.900000px;}
.y81{bottom:388.060560px;}
.y6{bottom:390.420000px;}
.y7{bottom:393.660000px;}
.yde{bottom:395.642880px;}
.y2b{bottom:398.160000px;}
.y11b{bottom:404.589600px;}
.y9f{bottom:408.234240px;}
.y4b{bottom:410.580000px;}
.y80{bottom:412.006320px;}
.yf1{bottom:416.700000px;}
.ybe{bottom:420.840000px;}
.ydd{bottom:428.580720px;}
.y9e{bottom:432.180000px;}
.y7f{bottom:436.134240px;}
.y11a{bottom:437.527440px;}
.yf0{bottom:449.640000px;}
.y4a{bottom:451.980000px;}
.ybd{bottom:452.328300px;}
.y7e{bottom:460.080000px;}
.y119{bottom:461.655360px;}
.ydc{bottom:461.700720px;}
.y9d{bottom:465.300000px;}
.y2a{bottom:467.820000px;}
.ye{bottom:482.220000px;}
.yef{bottom:482.760000px;}
.y118{bottom:485.601120px;}
.y7d{bottom:491.568300px;}
.ydb{bottom:494.638560px;}
.ybc{bottom:495.540000px;}
.y9c{bottom:498.226320px;}
.y29{bottom:500.940000px;}
.y35{bottom:504.720000px;}
.yee{bottom:515.700000px;}
.y117{bottom:518.721120px;}
.y9b{bottom:522.354240px;}
.yda{bottom:527.576400px;}
.y30{bottom:529.740000px;}
.y7c{bottom:534.780000px;}
.y34{bottom:538.006320px;}
.ybb{bottom:540.340560px;}
.y116{bottom:542.666880px;}
.y28{bottom:545.220000px;}
.y9a{bottom:546.300000px;}
.yed{bottom:548.814240px;}
.yd9{bottom:560.696400px;}
.y33{bottom:561.952080px;}
.yba{bottom:564.286320px;}
.yc{bottom:565.200000px;}
.y115{bottom:566.794800px;}
.yec{bottom:572.760000px;}
.y7b{bottom:578.519280px;}
.y99{bottom:579.414240px;}
.y32{bottom:586.080000px;}
.yb9{bottom:588.414240px;}
.y114{bottom:590.740560px;}
.yd8{bottom:593.634240px;}
.y10a{bottom:593.822160px;}
.y7a{bottom:601.554240px;}
.y98{bottom:603.360000px;}
.yeb{bottom:605.692080px;}
.yb8{bottom:612.360000px;}
.y27{bottom:614.885040px;}
.y113{bottom:623.678400px;}
.yd7{bottom:626.754240px;}
.y109{bottom:626.760000px;}
.yea{bottom:629.820000px;}
.y79{bottom:633.597840px;}
.y97{bottom:636.286320px;}
.ya{bottom:638.280000px;}
.yb7{bottom:645.292080px;}
.y112{bottom:647.806320px;}
.y26{bottom:647.822880px;}
.yd6{bottom:650.700000px;}
.y2f{bottom:652.323600px;}
.y108{bottom:659.700000px;}
.y96{bottom:660.414240px;}
.ye9{bottom:662.760000px;}
.y78{bottom:665.641440px;}
.yb6{bottom:669.420000px;}
.y111{bottom:671.752080px;}
.y25{bottom:679.320000px;}
.yd5{bottom:683.808480px;}
.y95{bottom:684.360000px;}
.y2e{bottom:685.261440px;}
.y107{bottom:692.820000px;}
.ye8{bottom:695.880000px;}
.y77{bottom:697.502880px;}
.y49{bottom:701.820000px;}
.yb5{bottom:702.346320px;}
.yd4{bottom:707.754240px;}
.y24{bottom:711.000000px;}
.y94{bottom:717.474240px;}
.y106{bottom:725.760000px;}
.yb4{bottom:726.474240px;}
.y47{bottom:726.660000px;}
.ye7{bottom:728.820000px;}
.y76{bottom:729.546480px;}
.yd3{bottom:731.700000px;}
.y110{bottom:738.180000px;}
.y93{bottom:741.420000px;}
.y23{bottom:742.500000px;}
.yb3{bottom:750.420000px;}
.y105{bottom:758.880000px;}
.y75{bottom:761.590080px;}
.ye6{bottom:761.940000px;}
.y46{bottom:764.280000px;}
.yd2{bottom:764.806320px;}
.y92{bottom:772.908300px;}
.y22{bottom:774.000000px;}
.y45{bottom:780.840000px;}
.yb2{bottom:783.528480px;}
.y74{bottom:784.625040px;}
.yd1{bottom:788.752080px;}
.y104{bottom:791.820000px;}
.ye5{bottom:794.880000px;}
.y10f{bottom:800.820000px;}
.y21{bottom:805.500000px;}
.y43{bottom:805.680000px;}
.yb1{bottom:807.474240px;}
.y73{bottom:807.660000px;}
.yd0{bottom:812.880000px;}
.y44{bottom:813.780000px;}
.y91{bottom:816.120000px;}
.y103{bottom:824.940000px;}
.ye4{bottom:827.820000px;}
.y72{bottom:830.700000px;}
.yb0{bottom:831.420000px;}
.y10e{bottom:833.940000px;}
.y20{bottom:837.000000px;}
.ycf{bottom:845.806320px;}
.y71{bottom:853.783920px;}
.y40{bottom:854.460000px;}
.y10d{bottom:857.835360px;}
.y102{bottom:857.880000px;}
.y90{bottom:860.934240px;}
.ye3{bottom:860.940000px;}
.y42{bottom:862.560000px;}
.yaf{bottom:864.526320px;}
.yce{bottom:869.934240px;}
.y67{bottom:872.789040px;}
.y70{bottom:876.636720px;}
.y1f{bottom:879.300000px;}
.y10c{bottom:881.781120px;}
.y8f{bottom:884.880000px;}
.yae{bottom:888.472080px;}
.y101{bottom:890.820000px;}
.ycd{bottom:893.880000px;}
.y66{bottom:905.909040px;}
.y6f{bottom:908.680320px;}
.y3f{bottom:911.340000px;}
.yad{bottom:912.600000px;}
.y8e{bottom:917.812080px;}
.y100{bottom:923.940000px;}
.y5f{bottom:925.560000px;}
.ycc{bottom:926.812080px;}
.ye2{bottom:927.000000px;}
.y3e{bottom:927.900000px;}
.y10b{bottom:929.854800px;}
.y6e{bottom:931.715280px;}
.y65{bottom:938.846880px;}
.y1e{bottom:941.940000px;}
.yac{bottom:945.534240px;}
.y5e{bottom:950.220000px;}
.ycb{bottom:950.940000px;}
.y6d{bottom:954.750240px;}
.yff{bottom:956.880000px;}
.ye1{bottom:959.940000px;}
.y3d{bottom:960.840000px;}
.y64{bottom:962.974800px;}
.yab{bottom:969.480000px;}
.y8d{bottom:974.872080px;}
.y5d{bottom:975.060000px;}
.y3c{bottom:977.580000px;}
.y6c{bottom:977.785200px;}
.y1d{bottom:979.380000px;}
.yca{bottom:983.866320px;}
.y63{bottom:986.920560px;}
.yfe{bottom:990.000000px;}
.ye0{bottom:992.880000px;}
.y8c{bottom:999.000000px;}
.y5{bottom:999.180000px;}
.y5c{bottom:999.900000px;}
.y6b{bottom:1000.820160px;}
.yaa{bottom:1000.968300px;}
.y3a{bottom:1002.240000px;}
.yc9{bottom:1007.994240px;}
.y62{bottom:1010.866320px;}
.yfd{bottom:1022.934240px;}
.y6a{bottom:1023.855120px;}
.ydf{bottom:1026.000000px;}
.y38{bottom:1027.080000px;}
.y8b{bottom:1031.940000px;}
.y1c{bottom:1033.380000px;}
.y61{bottom:1034.994240px;}
.y4{bottom:1036.620000px;}
.ya9{bottom:1044.180000px;}
.y69{bottom:1046.707920px;}
.yfc{bottom:1046.880000px;}
.y60{bottom:1058.940000px;}
.y8a{bottom:1064.866320px;}
.y68{bottom:1069.742880px;}
.y37{bottom:1073.520000px;}
.yfb{bottom:1080.000000px;}
.y1b{bottom:1087.380000px;}
.y89{bottom:1088.994240px;}
.y5b{bottom:1101.240000px;}
.y2d{bottom:1112.940000px;}
.y3{bottom:1113.480000px;}
.y18{bottom:1132.910640px;}
.y17{bottom:1153.064160px;}
.y16{bottom:1173.052080px;}
.y1{bottom:1193.040000px;}
.h12{height:23.940000px;}
.h14{height:23.941500px;}
.h17{height:24.118500px;}
.h13{height:24.120000px;}
.h16{height:28.620000px;}
.h3{height:41.475586px;}
.h15{height:48.060000px;}
.h10{height:49.097812px;}
.hb{height:50.832000px;}
.h2{height:50.876719px;}
.he{height:51.329531px;}
.hd{height:55.300781px;}
.h11{height:55.792969px;}
.h9{height:59.473440px;}
.ha{height:64.701914px;}
.h1a{height:76.703760px;}
.hf{height:96.120000px;}
.hc{height:96.312240px;}
.h4{height:101.664000px;}
.h5{height:115.344000px;}
.h8{height:165.902344px;}
.h7{height:173.016000px;}
.h19{height:214.738500px;}
.h18{height:264.240000px;}
.h6{height:452.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:119.158500px;}
.w6{width:123.480000px;}
.w4{width:200.880000px;}
.w8{width:211.860000px;}
.w9{width:218.700000px;}
.w5{width:473.760000px;}
.w2{width:534.060000px;}
.wa{width:544.320000px;}
.w3{width:676.260000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x8{left:42.660000px;}
.x7{left:84.600000px;}
.x2{left:108.000000px;}
.xd{left:116.100000px;}
.x16{left:117.886320px;}
.x17{left:120.386880px;}
.x15{left:122.208480px;}
.xb{left:124.560000px;}
.x14{left:126.348480px;}
.x19{left:135.000000px;}
.xa{left:160.560000px;}
.x18{left:161.952480px;}
.x3{left:179.280000px;}
.x1a{left:189.000000px;}
.x6{left:207.360000px;}
.x1b{left:216.000000px;}
.x9{left:227.340000px;}
.x10{left:233.100000px;}
.xe{left:310.500000px;}
.xf{left:318.060000px;}
.x11{left:352.980000px;}
.x13{left:360.720000px;}
.x1{left:366.840000px;}
.x4{left:448.020000px;}
.x5{left:548.640000px;}
.x12{left:565.560000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.942080pt;}
.ls15{letter-spacing:-0.706560pt;}
.ls14{letter-spacing:-0.588800pt;}
.ls16{letter-spacing:-0.412160pt;}
.lsb{letter-spacing:-0.294400pt;}
.ls26{letter-spacing:-0.255360pt;}
.ls12{letter-spacing:-0.235520pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.176640pt;}
.ls8{letter-spacing:-0.170240pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.117760pt;}
.ls17{letter-spacing:-0.058880pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.058880pt;}
.ls18{letter-spacing:0.085120pt;}
.ls1c{letter-spacing:0.106240pt;}
.ls11{letter-spacing:0.117760pt;}
.ls5{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.144000pt;}
.ls25{letter-spacing:0.170240pt;}
.ls1{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.235520pt;}
.ls3{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.336000pt;}
.ls10{letter-spacing:0.358400pt;}
.ls1f{letter-spacing:0.510720pt;}
.ls20{letter-spacing:0.680960pt;}
.lsc{letter-spacing:0.753664pt;}
.ls23{letter-spacing:10.245120pt;}
.ls24{letter-spacing:30.323200pt;}
.ls1d{letter-spacing:49.254400pt;}
.ls1b{letter-spacing:56.903680pt;}
.ls1a{letter-spacing:79.605760pt;}
.lse{letter-spacing:362.229760pt;}
.lsf{letter-spacing:396.792320pt;}
.ls0{letter-spacing:751.603200pt;}
.lsd{letter-spacing:752.322560pt;}
.ls21{letter-spacing:1059.360000pt;}
.ws39{word-spacing:-53.120000pt;}
.ws0{word-spacing:-40.896000pt;}
.ws9{word-spacing:-27.264000pt;}
.ws7b{word-spacing:-18.726400pt;}
.ws7a{word-spacing:-18.556160pt;}
.ws7f{word-spacing:-18.215680pt;}
.ws32{word-spacing:-18.130560pt;}
.ws37{word-spacing:-17.875200pt;}
.ws80{word-spacing:-17.790080pt;}
.ws17{word-spacing:-14.955520pt;}
.ws38{word-spacing:-14.837760pt;}
.ws15{word-spacing:-14.778880pt;}
.ws11{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.661120pt;}
.wsa{word-spacing:-14.602240pt;}
.ws30{word-spacing:-14.543360pt;}
.ws12{word-spacing:-14.484480pt;}
.ws14{word-spacing:-14.425600pt;}
.ws13{word-spacing:-14.307840pt;}
.ws7e{word-spacing:-12.336000pt;}
.ws8{word-spacing:-12.144000pt;}
.ws1a{word-spacing:-3.238400pt;}
.ws19{word-spacing:-3.061760pt;}
.ws85{word-spacing:-2.767360pt;}
.ws24{word-spacing:-2.649600pt;}
.ws88{word-spacing:-2.531840pt;}
.ws33{word-spacing:-2.414080pt;}
.ws4c{word-spacing:-2.296320pt;}
.ws22{word-spacing:-2.237440pt;}
.ws23{word-spacing:-1.825280pt;}
.ws6f{word-spacing:-1.707520pt;}
.ws35{word-spacing:-1.177600pt;}
.ws58{word-spacing:-1.059840pt;}
.ws2d{word-spacing:-0.883200pt;}
.ws2e{word-spacing:-0.706560pt;}
.ws2c{word-spacing:-0.529920pt;}
.wsc{word-spacing:-0.384000pt;}
.ws2a{word-spacing:-0.353280pt;}
.ws2b{word-spacing:-0.256000pt;}
.ws2f{word-spacing:-0.235520pt;}
.ws2{word-spacing:-0.192000pt;}
.ws31{word-spacing:-0.170240pt;}
.ws4{word-spacing:-0.149760pt;}
.wsd{word-spacing:-0.128000pt;}
.ws18{word-spacing:-0.117760pt;}
.ws82{word-spacing:-0.085120pt;}
.ws5{word-spacing:-0.064000pt;}
.wsf{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
.ws27{word-spacing:0.058880pt;}
.wse{word-spacing:0.085120pt;}
.ws21{word-spacing:0.117760pt;}
.ws20{word-spacing:0.128000pt;}
.ws6e{word-spacing:0.176640pt;}
.ws3{word-spacing:0.192000pt;}
.ws1b{word-spacing:0.235520pt;}
.ws10{word-spacing:0.294400pt;}
.wsb{word-spacing:0.336000pt;}
.ws6{word-spacing:0.384000pt;}
.ws1f{word-spacing:0.588800pt;}
.ws55{word-spacing:0.680960pt;}
.ws45{word-spacing:0.765440pt;}
.ws1e{word-spacing:1.059840pt;}
.ws83{word-spacing:1.177600pt;}
.ws1d{word-spacing:1.413120pt;}
.ws1c{word-spacing:1.589760pt;}
.ws57{word-spacing:2.060800pt;}
.ws56{word-spacing:2.178560pt;}
.ws5d{word-spacing:2.708480pt;}
.ws5c{word-spacing:2.826240pt;}
.ws28{word-spacing:3.297280pt;}
.ws29{word-spacing:3.944960pt;}
.ws3d{word-spacing:4.592640pt;}
.ws3a{word-spacing:4.769280pt;}
.ws4d{word-spacing:5.240320pt;}
.ws62{word-spacing:5.358080pt;}
.ws6b{word-spacing:5.788160pt;}
.ws5f{word-spacing:5.888000pt;}
.ws47{word-spacing:6.535680pt;}
.ws72{word-spacing:6.653440pt;}
.ws61{word-spacing:7.183360pt;}
.ws60{word-spacing:7.301120pt;}
.ws36{word-spacing:7.772160pt;}
.ws71{word-spacing:7.889920pt;}
.ws26{word-spacing:8.419840pt;}
.ws25{word-spacing:8.596480pt;}
.ws3c{word-spacing:9.067520pt;}
.ws3f{word-spacing:9.715200pt;}
.ws81{word-spacing:10.009600pt;}
.ws5a{word-spacing:10.362880pt;}
.ws59{word-spacing:10.480640pt;}
.ws73{word-spacing:11.010560pt;}
.ws49{word-spacing:11.658240pt;}
.ws48{word-spacing:11.776000pt;}
.ws46{word-spacing:12.305920pt;}
.ws76{word-spacing:12.423680pt;}
.ws4a{word-spacing:12.541440pt;}
.ws79{word-spacing:12.659200pt;}
.ws87{word-spacing:12.776960pt;}
.ws34{word-spacing:12.894720pt;}
.ws50{word-spacing:13.012480pt;}
.ws3b{word-spacing:13.542400pt;}
.ws5b{word-spacing:13.660160pt;}
.ws78{word-spacing:14.190080pt;}
.ws77{word-spacing:14.307840pt;}
.ws43{word-spacing:14.837760pt;}
.ws6c{word-spacing:14.955520pt;}
.ws52{word-spacing:15.132160pt;}
.ws53{word-spacing:15.485440pt;}
.ws51{word-spacing:15.603200pt;}
.ws44{word-spacing:16.087680pt;}
.ws7d{word-spacing:16.133120pt;}
.ws70{word-spacing:16.250880pt;}
.ws4b{word-spacing:16.780800pt;}
.ws5e{word-spacing:18.664960pt;}
.ws86{word-spacing:19.312640pt;}
.ws64{word-spacing:19.960320pt;}
.ws3e{word-spacing:20.608000pt;}
.ws69{word-spacing:21.255680pt;}
.ws4e{word-spacing:21.373440pt;}
.ws4f{word-spacing:21.903360pt;}
.ws75{word-spacing:22.021120pt;}
.ws6d{word-spacing:22.492160pt;}
.ws6a{word-spacing:23.787520pt;}
.ws74{word-spacing:25.082880pt;}
.ws54{word-spacing:25.621120pt;}
.ws68{word-spacing:25.730560pt;}
.ws67{word-spacing:25.848320pt;}
.ws7c{word-spacing:26.378240pt;}
.ws40{word-spacing:30.853120pt;}
.ws66{word-spacing:34.680320pt;}
.ws65{word-spacing:34.798080pt;}
.ws84{word-spacing:35.975680pt;}
.ws41{word-spacing:38.507520pt;}
.ws42{word-spacing:39.155200pt;}
.ws63{word-spacing:57.626240pt;}
.ws7{word-spacing:219.712000pt;}
._2{margin-left:-44.800000pt;}
._7{margin-left:-12.304640pt;}
._8{margin-left:-10.598400pt;}
._a{margin-left:-9.251840pt;}
._9{margin-left:-7.508480pt;}
._b{margin-left:-2.035200pt;}
._0{margin-left:-1.094400pt;}
._1{width:1.152000pt;}
._f{width:15.665920pt;}
._d{width:21.045760pt;}
._4{width:30.087680pt;}
._e{width:39.156480pt;}
._c{width:352.926720pt;}
._3{width:764.144640pt;}
._6{width:1087.545600pt;}
._5{width:1144.332800pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs7{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:192.000000pt;}
.y15{bottom:-115.360000pt;}
.y14{bottom:-86.080000pt;}
.y13{bottom:-56.640000pt;}
.y12{bottom:-27.360000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:2.080000pt;}
.y39{bottom:7.200000pt;}
.y3b{bottom:7.360000pt;}
.y48{bottom:11.360000pt;}
.y10{bottom:26.080000pt;}
.y41{bottom:28.640000pt;}
.y2{bottom:51.040000pt;}
.y1a{bottom:51.044000pt;}
.yf{bottom:54.400000pt;}
.y19{bottom:65.600000pt;}
.y31{bottom:71.360000pt;}
.yd{bottom:81.600000pt;}
.yfa{bottom:114.240000pt;}
.y36{bottom:115.360000pt;}
.yc8{bottom:128.632960pt;}
.y4d{bottom:129.440000pt;}
.y58{bottom:136.746240pt;}
.ya8{bottom:138.720000pt;}
.yf9{bottom:143.680000pt;}
.yc7{bottom:150.080000pt;}
.yb{bottom:155.360000pt;}
.y57{bottom:158.031360pt;}
.ya7{bottom:168.154880pt;}
.y88{bottom:171.507840pt;}
.yf8{bottom:172.960000pt;}
.y5a{bottom:176.800000pt;}
.y122{bottom:178.181760pt;}
.yc6{bottom:179.354880pt;}
.y56{bottom:179.478400pt;}
.ya6{bottom:189.440000pt;}
.y87{bottom:192.792960pt;}
.yc5{bottom:200.640000pt;}
.y55{bottom:200.763520pt;}
.yf7{bottom:202.240000pt;}
.y121{bottom:207.621760pt;}
.y86{bottom:214.240000pt;}
.ya5{bottom:218.874880pt;}
.y9{bottom:220.320000pt;}
.y4e{bottom:220.800000pt;}
.y54{bottom:222.048640pt;}
.yc4{bottom:230.067840pt;}
.yf6{bottom:231.680000pt;}
.y120{bottom:236.899840pt;}
.ya4{bottom:240.160000pt;}
.y53{bottom:243.495680pt;}
.y85{bottom:243.507840pt;}
.yc3{bottom:251.352960pt;}
.yf5{bottom:260.960000pt;}
.y52{bottom:264.780800pt;}
.y84{bottom:264.954880pt;}
.y11f{bottom:266.177920pt;}
.ya3{bottom:269.427840pt;}
.yc2{bottom:272.800000pt;}
.y8{bottom:285.120000pt;}
.y51{bottom:286.227840pt;}
.y83{bottom:286.240000pt;}
.yf4{bottom:290.400000pt;}
.ya2{bottom:290.874880pt;}
.y11e{bottom:295.617920pt;}
.yc1{bottom:302.067840pt;}
.y50{bottom:307.512960pt;}
.ya1{bottom:312.160000pt;}
.y2c{bottom:314.560000pt;}
.y82{bottom:315.520000pt;}
.y11d{bottom:316.903040pt;}
.yf3{bottom:319.674880pt;}
.y59{bottom:320.960000pt;}
.yc0{bottom:323.352960pt;}
.y4f{bottom:328.960000pt;}
.y11c{bottom:338.350080pt;}
.yf2{bottom:340.960000pt;}
.ya0{bottom:341.589760pt;}
.y4c{bottom:343.040000pt;}
.ybf{bottom:344.800000pt;}
.y81{bottom:344.942720pt;}
.y6{bottom:347.040000pt;}
.y7{bottom:349.920000pt;}
.yde{bottom:351.682560pt;}
.y2b{bottom:353.920000pt;}
.y11b{bottom:359.635200pt;}
.y9f{bottom:362.874880pt;}
.y4b{bottom:364.960000pt;}
.y80{bottom:366.227840pt;}
.yf1{bottom:370.400000pt;}
.ybe{bottom:374.080000pt;}
.ydd{bottom:380.960640pt;}
.y9e{bottom:384.160000pt;}
.y7f{bottom:387.674880pt;}
.y11a{bottom:388.913280pt;}
.yf0{bottom:399.680000pt;}
.y4a{bottom:401.760000pt;}
.ybd{bottom:402.069600pt;}
.y7e{bottom:408.960000pt;}
.y119{bottom:410.360320pt;}
.ydc{bottom:410.400640pt;}
.y9d{bottom:413.600000pt;}
.y2a{bottom:415.840000pt;}
.ye{bottom:428.640000pt;}
.yef{bottom:429.120000pt;}
.y118{bottom:431.645440pt;}
.y7d{bottom:436.949600pt;}
.ydb{bottom:439.678720pt;}
.ybc{bottom:440.480000pt;}
.y9c{bottom:442.867840pt;}
.y29{bottom:445.280000pt;}
.y35{bottom:448.640000pt;}
.yee{bottom:458.400000pt;}
.y117{bottom:461.085440pt;}
.y9b{bottom:464.314880pt;}
.yda{bottom:468.956800pt;}
.y30{bottom:470.880000pt;}
.y7c{bottom:475.360000pt;}
.y34{bottom:478.227840pt;}
.ybb{bottom:480.302720pt;}
.y116{bottom:482.370560pt;}
.y28{bottom:484.640000pt;}
.y9a{bottom:485.600000pt;}
.yed{bottom:487.834880pt;}
.yd9{bottom:498.396800pt;}
.y33{bottom:499.512960pt;}
.yba{bottom:501.587840pt;}
.yc{bottom:502.400000pt;}
.y115{bottom:503.817600pt;}
.yec{bottom:509.120000pt;}
.y7b{bottom:514.239360pt;}
.y99{bottom:515.034880pt;}
.y32{bottom:520.960000pt;}
.yb9{bottom:523.034880pt;}
.y114{bottom:525.102720pt;}
.yd8{bottom:527.674880pt;}
.y10a{bottom:527.841920pt;}
.y7a{bottom:534.714880pt;}
.y98{bottom:536.320000pt;}
.yeb{bottom:538.392960pt;}
.yb8{bottom:544.320000pt;}
.y27{bottom:546.564480pt;}
.y113{bottom:554.380800pt;}
.yd7{bottom:557.114880pt;}
.y109{bottom:557.120000pt;}
.yea{bottom:559.840000pt;}
.y79{bottom:563.198080pt;}
.y97{bottom:565.587840pt;}
.ya{bottom:567.360000pt;}
.yb7{bottom:573.592960pt;}
.y112{bottom:575.827840pt;}
.y26{bottom:575.842560pt;}
.yd6{bottom:578.400000pt;}
.y2f{bottom:579.843200pt;}
.y108{bottom:586.400000pt;}
.y96{bottom:587.034880pt;}
.ye9{bottom:589.120000pt;}
.y78{bottom:591.681280pt;}
.yb6{bottom:595.040000pt;}
.y111{bottom:597.112960pt;}
.y25{bottom:603.840000pt;}
.yd5{bottom:607.829760pt;}
.y95{bottom:608.320000pt;}
.y2e{bottom:609.121280pt;}
.y107{bottom:615.840000pt;}
.ye8{bottom:618.560000pt;}
.y77{bottom:620.002560pt;}
.y49{bottom:623.840000pt;}
.yb5{bottom:624.307840pt;}
.yd4{bottom:629.114880pt;}
.y24{bottom:632.000000pt;}
.y94{bottom:637.754880pt;}
.y106{bottom:645.120000pt;}
.yb4{bottom:645.754880pt;}
.y47{bottom:645.920000pt;}
.ye7{bottom:647.840000pt;}
.y76{bottom:648.485760pt;}
.yd3{bottom:650.400000pt;}
.y110{bottom:656.160000pt;}
.y93{bottom:659.040000pt;}
.y23{bottom:660.000000pt;}
.yb3{bottom:667.040000pt;}
.y105{bottom:674.560000pt;}
.y75{bottom:676.968960pt;}
.ye6{bottom:677.280000pt;}
.y46{bottom:679.360000pt;}
.yd2{bottom:679.827840pt;}
.y92{bottom:687.029600pt;}
.y22{bottom:688.000000pt;}
.y45{bottom:694.080000pt;}
.yb2{bottom:696.469760pt;}
.y74{bottom:697.444480pt;}
.yd1{bottom:701.112960pt;}
.y104{bottom:703.840000pt;}
.ye5{bottom:706.560000pt;}
.y10f{bottom:711.840000pt;}
.y21{bottom:716.000000pt;}
.y43{bottom:716.160000pt;}
.yb1{bottom:717.754880pt;}
.y73{bottom:717.920000pt;}
.yd0{bottom:722.560000pt;}
.y44{bottom:723.360000pt;}
.y91{bottom:725.440000pt;}
.y103{bottom:733.280000pt;}
.ye4{bottom:735.840000pt;}
.y72{bottom:738.400000pt;}
.yb0{bottom:739.040000pt;}
.y10e{bottom:741.280000pt;}
.y20{bottom:744.000000pt;}
.ycf{bottom:751.827840pt;}
.y71{bottom:758.919040pt;}
.y40{bottom:759.520000pt;}
.y10d{bottom:762.520320pt;}
.y102{bottom:762.560000pt;}
.y90{bottom:765.274880pt;}
.ye3{bottom:765.280000pt;}
.y42{bottom:766.720000pt;}
.yaf{bottom:768.467840pt;}
.yce{bottom:773.274880pt;}
.y67{bottom:775.812480pt;}
.y70{bottom:779.232640pt;}
.y1f{bottom:781.600000pt;}
.y10c{bottom:783.805440pt;}
.y8f{bottom:786.560000pt;}
.yae{bottom:789.752960pt;}
.y101{bottom:791.840000pt;}
.ycd{bottom:794.560000pt;}
.y66{bottom:805.252480pt;}
.y6f{bottom:807.715840pt;}
.y3f{bottom:810.080000pt;}
.yad{bottom:811.200000pt;}
.y8e{bottom:815.832960pt;}
.y100{bottom:821.280000pt;}
.y5f{bottom:822.720000pt;}
.ycc{bottom:823.832960pt;}
.ye2{bottom:824.000000pt;}
.y3e{bottom:824.800000pt;}
.y10b{bottom:826.537600pt;}
.y6e{bottom:828.191360pt;}
.y65{bottom:834.530560pt;}
.y1e{bottom:837.280000pt;}
.yac{bottom:840.474880pt;}
.y5e{bottom:844.640000pt;}
.ycb{bottom:845.280000pt;}
.y6d{bottom:848.666880pt;}
.yff{bottom:850.560000pt;}
.ye1{bottom:853.280000pt;}
.y3d{bottom:854.080000pt;}
.y64{bottom:855.977600pt;}
.yab{bottom:861.760000pt;}
.y8d{bottom:866.552960pt;}
.y5d{bottom:866.720000pt;}
.y3c{bottom:868.960000pt;}
.y6c{bottom:869.142400pt;}
.y1d{bottom:870.560000pt;}
.yca{bottom:874.547840pt;}
.y63{bottom:877.262720pt;}
.yfe{bottom:880.000000pt;}
.ye0{bottom:882.560000pt;}
.y8c{bottom:888.000000pt;}
.y5{bottom:888.160000pt;}
.y5c{bottom:888.800000pt;}
.y6b{bottom:889.617920pt;}
.yaa{bottom:889.749600pt;}
.y3a{bottom:890.880000pt;}
.yc9{bottom:895.994880pt;}
.y62{bottom:898.547840pt;}
.yfd{bottom:909.274880pt;}
.y6a{bottom:910.093440pt;}
.ydf{bottom:912.000000pt;}
.y38{bottom:912.960000pt;}
.y8b{bottom:917.280000pt;}
.y1c{bottom:918.560000pt;}
.y61{bottom:919.994880pt;}
.y4{bottom:921.440000pt;}
.ya9{bottom:928.160000pt;}
.y69{bottom:930.407040pt;}
.yfc{bottom:930.560000pt;}
.y60{bottom:941.280000pt;}
.y8a{bottom:946.547840pt;}
.y68{bottom:950.882560pt;}
.y37{bottom:954.240000pt;}
.yfb{bottom:960.000000pt;}
.y1b{bottom:966.560000pt;}
.y89{bottom:967.994880pt;}
.y5b{bottom:978.880000pt;}
.y2d{bottom:989.280000pt;}
.y3{bottom:989.760000pt;}
.y18{bottom:1007.031680pt;}
.y17{bottom:1024.945920pt;}
.y16{bottom:1042.712960pt;}
.y1{bottom:1060.480000pt;}
.h12{height:21.280000pt;}
.h14{height:21.281333pt;}
.h17{height:21.438667pt;}
.h13{height:21.440000pt;}
.h16{height:25.440000pt;}
.h3{height:36.867188pt;}
.h15{height:42.720000pt;}
.h10{height:43.642500pt;}
.hb{height:45.184000pt;}
.h2{height:45.223750pt;}
.he{height:45.626250pt;}
.hd{height:49.156250pt;}
.h11{height:49.593750pt;}
.h9{height:52.865280pt;}
.ha{height:57.512812pt;}
.h1a{height:68.181120pt;}
.hf{height:85.440000pt;}
.hc{height:85.610880pt;}
.h4{height:90.368000pt;}
.h5{height:102.528000pt;}
.h8{height:147.468750pt;}
.h7{height:153.792000pt;}
.h19{height:190.878667pt;}
.h18{height:234.880000pt;}
.h6{height:402.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:105.918667pt;}
.w6{width:109.760000pt;}
.w4{width:178.560000pt;}
.w8{width:188.320000pt;}
.w9{width:194.400000pt;}
.w5{width:421.120000pt;}
.w2{width:474.720000pt;}
.wa{width:483.840000pt;}
.w3{width:601.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x8{left:37.920000pt;}
.x7{left:75.200000pt;}
.x2{left:96.000000pt;}
.xd{left:103.200000pt;}
.x16{left:104.787840pt;}
.x17{left:107.010560pt;}
.x15{left:108.629760pt;}
.xb{left:110.720000pt;}
.x14{left:112.309760pt;}
.x19{left:120.000000pt;}
.xa{left:142.720000pt;}
.x18{left:143.957760pt;}
.x3{left:159.360000pt;}
.x1a{left:168.000000pt;}
.x6{left:184.320000pt;}
.x1b{left:192.000000pt;}
.x9{left:202.080000pt;}
.x10{left:207.200000pt;}
.xe{left:276.000000pt;}
.xf{left:282.720000pt;}
.x11{left:313.760000pt;}
.x13{left:320.640000pt;}
.x1{left:326.080000pt;}
.x4{left:398.240000pt;}
.x5{left:487.680000pt;}
.x12{left:502.720000pt;}
}




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