
    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_14394b785dda6beaf297d6ed.woff')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_d6d0c6f018235d470b793fbd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_39100b08c936dbed8f7685a5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_59be127dab0140f8ea685da9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0d625b464b17f444292350e6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_870f52c20b33071eb14a1589.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_ee92472cc7003b18f3ce5e8c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_7c3dce61f145672f2e7a8264.woff')format("woff");}.ff8{font-family:ff8;line-height:1.378906;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_21c1972d08e2e42a215a4a68.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_ad19d095cb0fd41c28b51ccf.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_fb91030b85cb55d6cc444c46.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_11f80f4d58620da3ded8d147.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0b00b466015d5ca827ac0c82.woff')format("woff");}.ffd{font-family:ffd;line-height:1.378906;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_824fbe029f53497f0ecbbeb5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.936523;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{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);}
.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;}
.v1{vertical-align:57.600000px;}
.ls16{letter-spacing:-0.490200px;}
.ls11{letter-spacing:-0.432600px;}
.ls2a{letter-spacing:-0.367800px;}
.ls2f{letter-spacing:-0.327600px;}
.ls20{letter-spacing:-0.310200px;}
.ls19{letter-spacing:-0.273000px;}
.ls23{letter-spacing:-0.194400px;}
.ls1d{letter-spacing:-0.193200px;}
.ls39{letter-spacing:-0.175200px;}
.lsa{letter-spacing:-0.170400px;}
.ls21{letter-spacing:-0.168600px;}
.ls2d{letter-spacing:-0.149400px;}
.ls15{letter-spacing:-0.142800px;}
.ls17{letter-spacing:-0.136200px;}
.ls35{letter-spacing:-0.132600px;}
.ls2{letter-spacing:-0.130800px;}
.lsb{letter-spacing:-0.126600px;}
.ls18{letter-spacing:-0.085200px;}
.ls2c{letter-spacing:-0.076200px;}
.ls1e{letter-spacing:-0.048960px;}
.ls2b{letter-spacing:-0.036000px;}
.ls40{letter-spacing:-0.018000px;}
.ls29{letter-spacing:-0.006600px;}
.ls1f{letter-spacing:-0.002016px;}
.ls28{letter-spacing:-0.000006px;}
.ls1{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.037440px;}
.ls26{letter-spacing:0.072000px;}
.ls42{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.117000px;}
.ls10{letter-spacing:0.121200px;}
.ls27{letter-spacing:0.137400px;}
.ls2e{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.148080px;}
.ls24{letter-spacing:0.232200px;}
.ls6{letter-spacing:0.244080px;}
.ls46{letter-spacing:0.252000px;}
.lsc{letter-spacing:0.265200px;}
.ls43{letter-spacing:0.274800px;}
.ls34{letter-spacing:0.280200px;}
.ls25{letter-spacing:0.387600px;}
.ls47{letter-spacing:0.418800px;}
.ls45{letter-spacing:5.760000px;}
.ls33{letter-spacing:15.252480px;}
.ls41{letter-spacing:24.480000px;}
.ls1a{letter-spacing:33.120000px;}
.ls22{letter-spacing:33.912000px;}
.ls1c{letter-spacing:35.856000px;}
.ls1b{letter-spacing:36.000000px;}
.ls0{letter-spacing:36.588960px;}
.ls7{letter-spacing:37.308960px;}
.ls5{letter-spacing:37.428960px;}
.ls37{letter-spacing:37.440000px;}
.ls4{letter-spacing:37.488960px;}
.ls3d{letter-spacing:37.560000px;}
.lsf{letter-spacing:37.610496px;}
.lse{letter-spacing:37.690560px;}
.ls9{letter-spacing:43.366608px;}
.ls8{letter-spacing:43.418880px;}
.lsd{letter-spacing:43.450560px;}
.ls3c{letter-spacing:91.448064px;}
.ls3a{letter-spacing:91.535040px;}
.ls3b{letter-spacing:91.559040px;}
.ls3e{letter-spacing:91.568064px;}
.ls3f{letter-spacing:91.655040px;}
.ls32{letter-spacing:95.060064px;}
.ls30{letter-spacing:95.135040px;}
.ls31{letter-spacing:95.147040px;}
.ls38{letter-spacing:96.168960px;}
.ls13{letter-spacing:100.970496px;}
.ls12{letter-spacing:101.050560px;}
.ls36{letter-spacing:129.600000px;}
.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;}
}
.ws28{word-spacing:-83.448000px;}
.wsd{word-spacing:-57.423168px;}
.ws8{word-spacing:-49.195872px;}
.wsa{word-spacing:-43.534320px;}
.wsb{word-spacing:-43.390320px;}
.wsc{word-spacing:-43.314192px;}
.ws9{word-spacing:-40.504320px;}
.wsf{word-spacing:-37.680192px;}
.ws7{word-spacing:-37.635120px;}
.ws0{word-spacing:-37.504320px;}
.ws22{word-spacing:-37.459920px;}
.ws10{word-spacing:-37.144920px;}
.ws12{word-spacing:-35.651952px;}
.ws14{word-spacing:-35.606880px;}
.ws11{word-spacing:-35.557920px;}
.ws2{word-spacing:-35.389512px;}
.ws1{word-spacing:-35.272512px;}
.ws6{word-spacing:-35.230320px;}
.ws19{word-spacing:-33.986472px;}
.ws18{word-spacing:-33.804000px;}
.ws17{word-spacing:-31.644000px;}
.ws2a{word-spacing:-30.391680px;}
.ws29{word-spacing:-30.247680px;}
.ws1f{word-spacing:-29.690352px;}
.ws2d{word-spacing:-28.057680px;}
.ws20{word-spacing:-27.174240px;}
.ws1e{word-spacing:-25.633560px;}
.ws27{word-spacing:-24.516000px;}
.ws1a{word-spacing:-24.440544px;}
.ws4{word-spacing:-24.408000px;}
.ws1b{word-spacing:-24.372000px;}
.ws16{word-spacing:-21.641760px;}
.ws26{word-spacing:-16.212960px;}
.ws21{word-spacing:-14.970240px;}
.ws24{word-spacing:-13.811040px;}
.ws23{word-spacing:-12.204000px;}
.ws25{word-spacing:-12.186000px;}
.ws2c{word-spacing:-11.260224px;}
.ws2b{word-spacing:-5.886000px;}
.ws3{word-spacing:0.000000px;}
.ws13{word-spacing:1.160928px;}
.wse{word-spacing:1.204560px;}
.ws5{word-spacing:2.241360px;}
.ws1c{word-spacing:50.175000px;}
.ws1d{word-spacing:50.252760px;}
.ws15{word-spacing:341.232720px;}
._7{margin-left:-12.441600px;}
._a{margin-left:-10.395072px;}
._6{margin-left:-8.651520px;}
._e{margin-left:-6.804000px;}
._5{margin-left:-5.616000px;}
._9{margin-left:-3.727440px;}
._2{margin-left:-2.499120px;}
._0{margin-left:-1.202400px;}
._3{width:1.153440px;}
._4{width:2.562336px;}
._c{width:3.649872px;}
._10{width:18.208440px;}
._12{width:26.174448px;}
._11{width:28.219920px;}
._13{width:32.007984px;}
._b{width:35.974080px;}
._14{width:37.480800px;}
._8{width:41.864688px;}
._1{width:72.372384px;}
._f{width:96.336000px;}
._d{width:106.013376px;}
.fc6{color:rgb(255,153,0);}
.fc4{color:rgb(255,0,0);}
.fc7{color:rgb(247,150,70);}
.fc2{color:rgb(157,10,14);}
.fc5{color:rgb(238,236,225);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:18.000000px;}
.fs12{font-size:49.680000px;}
.fs16{font-size:49.824000px;}
.fs11{font-size:54.000000px;}
.fs13{font-size:58.320000px;}
.fs10{font-size:66.240000px;}
.fsf{font-size:90.000000px;}
.fsc{font-size:95.760000px;}
.fsd{font-size:95.904000px;}
.fs14{font-size:100.938894px;}
.fs4{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fsa{font-size:113.760000px;}
.fsb{font-size:113.904000px;}
.fs0{font-size:120.240000px;}
.fs3{font-size:120.384000px;}
.fs8{font-size:138.240000px;}
.fs9{font-size:138.384000px;}
.fse{font-size:144.000000px;}
.fs6{font-size:167.760000px;}
.fs5{font-size:167.904000px;}
.fs2{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:7.812000px;}
.y9b{bottom:15.012000px;}
.y39{bottom:20.772000px;}
.y16{bottom:21.420000px;}
.ybc{bottom:24.012000px;}
.y56{bottom:31.932000px;}
.y17{bottom:33.048000px;}
.y77{bottom:33.912000px;}
.y28{bottom:34.776000px;}
.y55{bottom:46.332000px;}
.y57{bottom:48.168000px;}
.yba{bottom:50.076000px;}
.y9a{bottom:50.148000px;}
.yda{bottom:50.724000px;}
.y8a{bottom:51.912000px;}
.y38{bottom:62.172000px;}
.y76{bottom:69.912000px;}
.y18{bottom:75.348000px;}
.y27{bottom:76.176000px;}
.yab{bottom:77.508000px;}
.yd9{bottom:83.124000px;}
.y89{bottom:84.348000px;}
.ye6{bottom:88.992000px;}
.yb9{bottom:91.476000px;}
.yaa{bottom:97.308000px;}
.y6d{bottom:99.216000px;}
.y11{bottom:102.996000px;}
.y37{bottom:103.572000px;}
.y75{bottom:105.912000px;}
.y8{bottom:117.576000px;}
.y26{bottom:117.612000px;}
.ye5{bottom:121.428000px;}
.y2{bottom:129.240000px;}
.y54{bottom:131.400000px;}
.y6c{bottom:131.616000px;}
.y74{bottom:141.948000px;}
.y4b{bottom:144.252000px;}
.y36{bottom:144.972000px;}
.yd8{bottom:146.232000px;}
.yb8{bottom:146.772000px;}
.y96{bottom:146.844000px;}
.y88{bottom:163.800000px;}
.y67{bottom:164.055000px;}
.y25{bottom:164.955000px;}
.y53{bottom:165.630000px;}
.y13{bottom:169.530000px;}
.y1{bottom:172.440000px;}
.yd7{bottom:178.635000px;}
.y95{bottom:179.250000px;}
.y4a{bottom:180.255000px;}
.yc9{bottom:182.490000px;}
.y35{bottom:186.405000px;}
.ya9{bottom:188.640000px;}
.y87{bottom:196.200000px;}
.y66{bottom:196.455000px;}
.y52{bottom:199.830000px;}
.yb7{bottom:204.915000px;}
.y24{bottom:206.355000px;}
.yd6{bottom:210.315000px;}
.y49{bottom:222.375000px;}
.ya8{bottom:225.930000px;}
.yc8{bottom:227.595000px;}
.y6b{bottom:228.855000px;}
.y10{bottom:229.035000px;}
.y7{bottom:230.580000px;}
.y34{bottom:233.025000px;}
.y51{bottom:233.490000px;}
.yd5{bottom:236.235000px;}
.yeb{bottom:236.730000px;}
.yb6{bottom:246.315000px;}
.y94{bottom:246.705000px;}
.y86{bottom:247.500000px;}
.y23{bottom:247.755000px;}
.y6a{bottom:261.255000px;}
.ya7{bottom:263.190000px;}
.yf{bottom:265.035000px;}
.yf4{bottom:265.170000px;}
.y50{bottom:268.230000px;}
.yc7{bottom:269.025000px;}
.yea{bottom:272.730000px;}
.y33{bottom:274.965000px;}
.yf0{bottom:276.990000px;}
.yd4{bottom:279.255000px;}
.yb5{bottom:287.745000px;}
.y22{bottom:289.185000px;}
.y69{bottom:293.655000px;}
.y93{bottom:294.585000px;}
.y85{bottom:299.730000px;}
.ya6{bottom:300.450000px;}
.y4f{bottom:302.430000px;}
.y48{bottom:306.285000px;}
.yc6{bottom:310.425000px;}
.yd3{bottom:313.305000px;}
.y32{bottom:316.950000px;}
.y7a{bottom:320.610000px;}
.yef{bottom:325.590000px;}
.y65{bottom:326.085000px;}
.yb4{bottom:329.145000px;}
.y84{bottom:332.130000px;}
.y4e{bottom:336.495000px;}
.y21{bottom:336.705000px;}
.yf3{bottom:337.170000px;}
.ya5{bottom:338.610000px;}
.y98{bottom:338.760000px;}
.y47{bottom:342.285000px;}
.y92{bottom:342.510000px;}
.y6{bottom:344.955000px;}
.ye1{bottom:351.330000px;}
.yc5{bottom:351.825000px;}
.y31{bottom:352.950000px;}
.y79{bottom:353.010000px;}
.y64{bottom:358.485000px;}
.yb3{bottom:370.545000px;}
.yee{bottom:374.190000px;}
.y20{bottom:378.105000px;}
.y46{bottom:378.285000px;}
.ye{bottom:379.185000px;}
.ye0{bottom:380.490000px;}
.y83{bottom:384.330000px;}
.y78{bottom:385.455000px;}
.ye9{bottom:387.975000px;}
.y91{bottom:390.390000px;}
.y63{bottom:390.885000px;}
.yc4{bottom:393.225000px;}
.y30{bottom:395.070000px;}
.yd2{bottom:399.345000px;}
.y5{bottom:402.585000px;}
.yf2{bottom:409.215000px;}
.ydf{bottom:409.290000px;}
.y5d{bottom:410.040000px;}
.yb2{bottom:411.945000px;}
.y45{bottom:414.330000px;}
.yd{bottom:415.185000px;}
.ya4{bottom:416.415000px;}
.y82{bottom:416.730000px;}
.y1f{bottom:419.550000px;}
.yed{bottom:422.820000px;}
.y62{bottom:423.285000px;}
.yd1{bottom:433.365000px;}
.yc3{bottom:434.670000px;}
.y2f{bottom:437.010000px;}
.y90{bottom:438.270000px;}
.y5c{bottom:438.840000px;}
.yc{bottom:451.185000px;}
.yb1{bottom:453.390000px;}
.ya3{bottom:454.575000px;}
.y61{bottom:455.730000px;}
.y4{bottom:460.185000px;}
.y1e{bottom:460.950000px;}
.yd0{bottom:467.430000px;}
.y5b{bottom:467.640000px;}
.y81{bottom:468.075000px;}
.y9f{bottom:470.910000px;}
.yec{bottom:471.420000px;}
.y2e{bottom:473.040000px;}
.yf1{bottom:481.215000px;}
.y8f{bottom:486.180000px;}
.yb{bottom:487.230000px;}
.y60{bottom:488.130000px;}
.yb0{bottom:494.790000px;}
.y5a{bottom:496.440000px;}
.y9e{bottom:497.190000px;}
.y44{bottom:498.390000px;}
.y80{bottom:500.475000px;}
.y1d{bottom:502.350000px;}
.ye8{bottom:503.175000px;}
.yde{bottom:505.440000px;}
.y73{bottom:513.900000px;}
.y3e{bottom:514.695000px;}
.y2d{bottom:514.980000px;}
.ycf{bottom:517.290000px;}
.yc2{bottom:517.470000px;}
.ye4{bottom:518.475000px;}
.y3{bottom:520.170000px;}
.y68{bottom:520.530000px;}
.y9d{bottom:524.190000px;}
.y59{bottom:525.270000px;}
.y7f{bottom:532.875000px;}
.ye3{bottom:533.415000px;}
.y8e{bottom:534.060000px;}
.yca{bottom:534.345000px;}
.y43{bottom:534.390000px;}
.ya2{bottom:537.405000px;}
.y1c{bottom:543.750000px;}
.y72{bottom:549.900000px;}
.y5f{bottom:552.930000px;}
.y58{bottom:554.070000px;}
.yaf{bottom:554.190000px;}
.ydd{bottom:556.380000px;}
.y3d{bottom:556.665000px;}
.y2c{bottom:558.000000px;}
.yc1{bottom:558.870000px;}
.y7e{bottom:565.275000px;}
.y42{bottom:570.420000px;}
.ya1{bottom:578.805000px;}
.y8d{bottom:581.940000px;}
.yce{bottom:584.250000px;}
.y5e{bottom:585.330000px;}
.y71{bottom:585.930000px;}
.y1b{bottom:591.120000px;}
.y7d{bottom:597.705000px;}
.y3c{bottom:598.605000px;}
.yc0{bottom:600.300000px;}
.ya{bottom:601.170000px;}
.y2b{bottom:605.340000px;}
.y41{bottom:606.420000px;}
.ydc{bottom:606.990000px;}
.ycd{bottom:610.200000px;}
.yae{bottom:612.360000px;}
.ye7{bottom:618.405000px;}
.ya0{bottom:620.205000px;}
.y70{bottom:621.930000px;}
.y8c{bottom:629.820000px;}
.y7c{bottom:630.105000px;}
.y1a{bottom:632.520000px;}
.y9{bottom:637.200000px;}
.y3b{bottom:640.725000px;}
.ybf{bottom:641.700000px;}
.y40{bottom:642.420000px;}
.y2a{bottom:646.770000px;}
.yad{bottom:648.360000px;}
.y6f{bottom:657.930000px;}
.y7b{bottom:663.045000px;}
.y19{bottom:673.920000px;}
.ycc{bottom:676.980000px;}
.y8b{bottom:677.730000px;}
.y3f{bottom:678.420000px;}
.y3a{bottom:682.665000px;}
.ybe{bottom:683.100000px;}
.yac{bottom:684.360000px;}
.y29{bottom:688.170000px;}
.y97{bottom:688.500000px;}
.y6e{bottom:693.930000px;}
.y15{bottom:696.525000px;}
.ycb{bottom:702.900000px;}
.y4d{bottom:709.125000px;}
.y12{bottom:711.615000px;}
.y9c{bottom:712.290000px;}
.y99{bottom:716.220000px;}
.yf5{bottom:727.020000px;}
.ydb{bottom:745.125000px;}
.ybb{bottom:745.845000px;}
.y14{bottom:746.970000px;}
.y4c{bottom:757.005000px;}
.ye2{bottom:805.935000px;}
.h2a{height:14.730469px;}
.h2c{height:18.773448px;}
.h2b{height:19.863281px;}
.h2d{height:37.672383px;}
.h2e{height:49.556391px;}
.h23{height:51.814687px;}
.h22{height:53.709961px;}
.h24{height:60.825937px;}
.h1e{height:65.884219px;}
.h18{height:78.366094px;}
.h17{height:78.483937px;}
.h28{height:82.604290px;}
.h12{height:88.382812px;}
.h13{height:88.500656px;}
.hc{height:93.096562px;}
.h1a{height:93.867188px;}
.h10{height:95.245664px;}
.h11{height:95.388891px;}
.h1{height:98.399531px;}
.h4{height:98.517375px;}
.h29{height:99.874688px;}
.h1f{height:105.257812px;}
.h5{height:107.419922px;}
.h9{height:107.563148px;}
.h26{height:112.640625px;}
.h27{height:112.790813px;}
.ha{height:113.130000px;}
.h14{height:113.148984px;}
.hb{height:113.247844px;}
.h15{height:113.292211px;}
.h25{height:119.179688px;}
.h1d{height:119.594180px;}
.h1b{height:125.406562px;}
.hd{height:125.535937px;}
.h1c{height:125.556750px;}
.he{height:125.694844px;}
.h6{height:128.387531px;}
.h20{height:132.686719px;}
.h8{height:137.287969px;}
.h7{height:137.405812px;}
.h16{height:147.445312px;}
.hf{height:152.845664px;}
.h3{height:157.321406px;}
.h2{height:157.439250px;}
.h19{height:174.968437px;}
.h21{height:175.118625px;}
.h0{height:810.000000px;}
.w3{width:465.120000px;}
.w2{width:524.160000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x18{left:10.836000px;}
.x3e{left:33.803984px;}
.x17{left:35.640000px;}
.xf{left:37.799984px;}
.x1{left:40.427984px;}
.xd{left:42.155984px;}
.x23{left:43.883984px;}
.x34{left:45.575984px;}
.xa{left:46.583984px;}
.x43{left:48.599984px;}
.x11{left:50.255984px;}
.xe{left:52.055984px;}
.x25{left:53.387984px;}
.x2c{left:55.583984px;}
.x8{left:56.591984px;}
.x3d{left:57.923984px;}
.xb{left:59.903984px;}
.x32{left:61.523984px;}
.x7{left:67.175984px;}
.x14{left:72.071984px;}
.x27{left:73.691984px;}
.x10{left:76.859984px;}
.x2d{left:100.583984px;}
.x2b{left:111.419984px;}
.x2e{left:113.543984px;}
.x28{left:115.631984px;}
.x29{left:127.691984px;}
.x30{left:137.051984px;}
.x3{left:140.075984px;}
.x35{left:150.869984px;}
.x2{left:161.669984px;}
.x2f{left:167.549984px;}
.x2a{left:169.634984px;}
.x4{left:186.329984px;}
.x1a{left:202.214984px;}
.x20{left:210.854984px;}
.x40{left:233.639984px;}
.x3f{left:245.699984px;}
.xc{left:263.159984px;}
.x12{left:273.599984px;}
.x22{left:275.009984px;}
.x19{left:291.524984px;}
.x41{left:302.609984px;}
.x5{left:349.994984px;}
.x24{left:420.044984px;}
.x9{left:535.169984px;}
.x13{left:538.709984px;}
.x1f{left:540.644984px;}
.x31{left:554.609984px;}
.x1b{left:559.620000px;}
.x1d{left:588.704984px;}
.x33{left:598.934984px;}
.x26{left:616.169984px;}
.x1c{left:624.569984px;}
.x42{left:629.459984px;}
.x21{left:675.644984px;}
.x1e{left:687.704984px;}
.x3c{left:741.674984px;}
.x15{left:815.729984px;}
.x16{left:849.569984px;}
.x6{left:915.224984px;}
.x3b{left:1035.464984px;}
.x3a{left:1040.684984px;}
.x39{left:1051.664984px;}
.x38{left:1057.064984px;}
.x37{left:1062.284984px;}
.x36{left:1067.684984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:51.200000pt;}
.ls16{letter-spacing:-0.435733pt;}
.ls11{letter-spacing:-0.384533pt;}
.ls2a{letter-spacing:-0.326933pt;}
.ls2f{letter-spacing:-0.291200pt;}
.ls20{letter-spacing:-0.275733pt;}
.ls19{letter-spacing:-0.242667pt;}
.ls23{letter-spacing:-0.172800pt;}
.ls1d{letter-spacing:-0.171733pt;}
.ls39{letter-spacing:-0.155733pt;}
.lsa{letter-spacing:-0.151467pt;}
.ls21{letter-spacing:-0.149867pt;}
.ls2d{letter-spacing:-0.132800pt;}
.ls15{letter-spacing:-0.126933pt;}
.ls17{letter-spacing:-0.121067pt;}
.ls35{letter-spacing:-0.117867pt;}
.ls2{letter-spacing:-0.116267pt;}
.lsb{letter-spacing:-0.112533pt;}
.ls18{letter-spacing:-0.075733pt;}
.ls2c{letter-spacing:-0.067733pt;}
.ls1e{letter-spacing:-0.043520pt;}
.ls2b{letter-spacing:-0.032000pt;}
.ls40{letter-spacing:-0.016000pt;}
.ls29{letter-spacing:-0.005867pt;}
.ls1f{letter-spacing:-0.001792pt;}
.ls28{letter-spacing:-0.000005pt;}
.ls1{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.033280pt;}
.ls26{letter-spacing:0.064000pt;}
.ls42{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.104000pt;}
.ls10{letter-spacing:0.107733pt;}
.ls27{letter-spacing:0.122133pt;}
.ls2e{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.131627pt;}
.ls24{letter-spacing:0.206400pt;}
.ls6{letter-spacing:0.216960pt;}
.ls46{letter-spacing:0.224000pt;}
.lsc{letter-spacing:0.235733pt;}
.ls43{letter-spacing:0.244267pt;}
.ls34{letter-spacing:0.249067pt;}
.ls25{letter-spacing:0.344533pt;}
.ls47{letter-spacing:0.372267pt;}
.ls45{letter-spacing:5.120000pt;}
.ls33{letter-spacing:13.557760pt;}
.ls41{letter-spacing:21.760000pt;}
.ls1a{letter-spacing:29.440000pt;}
.ls22{letter-spacing:30.144000pt;}
.ls1c{letter-spacing:31.872000pt;}
.ls1b{letter-spacing:32.000000pt;}
.ls0{letter-spacing:32.523520pt;}
.ls7{letter-spacing:33.163520pt;}
.ls5{letter-spacing:33.270187pt;}
.ls37{letter-spacing:33.280000pt;}
.ls4{letter-spacing:33.323520pt;}
.ls3d{letter-spacing:33.386667pt;}
.lsf{letter-spacing:33.431552pt;}
.lse{letter-spacing:33.502720pt;}
.ls9{letter-spacing:38.548096pt;}
.ls8{letter-spacing:38.594560pt;}
.lsd{letter-spacing:38.622720pt;}
.ls3c{letter-spacing:81.287168pt;}
.ls3a{letter-spacing:81.364480pt;}
.ls3b{letter-spacing:81.385813pt;}
.ls3e{letter-spacing:81.393835pt;}
.ls3f{letter-spacing:81.471147pt;}
.ls32{letter-spacing:84.497835pt;}
.ls30{letter-spacing:84.564480pt;}
.ls31{letter-spacing:84.575147pt;}
.ls38{letter-spacing:85.483520pt;}
.ls13{letter-spacing:89.751552pt;}
.ls12{letter-spacing:89.822720pt;}
.ls36{letter-spacing:115.200000pt;}
.ws28{word-spacing:-74.176000pt;}
.wsd{word-spacing:-51.042816pt;}
.ws8{word-spacing:-43.729664pt;}
.wsa{word-spacing:-38.697173pt;}
.wsb{word-spacing:-38.569173pt;}
.wsc{word-spacing:-38.501504pt;}
.ws9{word-spacing:-36.003840pt;}
.wsf{word-spacing:-33.493504pt;}
.ws7{word-spacing:-33.453440pt;}
.ws0{word-spacing:-33.337173pt;}
.ws22{word-spacing:-33.297707pt;}
.ws10{word-spacing:-33.017707pt;}
.ws12{word-spacing:-31.690624pt;}
.ws14{word-spacing:-31.650560pt;}
.ws11{word-spacing:-31.607040pt;}
.ws2{word-spacing:-31.457344pt;}
.ws1{word-spacing:-31.353344pt;}
.ws6{word-spacing:-31.315840pt;}
.ws19{word-spacing:-30.210197pt;}
.ws18{word-spacing:-30.048000pt;}
.ws17{word-spacing:-28.128000pt;}
.ws2a{word-spacing:-27.014827pt;}
.ws29{word-spacing:-26.886827pt;}
.ws1f{word-spacing:-26.391424pt;}
.ws2d{word-spacing:-24.940160pt;}
.ws20{word-spacing:-24.154880pt;}
.ws1e{word-spacing:-22.785387pt;}
.ws27{word-spacing:-21.792000pt;}
.ws1a{word-spacing:-21.724928pt;}
.ws4{word-spacing:-21.696000pt;}
.ws1b{word-spacing:-21.664000pt;}
.ws16{word-spacing:-19.237120pt;}
.ws26{word-spacing:-14.411520pt;}
.ws21{word-spacing:-13.306880pt;}
.ws24{word-spacing:-12.276480pt;}
.ws23{word-spacing:-10.848000pt;}
.ws25{word-spacing:-10.832000pt;}
.ws2c{word-spacing:-10.009088pt;}
.ws2b{word-spacing:-5.232000pt;}
.ws3{word-spacing:0.000000pt;}
.ws13{word-spacing:1.031936pt;}
.wse{word-spacing:1.070720pt;}
.ws5{word-spacing:1.992320pt;}
.ws1c{word-spacing:44.600000pt;}
.ws1d{word-spacing:44.669120pt;}
.ws15{word-spacing:303.317973pt;}
._7{margin-left:-11.059200pt;}
._a{margin-left:-9.240064pt;}
._6{margin-left:-7.690240pt;}
._e{margin-left:-6.048000pt;}
._5{margin-left:-4.992000pt;}
._9{margin-left:-3.313280pt;}
._2{margin-left:-2.221440pt;}
._0{margin-left:-1.068800pt;}
._3{width:1.025280pt;}
._4{width:2.277632pt;}
._c{width:3.244331pt;}
._10{width:16.185280pt;}
._12{width:23.266176pt;}
._11{width:25.084373pt;}
._13{width:28.451541pt;}
._b{width:31.976960pt;}
._14{width:33.316267pt;}
._8{width:37.213056pt;}
._1{width:64.331008pt;}
._f{width:85.632000pt;}
._d{width:94.234112pt;}
.fs15{font-size:16.000000pt;}
.fs12{font-size:44.160000pt;}
.fs16{font-size:44.288000pt;}
.fs11{font-size:48.000000pt;}
.fs13{font-size:51.840000pt;}
.fs10{font-size:58.880000pt;}
.fsf{font-size:80.000000pt;}
.fsc{font-size:85.120000pt;}
.fsd{font-size:85.248000pt;}
.fs14{font-size:89.723461pt;}
.fs4{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fsa{font-size:101.120000pt;}
.fsb{font-size:101.248000pt;}
.fs0{font-size:106.880000pt;}
.fs3{font-size:107.008000pt;}
.fs8{font-size:122.880000pt;}
.fs9{font-size:123.008000pt;}
.fse{font-size:128.000000pt;}
.fs6{font-size:149.120000pt;}
.fs5{font-size:149.248000pt;}
.fs2{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:6.944000pt;}
.y9b{bottom:13.344000pt;}
.y39{bottom:18.464000pt;}
.y16{bottom:19.040000pt;}
.ybc{bottom:21.344000pt;}
.y56{bottom:28.384000pt;}
.y17{bottom:29.376000pt;}
.y77{bottom:30.144000pt;}
.y28{bottom:30.912000pt;}
.y55{bottom:41.184000pt;}
.y57{bottom:42.816000pt;}
.yba{bottom:44.512000pt;}
.y9a{bottom:44.576000pt;}
.yda{bottom:45.088000pt;}
.y8a{bottom:46.144000pt;}
.y38{bottom:55.264000pt;}
.y76{bottom:62.144000pt;}
.y18{bottom:66.976000pt;}
.y27{bottom:67.712000pt;}
.yab{bottom:68.896000pt;}
.yd9{bottom:73.888000pt;}
.y89{bottom:74.976000pt;}
.ye6{bottom:79.104000pt;}
.yb9{bottom:81.312000pt;}
.yaa{bottom:86.496000pt;}
.y6d{bottom:88.192000pt;}
.y11{bottom:91.552000pt;}
.y37{bottom:92.064000pt;}
.y75{bottom:94.144000pt;}
.y8{bottom:104.512000pt;}
.y26{bottom:104.544000pt;}
.ye5{bottom:107.936000pt;}
.y2{bottom:114.880000pt;}
.y54{bottom:116.800000pt;}
.y6c{bottom:116.992000pt;}
.y74{bottom:126.176000pt;}
.y4b{bottom:128.224000pt;}
.y36{bottom:128.864000pt;}
.yd8{bottom:129.984000pt;}
.yb8{bottom:130.464000pt;}
.y96{bottom:130.528000pt;}
.y88{bottom:145.600000pt;}
.y67{bottom:145.826667pt;}
.y25{bottom:146.626667pt;}
.y53{bottom:147.226667pt;}
.y13{bottom:150.693333pt;}
.y1{bottom:153.280000pt;}
.yd7{bottom:158.786667pt;}
.y95{bottom:159.333333pt;}
.y4a{bottom:160.226667pt;}
.yc9{bottom:162.213333pt;}
.y35{bottom:165.693333pt;}
.ya9{bottom:167.680000pt;}
.y87{bottom:174.400000pt;}
.y66{bottom:174.626667pt;}
.y52{bottom:177.626667pt;}
.yb7{bottom:182.146667pt;}
.y24{bottom:183.426667pt;}
.yd6{bottom:186.946667pt;}
.y49{bottom:197.666667pt;}
.ya8{bottom:200.826667pt;}
.yc8{bottom:202.306667pt;}
.y6b{bottom:203.426667pt;}
.y10{bottom:203.586667pt;}
.y7{bottom:204.960000pt;}
.y34{bottom:207.133333pt;}
.y51{bottom:207.546667pt;}
.yd5{bottom:209.986667pt;}
.yeb{bottom:210.426667pt;}
.yb6{bottom:218.946667pt;}
.y94{bottom:219.293333pt;}
.y86{bottom:220.000000pt;}
.y23{bottom:220.226667pt;}
.y6a{bottom:232.226667pt;}
.ya7{bottom:233.946667pt;}
.yf{bottom:235.586667pt;}
.yf4{bottom:235.706667pt;}
.y50{bottom:238.426667pt;}
.yc7{bottom:239.133333pt;}
.yea{bottom:242.426667pt;}
.y33{bottom:244.413333pt;}
.yf0{bottom:246.213333pt;}
.yd4{bottom:248.226667pt;}
.yb5{bottom:255.773333pt;}
.y22{bottom:257.053333pt;}
.y69{bottom:261.026667pt;}
.y93{bottom:261.853333pt;}
.y85{bottom:266.426667pt;}
.ya6{bottom:267.066667pt;}
.y4f{bottom:268.826667pt;}
.y48{bottom:272.253333pt;}
.yc6{bottom:275.933333pt;}
.yd3{bottom:278.493333pt;}
.y32{bottom:281.733333pt;}
.y7a{bottom:284.986667pt;}
.yef{bottom:289.413333pt;}
.y65{bottom:289.853333pt;}
.yb4{bottom:292.573333pt;}
.y84{bottom:295.226667pt;}
.y4e{bottom:299.106667pt;}
.y21{bottom:299.293333pt;}
.yf3{bottom:299.706667pt;}
.ya5{bottom:300.986667pt;}
.y98{bottom:301.120000pt;}
.y47{bottom:304.253333pt;}
.y92{bottom:304.453333pt;}
.y6{bottom:306.626667pt;}
.ye1{bottom:312.293333pt;}
.yc5{bottom:312.733333pt;}
.y31{bottom:313.733333pt;}
.y79{bottom:313.786667pt;}
.y64{bottom:318.653333pt;}
.yb3{bottom:329.373333pt;}
.yee{bottom:332.613333pt;}
.y20{bottom:336.093333pt;}
.y46{bottom:336.253333pt;}
.ye{bottom:337.053333pt;}
.ye0{bottom:338.213333pt;}
.y83{bottom:341.626667pt;}
.y78{bottom:342.626667pt;}
.ye9{bottom:344.866667pt;}
.y91{bottom:347.013333pt;}
.y63{bottom:347.453333pt;}
.yc4{bottom:349.533333pt;}
.y30{bottom:351.173333pt;}
.yd2{bottom:354.973333pt;}
.y5{bottom:357.853333pt;}
.yf2{bottom:363.746667pt;}
.ydf{bottom:363.813333pt;}
.y5d{bottom:364.480000pt;}
.yb2{bottom:366.173333pt;}
.y45{bottom:368.293333pt;}
.yd{bottom:369.053333pt;}
.ya4{bottom:370.146667pt;}
.y82{bottom:370.426667pt;}
.y1f{bottom:372.933333pt;}
.yed{bottom:375.840000pt;}
.y62{bottom:376.253333pt;}
.yd1{bottom:385.213333pt;}
.yc3{bottom:386.373333pt;}
.y2f{bottom:388.453333pt;}
.y90{bottom:389.573333pt;}
.y5c{bottom:390.080000pt;}
.yc{bottom:401.053333pt;}
.yb1{bottom:403.013333pt;}
.ya3{bottom:404.066667pt;}
.y61{bottom:405.093333pt;}
.y4{bottom:409.053333pt;}
.y1e{bottom:409.733333pt;}
.yd0{bottom:415.493333pt;}
.y5b{bottom:415.680000pt;}
.y81{bottom:416.066667pt;}
.y9f{bottom:418.586667pt;}
.yec{bottom:419.040000pt;}
.y2e{bottom:420.480000pt;}
.yf1{bottom:427.746667pt;}
.y8f{bottom:432.160000pt;}
.yb{bottom:433.093333pt;}
.y60{bottom:433.893333pt;}
.yb0{bottom:439.813333pt;}
.y5a{bottom:441.280000pt;}
.y9e{bottom:441.946667pt;}
.y44{bottom:443.013333pt;}
.y80{bottom:444.866667pt;}
.y1d{bottom:446.533333pt;}
.ye8{bottom:447.266667pt;}
.yde{bottom:449.280000pt;}
.y73{bottom:456.800000pt;}
.y3e{bottom:457.506667pt;}
.y2d{bottom:457.760000pt;}
.ycf{bottom:459.813333pt;}
.yc2{bottom:459.973333pt;}
.ye4{bottom:460.866667pt;}
.y3{bottom:462.373333pt;}
.y68{bottom:462.693333pt;}
.y9d{bottom:465.946667pt;}
.y59{bottom:466.906667pt;}
.y7f{bottom:473.666667pt;}
.ye3{bottom:474.146667pt;}
.y8e{bottom:474.720000pt;}
.yca{bottom:474.973333pt;}
.y43{bottom:475.013333pt;}
.ya2{bottom:477.693333pt;}
.y1c{bottom:483.333333pt;}
.y72{bottom:488.800000pt;}
.y5f{bottom:491.493333pt;}
.y58{bottom:492.506667pt;}
.yaf{bottom:492.613333pt;}
.ydd{bottom:494.560000pt;}
.y3d{bottom:494.813333pt;}
.y2c{bottom:496.000000pt;}
.yc1{bottom:496.773333pt;}
.y7e{bottom:502.466667pt;}
.y42{bottom:507.040000pt;}
.ya1{bottom:514.493333pt;}
.y8d{bottom:517.280000pt;}
.yce{bottom:519.333333pt;}
.y5e{bottom:520.293333pt;}
.y71{bottom:520.826667pt;}
.y1b{bottom:525.440000pt;}
.y7d{bottom:531.293333pt;}
.y3c{bottom:532.093333pt;}
.yc0{bottom:533.600000pt;}
.ya{bottom:534.373333pt;}
.y2b{bottom:538.080000pt;}
.y41{bottom:539.040000pt;}
.ydc{bottom:539.546667pt;}
.ycd{bottom:542.400000pt;}
.yae{bottom:544.320000pt;}
.ye7{bottom:549.693333pt;}
.ya0{bottom:551.293333pt;}
.y70{bottom:552.826667pt;}
.y8c{bottom:559.840000pt;}
.y7c{bottom:560.093333pt;}
.y1a{bottom:562.240000pt;}
.y9{bottom:566.400000pt;}
.y3b{bottom:569.533333pt;}
.ybf{bottom:570.400000pt;}
.y40{bottom:571.040000pt;}
.y2a{bottom:574.906667pt;}
.yad{bottom:576.320000pt;}
.y6f{bottom:584.826667pt;}
.y7b{bottom:589.373333pt;}
.y19{bottom:599.040000pt;}
.ycc{bottom:601.760000pt;}
.y8b{bottom:602.426667pt;}
.y3f{bottom:603.040000pt;}
.y3a{bottom:606.813333pt;}
.ybe{bottom:607.200000pt;}
.yac{bottom:608.320000pt;}
.y29{bottom:611.706667pt;}
.y97{bottom:612.000000pt;}
.y6e{bottom:616.826667pt;}
.y15{bottom:619.133333pt;}
.ycb{bottom:624.800000pt;}
.y4d{bottom:630.333333pt;}
.y12{bottom:632.546667pt;}
.y9c{bottom:633.146667pt;}
.y99{bottom:636.640000pt;}
.yf5{bottom:646.240000pt;}
.ydb{bottom:662.333333pt;}
.ybb{bottom:662.973333pt;}
.y14{bottom:663.973333pt;}
.y4c{bottom:672.893333pt;}
.ye2{bottom:716.386667pt;}
.h2a{height:13.093750pt;}
.h2c{height:16.687509pt;}
.h2b{height:17.656250pt;}
.h2d{height:33.486562pt;}
.h2e{height:44.050125pt;}
.h23{height:46.057500pt;}
.h22{height:47.742188pt;}
.h24{height:54.067500pt;}
.h1e{height:58.563750pt;}
.h18{height:69.658750pt;}
.h17{height:69.763500pt;}
.h28{height:73.426035pt;}
.h12{height:78.562500pt;}
.h13{height:78.667250pt;}
.hc{height:82.752500pt;}
.h1a{height:83.437500pt;}
.h10{height:84.662813pt;}
.h11{height:84.790125pt;}
.h1{height:87.466250pt;}
.h4{height:87.571000pt;}
.h29{height:88.777500pt;}
.h1f{height:93.562500pt;}
.h5{height:95.484375pt;}
.h9{height:95.611688pt;}
.h26{height:100.125000pt;}
.h27{height:100.258500pt;}
.ha{height:100.560000pt;}
.h14{height:100.576875pt;}
.hb{height:100.664750pt;}
.h15{height:100.704187pt;}
.h25{height:105.937500pt;}
.h1d{height:106.305937pt;}
.h1b{height:111.472500pt;}
.hd{height:111.587500pt;}
.h1c{height:111.606000pt;}
.he{height:111.728750pt;}
.h6{height:114.122250pt;}
.h20{height:117.943750pt;}
.h8{height:122.033750pt;}
.h7{height:122.138500pt;}
.h16{height:131.062500pt;}
.hf{height:135.862813pt;}
.h3{height:139.841250pt;}
.h2{height:139.946000pt;}
.h19{height:155.527500pt;}
.h21{height:155.661000pt;}
.h0{height:720.000000pt;}
.w3{width:413.440000pt;}
.w2{width:465.920000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x18{left:9.632000pt;}
.x3e{left:30.047986pt;}
.x17{left:31.680000pt;}
.xf{left:33.599986pt;}
.x1{left:35.935986pt;}
.xd{left:37.471986pt;}
.x23{left:39.007986pt;}
.x34{left:40.511986pt;}
.xa{left:41.407986pt;}
.x43{left:43.199986pt;}
.x11{left:44.671986pt;}
.xe{left:46.271986pt;}
.x25{left:47.455986pt;}
.x2c{left:49.407986pt;}
.x8{left:50.303986pt;}
.x3d{left:51.487986pt;}
.xb{left:53.247986pt;}
.x32{left:54.687986pt;}
.x7{left:59.711986pt;}
.x14{left:64.063986pt;}
.x27{left:65.503986pt;}
.x10{left:68.319986pt;}
.x2d{left:89.407986pt;}
.x2b{left:99.039986pt;}
.x2e{left:100.927986pt;}
.x28{left:102.783986pt;}
.x29{left:113.503986pt;}
.x30{left:121.823986pt;}
.x3{left:124.511986pt;}
.x35{left:134.106652pt;}
.x2{left:143.706652pt;}
.x2f{left:148.933319pt;}
.x2a{left:150.786652pt;}
.x4{left:165.626652pt;}
.x1a{left:179.746652pt;}
.x20{left:187.426652pt;}
.x40{left:207.679986pt;}
.x3f{left:218.399986pt;}
.xc{left:233.919986pt;}
.x12{left:243.199986pt;}
.x22{left:244.453319pt;}
.x19{left:259.133319pt;}
.x41{left:268.986652pt;}
.x5{left:311.106652pt;}
.x24{left:373.373319pt;}
.x9{left:475.706652pt;}
.x13{left:478.853319pt;}
.x1f{left:480.573319pt;}
.x31{left:492.986652pt;}
.x1b{left:497.440000pt;}
.x1d{left:523.293319pt;}
.x33{left:532.386652pt;}
.x26{left:547.706652pt;}
.x1c{left:555.173319pt;}
.x42{left:559.519986pt;}
.x21{left:600.573319pt;}
.x1e{left:611.293319pt;}
.x3c{left:659.266652pt;}
.x15{left:725.093319pt;}
.x16{left:755.173319pt;}
.x6{left:813.533319pt;}
.x3b{left:920.413319pt;}
.x3a{left:925.053319pt;}
.x39{left:934.813319pt;}
.x38{left:939.613319pt;}
.x37{left:944.253319pt;}
.x36{left:949.053319pt;}
}




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