
    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_588f20ea1e7251524ce16d34.woff')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_e6c431c8fe09bb17ce594e02.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_e2c2d1921ec09fc0b795bb62.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ed8f58fec2108f3660dfc669.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_2de4050ff0fb879eed1c7240.woff')format("woff");}.ff5{font-family:ff5;line-height:0.919434;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_ccd6e59c27b2e6906ee2d906.woff')format("woff");}.ff6{font-family:ff6;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);}
.v0{vertical-align:0.000000px;}
.ls37{letter-spacing:-1.656000px;}
.ls2c{letter-spacing:-1.324800px;}
.ls3c{letter-spacing:-1.059840px;}
.ls2a{letter-spacing:-0.927360px;}
.ls2b{letter-spacing:-0.861120px;}
.ls1c{letter-spacing:-0.794880px;}
.ls1f{letter-spacing:-0.728640px;}
.ls1e{letter-spacing:-0.673920px;}
.ls14{letter-spacing:-0.662400px;}
.ls2d{letter-spacing:-0.596160px;}
.ls1d{letter-spacing:-0.529920px;}
.ls10{letter-spacing:-0.505440px;}
.lsf{letter-spacing:-0.463680px;}
.ls12{letter-spacing:-0.397440px;}
.lsd{letter-spacing:-0.331200px;}
.ls3d{letter-spacing:-0.311040px;}
.lsc{letter-spacing:-0.264960px;}
.ls3e{letter-spacing:-0.233280px;}
.ls8{letter-spacing:-0.198720px;}
.lse{letter-spacing:-0.132480px;}
.ls9{letter-spacing:-0.066240px;}
.ls6{letter-spacing:-0.059760px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.066240px;}
.lsa{letter-spacing:0.084240px;}
.lsb{letter-spacing:0.132480px;}
.ls19{letter-spacing:0.139104px;}
.ls3{letter-spacing:0.168480px;}
.ls39{letter-spacing:0.172224px;}
.ls0{letter-spacing:0.179280px;}
.ls3b{letter-spacing:0.233280px;}
.ls38{letter-spacing:0.252720px;}
.ls2{letter-spacing:0.256320px;}
.ls1{letter-spacing:0.264960px;}
.ls4{letter-spacing:0.302400px;}
.ls34{letter-spacing:0.324576px;}
.ls13{letter-spacing:0.331200px;}
.ls7{letter-spacing:0.657360px;}
.ls26{letter-spacing:1.589760px;}
.ls31{letter-spacing:1.768608px;}
.ls23{letter-spacing:2.914560px;}
.ls15{letter-spacing:3.047040px;}
.ls29{letter-spacing:5.166720px;}
.ls30{letter-spacing:8.809920px;}
.ls1a{letter-spacing:9.538560px;}
.ls18{letter-spacing:10.200960px;}
.ls24{letter-spacing:10.929600px;}
.ls36{letter-spacing:11.009088px;}
.ls35{letter-spacing:11.028960px;}
.ls2e{letter-spacing:11.658240px;}
.ls2f{letter-spacing:11.711232px;}
.ls1b{letter-spacing:13.844160px;}
.ls16{letter-spacing:15.963840px;}
.ls20{letter-spacing:16.692480px;}
.ls21{letter-spacing:17.421120px;}
.ls27{letter-spacing:18.149760px;}
.ls28{letter-spacing:18.878400px;}
.ls32{letter-spacing:22.521600px;}
.ls33{letter-spacing:25.369920px;}
.ls25{letter-spacing:31.132800px;}
.ls17{letter-spacing:32.523840px;}
.ls3a{letter-spacing:50.011200px;}
.ls22{letter-spacing:59.351040px;}
.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;}
}
.ws42{word-spacing:-66.240000px;}
.ws7{word-spacing:-19.206720px;}
.ws1f{word-spacing:-19.122480px;}
.ws8{word-spacing:-18.532800px;}
.ws22{word-spacing:-18.364320px;}
.ws95{word-spacing:-17.340480px;}
.ws21{word-spacing:-15.301440px;}
.wsa{word-spacing:-15.235200px;}
.ws23{word-spacing:-15.109344px;}
.wsd{word-spacing:-15.102720px;}
.ws3{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.904000px;}
.ws4{word-spacing:-14.837760px;}
.ws8b{word-spacing:-14.771520px;}
.ws5{word-spacing:-14.705280px;}
.ws9{word-spacing:-14.639040px;}
.wsc{word-spacing:-14.572800px;}
.ws6{word-spacing:-14.506560px;}
.ws20{word-spacing:-14.440320px;}
.ws44{word-spacing:-14.374080px;}
.ws43{word-spacing:-14.307840px;}
.ws25{word-spacing:-14.241600px;}
.ws24{word-spacing:-14.175360px;}
.ws2{word-spacing:-14.163120px;}
.ws41{word-spacing:-14.042880px;}
.ws1{word-spacing:-13.685040px;}
.ws0{word-spacing:-13.446000px;}
.ws91{word-spacing:-3.908160px;}
.ws6c{word-spacing:-3.576960px;}
.ws60{word-spacing:-3.444480px;}
.ws5b{word-spacing:-3.378240px;}
.ws5a{word-spacing:-3.312000px;}
.ws90{word-spacing:-3.179520px;}
.ws6a{word-spacing:-2.848320px;}
.ws6d{word-spacing:-2.782080px;}
.ws5e{word-spacing:-2.649600px;}
.ws5d{word-spacing:-2.450880px;}
.ws75{word-spacing:-2.119680px;}
.ws57{word-spacing:-1.920960px;}
.ws9c{word-spacing:-1.788480px;}
.ws69{word-spacing:-1.722240px;}
.ws76{word-spacing:-1.589760px;}
.ws30{word-spacing:-1.391040px;}
.ws9d{word-spacing:-1.258560px;}
.ws56{word-spacing:-1.192320px;}
.ws58{word-spacing:-1.059840px;}
.ws37{word-spacing:-0.993600px;}
.ws18{word-spacing:-0.927360px;}
.ws6b{word-spacing:-0.728640px;}
.ws17{word-spacing:-0.662400px;}
.ws1a{word-spacing:-0.529920px;}
.ws3b{word-spacing:-0.505440px;}
.ws12{word-spacing:-0.421200px;}
.ws16{word-spacing:-0.331200px;}
.ws86{word-spacing:-0.264960px;}
.ws92{word-spacing:-0.233280px;}
.ws93{word-spacing:-0.198720px;}
.ws13{word-spacing:-0.132480px;}
.ws1e{word-spacing:-0.084240px;}
.ws19{word-spacing:-0.066240px;}
.wsf{word-spacing:0.000000px;}
.ws11{word-spacing:0.066240px;}
.ws63{word-spacing:0.132480px;}
.wse{word-spacing:0.179280px;}
.ws10{word-spacing:0.198720px;}
.ws1d{word-spacing:0.264960px;}
.ws96{word-spacing:0.311040px;}
.ws1c{word-spacing:0.331200px;}
.ws97{word-spacing:0.388800px;}
.ws14{word-spacing:0.397440px;}
.ws15{word-spacing:0.463680px;}
.ws5f{word-spacing:0.529920px;}
.ws8c{word-spacing:0.596160px;}
.ws1b{word-spacing:0.662400px;}
.ws9b{word-spacing:0.728640px;}
.ws29{word-spacing:0.794880px;}
.ws55{word-spacing:0.861120px;}
.ws2f{word-spacing:0.927360px;}
.ws8d{word-spacing:1.059840px;}
.ws84{word-spacing:1.126080px;}
.ws5c{word-spacing:1.324800px;}
.ws3c{word-spacing:1.457280px;}
.ws2e{word-spacing:1.656000px;}
.ws2a{word-spacing:1.854720px;}
.ws70{word-spacing:2.185920px;}
.ws6f{word-spacing:2.384640px;}
.ws71{word-spacing:2.583360px;}
.ws28{word-spacing:2.914560px;}
.ws27{word-spacing:3.113280px;}
.ws50{word-spacing:3.312000px;}
.ws7d{word-spacing:3.643200px;}
.ws31{word-spacing:3.841920px;}
.ws4b{word-spacing:3.908160px;}
.ws98{word-spacing:4.305600px;}
.ws4c{word-spacing:4.504320px;}
.ws49{word-spacing:4.636800px;}
.ws4a{word-spacing:4.703040px;}
.ws94{word-spacing:5.034240px;}
.ws67{word-spacing:5.100480px;}
.ws68{word-spacing:5.431680px;}
.ws8e{word-spacing:5.762880px;}
.ws8f{word-spacing:6.160320px;}
.ws83{word-spacing:7.220160px;}
.ws73{word-spacing:7.418880px;}
.ws82{word-spacing:7.617600px;}
.ws72{word-spacing:8.147520px;}
.ws74{word-spacing:8.346240px;}
.ws85{word-spacing:8.677440px;}
.ws79{word-spacing:8.876160px;}
.ws7a{word-spacing:9.074880px;}
.ws89{word-spacing:9.207360px;}
.ws3e{word-spacing:9.406080px;}
.ws3d{word-spacing:9.604800px;}
.ws7c{word-spacing:9.803520px;}
.ws38{word-spacing:10.068480px;}
.ws39{word-spacing:10.267200px;}
.ws3a{word-spacing:10.465920px;}
.ws51{word-spacing:10.797120px;}
.ws26{word-spacing:10.995840px;}
.ws52{word-spacing:11.194560px;}
.ws78{word-spacing:11.525760px;}
.ws77{word-spacing:11.724480px;}
.ws8a{word-spacing:11.923200px;}
.ws2c{word-spacing:12.983040px;}
.ws2d{word-spacing:13.181760px;}
.ws2b{word-spacing:13.380480px;}
.ws6e{word-spacing:13.711680px;}
.ws3f{word-spacing:13.910400px;}
.ws87{word-spacing:14.109120px;}
.ws7b{word-spacing:14.440320px;}
.ws40{word-spacing:14.639040px;}
.ws32{word-spacing:15.367680px;}
.ws88{word-spacing:15.500160px;}
.ws33{word-spacing:16.030080px;}
.ws34{word-spacing:16.096320px;}
.ws46{word-spacing:16.560000px;}
.ws48{word-spacing:16.758720px;}
.ws45{word-spacing:16.957440px;}
.ws4f{word-spacing:17.288640px;}
.ws47{word-spacing:17.487360px;}
.ws4d{word-spacing:17.619840px;}
.ws4e{word-spacing:18.216000px;}
.ws64{word-spacing:18.282240px;}
.ws65{word-spacing:18.745920px;}
.ws62{word-spacing:18.812160px;}
.ws66{word-spacing:18.944640px;}
.ws61{word-spacing:19.143360px;}
.ws7f{word-spacing:22.521600px;}
.ws7e{word-spacing:22.720320px;}
.ws80{word-spacing:25.436160px;}
.ws81{word-spacing:25.634880px;}
.ws59{word-spacing:26.164800px;}
.ws54{word-spacing:31.199040px;}
.ws53{word-spacing:31.397760px;}
.ws36{word-spacing:32.590080px;}
.ws35{word-spacing:32.788800px;}
.ws9a{word-spacing:35.305920px;}
.ws99{word-spacing:35.504640px;}
._10{margin-left:-4.305600px;}
._f{margin-left:-3.245760px;}
._1{margin-left:-1.446192px;}
._4{width:1.310688px;}
._9{width:3.182256px;}
._15{width:5.331888px;}
._14{width:9.779616px;}
._d{width:11.425968px;}
._a{width:13.250736px;}
._c{width:16.692480px;}
._11{width:18.567360px;}
._12{width:22.156704px;}
._13{width:25.596864px;}
._e{width:30.432384px;}
._b{width:33.496560px;}
._5{width:56.790432px;}
._6{width:65.361024px;}
._7{width:68.500800px;}
._8{width:76.487616px;}
._0{width:378.699120px;}
._2{width:710.068320px;}
._3{width:822.417120px;}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(22,65,148);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:4.500000px;}
.ya{bottom:24.660000px;}
.y18{bottom:44.820000px;}
.y7{bottom:57.600720px;}
.y6{bottom:77.754240px;}
.y5{bottom:93.420000px;}
.yb0{bottom:185.617440px;}
.y8e{bottom:193.908960px;}
.yaf{bottom:208.652400px;}
.y8d{bottom:216.943920px;}
.yae{bottom:231.869520px;}
.y47{bottom:235.990800px;}
.y8c{bottom:241.071840px;}
.y29{bottom:251.640000px;}
.yad{bottom:255.997440px;}
.y6a{bottom:258.204960px;}
.y46{bottom:259.207920px;}
.y8b{bottom:264.288960px;}
.y28{bottom:268.020000px;}
.yac{bottom:279.032400px;}
.y69{bottom:281.422080px;}
.y45{bottom:282.425040px;}
.y8a{bottom:287.323920px;}
.y27{bottom:288.900000px;}
.yab{bottom:302.249520px;}
.y68{bottom:304.457040px;}
.y44{bottom:305.460000px;}
.y26{bottom:309.780000px;}
.y89{bottom:310.541040px;}
.yaa{bottom:325.466640px;}
.y67{bottom:327.674160px;}
.y25{bottom:330.660000px;}
.y88{bottom:333.758160px;}
.ya9{bottom:348.501600px;}
.y66{bottom:350.891280px;}
.y24{bottom:351.540000px;}
.y87{bottom:357.703920px;}
.ya8{bottom:371.718720px;}
.y23{bottom:372.420000px;}
.y65{bottom:374.108400px;}
.y86{bottom:380.921040px;}
.y22{bottom:393.300000px;}
.y43{bottom:394.256880px;}
.ya7{bottom:394.935840px;}
.y85{bottom:404.138160px;}
.y64{bottom:412.262640px;}
.y21{bottom:414.180000px;}
.y42{bottom:417.291840px;}
.ya6{bottom:417.970800px;}
.y84{bottom:428.083920px;}
.y20{bottom:435.240000px;}
.y63{bottom:435.297600px;}
.y41{bottom:440.508960px;}
.ya5{bottom:441.187920px;}
.y83{bottom:451.301040px;}
.y1f{bottom:456.120000px;}
.y62{bottom:458.514720px;}
.yc5{bottom:460.303920px;}
.y40{bottom:463.726080px;}
.ya4{bottom:464.405040px;}
.y82{bottom:474.336000px;}
.y61{bottom:481.731840px;}
.y1e{bottom:486.180000px;}
.y3f{bottom:486.943200px;}
.ya3{bottom:487.440000px;}
.y81{bottom:498.463920px;}
.yc4{bottom:498.640320px;}
.y60{bottom:504.766800px;}
.ya2{bottom:511.740000px;}
.yc3{bottom:521.675280px;}
.y80{bottom:521.681040px;}
.y3e{bottom:525.097440px;}
.y5f{bottom:527.983920px;}
.y1d{bottom:543.240000px;}
.yc2{bottom:544.892400px;}
.y7f{bottom:544.898160px;}
.y3d{bottom:548.132400px;}
.ya1{bottom:552.801600px;}
.y1c{bottom:564.120000px;}
.y5e{bottom:566.138160px;}
.y7e{bottom:567.933120px;}
.yc1{bottom:568.109520px;}
.y3c{bottom:571.349520px;}
.ya0{bottom:576.018720px;}
.y1b{bottom:585.000000px;}
.y5d{bottom:589.355280px;}
.yc0{bottom:591.144480px;}
.y7d{bottom:591.150240px;}
.y3b{bottom:594.566640px;}
.y9f{bottom:599.235840px;}
.y1a{bottom:605.880000px;}
.y5c{bottom:612.390240px;}
.ybf{bottom:614.361600px;}
.y7c{bottom:615.096000px;}
.y3a{bottom:617.601600px;}
.y9e{bottom:623.181600px;}
.y17{bottom:626.760000px;}
.y5b{bottom:636.518160px;}
.ybe{bottom:637.396560px;}
.y7b{bottom:638.313120px;}
.y39{bottom:640.818720px;}
.y9d{bottom:646.398720px;}
.y19{bottom:651.420000px;}
.y5a{bottom:659.735280px;}
.ybd{bottom:661.524480px;}
.y7a{bottom:661.530240px;}
.y38{bottom:664.035840px;}
.y9c{bottom:669.615840px;}
.y59{bottom:682.770240px;}
.ybc{bottom:684.741600px;}
.y79{bottom:685.476000px;}
.y37{bottom:687.070800px;}
.y16{bottom:687.960000px;}
.y9b{bottom:692.650800px;}
.y58{bottom:705.987360px;}
.ybb{bottom:707.958720px;}
.y78{bottom:708.693120px;}
.y15{bottom:708.840000px;}
.y36{bottom:710.287920px;}
.y9a{bottom:715.867920px;}
.y57{bottom:729.204480px;}
.yba{bottom:730.993680px;}
.y77{bottom:732.821040px;}
.y35{bottom:733.505040px;}
.y99{bottom:739.085040px;}
.y14{bottom:749.880000px;}
.y56{bottom:752.239440px;}
.yb9{bottom:754.210800px;}
.y76{bottom:755.856000px;}
.y34{bottom:756.540000px;}
.y98{bottom:762.120000px;}
.y13{bottom:770.760000px;}
.y55{bottom:776.367360px;}
.yb8{bottom:777.427920px;}
.y33{bottom:781.740000px;}
.y97{bottom:786.420000px;}
.y75{bottom:794.921040px;}
.y54{bottom:799.584480px;}
.yb7{bottom:800.462880px;}
.y12{bottom:811.800000px;}
.y74{bottom:818.138160px;}
.y53{bottom:822.619440px;}
.yb6{bottom:823.680000px;}
.y96{bottom:827.471520px;}
.y73{bottom:841.355280px;}
.y11{bottom:842.040000px;}
.y32{bottom:845.293680px;}
.y52{bottom:846.747360px;}
.yb5{bottom:847.979850px;}
.y72{bottom:864.390240px;}
.y95{bottom:865.625760px;}
.y31{bottom:868.510800px;}
.y51{bottom:869.782320px;}
.y71{bottom:887.607360px;}
.y94{bottom:888.842880px;}
.yb4{bottom:889.025040px;}
.y30{bottom:891.545760px;}
.y50{bottom:892.999440px;}
.y10{bottom:898.920000px;}
.y70{bottom:910.824480px;}
.y93{bottom:912.060000px;}
.y2f{bottom:914.762880px;}
.y4f{bottom:916.216560px;}
.yf{bottom:919.800000px;}
.y6f{bottom:933.859440px;}
.yb3{bottom:936.187920px;}
.y92{bottom:937.080000px;}
.y2e{bottom:937.980000px;}
.y4e{bottom:939.433680px;}
.ye{bottom:940.680000px;}
.y6e{bottom:957.076560px;}
.yb2{bottom:959.405040px;}
.yd{bottom:961.560000px;}
.y4d{bottom:962.468640px;}
.y2d{bottom:963.000000px;}
.yc{bottom:982.440000px;}
.y4c{bottom:985.685760px;}
.y6d{bottom:995.230800px;}
.y91{bottom:1000.622880px;}
.y9{bottom:1003.320000px;}
.yb1{bottom:1006.740000px;}
.y4b{bottom:1008.720720px;}
.y6c{bottom:1018.447920px;}
.y90{bottom:1023.840000px;}
.y2c{bottom:1026.545760px;}
.y6b{bottom:1041.482880px;}
.y8f{bottom:1046.874960px;}
.y4a{bottom:1047.785760px;}
.y8{bottom:1053.720000px;}
.y2b{bottom:1064.700000px;}
.y49{bottom:1071.002880px;}
.y2a{bottom:1089.720000px;}
.y48{bottom:1094.220000px;}
.y4{bottom:1113.834600px;}
.y3{bottom:1132.195860px;}
.y2{bottom:1150.377840px;}
.y1{bottom:1164.780000px;}
.hb{height:19.980000px;}
.h8{height:20.160000px;}
.h7{height:20.161500px;}
.h9{height:40.318500px;}
.h6{height:40.320000px;}
.h2{height:42.894141px;}
.h3{height:47.545312px;}
.h4{height:48.095156px;}
.hc{height:54.523125px;}
.ha{height:60.480000px;}
.h5{height:61.164492px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:94.500000px;}
.w5{width:105.300000px;}
.w2{width:200.521500px;}
.w6{width:231.478500px;}
.w7{width:236.878500px;}
.w3{width:469.440000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.560000px;}
.x1{left:106.200000px;}
.x6{left:115.200000px;}
.xe{left:133.200000px;}
.xc{left:159.092640px;}
.xf{left:160.209360px;}
.xd{left:186.102000px;}
.x10{left:187.218720px;}
.xa{left:210.600000px;}
.x11{left:214.244640px;}
.x2{left:265.490280px;}
.x8{left:316.440000px;}
.x9{left:324.180000px;}
.xb{left:549.000000px;}
.x3{left:685.800000px;}
.x4{left:701.465760px;}
.x5{left:786.600720px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls37{letter-spacing:-1.472000pt;}
.ls2c{letter-spacing:-1.177600pt;}
.ls3c{letter-spacing:-0.942080pt;}
.ls2a{letter-spacing:-0.824320pt;}
.ls2b{letter-spacing:-0.765440pt;}
.ls1c{letter-spacing:-0.706560pt;}
.ls1f{letter-spacing:-0.647680pt;}
.ls1e{letter-spacing:-0.599040pt;}
.ls14{letter-spacing:-0.588800pt;}
.ls2d{letter-spacing:-0.529920pt;}
.ls1d{letter-spacing:-0.471040pt;}
.ls10{letter-spacing:-0.449280pt;}
.lsf{letter-spacing:-0.412160pt;}
.ls12{letter-spacing:-0.353280pt;}
.lsd{letter-spacing:-0.294400pt;}
.ls3d{letter-spacing:-0.276480pt;}
.lsc{letter-spacing:-0.235520pt;}
.ls3e{letter-spacing:-0.207360pt;}
.ls8{letter-spacing:-0.176640pt;}
.lse{letter-spacing:-0.117760pt;}
.ls9{letter-spacing:-0.058880pt;}
.ls6{letter-spacing:-0.053120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.058880pt;}
.lsa{letter-spacing:0.074880pt;}
.lsb{letter-spacing:0.117760pt;}
.ls19{letter-spacing:0.123648pt;}
.ls3{letter-spacing:0.149760pt;}
.ls39{letter-spacing:0.153088pt;}
.ls0{letter-spacing:0.159360pt;}
.ls3b{letter-spacing:0.207360pt;}
.ls38{letter-spacing:0.224640pt;}
.ls2{letter-spacing:0.227840pt;}
.ls1{letter-spacing:0.235520pt;}
.ls4{letter-spacing:0.268800pt;}
.ls34{letter-spacing:0.288512pt;}
.ls13{letter-spacing:0.294400pt;}
.ls7{letter-spacing:0.584320pt;}
.ls26{letter-spacing:1.413120pt;}
.ls31{letter-spacing:1.572096pt;}
.ls23{letter-spacing:2.590720pt;}
.ls15{letter-spacing:2.708480pt;}
.ls29{letter-spacing:4.592640pt;}
.ls30{letter-spacing:7.831040pt;}
.ls1a{letter-spacing:8.478720pt;}
.ls18{letter-spacing:9.067520pt;}
.ls24{letter-spacing:9.715200pt;}
.ls36{letter-spacing:9.785856pt;}
.ls35{letter-spacing:9.803520pt;}
.ls2e{letter-spacing:10.362880pt;}
.ls2f{letter-spacing:10.409984pt;}
.ls1b{letter-spacing:12.305920pt;}
.ls16{letter-spacing:14.190080pt;}
.ls20{letter-spacing:14.837760pt;}
.ls21{letter-spacing:15.485440pt;}
.ls27{letter-spacing:16.133120pt;}
.ls28{letter-spacing:16.780800pt;}
.ls32{letter-spacing:20.019200pt;}
.ls33{letter-spacing:22.551040pt;}
.ls25{letter-spacing:27.673600pt;}
.ls17{letter-spacing:28.910080pt;}
.ls3a{letter-spacing:44.454400pt;}
.ls22{letter-spacing:52.756480pt;}
.ws42{word-spacing:-58.880000pt;}
.ws7{word-spacing:-17.072640pt;}
.ws1f{word-spacing:-16.997760pt;}
.ws8{word-spacing:-16.473600pt;}
.ws22{word-spacing:-16.323840pt;}
.ws95{word-spacing:-15.413760pt;}
.ws21{word-spacing:-13.601280pt;}
.wsa{word-spacing:-13.542400pt;}
.ws23{word-spacing:-13.430528pt;}
.wsd{word-spacing:-13.424640pt;}
.ws3{word-spacing:-13.306880pt;}
.wsb{word-spacing:-13.248000pt;}
.ws4{word-spacing:-13.189120pt;}
.ws8b{word-spacing:-13.130240pt;}
.ws5{word-spacing:-13.071360pt;}
.ws9{word-spacing:-13.012480pt;}
.wsc{word-spacing:-12.953600pt;}
.ws6{word-spacing:-12.894720pt;}
.ws20{word-spacing:-12.835840pt;}
.ws44{word-spacing:-12.776960pt;}
.ws43{word-spacing:-12.718080pt;}
.ws25{word-spacing:-12.659200pt;}
.ws24{word-spacing:-12.600320pt;}
.ws2{word-spacing:-12.589440pt;}
.ws41{word-spacing:-12.482560pt;}
.ws1{word-spacing:-12.164480pt;}
.ws0{word-spacing:-11.952000pt;}
.ws91{word-spacing:-3.473920pt;}
.ws6c{word-spacing:-3.179520pt;}
.ws60{word-spacing:-3.061760pt;}
.ws5b{word-spacing:-3.002880pt;}
.ws5a{word-spacing:-2.944000pt;}
.ws90{word-spacing:-2.826240pt;}
.ws6a{word-spacing:-2.531840pt;}
.ws6d{word-spacing:-2.472960pt;}
.ws5e{word-spacing:-2.355200pt;}
.ws5d{word-spacing:-2.178560pt;}
.ws75{word-spacing:-1.884160pt;}
.ws57{word-spacing:-1.707520pt;}
.ws9c{word-spacing:-1.589760pt;}
.ws69{word-spacing:-1.530880pt;}
.ws76{word-spacing:-1.413120pt;}
.ws30{word-spacing:-1.236480pt;}
.ws9d{word-spacing:-1.118720pt;}
.ws56{word-spacing:-1.059840pt;}
.ws58{word-spacing:-0.942080pt;}
.ws37{word-spacing:-0.883200pt;}
.ws18{word-spacing:-0.824320pt;}
.ws6b{word-spacing:-0.647680pt;}
.ws17{word-spacing:-0.588800pt;}
.ws1a{word-spacing:-0.471040pt;}
.ws3b{word-spacing:-0.449280pt;}
.ws12{word-spacing:-0.374400pt;}
.ws16{word-spacing:-0.294400pt;}
.ws86{word-spacing:-0.235520pt;}
.ws92{word-spacing:-0.207360pt;}
.ws93{word-spacing:-0.176640pt;}
.ws13{word-spacing:-0.117760pt;}
.ws1e{word-spacing:-0.074880pt;}
.ws19{word-spacing:-0.058880pt;}
.wsf{word-spacing:0.000000pt;}
.ws11{word-spacing:0.058880pt;}
.ws63{word-spacing:0.117760pt;}
.wse{word-spacing:0.159360pt;}
.ws10{word-spacing:0.176640pt;}
.ws1d{word-spacing:0.235520pt;}
.ws96{word-spacing:0.276480pt;}
.ws1c{word-spacing:0.294400pt;}
.ws97{word-spacing:0.345600pt;}
.ws14{word-spacing:0.353280pt;}
.ws15{word-spacing:0.412160pt;}
.ws5f{word-spacing:0.471040pt;}
.ws8c{word-spacing:0.529920pt;}
.ws1b{word-spacing:0.588800pt;}
.ws9b{word-spacing:0.647680pt;}
.ws29{word-spacing:0.706560pt;}
.ws55{word-spacing:0.765440pt;}
.ws2f{word-spacing:0.824320pt;}
.ws8d{word-spacing:0.942080pt;}
.ws84{word-spacing:1.000960pt;}
.ws5c{word-spacing:1.177600pt;}
.ws3c{word-spacing:1.295360pt;}
.ws2e{word-spacing:1.472000pt;}
.ws2a{word-spacing:1.648640pt;}
.ws70{word-spacing:1.943040pt;}
.ws6f{word-spacing:2.119680pt;}
.ws71{word-spacing:2.296320pt;}
.ws28{word-spacing:2.590720pt;}
.ws27{word-spacing:2.767360pt;}
.ws50{word-spacing:2.944000pt;}
.ws7d{word-spacing:3.238400pt;}
.ws31{word-spacing:3.415040pt;}
.ws4b{word-spacing:3.473920pt;}
.ws98{word-spacing:3.827200pt;}
.ws4c{word-spacing:4.003840pt;}
.ws49{word-spacing:4.121600pt;}
.ws4a{word-spacing:4.180480pt;}
.ws94{word-spacing:4.474880pt;}
.ws67{word-spacing:4.533760pt;}
.ws68{word-spacing:4.828160pt;}
.ws8e{word-spacing:5.122560pt;}
.ws8f{word-spacing:5.475840pt;}
.ws83{word-spacing:6.417920pt;}
.ws73{word-spacing:6.594560pt;}
.ws82{word-spacing:6.771200pt;}
.ws72{word-spacing:7.242240pt;}
.ws74{word-spacing:7.418880pt;}
.ws85{word-spacing:7.713280pt;}
.ws79{word-spacing:7.889920pt;}
.ws7a{word-spacing:8.066560pt;}
.ws89{word-spacing:8.184320pt;}
.ws3e{word-spacing:8.360960pt;}
.ws3d{word-spacing:8.537600pt;}
.ws7c{word-spacing:8.714240pt;}
.ws38{word-spacing:8.949760pt;}
.ws39{word-spacing:9.126400pt;}
.ws3a{word-spacing:9.303040pt;}
.ws51{word-spacing:9.597440pt;}
.ws26{word-spacing:9.774080pt;}
.ws52{word-spacing:9.950720pt;}
.ws78{word-spacing:10.245120pt;}
.ws77{word-spacing:10.421760pt;}
.ws8a{word-spacing:10.598400pt;}
.ws2c{word-spacing:11.540480pt;}
.ws2d{word-spacing:11.717120pt;}
.ws2b{word-spacing:11.893760pt;}
.ws6e{word-spacing:12.188160pt;}
.ws3f{word-spacing:12.364800pt;}
.ws87{word-spacing:12.541440pt;}
.ws7b{word-spacing:12.835840pt;}
.ws40{word-spacing:13.012480pt;}
.ws32{word-spacing:13.660160pt;}
.ws88{word-spacing:13.777920pt;}
.ws33{word-spacing:14.248960pt;}
.ws34{word-spacing:14.307840pt;}
.ws46{word-spacing:14.720000pt;}
.ws48{word-spacing:14.896640pt;}
.ws45{word-spacing:15.073280pt;}
.ws4f{word-spacing:15.367680pt;}
.ws47{word-spacing:15.544320pt;}
.ws4d{word-spacing:15.662080pt;}
.ws4e{word-spacing:16.192000pt;}
.ws64{word-spacing:16.250880pt;}
.ws65{word-spacing:16.663040pt;}
.ws62{word-spacing:16.721920pt;}
.ws66{word-spacing:16.839680pt;}
.ws61{word-spacing:17.016320pt;}
.ws7f{word-spacing:20.019200pt;}
.ws7e{word-spacing:20.195840pt;}
.ws80{word-spacing:22.609920pt;}
.ws81{word-spacing:22.786560pt;}
.ws59{word-spacing:23.257600pt;}
.ws54{word-spacing:27.732480pt;}
.ws53{word-spacing:27.909120pt;}
.ws36{word-spacing:28.968960pt;}
.ws35{word-spacing:29.145600pt;}
.ws9a{word-spacing:31.383040pt;}
.ws99{word-spacing:31.559680pt;}
._10{margin-left:-3.827200pt;}
._f{margin-left:-2.885120pt;}
._1{margin-left:-1.285504pt;}
._4{width:1.165056pt;}
._9{width:2.828672pt;}
._15{width:4.739456pt;}
._14{width:8.692992pt;}
._d{width:10.156416pt;}
._a{width:11.778432pt;}
._c{width:14.837760pt;}
._11{width:16.504320pt;}
._12{width:19.694848pt;}
._13{width:22.752768pt;}
._e{width:27.051008pt;}
._b{width:29.774720pt;}
._5{width:50.480384pt;}
._6{width:58.098688pt;}
._7{width:60.889600pt;}
._8{width:67.988992pt;}
._0{width:336.621440pt;}
._2{width:631.171840pt;}
._3{width:731.037440pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.000000pt;}
.ya{bottom:21.920000pt;}
.y18{bottom:39.840000pt;}
.y7{bottom:51.200640pt;}
.y6{bottom:69.114880pt;}
.y5{bottom:83.040000pt;}
.yb0{bottom:164.993280pt;}
.y8e{bottom:172.363520pt;}
.yaf{bottom:185.468800pt;}
.y8d{bottom:192.839040pt;}
.yae{bottom:206.106240pt;}
.y47{bottom:209.769600pt;}
.y8c{bottom:214.286080pt;}
.y29{bottom:223.680000pt;}
.yad{bottom:227.553280pt;}
.y6a{bottom:229.515520pt;}
.y46{bottom:230.407040pt;}
.y8b{bottom:234.923520pt;}
.y28{bottom:238.240000pt;}
.yac{bottom:248.028800pt;}
.y69{bottom:250.152960pt;}
.y45{bottom:251.044480pt;}
.y8a{bottom:255.399040pt;}
.y27{bottom:256.800000pt;}
.yab{bottom:268.666240pt;}
.y68{bottom:270.628480pt;}
.y44{bottom:271.520000pt;}
.y26{bottom:275.360000pt;}
.y89{bottom:276.036480pt;}
.yaa{bottom:289.303680pt;}
.y67{bottom:291.265920pt;}
.y25{bottom:293.920000pt;}
.y88{bottom:296.673920pt;}
.ya9{bottom:309.779200pt;}
.y66{bottom:311.903360pt;}
.y24{bottom:312.480000pt;}
.y87{bottom:317.959040pt;}
.ya8{bottom:330.416640pt;}
.y23{bottom:331.040000pt;}
.y65{bottom:332.540800pt;}
.y86{bottom:338.596480pt;}
.y22{bottom:349.600000pt;}
.y43{bottom:350.450560pt;}
.ya7{bottom:351.054080pt;}
.y85{bottom:359.233920pt;}
.y64{bottom:366.455680pt;}
.y21{bottom:368.160000pt;}
.y42{bottom:370.926080pt;}
.ya6{bottom:371.529600pt;}
.y84{bottom:380.519040pt;}
.y20{bottom:386.880000pt;}
.y63{bottom:386.931200pt;}
.y41{bottom:391.563520pt;}
.ya5{bottom:392.167040pt;}
.y83{bottom:401.156480pt;}
.y1f{bottom:405.440000pt;}
.y62{bottom:407.568640pt;}
.yc5{bottom:409.159040pt;}
.y40{bottom:412.200960pt;}
.ya4{bottom:412.804480pt;}
.y82{bottom:421.632000pt;}
.y61{bottom:428.206080pt;}
.y1e{bottom:432.160000pt;}
.y3f{bottom:432.838400pt;}
.ya3{bottom:433.280000pt;}
.y81{bottom:443.079040pt;}
.yc4{bottom:443.235840pt;}
.y60{bottom:448.681600pt;}
.ya2{bottom:454.880000pt;}
.yc3{bottom:463.711360pt;}
.y80{bottom:463.716480pt;}
.y3e{bottom:466.753280pt;}
.y5f{bottom:469.319040pt;}
.y1d{bottom:482.880000pt;}
.yc2{bottom:484.348800pt;}
.y7f{bottom:484.353920pt;}
.y3d{bottom:487.228800pt;}
.ya1{bottom:491.379200pt;}
.y1c{bottom:501.440000pt;}
.y5e{bottom:503.233920pt;}
.y7e{bottom:504.829440pt;}
.yc1{bottom:504.986240pt;}
.y3c{bottom:507.866240pt;}
.ya0{bottom:512.016640pt;}
.y1b{bottom:520.000000pt;}
.y5d{bottom:523.871360pt;}
.yc0{bottom:525.461760pt;}
.y7d{bottom:525.466880pt;}
.y3b{bottom:528.503680pt;}
.y9f{bottom:532.654080pt;}
.y1a{bottom:538.560000pt;}
.y5c{bottom:544.346880pt;}
.ybf{bottom:546.099200pt;}
.y7c{bottom:546.752000pt;}
.y3a{bottom:548.979200pt;}
.y9e{bottom:553.939200pt;}
.y17{bottom:557.120000pt;}
.y5b{bottom:565.793920pt;}
.ybe{bottom:566.574720pt;}
.y7b{bottom:567.389440pt;}
.y39{bottom:569.616640pt;}
.y9d{bottom:574.576640pt;}
.y19{bottom:579.040000pt;}
.y5a{bottom:586.431360pt;}
.ybd{bottom:588.021760pt;}
.y7a{bottom:588.026880pt;}
.y38{bottom:590.254080pt;}
.y9c{bottom:595.214080pt;}
.y59{bottom:606.906880pt;}
.ybc{bottom:608.659200pt;}
.y79{bottom:609.312000pt;}
.y37{bottom:610.729600pt;}
.y16{bottom:611.520000pt;}
.y9b{bottom:615.689600pt;}
.y58{bottom:627.544320pt;}
.ybb{bottom:629.296640pt;}
.y78{bottom:629.949440pt;}
.y15{bottom:630.080000pt;}
.y36{bottom:631.367040pt;}
.y9a{bottom:636.327040pt;}
.y57{bottom:648.181760pt;}
.yba{bottom:649.772160pt;}
.y77{bottom:651.396480pt;}
.y35{bottom:652.004480pt;}
.y99{bottom:656.964480pt;}
.y14{bottom:666.560000pt;}
.y56{bottom:668.657280pt;}
.yb9{bottom:670.409600pt;}
.y76{bottom:671.872000pt;}
.y34{bottom:672.480000pt;}
.y98{bottom:677.440000pt;}
.y13{bottom:685.120000pt;}
.y55{bottom:690.104320pt;}
.yb8{bottom:691.047040pt;}
.y33{bottom:694.880000pt;}
.y97{bottom:699.040000pt;}
.y75{bottom:706.596480pt;}
.y54{bottom:710.741760pt;}
.yb7{bottom:711.522560pt;}
.y12{bottom:721.600000pt;}
.y74{bottom:727.233920pt;}
.y53{bottom:731.217280pt;}
.yb6{bottom:732.160000pt;}
.y96{bottom:735.530240pt;}
.y73{bottom:747.871360pt;}
.y11{bottom:748.480000pt;}
.y32{bottom:751.372160pt;}
.y52{bottom:752.664320pt;}
.yb5{bottom:753.759867pt;}
.y72{bottom:768.346880pt;}
.y95{bottom:769.445120pt;}
.y31{bottom:772.009600pt;}
.y51{bottom:773.139840pt;}
.y71{bottom:788.984320pt;}
.y94{bottom:790.082560pt;}
.yb4{bottom:790.244480pt;}
.y30{bottom:792.485120pt;}
.y50{bottom:793.777280pt;}
.y10{bottom:799.040000pt;}
.y70{bottom:809.621760pt;}
.y93{bottom:810.720000pt;}
.y2f{bottom:813.122560pt;}
.y4f{bottom:814.414720pt;}
.yf{bottom:817.600000pt;}
.y6f{bottom:830.097280pt;}
.yb3{bottom:832.167040pt;}
.y92{bottom:832.960000pt;}
.y2e{bottom:833.760000pt;}
.y4e{bottom:835.052160pt;}
.ye{bottom:836.160000pt;}
.y6e{bottom:850.734720pt;}
.yb2{bottom:852.804480pt;}
.yd{bottom:854.720000pt;}
.y4d{bottom:855.527680pt;}
.y2d{bottom:856.000000pt;}
.yc{bottom:873.280000pt;}
.y4c{bottom:876.165120pt;}
.y6d{bottom:884.649600pt;}
.y91{bottom:889.442560pt;}
.y9{bottom:891.840000pt;}
.yb1{bottom:894.880000pt;}
.y4b{bottom:896.640640pt;}
.y6c{bottom:905.287040pt;}
.y90{bottom:910.080000pt;}
.y2c{bottom:912.485120pt;}
.y6b{bottom:925.762560pt;}
.y8f{bottom:930.555520pt;}
.y4a{bottom:931.365120pt;}
.y8{bottom:936.640000pt;}
.y2b{bottom:946.400000pt;}
.y49{bottom:952.002560pt;}
.y2a{bottom:968.640000pt;}
.y48{bottom:972.640000pt;}
.y4{bottom:990.075200pt;}
.y3{bottom:1006.396320pt;}
.y2{bottom:1022.558080pt;}
.y1{bottom:1035.360000pt;}
.hb{height:17.760000pt;}
.h8{height:17.920000pt;}
.h7{height:17.921333pt;}
.h9{height:35.838667pt;}
.h6{height:35.840000pt;}
.h2{height:38.128125pt;}
.h3{height:42.262500pt;}
.h4{height:42.751250pt;}
.hc{height:48.465000pt;}
.ha{height:53.760000pt;}
.h5{height:54.368437pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:84.000000pt;}
.w5{width:93.600000pt;}
.w2{width:178.241333pt;}
.w6{width:205.758667pt;}
.w7{width:210.558667pt;}
.w3{width:417.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.720000pt;}
.x1{left:94.400000pt;}
.x6{left:102.400000pt;}
.xe{left:118.400000pt;}
.xc{left:141.415680pt;}
.xf{left:142.408320pt;}
.xd{left:165.424000pt;}
.x10{left:166.416640pt;}
.xa{left:187.200000pt;}
.x11{left:190.439680pt;}
.x2{left:235.991360pt;}
.x8{left:281.280000pt;}
.x9{left:288.160000pt;}
.xb{left:488.000000pt;}
.x3{left:609.600000pt;}
.x4{left:623.525120pt;}
.x5{left:699.200640pt;}
}




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