
    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_a2fa4e370bb6325521e700ac.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.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_edcdc6fe4466847f8673782a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.727539;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_41f1f1cebf79acf2cf545bca.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9f5c7f40b9d5d4471902e6e8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_871a1101726fdc1097ce9cb2.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e008ed830663b5c241103ee6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_f21d931a73c84dcc53731435.woff')format("woff");}.ff8{font-family:ff8;line-height:0.981934;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_36ee1e040ba462607ebf5868.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0fb3076329ffd7dff73bc34c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.981934;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_4b853899b2089f5e46aaa056.woff')format("woff");}.ffb{font-family:ffb;line-height:0.983398;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b5e4a88a0ec7a528e0f3c64d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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_5112ca09d5ead26c4e012288.woff')format("woff");}.fff{font-family:fff;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-1.020000px;}
.ls8{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.533400px;}
.ls25{letter-spacing:-0.371400px;}
.ls1a{letter-spacing:-0.298200px;}
.ls2f{letter-spacing:-0.214800px;}
.ls30{letter-spacing:-0.175800px;}
.ls23{letter-spacing:-0.115800px;}
.ls35{letter-spacing:-0.112200px;}
.ls6{letter-spacing:-0.109200px;}
.ls21{letter-spacing:-0.064800px;}
.ls10{letter-spacing:-0.058320px;}
.ls31{letter-spacing:-0.041040px;}
.lsb{letter-spacing:-0.018000px;}
.ls2e{letter-spacing:-0.012960px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.023760px;}
.ls1{letter-spacing:0.031680px;}
.ls3{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.060600px;}
.ls9{letter-spacing:0.072000px;}
.ls27{letter-spacing:0.126600px;}
.ls36{letter-spacing:0.140400px;}
.ls2c{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.174000px;}
.ls0{letter-spacing:0.174240px;}
.ls18{letter-spacing:0.175200px;}
.ls1d{letter-spacing:0.179280px;}
.ls7{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.180600px;}
.ls12{letter-spacing:0.186600px;}
.lsa{letter-spacing:0.198000px;}
.lse{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.249600px;}
.ls39{letter-spacing:0.288600px;}
.ls24{letter-spacing:0.306000px;}
.ls22{letter-spacing:0.348600px;}
.ls3a{letter-spacing:0.479520px;}
.ls17{letter-spacing:0.637200px;}
.ls5{letter-spacing:0.900000px;}
.ls1c{letter-spacing:1.026000px;}
.ls16{letter-spacing:5.934240px;}
.ls1f{letter-spacing:6.654240px;}
.ls26{letter-spacing:7.374240px;}
.ls1e{letter-spacing:9.534240px;}
.ls29{letter-spacing:10.254240px;}
.ls33{letter-spacing:13.854240px;}
.ls34{letter-spacing:15.294240px;}
.ls20{letter-spacing:16.014240px;}
.ls32{letter-spacing:16.734240px;}
.ls15{letter-spacing:29.694240px;}
.ls2b{letter-spacing:43.374240px;}
.ls2{letter-spacing:71.454240px;}
.ls38{letter-spacing:97.866720px;}
.ls37{letter-spacing:128.826720px;}
.ls28{letter-spacing:154.026720px;}
.ls2d{letter-spacing:159.786720px;}
.ls2a{letter-spacing:172.026720px;}
.lsd{letter-spacing:200.334240px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws7{word-spacing:-16.488000px;}
.wsc{word-spacing:-14.531760px;}
.wse{word-spacing:-13.854360px;}
.ws16{word-spacing:-13.794360px;}
.ws8{word-spacing:-13.692360px;}
.wsb{word-spacing:-13.686360px;}
.ws9{word-spacing:-13.680960px;}
.ws15{word-spacing:-13.646160px;}
.ws10{word-spacing:-13.632360px;}
.ws0{word-spacing:-13.505760px;}
.ws11{word-spacing:-13.492800px;}
.ws13{word-spacing:-13.464720px;}
.ws6{word-spacing:-13.447440px;}
.wsd{word-spacing:-13.440960px;}
.ws1{word-spacing:-13.396560px;}
.ws14{word-spacing:-13.393560px;}
.ws12{word-spacing:-13.290960px;}
.wsf{word-spacing:-13.134360px;}
.ws2{word-spacing:-12.402000px;}
.ws4{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.186000px;}
.ws5{word-spacing:0.000000px;}
._35{margin-left:-3.806160px;}
._13{margin-left:-2.718720px;}
._1{margin-left:-1.179360px;}
._2{width:1.498800px;}
._17{width:2.928240px;}
._4{width:3.944160px;}
._f{width:5.079600px;}
._b{width:6.812640px;}
._1a{width:8.194560px;}
._1c{width:9.288000px;}
._12{width:10.637280px;}
._6{width:12.310560px;}
._d{width:15.348720px;}
._7{width:16.374240px;}
._8{width:17.500080px;}
._38{width:18.519120px;}
._e{width:19.541520px;}
._9{width:21.329520px;}
._a{width:23.191680px;}
._18{width:24.637680px;}
._c{width:26.289600px;}
._16{width:27.290640px;}
._5{width:28.625040px;}
._1b{width:29.862000px;}
._2a{width:30.955680px;}
._33{width:31.962000px;}
._2b{width:33.226560px;}
._42{width:34.250640px;}
._26{width:35.258400px;}
._25{width:36.334080px;}
._14{width:37.589040px;}
._15{width:38.724480px;}
._31{width:39.740400px;}
._39{width:41.126160px;}
._22{width:42.130800px;}
._30{width:43.316400px;}
._23{width:44.939520px;}
._29{width:46.000800px;}
._24{width:48.042240px;}
._36{width:49.541040px;}
._28{width:50.855760px;}
._27{width:51.871680px;}
._19{width:53.514000px;}
._3b{width:54.979200px;}
._3d{width:56.532960px;}
._2d{width:57.663600px;}
._2e{width:58.803840px;}
._2c{width:59.819760px;}
._10{width:61.906560px;}
._11{width:62.987040px;}
._34{width:64.361520px;}
._37{width:66.393360px;}
._3c{width:67.643520px;}
._2f{width:69.381360px;}
._3e{width:70.797360px;}
._3{width:72.174240px;}
._32{width:75.895200px;}
._3f{width:81.990720px;}
._3a{width:83.621760px;}
._40{width:88.086240px;}
._45{width:99.619920px;}
._1e{width:113.832000px;}
._1d{width:115.227360px;}
._41{width:138.942000px;}
._44{width:156.152880px;}
._43{width:728.593920px;}
._1f{width:850.928160px;}
._21{width:931.351680px;}
._20{width:1417.176000px;}
._0{width:1431.065760px;}
.fc3{color:transparent;}
.fc2{color:rgb(240,23,6);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y5a{bottom:-1134.855000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:3.060000px;}
.y10{bottom:3.960000px;}
.y59{bottom:9.900000px;}
.y2b{bottom:22.140000px;}
.y58{bottom:27.720000px;}
.y2a{bottom:40.500000px;}
.y57{bottom:45.540000px;}
.y3{bottom:56.520000px;}
.y5d{bottom:57.060000px;}
.y29{bottom:58.860000px;}
.y56{bottom:63.405000px;}
.y5e{bottom:71.820000px;}
.y28{bottom:77.265000px;}
.y39{bottom:77.580000px;}
.y55{bottom:81.045000px;}
.y27{bottom:95.445000px;}
.y38{bottom:95.760000px;}
.y54{bottom:98.865000px;}
.y26{bottom:113.805000px;}
.y37{bottom:114.120000px;}
.y53{bottom:116.685000px;}
.yf2{bottom:129.780000px;}
.yc0{bottom:130.680000px;}
.y25{bottom:132.165000px;}
.y36{bottom:132.480000px;}
.y97{bottom:133.920000px;}
.y52{bottom:134.505000px;}
.yf1{bottom:148.140000px;}
.ybf{bottom:149.040000px;}
.y24{bottom:150.525000px;}
.y35{bottom:150.660000px;}
.y96{bottom:152.130000px;}
.y51{bottom:152.325000px;}
.yf0{bottom:166.530000px;}
.ybe{bottom:167.250000px;}
.y23{bottom:168.705000px;}
.y34{bottom:169.050000px;}
.y50{bottom:169.965000px;}
.y95{bottom:170.490000px;}
.yef{bottom:184.890000px;}
.ybd{bottom:185.610000px;}
.y22{bottom:187.065000px;}
.y33{bottom:187.410000px;}
.y4f{bottom:187.785000px;}
.y94{bottom:188.850000px;}
.yee{bottom:203.070000px;}
.ybc{bottom:203.970000px;}
.y21{bottom:205.425000px;}
.y32{bottom:205.770000px;}
.y93{bottom:207.030000px;}
.y4e{bottom:214.425000px;}
.yed{bottom:221.430000px;}
.ybb{bottom:222.150000px;}
.y20{bottom:223.605000px;}
.y31{bottom:223.950000px;}
.y92{bottom:225.390000px;}
.yec{bottom:239.790000px;}
.yba{bottom:240.510000px;}
.y1f{bottom:241.965000px;}
.y30{bottom:242.310000px;}
.y91{bottom:243.750000px;}
.yeb{bottom:257.970000px;}
.yb9{bottom:258.870000px;}
.y1e{bottom:260.325000px;}
.y2f{bottom:260.670000px;}
.y90{bottom:262.110000px;}
.yea{bottom:276.330000px;}
.yb8{bottom:277.230000px;}
.y1d{bottom:278.685000px;}
.y2e{bottom:279.030000px;}
.y8f{bottom:280.290000px;}
.ye9{bottom:294.690000px;}
.yb7{bottom:295.410000px;}
.y1c{bottom:296.865000px;}
.y2d{bottom:297.210000px;}
.y8e{bottom:298.650000px;}
.y4d{bottom:298.845000px;}
.ye8{bottom:313.050000px;}
.yb6{bottom:313.770000px;}
.y1b{bottom:315.225000px;}
.y2c{bottom:315.570000px;}
.y8d{bottom:317.010000px;}
.y4c{bottom:328.755000px;}
.y11{bottom:329.970000px;}
.ye7{bottom:331.230000px;}
.yb5{bottom:332.130000px;}
.y1a{bottom:333.615000px;}
.y8c{bottom:335.370000px;}
.y3a{bottom:338.970000px;}
.ye6{bottom:349.590000px;}
.yb4{bottom:350.310000px;}
.y19{bottom:351.975000px;}
.y8b{bottom:353.550000px;}
.y4b{bottom:358.455000px;}
.ye5{bottom:367.950000px;}
.yb3{bottom:368.670000px;}
.y18{bottom:370.155000px;}
.y8a{bottom:371.910000px;}
.ye4{bottom:386.310000px;}
.yb2{bottom:387.030000px;}
.y4a{bottom:388.335000px;}
.y17{bottom:388.515000px;}
.y89{bottom:390.270000px;}
.ye3{bottom:404.535000px;}
.yb1{bottom:405.435000px;}
.y16{bottom:406.875000px;}
.y88{bottom:408.495000px;}
.y49{bottom:418.035000px;}
.ye2{bottom:422.895000px;}
.yb0{bottom:423.615000px;}
.y15{bottom:425.055000px;}
.y87{bottom:426.855000px;}
.y48{bottom:434.415000px;}
.ye1{bottom:441.255000px;}
.yaf{bottom:441.975000px;}
.y14{bottom:443.415000px;}
.y86{bottom:445.215000px;}
.y47{bottom:450.975000px;}
.ye0{bottom:459.435000px;}
.yae{bottom:460.335000px;}
.y13{bottom:461.775000px;}
.y85{bottom:463.575000px;}
.y46{bottom:467.355000px;}
.ydf{bottom:477.795000px;}
.yad{bottom:478.695000px;}
.y12{bottom:480.135000px;}
.y84{bottom:481.755000px;}
.y45{bottom:483.915000px;}
.yde{bottom:496.155000px;}
.yac{bottom:496.875000px;}
.y83{bottom:500.115000px;}
.y44{bottom:500.295000px;}
.ydd{bottom:514.515000px;}
.yab{bottom:515.235000px;}
.y82{bottom:518.475000px;}
.y43{bottom:525.675000px;}
.ydc{bottom:532.695000px;}
.yaa{bottom:533.595000px;}
.y81{bottom:536.655000px;}
.ydb{bottom:551.055000px;}
.ya9{bottom:551.775000px;}
.y80{bottom:555.015000px;}
.y42{bottom:555.735000px;}
.yda{bottom:569.415000px;}
.ya8{bottom:570.135000px;}
.y7f{bottom:573.375000px;}
.y41{bottom:585.480000px;}
.yd9{bottom:587.595000px;}
.ya7{bottom:588.495000px;}
.y7e{bottom:591.735000px;}
.y40{bottom:603.120000px;}
.yd8{bottom:605.955000px;}
.ya6{bottom:606.855000px;}
.y7d{bottom:609.915000px;}
.y3f{bottom:620.940000px;}
.yd7{bottom:624.315000px;}
.ya5{bottom:625.035000px;}
.y7c{bottom:628.275000px;}
.y3e{bottom:638.760000px;}
.yd6{bottom:642.675000px;}
.ya4{bottom:643.395000px;}
.y7b{bottom:646.635000px;}
.y3d{bottom:656.580000px;}
.yd5{bottom:660.885000px;}
.ya3{bottom:661.785000px;}
.y7a{bottom:665.025000px;}
.y3c{bottom:674.220000px;}
.yd4{bottom:679.245000px;}
.ya2{bottom:680.145000px;}
.y79{bottom:683.205000px;}
.yd3{bottom:697.605000px;}
.ya1{bottom:699.225000px;}
.y3b{bottom:700.140000px;}
.y78{bottom:701.565000px;}
.yd2{bottom:715.965000px;}
.ya0{bottom:717.405000px;}
.y77{bottom:719.925000px;}
.yd1{bottom:734.145000px;}
.y9f{bottom:735.765000px;}
.y76{bottom:738.105000px;}
.yd0{bottom:752.505000px;}
.y9e{bottom:754.125000px;}
.y75{bottom:756.465000px;}
.ycf{bottom:771.585000px;}
.y9d{bottom:773.205000px;}
.y74{bottom:774.825000px;}
.yce{bottom:789.945000px;}
.y9c{bottom:791.565000px;}
.y73{bottom:793.185000px;}
.ycd{bottom:808.305000px;}
.y9b{bottom:809.925000px;}
.y72{bottom:811.365000px;}
.yf{bottom:824.325000px;}
.ycc{bottom:826.665000px;}
.y9a{bottom:828.105000px;}
.y71{bottom:829.725000px;}
.ycb{bottom:845.745000px;}
.ye{bottom:847.185000px;}
.y70{bottom:848.085000px;}
.yca{bottom:863.925000px;}
.y99{bottom:865.545000px;}
.y6f{bottom:866.445000px;}
.yd{bottom:866.805000px;}
.yc9{bottom:882.285000px;}
.y98{bottom:883.905000px;}
.y6e{bottom:884.625000px;}
.yc{bottom:885.165000px;}
.yc8{bottom:900.690000px;}
.y6d{bottom:903.030000px;}
.yb{bottom:907.170000px;}
.yc7{bottom:919.770000px;}
.y6c{bottom:921.390000px;}
.ya{bottom:925.530000px;}
.yc6{bottom:938.130000px;}
.y6b{bottom:939.570000px;}
.y9{bottom:947.490000px;}
.yc5{bottom:956.310000px;}
.y6a{bottom:957.930000px;}
.y8{bottom:965.850000px;}
.yc4{bottom:974.670000px;}
.y69{bottom:976.290000px;}
.y7{bottom:985.830000px;}
.yc3{bottom:993.750000px;}
.y68{bottom:994.650000px;}
.y6{bottom:1011.390000px;}
.yc2{bottom:1012.110000px;}
.y67{bottom:1012.830000px;}
.yc1{bottom:1030.470000px;}
.y66{bottom:1031.190000px;}
.y5{bottom:1037.130000px;}
.y65{bottom:1049.550000px;}
.y4{bottom:1061.610000px;}
.y64{bottom:1067.910000px;}
.y2{bottom:1082.310000px;}
.y63{bottom:1086.090000px;}
.y1{bottom:1102.110000px;}
.y62{bottom:1104.450000px;}
.y61{bottom:1122.810000px;}
.y60{bottom:1140.990000px;}
.y5c{bottom:1159.020000px;}
.y5b{bottom:1175.940000px;}
.h7{height:18.360000px;}
.hd{height:20.160000px;}
.h3{height:47.415937px;}
.hc{height:47.980898px;}
.h10{height:48.029766px;}
.hf{height:48.088125px;}
.hb{height:53.709961px;}
.ha{height:55.291992px;}
.h6{height:59.439023px;}
.h5{height:61.189805px;}
.h2{height:65.884219px;}
.he{height:73.722656px;}
.h4{height:86.255508px;}
.h8{height:494.355000px;}
.h9{height:714.525000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:49.500000px;}
.w4{width:216.750000px;}
.w3{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x6{left:10.800000px;}
.x1{left:84.995987px;}
.x9{left:145.655987px;}
.x7{left:202.005000px;}
.x8{left:265.575000px;}
.x4{left:473.144987px;}
.x5{left:586.545000px;}
.xa{left:756.330000px;}
.x2{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-0.906667pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.474133pt;}
.ls25{letter-spacing:-0.330133pt;}
.ls1a{letter-spacing:-0.265067pt;}
.ls2f{letter-spacing:-0.190933pt;}
.ls30{letter-spacing:-0.156267pt;}
.ls23{letter-spacing:-0.102933pt;}
.ls35{letter-spacing:-0.099733pt;}
.ls6{letter-spacing:-0.097067pt;}
.ls21{letter-spacing:-0.057600pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls31{letter-spacing:-0.036480pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls2e{letter-spacing:-0.011520pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.021120pt;}
.ls1{letter-spacing:0.028160pt;}
.ls3{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.053867pt;}
.ls9{letter-spacing:0.064000pt;}
.ls27{letter-spacing:0.112533pt;}
.ls36{letter-spacing:0.124800pt;}
.ls2c{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154667pt;}
.ls0{letter-spacing:0.154880pt;}
.ls18{letter-spacing:0.155733pt;}
.ls1d{letter-spacing:0.159360pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.160533pt;}
.ls12{letter-spacing:0.165867pt;}
.lsa{letter-spacing:0.176000pt;}
.lse{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.221867pt;}
.ls39{letter-spacing:0.256533pt;}
.ls24{letter-spacing:0.272000pt;}
.ls22{letter-spacing:0.309867pt;}
.ls3a{letter-spacing:0.426240pt;}
.ls17{letter-spacing:0.566400pt;}
.ls5{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.912000pt;}
.ls16{letter-spacing:5.274880pt;}
.ls1f{letter-spacing:5.914880pt;}
.ls26{letter-spacing:6.554880pt;}
.ls1e{letter-spacing:8.474880pt;}
.ls29{letter-spacing:9.114880pt;}
.ls33{letter-spacing:12.314880pt;}
.ls34{letter-spacing:13.594880pt;}
.ls20{letter-spacing:14.234880pt;}
.ls32{letter-spacing:14.874880pt;}
.ls15{letter-spacing:26.394880pt;}
.ls2b{letter-spacing:38.554880pt;}
.ls2{letter-spacing:63.514880pt;}
.ls38{letter-spacing:86.992640pt;}
.ls37{letter-spacing:114.512640pt;}
.ls28{letter-spacing:136.912640pt;}
.ls2d{letter-spacing:142.032640pt;}
.ls2a{letter-spacing:152.912640pt;}
.lsd{letter-spacing:178.074880pt;}
.wsa{word-spacing:-53.120000pt;}
.ws7{word-spacing:-14.656000pt;}
.wsc{word-spacing:-12.917120pt;}
.wse{word-spacing:-12.314987pt;}
.ws16{word-spacing:-12.261653pt;}
.ws8{word-spacing:-12.170987pt;}
.wsb{word-spacing:-12.165653pt;}
.ws9{word-spacing:-12.160853pt;}
.ws15{word-spacing:-12.129920pt;}
.ws10{word-spacing:-12.117653pt;}
.ws0{word-spacing:-12.005120pt;}
.ws11{word-spacing:-11.993600pt;}
.ws13{word-spacing:-11.968640pt;}
.ws6{word-spacing:-11.953280pt;}
.wsd{word-spacing:-11.947520pt;}
.ws1{word-spacing:-11.908053pt;}
.ws14{word-spacing:-11.905387pt;}
.ws12{word-spacing:-11.814187pt;}
.wsf{word-spacing:-11.674987pt;}
.ws2{word-spacing:-11.024000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.832000pt;}
.ws5{word-spacing:0.000000pt;}
._35{margin-left:-3.383253pt;}
._13{margin-left:-2.416640pt;}
._1{margin-left:-1.048320pt;}
._2{width:1.332267pt;}
._17{width:2.602880pt;}
._4{width:3.505920pt;}
._f{width:4.515200pt;}
._b{width:6.055680pt;}
._1a{width:7.284053pt;}
._1c{width:8.256000pt;}
._12{width:9.455360pt;}
._6{width:10.942720pt;}
._d{width:13.643307pt;}
._7{width:14.554880pt;}
._8{width:15.555627pt;}
._38{width:16.461440pt;}
._e{width:17.370240pt;}
._9{width:18.959573pt;}
._a{width:20.614827pt;}
._18{width:21.900160pt;}
._c{width:23.368533pt;}
._16{width:24.258347pt;}
._5{width:25.444480pt;}
._1b{width:26.544000pt;}
._2a{width:27.516160pt;}
._33{width:28.410667pt;}
._2b{width:29.534720pt;}
._42{width:30.445013pt;}
._26{width:31.340800pt;}
._25{width:32.296960pt;}
._14{width:33.412480pt;}
._15{width:34.421760pt;}
._31{width:35.324800pt;}
._39{width:36.556587pt;}
._22{width:37.449600pt;}
._30{width:38.503467pt;}
._23{width:39.946240pt;}
._29{width:40.889600pt;}
._24{width:42.704213pt;}
._36{width:44.036480pt;}
._28{width:45.205120pt;}
._27{width:46.108160pt;}
._19{width:47.568000pt;}
._3b{width:48.870400pt;}
._3d{width:50.251520pt;}
._2d{width:51.256533pt;}
._2e{width:52.270080pt;}
._2c{width:53.173120pt;}
._10{width:55.028053pt;}
._11{width:55.988480pt;}
._34{width:57.210240pt;}
._37{width:59.016320pt;}
._3c{width:60.127573pt;}
._2f{width:61.672320pt;}
._3e{width:62.930987pt;}
._3{width:64.154880pt;}
._32{width:67.462400pt;}
._3f{width:72.880640pt;}
._3a{width:74.330453pt;}
._40{width:78.298880pt;}
._45{width:88.551040pt;}
._1e{width:101.184000pt;}
._1d{width:102.424320pt;}
._41{width:123.504000pt;}
._44{width:138.802560pt;}
._43{width:647.639040pt;}
._1f{width:756.380587pt;}
._21{width:827.868160pt;}
._20{width:1259.712000pt;}
._0{width:1272.058453pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y5a{bottom:-1008.760000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:2.720000pt;}
.y10{bottom:3.520000pt;}
.y59{bottom:8.800000pt;}
.y2b{bottom:19.680000pt;}
.y58{bottom:24.640000pt;}
.y2a{bottom:36.000000pt;}
.y57{bottom:40.480000pt;}
.y3{bottom:50.240000pt;}
.y5d{bottom:50.720000pt;}
.y29{bottom:52.320000pt;}
.y56{bottom:56.360000pt;}
.y5e{bottom:63.840000pt;}
.y28{bottom:68.680000pt;}
.y39{bottom:68.960000pt;}
.y55{bottom:72.040000pt;}
.y27{bottom:84.840000pt;}
.y38{bottom:85.120000pt;}
.y54{bottom:87.880000pt;}
.y26{bottom:101.160000pt;}
.y37{bottom:101.440000pt;}
.y53{bottom:103.720000pt;}
.yf2{bottom:115.360000pt;}
.yc0{bottom:116.160000pt;}
.y25{bottom:117.480000pt;}
.y36{bottom:117.760000pt;}
.y97{bottom:119.040000pt;}
.y52{bottom:119.560000pt;}
.yf1{bottom:131.680000pt;}
.ybf{bottom:132.480000pt;}
.y24{bottom:133.800000pt;}
.y35{bottom:133.920000pt;}
.y96{bottom:135.226667pt;}
.y51{bottom:135.400000pt;}
.yf0{bottom:148.026667pt;}
.ybe{bottom:148.666667pt;}
.y23{bottom:149.960000pt;}
.y34{bottom:150.266667pt;}
.y50{bottom:151.080000pt;}
.y95{bottom:151.546667pt;}
.yef{bottom:164.346667pt;}
.ybd{bottom:164.986667pt;}
.y22{bottom:166.280000pt;}
.y33{bottom:166.586667pt;}
.y4f{bottom:166.920000pt;}
.y94{bottom:167.866667pt;}
.yee{bottom:180.506667pt;}
.ybc{bottom:181.306667pt;}
.y21{bottom:182.600000pt;}
.y32{bottom:182.906667pt;}
.y93{bottom:184.026667pt;}
.y4e{bottom:190.600000pt;}
.yed{bottom:196.826667pt;}
.ybb{bottom:197.466667pt;}
.y20{bottom:198.760000pt;}
.y31{bottom:199.066667pt;}
.y92{bottom:200.346667pt;}
.yec{bottom:213.146667pt;}
.yba{bottom:213.786667pt;}
.y1f{bottom:215.080000pt;}
.y30{bottom:215.386667pt;}
.y91{bottom:216.666667pt;}
.yeb{bottom:229.306667pt;}
.yb9{bottom:230.106667pt;}
.y1e{bottom:231.400000pt;}
.y2f{bottom:231.706667pt;}
.y90{bottom:232.986667pt;}
.yea{bottom:245.626667pt;}
.yb8{bottom:246.426667pt;}
.y1d{bottom:247.720000pt;}
.y2e{bottom:248.026667pt;}
.y8f{bottom:249.146667pt;}
.ye9{bottom:261.946667pt;}
.yb7{bottom:262.586667pt;}
.y1c{bottom:263.880000pt;}
.y2d{bottom:264.186667pt;}
.y8e{bottom:265.466667pt;}
.y4d{bottom:265.640000pt;}
.ye8{bottom:278.266667pt;}
.yb6{bottom:278.906667pt;}
.y1b{bottom:280.200000pt;}
.y2c{bottom:280.506667pt;}
.y8d{bottom:281.786667pt;}
.y4c{bottom:292.226667pt;}
.y11{bottom:293.306667pt;}
.ye7{bottom:294.426667pt;}
.yb5{bottom:295.226667pt;}
.y1a{bottom:296.546667pt;}
.y8c{bottom:298.106667pt;}
.y3a{bottom:301.306667pt;}
.ye6{bottom:310.746667pt;}
.yb4{bottom:311.386667pt;}
.y19{bottom:312.866667pt;}
.y8b{bottom:314.266667pt;}
.y4b{bottom:318.626667pt;}
.ye5{bottom:327.066667pt;}
.yb3{bottom:327.706667pt;}
.y18{bottom:329.026667pt;}
.y8a{bottom:330.586667pt;}
.ye4{bottom:343.386667pt;}
.yb2{bottom:344.026667pt;}
.y4a{bottom:345.186667pt;}
.y17{bottom:345.346667pt;}
.y89{bottom:346.906667pt;}
.ye3{bottom:359.586667pt;}
.yb1{bottom:360.386667pt;}
.y16{bottom:361.666667pt;}
.y88{bottom:363.106667pt;}
.y49{bottom:371.586667pt;}
.ye2{bottom:375.906667pt;}
.yb0{bottom:376.546667pt;}
.y15{bottom:377.826667pt;}
.y87{bottom:379.426667pt;}
.y48{bottom:386.146667pt;}
.ye1{bottom:392.226667pt;}
.yaf{bottom:392.866667pt;}
.y14{bottom:394.146667pt;}
.y86{bottom:395.746667pt;}
.y47{bottom:400.866667pt;}
.ye0{bottom:408.386667pt;}
.yae{bottom:409.186667pt;}
.y13{bottom:410.466667pt;}
.y85{bottom:412.066667pt;}
.y46{bottom:415.426667pt;}
.ydf{bottom:424.706667pt;}
.yad{bottom:425.506667pt;}
.y12{bottom:426.786667pt;}
.y84{bottom:428.226667pt;}
.y45{bottom:430.146667pt;}
.yde{bottom:441.026667pt;}
.yac{bottom:441.666667pt;}
.y83{bottom:444.546667pt;}
.y44{bottom:444.706667pt;}
.ydd{bottom:457.346667pt;}
.yab{bottom:457.986667pt;}
.y82{bottom:460.866667pt;}
.y43{bottom:467.266667pt;}
.ydc{bottom:473.506667pt;}
.yaa{bottom:474.306667pt;}
.y81{bottom:477.026667pt;}
.ydb{bottom:489.826667pt;}
.ya9{bottom:490.466667pt;}
.y80{bottom:493.346667pt;}
.y42{bottom:493.986667pt;}
.yda{bottom:506.146667pt;}
.ya8{bottom:506.786667pt;}
.y7f{bottom:509.666667pt;}
.y41{bottom:520.426667pt;}
.yd9{bottom:522.306667pt;}
.ya7{bottom:523.106667pt;}
.y7e{bottom:525.986667pt;}
.y40{bottom:536.106667pt;}
.yd8{bottom:538.626667pt;}
.ya6{bottom:539.426667pt;}
.y7d{bottom:542.146667pt;}
.y3f{bottom:551.946667pt;}
.yd7{bottom:554.946667pt;}
.ya5{bottom:555.586667pt;}
.y7c{bottom:558.466667pt;}
.y3e{bottom:567.786667pt;}
.yd6{bottom:571.266667pt;}
.ya4{bottom:571.906667pt;}
.y7b{bottom:574.786667pt;}
.y3d{bottom:583.626667pt;}
.yd5{bottom:587.453333pt;}
.ya3{bottom:588.253333pt;}
.y7a{bottom:591.133333pt;}
.y3c{bottom:599.306667pt;}
.yd4{bottom:603.773333pt;}
.ya2{bottom:604.573333pt;}
.y79{bottom:607.293333pt;}
.yd3{bottom:620.093333pt;}
.ya1{bottom:621.533333pt;}
.y3b{bottom:622.346667pt;}
.y78{bottom:623.613333pt;}
.yd2{bottom:636.413333pt;}
.ya0{bottom:637.693333pt;}
.y77{bottom:639.933333pt;}
.yd1{bottom:652.573333pt;}
.y9f{bottom:654.013333pt;}
.y76{bottom:656.093333pt;}
.yd0{bottom:668.893333pt;}
.y9e{bottom:670.333333pt;}
.y75{bottom:672.413333pt;}
.ycf{bottom:685.853333pt;}
.y9d{bottom:687.293333pt;}
.y74{bottom:688.733333pt;}
.yce{bottom:702.173333pt;}
.y9c{bottom:703.613333pt;}
.y73{bottom:705.053333pt;}
.ycd{bottom:718.493333pt;}
.y9b{bottom:719.933333pt;}
.y72{bottom:721.213333pt;}
.yf{bottom:732.733333pt;}
.ycc{bottom:734.813333pt;}
.y9a{bottom:736.093333pt;}
.y71{bottom:737.533333pt;}
.ycb{bottom:751.773333pt;}
.ye{bottom:753.053333pt;}
.y70{bottom:753.853333pt;}
.yca{bottom:767.933333pt;}
.y99{bottom:769.373333pt;}
.y6f{bottom:770.173333pt;}
.yd{bottom:770.493333pt;}
.yc9{bottom:784.253333pt;}
.y98{bottom:785.693333pt;}
.y6e{bottom:786.333333pt;}
.yc{bottom:786.813333pt;}
.yc8{bottom:800.613333pt;}
.y6d{bottom:802.693333pt;}
.yb{bottom:806.373333pt;}
.yc7{bottom:817.573333pt;}
.y6c{bottom:819.013333pt;}
.ya{bottom:822.693333pt;}
.yc6{bottom:833.893333pt;}
.y6b{bottom:835.173333pt;}
.y9{bottom:842.213333pt;}
.yc5{bottom:850.053333pt;}
.y6a{bottom:851.493333pt;}
.y8{bottom:858.533333pt;}
.yc4{bottom:866.373333pt;}
.y69{bottom:867.813333pt;}
.y7{bottom:876.293333pt;}
.yc3{bottom:883.333333pt;}
.y68{bottom:884.133333pt;}
.y6{bottom:899.013333pt;}
.yc2{bottom:899.653333pt;}
.y67{bottom:900.293333pt;}
.yc1{bottom:915.973333pt;}
.y66{bottom:916.613333pt;}
.y5{bottom:921.893333pt;}
.y65{bottom:932.933333pt;}
.y4{bottom:943.653333pt;}
.y64{bottom:949.253333pt;}
.y2{bottom:962.053333pt;}
.y63{bottom:965.413333pt;}
.y1{bottom:979.653333pt;}
.y62{bottom:981.733333pt;}
.y61{bottom:998.053333pt;}
.y60{bottom:1014.213333pt;}
.y5c{bottom:1030.240000pt;}
.y5b{bottom:1045.280000pt;}
.h7{height:16.320000pt;}
.hd{height:17.920000pt;}
.h3{height:42.147500pt;}
.hc{height:42.649687pt;}
.h10{height:42.693125pt;}
.hf{height:42.745000pt;}
.hb{height:47.742188pt;}
.ha{height:49.148438pt;}
.h6{height:52.834688pt;}
.h5{height:54.390938pt;}
.h2{height:58.563750pt;}
.he{height:65.531250pt;}
.h4{height:76.671562pt;}
.h8{height:439.426667pt;}
.h9{height:635.133333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:44.000000pt;}
.w4{width:192.666667pt;}
.w3{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x6{left:9.600000pt;}
.x1{left:75.551988pt;}
.x9{left:129.471988pt;}
.x7{left:179.560000pt;}
.x8{left:236.066667pt;}
.x4{left:420.573322pt;}
.x5{left:521.373333pt;}
.xa{left:672.293333pt;}
.x2{left:718.239988pt;}
}




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