
    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_4c11b398a24bb302527477b4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_e82b7dc7bb504dbb4012624c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7141c34df6f6f6b10f5cd2f1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_d3af4278b37b59fec8390149.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_1e392c820d5ada6f757ca774.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_8e92a3222c5f62ff08dbe10a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c216a7439612713f1c3ebe82.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_624dff7bed97b48d137db06b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e3ce44c9890b9b071bc51fe7.woff')format("woff");}.ffd{font-family:ffd;line-height:1.202148;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_dd5b4feee1589098c9055341.woff')format("woff");}.ffe{font-family:ffe;line-height:0.976562;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_c72b5c8d4ba7c1dc7d598d0e.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_9dd28ec1b64071722b38f3aa.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_18d2685e6729e39c9a31599c.woff')format("woff");}.ff11{font-family:ff11;line-height:1.172852;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_c65e85c4d263181917c00a7f.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ff96ee3dbbbcc704c54a58b5.woff')format("woff");}.ff13{font-family:ff13;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-30.240000px;}
.v4{vertical-align:-13.680000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.v3{vertical-align:33.120000px;}
.v5{vertical-align:43.380000px;}
.ls16{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.414600px;}
.ls1f{letter-spacing:-0.316800px;}
.ls17{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.190200px;}
.lsa{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.114000px;}
.ls15{letter-spacing:-0.109200px;}
.ls7{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.022320px;}
.ls4{letter-spacing:0.034560px;}
.ls1d{letter-spacing:0.057600px;}
.ls13{letter-spacing:0.059760px;}
.ls2{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.078000px;}
.ls19{letter-spacing:0.109200px;}
.lsc{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.lsb{letter-spacing:0.224400px;}
.lsd{letter-spacing:0.262080px;}
.ls14{letter-spacing:0.288000px;}
.lse{letter-spacing:0.305400px;}
.ls1c{letter-spacing:0.322800px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.720000px;}
.ls1e{letter-spacing:2.340000px;}
.ls10{letter-spacing:3.600000px;}
.ls11{letter-spacing:3.780000px;}
.ls5{letter-spacing:5.040000px;}
.ls20{letter-spacing:39.881280px;}
.ls21{letter-spacing:39.905280px;}
.ls1b{letter-spacing:51.113520px;}
.lsf{letter-spacing:66.960000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-49.481280px;}
.ws0{word-spacing:-24.062880px;}
.ws7{word-spacing:-19.440000px;}
.ws1{word-spacing:-19.010880px;}
.ws3{word-spacing:-18.532800px;}
.ws2{word-spacing:-18.342600px;}
.ws9{word-spacing:-17.504400px;}
.ws8{word-spacing:-17.280000px;}
.wsd{word-spacing:-16.865400px;}
.ws11{word-spacing:-16.669200px;}
.wsa{word-spacing:-16.560000px;}
.wse{word-spacing:-16.450800px;}
.ws12{word-spacing:-16.272000px;}
.ws14{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.912000px;}
.wsf{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.696000px;}
.ws4{word-spacing:-14.650800px;}
.ws13{word-spacing:-10.902240px;}
.wsb{word-spacing:-10.440000px;}
.wsc{word-spacing:0.000000px;}
._30{margin-left:-2.155680px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._4{width:2.848320px;}
._9{width:4.371840px;}
._8{width:6.177360px;}
._7{width:7.652880px;}
._6{width:8.712720px;}
._5{width:10.002240px;}
._1b{width:11.327040px;}
._29{width:12.327120px;}
._26{width:13.460880px;}
._11{width:14.970240px;}
._2e{width:17.721360px;}
._d{width:18.812160px;}
._3{width:20.468160px;}
._39{width:21.497040px;}
._2{width:22.587840px;}
._1a{width:24.477840px;}
._22{width:26.164800px;}
._19{width:27.358560px;}
._18{width:29.247120px;}
._10{width:30.271680px;}
._14{width:31.530240px;}
._2d{width:32.691600px;}
._2c{width:34.246080px;}
._2b{width:35.407440px;}
._13{width:36.829440px;}
._15{width:37.978560px;}
._a{width:39.118080px;}
._b{width:40.253520px;}
._1d{width:41.863680px;}
._23{width:43.652160px;}
._16{width:44.778240px;}
._17{width:45.929520px;}
._12{width:48.090240px;}
._2a{width:49.415040px;}
._1e{width:50.474880px;}
._27{width:51.733440px;}
._28{width:52.859520px;}
._f{width:54.339600px;}
._1c{width:56.039040px;}
._2f{width:58.447440px;}
._c{width:60.344640px;}
._3a{width:61.837200px;}
._32{width:64.214400px;}
._35{width:66.540960px;}
._31{width:68.094720px;}
._47{width:70.067520px;}
._41{width:73.592640px;}
._3c{width:75.911040px;}
._40{width:87.105600px;}
._36{width:97.938000px;}
._33{width:99.492480px;}
._34{width:100.628400px;}
._3b{width:102.942720px;}
._e{width:107.029200px;}
._45{width:109.296000px;}
._44{width:110.789280px;}
._3f{width:144.786240px;}
._21{width:152.893440px;}
._38{width:157.518720px;}
._37{width:159.210720px;}
._43{width:160.632000px;}
._42{width:172.157760px;}
._46{width:177.192000px;}
._1f{width:189.617520px;}
._20{width:197.647200px;}
._25{width:204.371760px;}
._24{width:205.952400px;}
._3d{width:531.545760px;}
._3e{width:682.404480px;}
._48{width:847.596000px;}
.fc4{color:rgb(36,64,97);}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(192,0,0);}
.fc5{color:rgb(82,82,84);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.ya7{bottom:-22.320000px;}
.yb6{bottom:-12.795000px;}
.y74{bottom:-12.615000px;}
.y9e{bottom:-1.800000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.ya6{bottom:1.080000px;}
.y19{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.ya4{bottom:2.340000px;}
.y3{bottom:3.420000px;}
.y17{bottom:4.140000px;}
.yb0{bottom:6.300000px;}
.y8{bottom:6.660000px;}
.yc4{bottom:6.840000px;}
.ya{bottom:7.380000px;}
.y70{bottom:8.445000px;}
.y6{bottom:8.460000px;}
.y73{bottom:8.625000px;}
.yc3{bottom:8.820000px;}
.yb5{bottom:8.985000px;}
.yc6{bottom:9.360000px;}
.yb3{bottom:11.160000px;}
.yac{bottom:12.060000px;}
.yaa{bottom:13.680000px;}
.yae{bottom:16.590000px;}
.y9d{bottom:19.980000px;}
.ye{bottom:22.860000px;}
.ya3{bottom:24.120000px;}
.y16{bottom:26.460000px;}
.y6f{bottom:29.505000px;}
.ya1{bottom:29.520000px;}
.y72{bottom:29.685000px;}
.yb2{bottom:30.420000px;}
.y5{bottom:33.120000px;}
.y9c{bottom:41.760000px;}
.y15{bottom:47.925000px;}
.ya0{bottom:51.300000px;}
.y1{bottom:51.480000px;}
.y14{bottom:70.785000px;}
.y9f{bottom:73.440000px;}
.y41{bottom:75.240000px;}
.y9b{bottom:78.480000px;}
.y13{bottom:96.165000px;}
.y12{bottom:121.545000px;}
.yd9{bottom:132.120000px;}
.y99{bottom:133.020000px;}
.y39{bottom:133.740000px;}
.y6b{bottom:134.100000px;}
.yd8{bottom:156.780000px;}
.y98{bottom:157.680000px;}
.y38{bottom:158.400000px;}
.y6d{bottom:158.760000px;}
.yd7{bottom:181.080000px;}
.ydf{bottom:181.440000px;}
.y97{bottom:182.700000px;}
.y6a{bottom:183.060000px;}
.y37{bottom:183.240000px;}
.y6c{bottom:183.420000px;}
.yd6{bottom:206.130000px;}
.y36{bottom:207.570000px;}
.y69{bottom:207.750000px;}
.y3e{bottom:207.930000px;}
.y96{bottom:211.890000px;}
.y8f{bottom:212.250000px;}
.yd5{bottom:230.790000px;}
.y35{bottom:232.230000px;}
.y68{bottom:232.410000px;}
.y3d{bottom:232.590000px;}
.y95{bottom:233.670000px;}
.y8e{bottom:234.030000px;}
.y94{bottom:255.450000px;}
.y8d{bottom:255.810000px;}
.y67{bottom:257.070000px;}
.y34{bottom:257.250000px;}
.y71{bottom:260.865000px;}
.y6e{bottom:261.765000px;}
.y93{bottom:277.230000px;}
.y8c{bottom:277.770000px;}
.yde{bottom:280.110000px;}
.y3c{bottom:281.550000px;}
.y66{bottom:281.730000px;}
.y33{bottom:281.910000px;}
.yd4{bottom:287.670000px;}
.y92{bottom:299.010000px;}
.y8b{bottom:299.550000px;}
.ydd{bottom:304.410000px;}
.yd3{bottom:304.770000px;}
.y65{bottom:306.390000px;}
.y32{bottom:306.570000px;}
.y91{bottom:320.970000px;}
.y8a{bottom:321.330000px;}
.yd2{bottom:329.430000px;}
.y64{bottom:331.050000px;}
.y31{bottom:331.230000px;}
.y90{bottom:342.750000px;}
.y89{bottom:343.110000px;}
.yd1{bottom:354.090000px;}
.y63{bottom:355.710000px;}
.y30{bottom:355.890000px;}
.y88{bottom:364.890000px;}
.yd0{bottom:378.390000px;}
.ydc{bottom:378.750000px;}
.y62{bottom:380.370000px;}
.y2f{bottom:380.550000px;}
.y87{bottom:389.190000px;}
.ycf{bottom:403.410000px;}
.y3b{bottom:404.850000px;}
.y2e{bottom:405.210000px;}
.y60{bottom:405.390000px;}
.yb4{bottom:407.205000px;}
.y86{bottom:414.390000px;}
.yce{bottom:428.070000px;}
.y2d{bottom:429.870000px;}
.y5f{bottom:430.050000px;}
.y85{bottom:438.690000px;}
.ycd{bottom:452.775000px;}
.y2c{bottom:454.575000px;}
.y5e{bottom:454.755000px;}
.y84{bottom:463.395000px;}
.yb1{bottom:466.815000px;}
.ya8{bottom:471.315000px;}
.ycc{bottom:477.615000px;}
.y2b{bottom:479.235000px;}
.y5d{bottom:479.595000px;}
.y83{bottom:488.055000px;}
.ycb{bottom:502.275000px;}
.y2a{bottom:503.895000px;}
.y5c{bottom:504.255000px;}
.ya2{bottom:506.235000px;}
.y82{bottom:512.715000px;}
.ydb{bottom:526.575000px;}
.yca{bottom:526.935000px;}
.y29{bottom:528.555000px;}
.y5b{bottom:528.915000px;}
.ya9{bottom:532.335000px;}
.y81{bottom:537.375000px;}
.yda{bottom:551.235000px;}
.yc9{bottom:551.595000px;}
.y28{bottom:553.215000px;}
.y5a{bottom:553.575000px;}
.y80{bottom:562.035000px;}
.y9a{bottom:567.615000px;}
.yc8{bottom:575.895000px;}
.y27{bottom:577.515000px;}
.y3a{bottom:577.875000px;}
.y61{bottom:578.235000px;}
.yab{bottom:578.415000px;}
.y7f{bottom:586.695000px;}
.yc7{bottom:600.915000px;}
.y26{bottom:602.175000px;}
.y59{bottom:602.895000px;}
.yc5{bottom:615.855000px;}
.yaf{bottom:622.335000px;}
.y7e{bottom:624.495000px;}
.y25{bottom:626.295000px;}
.y58{bottom:627.555000px;}
.yc2{bottom:640.515000px;}
.y24{bottom:648.075000px;}
.y57{bottom:652.215000px;}
.yad{bottom:661.575000px;}
.y7d{bottom:662.655000px;}
.ya5{bottom:670.215000px;}
.y23{bottom:672.555000px;}
.y56{bottom:676.905000px;}
.y22{bottom:694.365000px;}
.y7c{bottom:700.845000px;}
.y55{bottom:701.565000px;}
.y21{bottom:716.145000px;}
.y7b{bottom:725.865000px;}
.y54{bottom:726.225000px;}
.y20{bottom:737.925000px;}
.y7a{bottom:750.525000px;}
.y53{bottom:750.885000px;}
.y1f{bottom:759.885000px;}
.y52{bottom:775.545000px;}
.y1e{bottom:781.665000px;}
.y51{bottom:800.205000px;}
.y1d{bottom:803.445000px;}
.y50{bottom:824.865000px;}
.y1c{bottom:825.225000px;}
.y1b{bottom:846.645000px;}
.y4f{bottom:849.525000px;}
.y1a{bottom:866.085000px;}
.y4e{bottom:874.185000px;}
.y18{bottom:874.725000px;}
.y11{bottom:881.925000px;}
.yc1{bottom:898.485000px;}
.y4d{bottom:898.845000px;}
.yc0{bottom:906.765000px;}
.ybb{bottom:923.190000px;}
.y4c{bottom:923.550000px;}
.ybf{bottom:937.770000px;}
.y75{bottom:947.850000px;}
.y4b{bottom:948.210000px;}
.ybe{bottom:959.010000px;}
.y4a{bottom:972.870000px;}
.ybd{bottom:977.010000px;}
.ybc{bottom:996.810000px;}
.y79{bottom:997.170000px;}
.y49{bottom:997.530000px;}
.y78{bottom:1021.830000px;}
.y48{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.y77{bottom:1046.490000px;}
.y47{bottom:1046.850000px;}
.yba{bottom:1071.150000px;}
.y46{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.yb9{bottom:1095.810000px;}
.y45{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.yb8{bottom:1120.470000px;}
.y44{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y76{bottom:1145.130000px;}
.y43{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.yb7{bottom:1169.820000px;}
.y42{bottom:1170.180000px;}
.y40{bottom:1187.280000px;}
.y3f{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h2a{height:16.545000px;}
.h28{height:16.590000px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.h2f{height:23.385000px;}
.ha{height:24.285000px;}
.h36{height:24.645000px;}
.h7{height:28.290000px;}
.h2d{height:29.145000px;}
.h1e{height:30.480469px;}
.h2b{height:30.765000px;}
.h2e{height:33.690000px;}
.h18{height:36.861328px;}
.h27{height:39.045000px;}
.h31{height:40.655391px;}
.he{height:41.025000px;}
.h37{height:42.086250px;}
.h20{height:43.725000px;}
.h22{height:43.905000px;}
.h30{height:45.705000px;}
.h39{height:46.251562px;}
.h1c{height:46.736719px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1f{height:58.621992px;}
.h21{height:59.439023px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1b{height:65.010937px;}
.h24{height:65.884219px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h29{height:67.824844px;}
.h38{height:68.084282px;}
.h1d{height:71.225156px;}
.h6{height:71.324297px;}
.h23{height:72.326250px;}
.h13{height:72.562500px;}
.h2c{height:73.722656px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h33{height:84.035391px;}
.h26{height:88.365000px;}
.h25{height:93.405000px;}
.h34{height:99.877500px;}
.h3{height:103.530000px;}
.h32{height:105.446250px;}
.h12{height:147.262500px;}
.h35{height:247.530000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:64.260000px;}
.we{width:73.785000px;}
.wd{width:76.680000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.wf{width:129.081000px;}
.wb{width:149.040000px;}
.wa{width:149.205000px;}
.w8{width:149.209500px;}
.w9{width:149.220000px;}
.w12{width:168.319500px;}
.w11{width:187.759500px;}
.w13{width:226.099500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w15{width:346.564500px;}
.w16{width:346.740000px;}
.w14{width:424.155000px;}
.w10{width:434.805000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x20{left:12.769500px;}
.x2b{left:13.860000px;}
.x13{left:17.269500px;}
.x10{left:20.685000px;}
.x23{left:23.220000px;}
.x16{left:26.449500px;}
.x1f{left:27.709500px;}
.x22{left:29.340000px;}
.x2a{left:32.220000px;}
.xb{left:34.185000px;}
.x27{left:36.915000px;}
.x30{left:39.060000px;}
.x28{left:41.595000px;}
.x34{left:43.009500px;}
.x32{left:47.503500px;}
.xe{left:49.714500px;}
.x25{left:50.745000px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x3b{left:77.923500px;}
.xc{left:81.525000px;}
.x3c{left:83.145000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x38{left:99.946500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1e{left:112.186500px;}
.x31{left:114.346500px;}
.x33{left:122.266500px;}
.x3d{left:135.036000px;}
.x1b{left:162.030000px;}
.x4{left:168.885000px;}
.x18{left:194.968500px;}
.x6{left:209.010000px;}
.x19{left:214.048500px;}
.x17{left:255.988500px;}
.x14{left:257.788500px;}
.x15{left:261.208500px;}
.x21{left:277.275000px;}
.x39{left:318.988500px;}
.x3a{left:327.630000px;}
.x12{left:335.578500px;}
.x35{left:360.795000px;}
.x2f{left:361.875000px;}
.x29{left:364.755000px;}
.x24{left:444.540000px;}
.xa{left:445.620000px;}
.x1c{left:473.505000px;}
.x37{left:479.985000px;}
.x36{left:486.105000px;}
.x3e{left:500.505000px;}
.x2d{left:518.160000px;}
.x2e{left:525.720000px;}
.x1d{left:527.505000px;}
.x26{left:611.595000px;}
.x2c{left:713.310000px;}
.x7{left:722.490000px;}
.x1{left:761.010000px;}
@media print{
.v6{vertical-align:-26.880000pt;}
.v4{vertical-align:-12.160000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.v3{vertical-align:29.440000pt;}
.v5{vertical-align:38.560000pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.368533pt;}
.ls1f{letter-spacing:-0.281600pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.169067pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.101333pt;}
.ls15{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.019840pt;}
.ls4{letter-spacing:0.030720pt;}
.ls1d{letter-spacing:0.051200pt;}
.ls13{letter-spacing:0.053120pt;}
.ls2{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.069333pt;}
.ls19{letter-spacing:0.097067pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.lsb{letter-spacing:0.199467pt;}
.lsd{letter-spacing:0.232960pt;}
.ls14{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.271467pt;}
.ls1c{letter-spacing:0.286933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:2.080000pt;}
.ls10{letter-spacing:3.200000pt;}
.ls11{letter-spacing:3.360000pt;}
.ls5{letter-spacing:4.480000pt;}
.ls20{letter-spacing:35.450027pt;}
.ls21{letter-spacing:35.471360pt;}
.ls1b{letter-spacing:45.434240pt;}
.lsf{letter-spacing:59.520000pt;}
.ws10{word-spacing:-43.983360pt;}
.ws0{word-spacing:-21.389227pt;}
.ws7{word-spacing:-17.280000pt;}
.ws1{word-spacing:-16.898560pt;}
.ws3{word-spacing:-16.473600pt;}
.ws2{word-spacing:-16.304533pt;}
.ws9{word-spacing:-15.559467pt;}
.ws8{word-spacing:-15.360000pt;}
.wsd{word-spacing:-14.991467pt;}
.ws11{word-spacing:-14.817067pt;}
.wsa{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.622933pt;}
.ws12{word-spacing:-14.464000pt;}
.ws14{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.144000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.952000pt;}
.ws4{word-spacing:-13.022933pt;}
.ws13{word-spacing:-9.690880pt;}
.wsb{word-spacing:-9.280000pt;}
.wsc{word-spacing:0.000000pt;}
._30{margin-left:-1.916160pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._4{width:2.531840pt;}
._9{width:3.886080pt;}
._8{width:5.490987pt;}
._7{width:6.802560pt;}
._6{width:7.744640pt;}
._5{width:8.890880pt;}
._1b{width:10.068480pt;}
._29{width:10.957440pt;}
._26{width:11.965227pt;}
._11{width:13.306880pt;}
._2e{width:15.752320pt;}
._d{width:16.721920pt;}
._3{width:18.193920pt;}
._39{width:19.108480pt;}
._2{width:20.078080pt;}
._1a{width:21.758080pt;}
._22{width:23.257600pt;}
._19{width:24.318720pt;}
._18{width:25.997440pt;}
._10{width:26.908160pt;}
._14{width:28.026880pt;}
._2d{width:29.059200pt;}
._2c{width:30.440960pt;}
._2b{width:31.473280pt;}
._13{width:32.737280pt;}
._15{width:33.758720pt;}
._a{width:34.771627pt;}
._b{width:35.780907pt;}
._1d{width:37.212160pt;}
._23{width:38.801920pt;}
._16{width:39.802880pt;}
._17{width:40.826240pt;}
._12{width:42.746880pt;}
._2a{width:43.924480pt;}
._1e{width:44.866560pt;}
._27{width:45.985280pt;}
._28{width:46.986240pt;}
._f{width:48.301867pt;}
._1c{width:49.812480pt;}
._2f{width:51.953280pt;}
._c{width:53.639680pt;}
._3a{width:54.966400pt;}
._32{width:57.079467pt;}
._35{width:59.147520pt;}
._31{width:60.528640pt;}
._47{width:62.282240pt;}
._41{width:65.415680pt;}
._3c{width:67.476480pt;}
._40{width:77.427200pt;}
._36{width:87.056000pt;}
._33{width:88.437760pt;}
._34{width:89.447467pt;}
._3b{width:91.504640pt;}
._e{width:95.137067pt;}
._45{width:97.152000pt;}
._44{width:98.479360pt;}
._3f{width:128.698880pt;}
._21{width:135.905280pt;}
._38{width:140.016640pt;}
._37{width:141.520640pt;}
._43{width:142.784000pt;}
._42{width:153.029120pt;}
._46{width:157.504000pt;}
._1f{width:168.548907pt;}
._20{width:175.686400pt;}
._25{width:181.663787pt;}
._24{width:183.068800pt;}
._3d{width:472.485120pt;}
._3e{width:606.581760pt;}
._48{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.ya7{bottom:-19.840000pt;}
.yb6{bottom:-11.373333pt;}
.y74{bottom:-11.213333pt;}
.y9e{bottom:-1.600000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.ya6{bottom:0.960000pt;}
.y19{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.ya4{bottom:2.080000pt;}
.y3{bottom:3.040000pt;}
.y17{bottom:3.680000pt;}
.yb0{bottom:5.600000pt;}
.y8{bottom:5.920000pt;}
.yc4{bottom:6.080000pt;}
.ya{bottom:6.560000pt;}
.y70{bottom:7.506667pt;}
.y6{bottom:7.520000pt;}
.y73{bottom:7.666667pt;}
.yc3{bottom:7.840000pt;}
.yb5{bottom:7.986667pt;}
.yc6{bottom:8.320000pt;}
.yb3{bottom:9.920000pt;}
.yac{bottom:10.720000pt;}
.yaa{bottom:12.160000pt;}
.yae{bottom:14.746667pt;}
.y9d{bottom:17.760000pt;}
.ye{bottom:20.320000pt;}
.ya3{bottom:21.440000pt;}
.y16{bottom:23.520000pt;}
.y6f{bottom:26.226667pt;}
.ya1{bottom:26.240000pt;}
.y72{bottom:26.386667pt;}
.yb2{bottom:27.040000pt;}
.y5{bottom:29.440000pt;}
.y9c{bottom:37.120000pt;}
.y15{bottom:42.600000pt;}
.ya0{bottom:45.600000pt;}
.y1{bottom:45.760000pt;}
.y14{bottom:62.920000pt;}
.y9f{bottom:65.280000pt;}
.y41{bottom:66.880000pt;}
.y9b{bottom:69.760000pt;}
.y13{bottom:85.480000pt;}
.y12{bottom:108.040000pt;}
.yd9{bottom:117.440000pt;}
.y99{bottom:118.240000pt;}
.y39{bottom:118.880000pt;}
.y6b{bottom:119.200000pt;}
.yd8{bottom:139.360000pt;}
.y98{bottom:140.160000pt;}
.y38{bottom:140.800000pt;}
.y6d{bottom:141.120000pt;}
.yd7{bottom:160.960000pt;}
.ydf{bottom:161.280000pt;}
.y97{bottom:162.400000pt;}
.y6a{bottom:162.720000pt;}
.y37{bottom:162.880000pt;}
.y6c{bottom:163.040000pt;}
.yd6{bottom:183.226667pt;}
.y36{bottom:184.506667pt;}
.y69{bottom:184.666667pt;}
.y3e{bottom:184.826667pt;}
.y96{bottom:188.346667pt;}
.y8f{bottom:188.666667pt;}
.yd5{bottom:205.146667pt;}
.y35{bottom:206.426667pt;}
.y68{bottom:206.586667pt;}
.y3d{bottom:206.746667pt;}
.y95{bottom:207.706667pt;}
.y8e{bottom:208.026667pt;}
.y94{bottom:227.066667pt;}
.y8d{bottom:227.386667pt;}
.y67{bottom:228.506667pt;}
.y34{bottom:228.666667pt;}
.y71{bottom:231.880000pt;}
.y6e{bottom:232.680000pt;}
.y93{bottom:246.426667pt;}
.y8c{bottom:246.906667pt;}
.yde{bottom:248.986667pt;}
.y3c{bottom:250.266667pt;}
.y66{bottom:250.426667pt;}
.y33{bottom:250.586667pt;}
.yd4{bottom:255.706667pt;}
.y92{bottom:265.786667pt;}
.y8b{bottom:266.266667pt;}
.ydd{bottom:270.586667pt;}
.yd3{bottom:270.906667pt;}
.y65{bottom:272.346667pt;}
.y32{bottom:272.506667pt;}
.y91{bottom:285.306667pt;}
.y8a{bottom:285.626667pt;}
.yd2{bottom:292.826667pt;}
.y64{bottom:294.266667pt;}
.y31{bottom:294.426667pt;}
.y90{bottom:304.666667pt;}
.y89{bottom:304.986667pt;}
.yd1{bottom:314.746667pt;}
.y63{bottom:316.186667pt;}
.y30{bottom:316.346667pt;}
.y88{bottom:324.346667pt;}
.yd0{bottom:336.346667pt;}
.ydc{bottom:336.666667pt;}
.y62{bottom:338.106667pt;}
.y2f{bottom:338.266667pt;}
.y87{bottom:345.946667pt;}
.ycf{bottom:358.586667pt;}
.y3b{bottom:359.866667pt;}
.y2e{bottom:360.186667pt;}
.y60{bottom:360.346667pt;}
.yb4{bottom:361.960000pt;}
.y86{bottom:368.346667pt;}
.yce{bottom:380.506667pt;}
.y2d{bottom:382.106667pt;}
.y5f{bottom:382.266667pt;}
.y85{bottom:389.946667pt;}
.ycd{bottom:402.466667pt;}
.y2c{bottom:404.066667pt;}
.y5e{bottom:404.226667pt;}
.y84{bottom:411.906667pt;}
.yb1{bottom:414.946667pt;}
.ya8{bottom:418.946667pt;}
.ycc{bottom:424.546667pt;}
.y2b{bottom:425.986667pt;}
.y5d{bottom:426.306667pt;}
.y83{bottom:433.826667pt;}
.ycb{bottom:446.466667pt;}
.y2a{bottom:447.906667pt;}
.y5c{bottom:448.226667pt;}
.ya2{bottom:449.986667pt;}
.y82{bottom:455.746667pt;}
.ydb{bottom:468.066667pt;}
.yca{bottom:468.386667pt;}
.y29{bottom:469.826667pt;}
.y5b{bottom:470.146667pt;}
.ya9{bottom:473.186667pt;}
.y81{bottom:477.666667pt;}
.yda{bottom:489.986667pt;}
.yc9{bottom:490.306667pt;}
.y28{bottom:491.746667pt;}
.y5a{bottom:492.066667pt;}
.y80{bottom:499.586667pt;}
.y9a{bottom:504.546667pt;}
.yc8{bottom:511.906667pt;}
.y27{bottom:513.346667pt;}
.y3a{bottom:513.666667pt;}
.y61{bottom:513.986667pt;}
.yab{bottom:514.146667pt;}
.y7f{bottom:521.506667pt;}
.yc7{bottom:534.146667pt;}
.y26{bottom:535.266667pt;}
.y59{bottom:535.906667pt;}
.yc5{bottom:547.426667pt;}
.yaf{bottom:553.186667pt;}
.y7e{bottom:555.106667pt;}
.y25{bottom:556.706667pt;}
.y58{bottom:557.826667pt;}
.yc2{bottom:569.346667pt;}
.y24{bottom:576.066667pt;}
.y57{bottom:579.746667pt;}
.yad{bottom:588.066667pt;}
.y7d{bottom:589.026667pt;}
.ya5{bottom:595.746667pt;}
.y23{bottom:597.826667pt;}
.y56{bottom:601.693333pt;}
.y22{bottom:617.213333pt;}
.y7c{bottom:622.973333pt;}
.y55{bottom:623.613333pt;}
.y21{bottom:636.573333pt;}
.y7b{bottom:645.213333pt;}
.y54{bottom:645.533333pt;}
.y20{bottom:655.933333pt;}
.y7a{bottom:667.133333pt;}
.y53{bottom:667.453333pt;}
.y1f{bottom:675.453333pt;}
.y52{bottom:689.373333pt;}
.y1e{bottom:694.813333pt;}
.y51{bottom:711.293333pt;}
.y1d{bottom:714.173333pt;}
.y50{bottom:733.213333pt;}
.y1c{bottom:733.533333pt;}
.y1b{bottom:752.573333pt;}
.y4f{bottom:755.133333pt;}
.y1a{bottom:769.853333pt;}
.y4e{bottom:777.053333pt;}
.y18{bottom:777.533333pt;}
.y11{bottom:783.933333pt;}
.yc1{bottom:798.653333pt;}
.y4d{bottom:798.973333pt;}
.yc0{bottom:806.013333pt;}
.ybb{bottom:820.613333pt;}
.y4c{bottom:820.933333pt;}
.ybf{bottom:833.573333pt;}
.y75{bottom:842.533333pt;}
.y4b{bottom:842.853333pt;}
.ybe{bottom:852.453333pt;}
.y4a{bottom:864.773333pt;}
.ybd{bottom:868.453333pt;}
.ybc{bottom:886.053333pt;}
.y79{bottom:886.373333pt;}
.y49{bottom:886.693333pt;}
.y78{bottom:908.293333pt;}
.y48{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.y77{bottom:930.213333pt;}
.y47{bottom:930.533333pt;}
.yba{bottom:952.133333pt;}
.y46{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.yb9{bottom:974.053333pt;}
.y45{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.yb8{bottom:995.973333pt;}
.y44{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y76{bottom:1017.893333pt;}
.y43{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.yb7{bottom:1039.840000pt;}
.y42{bottom:1040.160000pt;}
.y40{bottom:1055.360000pt;}
.y3f{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h2a{height:14.706667pt;}
.h28{height:14.746667pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.h2f{height:20.786667pt;}
.ha{height:21.586667pt;}
.h36{height:21.906667pt;}
.h7{height:25.146667pt;}
.h2d{height:25.906667pt;}
.h1e{height:27.093750pt;}
.h2b{height:27.346667pt;}
.h2e{height:29.946667pt;}
.h18{height:32.765625pt;}
.h27{height:34.706667pt;}
.h31{height:36.138125pt;}
.he{height:36.466667pt;}
.h37{height:37.410000pt;}
.h20{height:38.866667pt;}
.h22{height:39.026667pt;}
.h30{height:40.626667pt;}
.h39{height:41.112500pt;}
.h1c{height:41.543750pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1f{height:52.108438pt;}
.h21{height:52.834688pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h24{height:58.563750pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h29{height:60.288750pt;}
.h38{height:60.519362pt;}
.h1d{height:63.311250pt;}
.h6{height:63.399375pt;}
.h23{height:64.290000pt;}
.h13{height:64.500000pt;}
.h2c{height:65.531250pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h33{height:74.698125pt;}
.h26{height:78.546667pt;}
.h25{height:83.026667pt;}
.h34{height:88.780000pt;}
.h3{height:92.026667pt;}
.h32{height:93.730000pt;}
.h12{height:130.900000pt;}
.h35{height:220.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:57.120000pt;}
.we{width:65.586667pt;}
.wd{width:68.160000pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.wf{width:114.738667pt;}
.wb{width:132.480000pt;}
.wa{width:132.626667pt;}
.w8{width:132.630667pt;}
.w9{width:132.640000pt;}
.w12{width:149.617333pt;}
.w11{width:166.897333pt;}
.w13{width:200.977333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w15{width:308.057333pt;}
.w16{width:308.213333pt;}
.w14{width:377.026667pt;}
.w10{width:386.493333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x20{left:11.350667pt;}
.x2b{left:12.320000pt;}
.x13{left:15.350667pt;}
.x10{left:18.386667pt;}
.x23{left:20.640000pt;}
.x16{left:23.510667pt;}
.x1f{left:24.630667pt;}
.x22{left:26.080000pt;}
.x2a{left:28.640000pt;}
.xb{left:30.386667pt;}
.x27{left:32.813333pt;}
.x30{left:34.720000pt;}
.x28{left:36.973333pt;}
.x34{left:38.230667pt;}
.x32{left:42.225333pt;}
.xe{left:44.190667pt;}
.x25{left:45.106667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x3b{left:69.265333pt;}
.xc{left:72.466667pt;}
.x3c{left:73.906667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x38{left:88.841333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1e{left:99.721333pt;}
.x31{left:101.641333pt;}
.x33{left:108.681333pt;}
.x3d{left:120.032000pt;}
.x1b{left:144.026667pt;}
.x4{left:150.120000pt;}
.x18{left:173.305333pt;}
.x6{left:185.786667pt;}
.x19{left:190.265333pt;}
.x17{left:227.545333pt;}
.x14{left:229.145333pt;}
.x15{left:232.185333pt;}
.x21{left:246.466667pt;}
.x39{left:283.545333pt;}
.x3a{left:291.226667pt;}
.x12{left:298.292000pt;}
.x35{left:320.706667pt;}
.x2f{left:321.666667pt;}
.x29{left:324.226667pt;}
.x24{left:395.146667pt;}
.xa{left:396.106667pt;}
.x1c{left:420.893333pt;}
.x37{left:426.653333pt;}
.x36{left:432.093333pt;}
.x3e{left:444.893333pt;}
.x2d{left:460.586667pt;}
.x2e{left:467.306667pt;}
.x1d{left:468.893333pt;}
.x26{left:543.640000pt;}
.x2c{left:634.053333pt;}
.x7{left:642.213333pt;}
.x1{left:676.453333pt;}
}




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