
    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_d79bbcc1f1f3a52a37dd69c9.woff')format("woff");}.ff1{font-family:ff1;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_4afc83d584233a31903d7dae.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_21febc054488db8b57bb039a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50ed6155ea9c3b4fcf63c9a2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_01fd8f278a7818521eb74ddc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.065430;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_783a9b8405f0ad4b351c103c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_98c251dc10007f94a9cbe973.woff')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_f9afd91834cf1dd08b0617f5.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_06a8de0f869a4f01defaa0fc.woff')format("woff");}.ffa{font-family:ffa;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ded63aa1a733ced61ae718c2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ca656b0398bfc1492df88155.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cea8d25df873a5435fc76255.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_188005efd90de7ce671ef198.woff')format("woff");}.ffe{font-family:ffe;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fe2d8f2741bde7c8741bbd9f.woff')format("woff");}.fff{font-family:fff;line-height:1.003906;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:ff10;src:url('chunks/assets/font_8702fad56061f2484bdb23cb.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_379bb1bf05fba1347015e1cf.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_00d8116a1918000f93de25a4.woff')format("woff");}.ff12{font-family:ff12;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:45.360000px;}
.lsf{letter-spacing:-0.762000px;}
.ls15{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.495600px;}
.lsc{letter-spacing:-0.478200px;}
.lsa{letter-spacing:-0.427800px;}
.ls29{letter-spacing:-0.413400px;}
.ls14{letter-spacing:-0.360000px;}
.ls21{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.085200px;}
.ls13{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.054720px;}
.ls5{letter-spacing:0.077760px;}
.ls18{letter-spacing:0.106560px;}
.ls1f{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.224400px;}
.lse{letter-spacing:0.259800px;}
.ls27{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.328320px;}
.ls0{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.460200px;}
.ls1d{letter-spacing:0.666000px;}
.ls10{letter-spacing:0.696000px;}
.ls1c{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.828000px;}
.ls16{letter-spacing:0.900000px;}
.ls1e{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.440000px;}
.ls2{letter-spacing:1.627200px;}
.ls20{letter-spacing:7.380000px;}
.ls25{letter-spacing:9.540000px;}
.ls17{letter-spacing:19.620000px;}
.ls12{letter-spacing:37.080000px;}
.ls11{letter-spacing:39.060000px;}
.ls28{letter-spacing:45.306720px;}
.ls23{letter-spacing:46.002720px;}
.ls24{letter-spacing:46.026720px;}
.ls26{letter-spacing:75.546720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.wse{word-spacing:-15.606000px;}
.ws11{word-spacing:-15.400200px;}
.wsc{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.733600px;}
.ws12{word-spacing:-14.526600px;}
.ws4{word-spacing:-13.147200px;}
.ws1{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.527600px;}
.ws2{word-spacing:-10.185000px;}
.ws5{word-spacing:-10.134600px;}
.ws8{word-spacing:-9.850800px;}
.ws9{word-spacing:0.000000px;}
._29{margin-left:-3.842160px;}
._4{margin-left:-2.253840px;}
._2{margin-left:-1.242000px;}
._1{width:1.336320px;}
._e{width:2.444640px;}
._11{width:3.878880px;}
._14{width:5.401440px;}
._c{width:6.513840px;}
._b{width:7.649280px;}
._33{width:8.653680px;}
._13{width:9.681120px;}
._8{width:11.234400px;}
._7{width:12.310560px;}
._d{width:13.598640px;}
._19{width:16.912080px;}
._1a{width:18.084720px;}
._1d{width:19.247040px;}
._1c{width:20.399760px;}
._27{width:21.503520px;}
._17{width:22.529520px;}
._26{width:23.674560px;}
._22{width:24.714720px;}
._1b{width:25.756560px;}
._10{width:26.810640px;}
._f{width:27.907920px;}
._a{width:29.710080px;}
._9{width:30.872880px;}
._12{width:32.438880px;}
._21{width:33.693360px;}
._20{width:35.019360px;}
._30{width:36.774720px;}
._2a{width:38.463840px;}
._24{width:39.680640px;}
._18{width:41.353920px;}
._32{width:42.548160px;}
._15{width:43.684560px;}
._16{width:45.067680px;}
._28{width:46.126080px;}
._2d{width:47.185200px;}
._2f{width:48.391200px;}
._2e{width:49.779600px;}
._23{width:50.796000px;}
._25{width:52.757760px;}
._3f{width:53.891040px;}
._3d{width:55.636560px;}
._35{width:56.831760px;}
._3{width:57.928080px;}
._1f{width:59.640480px;}
._34{width:60.656400px;}
._42{width:61.911120px;}
._2b{width:62.939280px;}
._2c{width:64.110480px;}
._1e{width:65.317680px;}
._3e{width:67.148640px;}
._37{width:68.452560px;}
._36{width:69.620400px;}
._31{width:71.092800px;}
._40{width:72.548640px;}
._44{width:74.221920px;}
._41{width:76.791600px;}
._3a{width:78.823440px;}
._38{width:80.893440px;}
._39{width:81.905760px;}
._43{width:83.604240px;}
._46{width:85.258080px;}
._47{width:86.590080px;}
._3b{width:96.811200px;}
._3c{width:97.886880px;}
._45{width:126.571680px;}
._5{width:133.435920px;}
._48{width:162.606960px;}
._6{width:299.649360px;}
._0{width:2030.981280px;}
.fcb{color:rgb(0,0,255);}
.fc9{color:transparent;}
.fc8{color:rgb(79,129,189);}
.fc4{color:rgb(28,78,123);}
.fc3{color:rgb(148,54,52);}
.fca{color:rgb(242,242,242);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(205,29,142);}
.fc6{color:rgb(84,141,212);}
.fc5{color:rgb(31,73,125);}
.fc0{color:rgb(0,112,192);}
.fsa{font-size:5.760000px;}
.fs8{font-size:18.000000px;}
.fs1{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:56.920429px;}
.fs9{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:99.360000px;}
.fs2{font-size:108.000000px;}
.fsb{font-size:419.760000px;}
.y9a{bottom:-171.750000px;}
.y99{bottom:-142.770000px;}
.y98{bottom:-113.970000px;}
.y97{bottom:-84.990000px;}
.y6{bottom:-56.190000px;}
.yd{bottom:-33.870000px;}
.y9c{bottom:-33.690000px;}
.y5{bottom:-27.390000px;}
.y5c{bottom:-27.210000px;}
.y0{bottom:0.000000px;}
.y4{bottom:1.620000px;}
.ya{bottom:1.980000px;}
.yc{bottom:2.340000px;}
.y95{bottom:3.240000px;}
.y45{bottom:4.500000px;}
.y57{bottom:5.220000px;}
.y7{bottom:5.760000px;}
.y43{bottom:6.120000px;}
.y59{bottom:7.380000px;}
.yd6{bottom:8.100000px;}
.y54{bottom:14.040000px;}
.y56{bottom:19.800000px;}
.y10{bottom:20.160000px;}
.y5a{bottom:24.480000px;}
.y19{bottom:25.920000px;}
.yd5{bottom:30.060000px;}
.y9{bottom:31.860000px;}
.y94{bottom:32.940000px;}
.y1d{bottom:33.120000px;}
.y42{bottom:45.900000px;}
.y8{bottom:51.300000px;}
.yd4{bottom:51.834000px;}
.y93{bottom:52.380000px;}
.yf{bottom:63.720000px;}
.y11{bottom:64.080000px;}
.y41{bottom:65.700000px;}
.y1c{bottom:67.500000px;}
.y2{bottom:69.156000px;}
.y92{bottom:69.516000px;}
.y1a{bottom:85.140000px;}
.y40{bottom:85.500000px;}
.y1b{bottom:88.740000px;}
.y18{bottom:90.900000px;}
.y55{bottom:93.096000px;}
.yc7{bottom:93.816000px;}
.y8f{bottom:94.176000px;}
.y17{bottom:95.940000px;}
.yd3{bottom:98.676000px;}
.y3f{bottom:105.300000px;}
.yc6{bottom:113.616000px;}
.y8e{bottom:113.976000px;}
.y3e{bottom:125.100000px;}
.yc5{bottom:133.416000px;}
.y8d{bottom:133.956000px;}
.y3d{bottom:145.080000px;}
.y51{bottom:147.636000px;}
.y2e{bottom:153.000000px;}
.yc4{bottom:153.390000px;}
.y8c{bottom:153.750000px;}
.y3c{bottom:164.880000px;}
.y50{bottom:167.430000px;}
.y2d{bottom:172.800000px;}
.ya9{bottom:173.190000px;}
.y8b{bottom:173.550000px;}
.y3b{bottom:184.680000px;}
.y4f{bottom:187.230000px;}
.y2c{bottom:192.810000px;}
.ya8{bottom:192.990000px;}
.y8a{bottom:193.350000px;}
.y3a{bottom:204.510000px;}
.y4e{bottom:207.030000px;}
.y2b{bottom:212.610000px;}
.ya7{bottom:212.790000px;}
.y89{bottom:213.150000px;}
.y39{bottom:224.310000px;}
.y53{bottom:226.110000px;}
.y4d{bottom:226.830000px;}
.yc3{bottom:232.230000px;}
.y2a{bottom:232.410000px;}
.ycd{bottom:232.590000px;}
.ya4{bottom:232.770000px;}
.y88{bottom:233.130000px;}
.y38{bottom:244.290000px;}
.y4c{bottom:246.810000px;}
.y29{bottom:250.950000px;}
.yc2{bottom:252.210000px;}
.ya3{bottom:252.570000px;}
.y87{bottom:252.930000px;}
.y37{bottom:264.090000px;}
.y4b{bottom:266.610000px;}
.y28{bottom:267.150000px;}
.yc1{bottom:272.370000px;}
.y86{bottom:272.730000px;}
.y27{bottom:283.350000px;}
.y36{bottom:283.890000px;}
.y4a{bottom:286.410000px;}
.yc0{bottom:292.170000px;}
.y85{bottom:292.530000px;}
.y26{bottom:299.550000px;}
.y35{bottom:303.690000px;}
.y49{bottom:306.210000px;}
.ybf{bottom:311.970000px;}
.y84{bottom:312.330000px;}
.y25{bottom:315.570000px;}
.y34{bottom:323.490000px;}
.y48{bottom:326.055000px;}
.y24{bottom:331.770000px;}
.ybe{bottom:331.815000px;}
.y91{bottom:331.995000px;}
.y83{bottom:332.355000px;}
.y33{bottom:343.470000px;}
.y47{bottom:345.675000px;}
.y52{bottom:346.035000px;}
.y23{bottom:347.970000px;}
.y90{bottom:351.795000px;}
.y82{bottom:352.155000px;}
.y32{bottom:363.270000px;}
.y22{bottom:364.170000px;}
.ya1{bottom:371.595000px;}
.y81{bottom:371.955000px;}
.y46{bottom:375.015000px;}
.y44{bottom:377.175000px;}
.y21{bottom:381.450000px;}
.y31{bottom:383.070000px;}
.y1e{bottom:383.115000px;}
.ya0{bottom:391.395000px;}
.y80{bottom:391.755000px;}
.y20{bottom:401.970000px;}
.y30{bottom:402.870000px;}
.yb5{bottom:411.195000px;}
.y7f{bottom:411.555000px;}
.y1f{bottom:421.770000px;}
.y2f{bottom:422.670000px;}
.ybd{bottom:430.995000px;}
.yb4{bottom:431.175000px;}
.y7e{bottom:431.535000px;}
.yb2{bottom:450.975000px;}
.y7d{bottom:451.335000px;}
.ybc{bottom:470.775000px;}
.y7c{bottom:471.135000px;}
.ybb{bottom:490.575000px;}
.y7b{bottom:490.935000px;}
.yae{bottom:510.375000px;}
.y7a{bottom:510.735000px;}
.yba{bottom:530.175000px;}
.yad{bottom:530.355000px;}
.y79{bottom:530.715000px;}
.ycc{bottom:549.975000px;}
.yb9{bottom:550.155000px;}
.y78{bottom:550.515000px;}
.yb8{bottom:569.985000px;}
.ycb{bottom:570.165000px;}
.y77{bottom:570.345000px;}
.yd1{bottom:589.785000px;}
.yb7{bottom:589.965000px;}
.y76{bottom:590.145000px;}
.yb0{bottom:609.585000px;}
.y75{bottom:609.945000px;}
.yd0{bottom:629.385000px;}
.yac{bottom:629.565000px;}
.y74{bottom:629.925000px;}
.yab{bottom:649.365000px;}
.y73{bottom:649.725000px;}
.yaa{bottom:669.165000px;}
.y72{bottom:669.525000px;}
.ya6{bottom:688.965000px;}
.y71{bottom:689.325000px;}
.ya5{bottom:708.765000px;}
.y70{bottom:709.125000px;}
.ycf{bottom:728.565000px;}
.y6f{bottom:729.105000px;}
.yce{bottom:748.545000px;}
.y6e{bottom:748.905000px;}
.ya2{bottom:768.345000px;}
.y6d{bottom:768.705000px;}
.yb3{bottom:788.145000px;}
.y6c{bottom:788.505000px;}
.y6b{bottom:808.305000px;}
.y16{bottom:819.330000px;}
.yc9{bottom:827.970000px;}
.y6a{bottom:828.330000px;}
.yc8{bottom:847.770000px;}
.y69{bottom:848.130000px;}
.yaf{bottom:867.570000px;}
.y68{bottom:867.930000px;}
.yca{bottom:887.370000px;}
.y67{bottom:887.730000px;}
.yd2{bottom:906.090000px;}
.y66{bottom:907.530000px;}
.y15{bottom:923.010000px;}
.y65{bottom:927.510000px;}
.y14{bottom:937.230000px;}
.y64{bottom:947.310000px;}
.y13{bottom:951.090000px;}
.y12{bottom:966.750000px;}
.y63{bottom:967.110000px;}
.ye{bottom:979.350000px;}
.y9f{bottom:986.550000px;}
.y62{bottom:986.910000px;}
.y9e{bottom:1006.350000px;}
.y61{bottom:1006.710000px;}
.y9d{bottom:1026.330000px;}
.y60{bottom:1026.690000px;}
.yb6{bottom:1046.130000px;}
.y5f{bottom:1046.490000px;}
.yb1{bottom:1065.930000px;}
.y5e{bottom:1066.290000px;}
.y3{bottom:1086.120000px;}
.yb{bottom:1091.520000px;}
.y5b{bottom:1092.600000px;}
.y96{bottom:1094.940000px;}
.y5d{bottom:1101.960000px;}
.y9b{bottom:1103.040000px;}
.y58{bottom:1118.340000px;}
.y1{bottom:1145.880000px;}
.h19{height:5.653125px;}
.h1a{height:5.805000px;}
.h1b{height:5.920372px;}
.h18{height:5.940000px;}
.h3{height:11.160000px;}
.h8{height:15.120000px;}
.h11{height:17.666016px;}
.h1f{height:32.580000px;}
.hf{height:40.655391px;}
.h13{height:40.843828px;}
.h4{height:40.985156px;}
.h22{height:41.726953px;}
.h14{height:42.086250px;}
.h9{height:45.720703px;}
.he{height:47.321367px;}
.h21{height:48.616875px;}
.h17{height:50.597578px;}
.h16{height:58.651172px;}
.hd{height:59.255056px;}
.h1c{height:60.226875px;}
.h25{height:61.423863px;}
.h23{height:62.211094px;}
.h12{height:65.010937px;}
.h2{height:65.884219px;}
.h6{height:66.757500px;}
.h5{height:66.996000px;}
.h24{height:68.076000px;}
.h1{height:68.956875px;}
.h26{height:69.120000px;}
.h20{height:71.613281px;}
.h7{height:81.580078px;}
.hb{height:84.126094px;}
.ha{height:87.120000px;}
.h10{height:100.080000px;}
.hc{height:100.136250px;}
.h1d{height:113.616000px;}
.h1e{height:400.762266px;}
.h15{height:435.450000px;}
.h0{height:1188.000000px;}
.w8{width:20.520000px;}
.w6{width:40.500000px;}
.we{width:44.820000px;}
.w13{width:48.780000px;}
.w10{width:52.236000px;}
.w3{width:52.380000px;}
.w7{width:84.240000px;}
.w2{width:149.220000px;}
.w11{width:149.256000px;}
.wa{width:205.230000px;}
.wc{width:205.770000px;}
.w12{width:479.775000px;}
.w14{width:479.805000px;}
.w4{width:479.985000px;}
.wb{width:492.015000px;}
.wd{width:492.555000px;}
.w9{width:587.085000px;}
.w5{width:675.105000px;}
.wf{width:719.205000px;}
.w15{width:782.100000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.xd{left:10.080000px;}
.x11{left:12.060000px;}
.x7{left:13.680000px;}
.x14{left:20.700000px;}
.x3{left:23.220000px;}
.x6{left:26.100000px;}
.xe{left:30.240000px;}
.x1e{left:42.300000px;}
.x8{left:51.480000px;}
.x20{left:65.745000px;}
.x1a{left:73.260000px;}
.x4{left:74.520000px;}
.x1b{left:90.180000px;}
.x18{left:104.796000px;}
.x1{left:108.035986px;}
.x17{left:110.376000px;}
.x12{left:114.876000px;}
.xc{left:116.856000px;}
.x21{left:135.035986px;}
.x15{left:155.189986px;}
.x22{left:162.029986px;}
.xf{left:201.990000px;}
.x10{left:223.230000px;}
.x9{left:239.835000px;}
.x13{left:321.195000px;}
.x1c{left:357.735000px;}
.x19{left:459.074986px;}
.x16{left:480.344986px;}
.x23{left:507.344986px;}
.x24{left:534.344986px;}
.x1f{left:665.565000px;}
.x2{left:683.610000px;}
.xb{left:783.150000px;}
.x5{left:786.570000px;}
.x1d{left:788.370000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:40.320000pt;}
.lsf{letter-spacing:-0.677333pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.440533pt;}
.lsc{letter-spacing:-0.425067pt;}
.lsa{letter-spacing:-0.380267pt;}
.ls29{letter-spacing:-0.367467pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls21{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.075733pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.048640pt;}
.ls5{letter-spacing:0.069120pt;}
.ls18{letter-spacing:0.094720pt;}
.ls1f{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.199467pt;}
.lse{letter-spacing:0.230933pt;}
.ls27{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.291840pt;}
.ls0{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.409067pt;}
.ls1d{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.618667pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.736000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls2{letter-spacing:1.446400pt;}
.ls20{letter-spacing:6.560000pt;}
.ls25{letter-spacing:8.480000pt;}
.ls17{letter-spacing:17.440000pt;}
.ls12{letter-spacing:32.960000pt;}
.ls11{letter-spacing:34.720000pt;}
.ls28{letter-spacing:40.272640pt;}
.ls23{letter-spacing:40.891307pt;}
.ls24{letter-spacing:40.912640pt;}
.ls26{letter-spacing:67.152640pt;}
.ws0{word-spacing:-14.720000pt;}
.wse{word-spacing:-13.872000pt;}
.ws11{word-spacing:-13.689067pt;}
.wsc{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.096533pt;}
.ws12{word-spacing:-12.912533pt;}
.ws4{word-spacing:-11.686400pt;}
.ws1{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.357867pt;}
.ws2{word-spacing:-9.053333pt;}
.ws5{word-spacing:-9.008533pt;}
.ws8{word-spacing:-8.756267pt;}
.ws9{word-spacing:0.000000pt;}
._29{margin-left:-3.415253pt;}
._4{margin-left:-2.003413pt;}
._2{margin-left:-1.104000pt;}
._1{width:1.187840pt;}
._e{width:2.173013pt;}
._11{width:3.447893pt;}
._14{width:4.801280pt;}
._c{width:5.790080pt;}
._b{width:6.799360pt;}
._33{width:7.692160pt;}
._13{width:8.605440pt;}
._8{width:9.986133pt;}
._7{width:10.942720pt;}
._d{width:12.087680pt;}
._19{width:15.032960pt;}
._1a{width:16.075307pt;}
._1d{width:17.108480pt;}
._1c{width:18.133120pt;}
._27{width:19.114240pt;}
._17{width:20.026240pt;}
._26{width:21.044053pt;}
._22{width:21.968640pt;}
._1b{width:22.894720pt;}
._10{width:23.831680pt;}
._f{width:24.807040pt;}
._a{width:26.408960pt;}
._9{width:27.442560pt;}
._12{width:28.834560pt;}
._21{width:29.949653pt;}
._20{width:31.128320pt;}
._30{width:32.688640pt;}
._2a{width:34.190080pt;}
._24{width:35.271680pt;}
._18{width:36.759040pt;}
._32{width:37.820587pt;}
._15{width:38.830720pt;}
._16{width:40.060160pt;}
._28{width:41.000960pt;}
._2d{width:41.942400pt;}
._2f{width:43.014400pt;}
._2e{width:44.248533pt;}
._23{width:45.152000pt;}
._25{width:46.895787pt;}
._3f{width:47.903147pt;}
._3d{width:49.454720pt;}
._35{width:50.517120pt;}
._3{width:51.491627pt;}
._1f{width:53.013760pt;}
._34{width:53.916800pt;}
._42{width:55.032107pt;}
._2b{width:55.946027pt;}
._2c{width:56.987093pt;}
._1e{width:58.060160pt;}
._3e{width:59.687680pt;}
._37{width:60.846720pt;}
._36{width:61.884800pt;}
._31{width:63.193600pt;}
._40{width:64.487680pt;}
._44{width:65.975040pt;}
._41{width:68.259200pt;}
._3a{width:70.065280pt;}
._38{width:71.905280pt;}
._39{width:72.805120pt;}
._43{width:74.314880pt;}
._46{width:75.784960pt;}
._47{width:76.968960pt;}
._3b{width:86.054400pt;}
._3c{width:87.010560pt;}
._45{width:112.508160pt;}
._5{width:118.609707pt;}
._48{width:144.539520pt;}
._6{width:266.354987pt;}
._0{width:1805.316693pt;}
.fsa{font-size:5.120000pt;}
.fs8{font-size:16.000000pt;}
.fs1{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:50.595937pt;}
.fs9{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:88.320000pt;}
.fs2{font-size:96.000000pt;}
.fsb{font-size:373.120000pt;}
.y9a{bottom:-152.666667pt;}
.y99{bottom:-126.906667pt;}
.y98{bottom:-101.306667pt;}
.y97{bottom:-75.546667pt;}
.y6{bottom:-49.946667pt;}
.yd{bottom:-30.106667pt;}
.y9c{bottom:-29.946667pt;}
.y5{bottom:-24.346667pt;}
.y5c{bottom:-24.186667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:1.440000pt;}
.ya{bottom:1.760000pt;}
.yc{bottom:2.080000pt;}
.y95{bottom:2.880000pt;}
.y45{bottom:4.000000pt;}
.y57{bottom:4.640000pt;}
.y7{bottom:5.120000pt;}
.y43{bottom:5.440000pt;}
.y59{bottom:6.560000pt;}
.yd6{bottom:7.200000pt;}
.y54{bottom:12.480000pt;}
.y56{bottom:17.600000pt;}
.y10{bottom:17.920000pt;}
.y5a{bottom:21.760000pt;}
.y19{bottom:23.040000pt;}
.yd5{bottom:26.720000pt;}
.y9{bottom:28.320000pt;}
.y94{bottom:29.280000pt;}
.y1d{bottom:29.440000pt;}
.y42{bottom:40.800000pt;}
.y8{bottom:45.600000pt;}
.yd4{bottom:46.074667pt;}
.y93{bottom:46.560000pt;}
.yf{bottom:56.640000pt;}
.y11{bottom:56.960000pt;}
.y41{bottom:58.400000pt;}
.y1c{bottom:60.000000pt;}
.y2{bottom:61.472000pt;}
.y92{bottom:61.792000pt;}
.y1a{bottom:75.680000pt;}
.y40{bottom:76.000000pt;}
.y1b{bottom:78.880000pt;}
.y18{bottom:80.800000pt;}
.y55{bottom:82.752000pt;}
.yc7{bottom:83.392000pt;}
.y8f{bottom:83.712000pt;}
.y17{bottom:85.280000pt;}
.yd3{bottom:87.712000pt;}
.y3f{bottom:93.600000pt;}
.yc6{bottom:100.992000pt;}
.y8e{bottom:101.312000pt;}
.y3e{bottom:111.200000pt;}
.yc5{bottom:118.592000pt;}
.y8d{bottom:119.072000pt;}
.y3d{bottom:128.960000pt;}
.y51{bottom:131.232000pt;}
.y2e{bottom:136.000000pt;}
.yc4{bottom:136.346667pt;}
.y8c{bottom:136.666667pt;}
.y3c{bottom:146.560000pt;}
.y50{bottom:148.826667pt;}
.y2d{bottom:153.600000pt;}
.ya9{bottom:153.946667pt;}
.y8b{bottom:154.266667pt;}
.y3b{bottom:164.160000pt;}
.y4f{bottom:166.426667pt;}
.y2c{bottom:171.386667pt;}
.ya8{bottom:171.546667pt;}
.y8a{bottom:171.866667pt;}
.y3a{bottom:181.786667pt;}
.y4e{bottom:184.026667pt;}
.y2b{bottom:188.986667pt;}
.ya7{bottom:189.146667pt;}
.y89{bottom:189.466667pt;}
.y39{bottom:199.386667pt;}
.y53{bottom:200.986667pt;}
.y4d{bottom:201.626667pt;}
.yc3{bottom:206.426667pt;}
.y2a{bottom:206.586667pt;}
.ycd{bottom:206.746667pt;}
.ya4{bottom:206.906667pt;}
.y88{bottom:207.226667pt;}
.y38{bottom:217.146667pt;}
.y4c{bottom:219.386667pt;}
.y29{bottom:223.066667pt;}
.yc2{bottom:224.186667pt;}
.ya3{bottom:224.506667pt;}
.y87{bottom:224.826667pt;}
.y37{bottom:234.746667pt;}
.y4b{bottom:236.986667pt;}
.y28{bottom:237.466667pt;}
.yc1{bottom:242.106667pt;}
.y86{bottom:242.426667pt;}
.y27{bottom:251.866667pt;}
.y36{bottom:252.346667pt;}
.y4a{bottom:254.586667pt;}
.yc0{bottom:259.706667pt;}
.y85{bottom:260.026667pt;}
.y26{bottom:266.266667pt;}
.y35{bottom:269.946667pt;}
.y49{bottom:272.186667pt;}
.ybf{bottom:277.306667pt;}
.y84{bottom:277.626667pt;}
.y25{bottom:280.506667pt;}
.y34{bottom:287.546667pt;}
.y48{bottom:289.826667pt;}
.y24{bottom:294.906667pt;}
.ybe{bottom:294.946667pt;}
.y91{bottom:295.106667pt;}
.y83{bottom:295.426667pt;}
.y33{bottom:305.306667pt;}
.y47{bottom:307.266667pt;}
.y52{bottom:307.586667pt;}
.y23{bottom:309.306667pt;}
.y90{bottom:312.706667pt;}
.y82{bottom:313.026667pt;}
.y32{bottom:322.906667pt;}
.y22{bottom:323.706667pt;}
.ya1{bottom:330.306667pt;}
.y81{bottom:330.626667pt;}
.y46{bottom:333.346667pt;}
.y44{bottom:335.266667pt;}
.y21{bottom:339.066667pt;}
.y31{bottom:340.506667pt;}
.y1e{bottom:340.546667pt;}
.ya0{bottom:347.906667pt;}
.y80{bottom:348.226667pt;}
.y20{bottom:357.306667pt;}
.y30{bottom:358.106667pt;}
.yb5{bottom:365.506667pt;}
.y7f{bottom:365.826667pt;}
.y1f{bottom:374.906667pt;}
.y2f{bottom:375.706667pt;}
.ybd{bottom:383.106667pt;}
.yb4{bottom:383.266667pt;}
.y7e{bottom:383.586667pt;}
.yb2{bottom:400.866667pt;}
.y7d{bottom:401.186667pt;}
.ybc{bottom:418.466667pt;}
.y7c{bottom:418.786667pt;}
.ybb{bottom:436.066667pt;}
.y7b{bottom:436.386667pt;}
.yae{bottom:453.666667pt;}
.y7a{bottom:453.986667pt;}
.yba{bottom:471.266667pt;}
.yad{bottom:471.426667pt;}
.y79{bottom:471.746667pt;}
.ycc{bottom:488.866667pt;}
.yb9{bottom:489.026667pt;}
.y78{bottom:489.346667pt;}
.yb8{bottom:506.653333pt;}
.ycb{bottom:506.813333pt;}
.y77{bottom:506.973333pt;}
.yd1{bottom:524.253333pt;}
.yb7{bottom:524.413333pt;}
.y76{bottom:524.573333pt;}
.yb0{bottom:541.853333pt;}
.y75{bottom:542.173333pt;}
.yd0{bottom:559.453333pt;}
.yac{bottom:559.613333pt;}
.y74{bottom:559.933333pt;}
.yab{bottom:577.213333pt;}
.y73{bottom:577.533333pt;}
.yaa{bottom:594.813333pt;}
.y72{bottom:595.133333pt;}
.ya6{bottom:612.413333pt;}
.y71{bottom:612.733333pt;}
.ya5{bottom:630.013333pt;}
.y70{bottom:630.333333pt;}
.ycf{bottom:647.613333pt;}
.y6f{bottom:648.093333pt;}
.yce{bottom:665.373333pt;}
.y6e{bottom:665.693333pt;}
.ya2{bottom:682.973333pt;}
.y6d{bottom:683.293333pt;}
.yb3{bottom:700.573333pt;}
.y6c{bottom:700.893333pt;}
.y6b{bottom:718.493333pt;}
.y16{bottom:728.293333pt;}
.yc9{bottom:735.973333pt;}
.y6a{bottom:736.293333pt;}
.yc8{bottom:753.573333pt;}
.y69{bottom:753.893333pt;}
.yaf{bottom:771.173333pt;}
.y68{bottom:771.493333pt;}
.yca{bottom:788.773333pt;}
.y67{bottom:789.093333pt;}
.yd2{bottom:805.413333pt;}
.y66{bottom:806.693333pt;}
.y15{bottom:820.453333pt;}
.y65{bottom:824.453333pt;}
.y14{bottom:833.093333pt;}
.y64{bottom:842.053333pt;}
.y13{bottom:845.413333pt;}
.y12{bottom:859.333333pt;}
.y63{bottom:859.653333pt;}
.ye{bottom:870.533333pt;}
.y9f{bottom:876.933333pt;}
.y62{bottom:877.253333pt;}
.y9e{bottom:894.533333pt;}
.y61{bottom:894.853333pt;}
.y9d{bottom:912.293333pt;}
.y60{bottom:912.613333pt;}
.yb6{bottom:929.893333pt;}
.y5f{bottom:930.213333pt;}
.yb1{bottom:947.493333pt;}
.y5e{bottom:947.813333pt;}
.y3{bottom:965.440000pt;}
.yb{bottom:970.240000pt;}
.y5b{bottom:971.200000pt;}
.y96{bottom:973.280000pt;}
.y5d{bottom:979.520000pt;}
.y9b{bottom:980.480000pt;}
.y58{bottom:994.080000pt;}
.y1{bottom:1018.560000pt;}
.h19{height:5.025000pt;}
.h1a{height:5.160000pt;}
.h1b{height:5.262553pt;}
.h18{height:5.280000pt;}
.h3{height:9.920000pt;}
.h8{height:13.440000pt;}
.h11{height:15.703125pt;}
.h1f{height:28.960000pt;}
.hf{height:36.138125pt;}
.h13{height:36.305625pt;}
.h4{height:36.431250pt;}
.h22{height:37.090625pt;}
.h14{height:37.410000pt;}
.h9{height:40.640625pt;}
.he{height:42.063437pt;}
.h21{height:43.215000pt;}
.h17{height:44.975625pt;}
.h16{height:52.134375pt;}
.hd{height:52.671161pt;}
.h1c{height:53.535000pt;}
.h25{height:54.598989pt;}
.h23{height:55.298750pt;}
.h12{height:57.787500pt;}
.h2{height:58.563750pt;}
.h6{height:59.340000pt;}
.h5{height:59.552000pt;}
.h24{height:60.512000pt;}
.h1{height:61.295000pt;}
.h26{height:61.440000pt;}
.h20{height:63.656250pt;}
.h7{height:72.515625pt;}
.hb{height:74.778750pt;}
.ha{height:77.440000pt;}
.h10{height:88.960000pt;}
.hc{height:89.010000pt;}
.h1d{height:100.992000pt;}
.h1e{height:356.233125pt;}
.h15{height:387.066667pt;}
.h0{height:1056.000000pt;}
.w8{width:18.240000pt;}
.w6{width:36.000000pt;}
.we{width:39.840000pt;}
.w13{width:43.360000pt;}
.w10{width:46.432000pt;}
.w3{width:46.560000pt;}
.w7{width:74.880000pt;}
.w2{width:132.640000pt;}
.w11{width:132.672000pt;}
.wa{width:182.426667pt;}
.wc{width:182.906667pt;}
.w12{width:426.466667pt;}
.w14{width:426.493333pt;}
.w4{width:426.653333pt;}
.wb{width:437.346667pt;}
.wd{width:437.826667pt;}
.w9{width:521.853333pt;}
.w5{width:600.093333pt;}
.wf{width:639.293333pt;}
.w15{width:695.200000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.xd{left:8.960000pt;}
.x11{left:10.720000pt;}
.x7{left:12.160000pt;}
.x14{left:18.400000pt;}
.x3{left:20.640000pt;}
.x6{left:23.200000pt;}
.xe{left:26.880000pt;}
.x1e{left:37.600000pt;}
.x8{left:45.760000pt;}
.x20{left:58.440000pt;}
.x1a{left:65.120000pt;}
.x4{left:66.240000pt;}
.x1b{left:80.160000pt;}
.x18{left:93.152000pt;}
.x1{left:96.031988pt;}
.x17{left:98.112000pt;}
.x12{left:102.112000pt;}
.xc{left:103.872000pt;}
.x21{left:120.031988pt;}
.x15{left:137.946655pt;}
.x22{left:144.026655pt;}
.xf{left:179.546667pt;}
.x10{left:198.426667pt;}
.x9{left:213.186667pt;}
.x13{left:285.506667pt;}
.x1c{left:317.986667pt;}
.x19{left:408.066655pt;}
.x16{left:426.973321pt;}
.x23{left:450.973321pt;}
.x24{left:474.973321pt;}
.x1f{left:591.613333pt;}
.x2{left:607.653333pt;}
.xb{left:696.133333pt;}
.x5{left:699.173333pt;}
.x1d{left:700.773333pt;}
}




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