
    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_d05e45887f4c2594a4209267.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_ad6ade9fc1c1f7ccb1e58b14.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_b56c8900997cebff79ee78c9.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_9fa19f391f67930d4339abd8.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_8023c925ce31bad4be746baf.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_e7cbee7e2b84d47c56ab69d7.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_d15667e3e36c1e1d7beb76e7.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_c0c4ccc3c49fcc14c9537057.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_2b0f60b841b4ad012d1ec782.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_8a02b59721b965e01a653fda.woff')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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_91a50e6d12a767ac20eb792f.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_083fdf8704ba3487a47d0ce0.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a4e059408fee82e66711924b.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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_7b7dd6108c8bb458bd2d4ed8.woff')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v2{vertical-align:-33.120000px;}
.v4{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls1f{letter-spacing:-1.026000px;}
.lsd{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.457800px;}
.ls1a{letter-spacing:-0.414600px;}
.ls16{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.190200px;}
.lsa{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.114000px;}
.ls1c{letter-spacing:-0.109200px;}
.lsf{letter-spacing:-0.089400px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.034560px;}
.ls2{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.078000px;}
.ls12{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls13{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.315600px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls18{letter-spacing:5.760000px;}
.ls15{letter-spacing:6.785280px;}
.ls17{letter-spacing:19.440000px;}
.ls14{letter-spacing:21.600000px;}
.ls1e{letter-spacing:33.840000px;}
.ls5{letter-spacing:39.881280px;}
.ls6{letter-spacing:39.905280px;}
.ls1d{letter-spacing:59.321280px;}
.ls10{letter-spacing:59.345280px;}
.ls19{letter-spacing:100.080000px;}
.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;}
}
.wse{word-spacing:-66.240000px;}
.wsd{word-spacing:-24.062880px;}
.ws6{word-spacing:-19.474560px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws7{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.450800px;}
.ws10{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.912000px;}
.wsf{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws8{word-spacing:-10.755600px;}
.wsb{word-spacing:-10.350600px;}
.wsa{word-spacing:-10.213800px;}
.ws9{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._2e{margin-left:-2.119680px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._6{width:2.532960px;}
._7{width:4.239360px;}
._c{width:5.366160px;}
._9{width:6.963840px;}
._8{width:8.015040px;}
._10{width:9.141120px;}
._5a{width:10.170000px;}
._b{width:11.194560px;}
._a{width:12.223440px;}
._f{width:13.420080px;}
._5{width:15.168960px;}
._4{width:17.951040px;}
._18{width:19.607040px;}
._e{width:21.298320px;}
._d{width:22.322880px;}
._1f{width:23.713920px;}
._3{width:24.769440px;}
._2{width:25.868880px;}
._12{width:26.920080px;}
._29{width:27.938880px;}
._13{width:29.644560px;}
._2a{width:31.331520px;}
._16{width:32.457600px;}
._1e{width:33.758400px;}
._3d{width:35.173440px;}
._28{width:36.599760px;}
._27{width:37.624320px;}
._2b{width:38.684160px;}
._21{width:40.406400px;}
._17{width:42.495120px;}
._33{width:43.683120px;}
._3e{width:44.864640px;}
._1c{width:46.103040px;}
._34{width:47.494080px;}
._11{width:49.547520px;}
._1d{width:51.153120px;}
._20{width:52.392240px;}
._37{width:54.250560px;}
._36{width:55.774080px;}
._3f{width:58.305600px;}
._25{width:59.734080px;}
._24{width:61.122960px;}
._39{width:62.398080px;}
._4e{width:63.524160px;}
._42{width:64.798560px;}
._23{width:66.041280px;}
._49{width:67.902240px;}
._4a{width:69.552000px;}
._50{width:70.943040px;}
._54{width:72.201600px;}
._30{width:74.056320px;}
._2f{width:75.116160px;}
._4f{width:76.440960px;}
._38{width:78.096960px;}
._15{width:79.488000px;}
._35{width:80.746560px;}
._3a{width:81.872640px;}
._3b{width:82.882080px;}
._58{width:84.188160px;}
._14{width:85.714560px;}
._57{width:88.231680px;}
._4c{width:90.351360px;}
._43{width:92.868480px;}
._22{width:94.524480px;}
._4b{width:95.783040px;}
._46{width:97.454880px;}
._26{width:100.290960px;}
._51{width:101.448000px;}
._52{width:102.566880px;}
._4d{width:103.659840px;}
._53{width:107.640000px;}
._2d{width:109.494720px;}
._41{width:110.687040px;}
._45{width:112.541760px;}
._3c{width:114.992640px;}
._56{width:124.729920px;}
._55{width:125.856000px;}
._32{width:130.029120px;}
._47{width:137.660160px;}
._40{width:151.027200px;}
._1b{width:152.893440px;}
._48{width:158.777280px;}
._44{width:171.097920px;}
._2c{width:172.157760px;}
._19{width:189.617520px;}
._1a{width:197.647200px;}
._5d{width:236.344320px;}
._5c{width:295.781760px;}
._5e{width:315.583200px;}
._31{width:514.751040px;}
._59{width:539.361360px;}
._5b{width:556.945920px;}
._5f{width:847.596000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsb{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs9{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.yac{bottom:9.360000px;}
.yae{bottom:9.720000px;}
.ye{bottom:22.860000px;}
.y15{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.yb1{bottom:34.425000px;}
.y1{bottom:51.480000px;}
.y14{bottom:56.025000px;}
.y3c{bottom:75.240000px;}
.y13{bottom:79.785000px;}
.y12{bottom:95.265000px;}
.yd0{bottom:119.880000px;}
.y112{bottom:127.080000px;}
.y11f{bottom:129.420000px;}
.y9c{bottom:133.740000px;}
.y67{bottom:134.100000px;}
.y39{bottom:135.360000px;}
.ycf{bottom:144.540000px;}
.y111{bottom:151.740000px;}
.yef{bottom:152.820000px;}
.y86{bottom:154.080000px;}
.y9b{bottom:158.400000px;}
.y66{bottom:158.760000px;}
.y38{bottom:160.020000px;}
.yce{bottom:169.200000px;}
.y110{bottom:176.400000px;}
.yee{bottom:177.480000px;}
.y85{bottom:178.740000px;}
.y65{bottom:183.420000px;}
.y37{bottom:184.680000px;}
.ycd{bottom:193.860000px;}
.y10f{bottom:201.060000px;}
.yed{bottom:202.140000px;}
.y84{bottom:203.400000px;}
.y92{bottom:207.750000px;}
.y64{bottom:208.110000px;}
.y36{bottom:209.370000px;}
.ycc{bottom:218.550000px;}
.y10e{bottom:225.750000px;}
.yec{bottom:226.830000px;}
.yaa{bottom:228.090000px;}
.y83{bottom:229.170000px;}
.y9a{bottom:232.410000px;}
.y63{bottom:232.770000px;}
.y35{bottom:234.030000px;}
.ycb{bottom:243.210000px;}
.yeb{bottom:251.490000px;}
.ya9{bottom:252.750000px;}
.y82{bottom:254.010000px;}
.y8d{bottom:257.070000px;}
.y62{bottom:257.430000px;}
.y34{bottom:258.690000px;}
.yca{bottom:267.870000px;}
.yea{bottom:276.150000px;}
.y11e{bottom:277.050000px;}
.ya8{bottom:277.410000px;}
.y81{bottom:278.670000px;}
.y8c{bottom:281.730000px;}
.y61{bottom:282.090000px;}
.y33{bottom:283.350000px;}
.yc9{bottom:292.170000px;}
.yd3{bottom:292.530000px;}
.ye9{bottom:300.810000px;}
.ya7{bottom:301.710000px;}
.y11d{bottom:302.070000px;}
.y80{bottom:303.330000px;}
.yd6{bottom:306.390000px;}
.y60{bottom:306.750000px;}
.y32{bottom:308.010000px;}
.yc8{bottom:316.830000px;}
.yd2{bottom:317.190000px;}
.ye8{bottom:325.470000px;}
.ya6{bottom:326.730000px;}
.y7f{bottom:327.990000px;}
.yd5{bottom:331.050000px;}
.y5f{bottom:331.410000px;}
.y31{bottom:332.670000px;}
.yc7{bottom:341.850000px;}
.y10d{bottom:350.130000px;}
.ye7{bottom:350.310000px;}
.ya5{bottom:351.390000px;}
.y7e{bottom:352.650000px;}
.y91{bottom:355.710000px;}
.y5e{bottom:356.070000px;}
.y30{bottom:357.330000px;}
.yc6{bottom:366.510000px;}
.y10c{bottom:374.610000px;}
.ye6{bottom:376.050000px;}
.ya4{bottom:376.230000px;}
.y7d{bottom:378.390000px;}
.y5d{bottom:380.730000px;}
.y2f{bottom:381.990000px;}
.yc5{bottom:391.170000px;}
.ye5{bottom:400.710000px;}
.ya3{bottom:401.970000px;}
.y7c{bottom:403.050000px;}
.y99{bottom:405.030000px;}
.y5c{bottom:405.390000px;}
.y2e{bottom:406.650000px;}
.yc4{bottom:415.830000px;}
.ye4{bottom:425.370000px;}
.ya2{bottom:426.630000px;}
.y7b{bottom:427.710000px;}
.y5b{bottom:429.690000px;}
.y8b{bottom:430.050000px;}
.y2d{bottom:431.310000px;}
.yc3{bottom:440.490000px;}
.y10b{bottom:449.715000px;}
.ye3{bottom:450.075000px;}
.y11c{bottom:450.255000px;}
.ya1{bottom:451.335000px;}
.y7a{bottom:452.415000px;}
.y5a{bottom:454.395000px;}
.y90{bottom:454.755000px;}
.y2c{bottom:456.015000px;}
.yc2{bottom:464.835000px;}
.yd1{bottom:465.195000px;}
.y10a{bottom:474.375000px;}
.ye2{bottom:474.915000px;}
.ya0{bottom:475.995000px;}
.y79{bottom:477.075000px;}
.y59{bottom:479.235000px;}
.y8a{bottom:479.595000px;}
.y2b{bottom:480.855000px;}
.yc1{bottom:489.855000px;}
.y109{bottom:499.035000px;}
.ye1{bottom:500.655000px;}
.y78{bottom:501.735000px;}
.y8f{bottom:503.895000px;}
.y58{bottom:504.255000px;}
.y2a{bottom:505.515000px;}
.yc0{bottom:505.695000px;}
.y108{bottom:524.055000px;}
.ye0{bottom:525.315000px;}
.y77{bottom:526.395000px;}
.y95{bottom:528.555000px;}
.y57{bottom:528.915000px;}
.y29{bottom:530.175000px;}
.ybf{bottom:531.075000px;}
.y107{bottom:548.715000px;}
.ydf{bottom:549.975000px;}
.y76{bottom:551.055000px;}
.y56{bottom:553.575000px;}
.y28{bottom:553.755000px;}
.ybe{bottom:556.455000px;}
.y106{bottom:573.375000px;}
.yde{bottom:574.635000px;}
.y75{bottom:575.715000px;}
.y55{bottom:578.235000px;}
.y27{bottom:580.575000px;}
.ybd{bottom:581.835000px;}
.y105{bottom:598.035000px;}
.y11b{bottom:599.295000px;}
.y74{bottom:600.555000px;}
.y26{bottom:602.355000px;}
.y54{bottom:602.895000px;}
.ybc{bottom:607.215000px;}
.y104{bottom:622.695000px;}
.y11a{bottom:623.955000px;}
.y25{bottom:624.135000px;}
.y73{bottom:625.215000px;}
.y9f{bottom:626.295000px;}
.y53{bottom:627.555000px;}
.ybb{bottom:632.775000px;}
.y24{bottom:645.915000px;}
.y103{bottom:647.355000px;}
.y119{bottom:648.615000px;}
.ydd{bottom:649.875000px;}
.y72{bottom:650.955000px;}
.y98{bottom:651.855000px;}
.y52{bottom:652.215000px;}
.yba{bottom:658.155000px;}
.y23{bottom:667.695000px;}
.y102{bottom:672.195000px;}
.y118{bottom:673.455000px;}
.ydc{bottom:674.535000px;}
.y71{bottom:675.615000px;}
.y89{bottom:676.545000px;}
.y51{bottom:676.905000px;}
.yb9{bottom:683.565000px;}
.y22{bottom:689.685000px;}
.y101{bottom:697.965000px;}
.ydb{bottom:699.225000px;}
.y70{bottom:700.305000px;}
.y9e{bottom:700.485000px;}
.yd8{bottom:701.205000px;}
.y50{bottom:701.565000px;}
.y21{bottom:711.465000px;}
.yb8{bottom:718.305000px;}
.y100{bottom:722.625000px;}
.y117{bottom:723.885000px;}
.y6f{bottom:724.965000px;}
.y97{bottom:725.865000px;}
.y4f{bottom:726.225000px;}
.y20{bottom:733.245000px;}
.yb7{bottom:743.325000px;}
.yff{bottom:747.285000px;}
.y116{bottom:748.545000px;}
.y6e{bottom:749.625000px;}
.yda{bottom:749.805000px;}
.y9d{bottom:750.525000px;}
.y4e{bottom:750.885000px;}
.y1f{bottom:755.025000px;}
.yb6{bottom:758.985000px;}
.yfe{bottom:772.125000px;}
.y115{bottom:773.205000px;}
.y6d{bottom:774.285000px;}
.y4d{bottom:775.185000px;}
.y88{bottom:775.545000px;}
.y1e{bottom:776.805000px;}
.yb5{bottom:784.545000px;}
.yfd{bottom:797.865000px;}
.y1d{bottom:798.765000px;}
.y6c{bottom:799.125000px;}
.y4c{bottom:800.205000px;}
.yb4{bottom:809.925000px;}
.y1c{bottom:820.545000px;}
.yfc{bottom:822.525000px;}
.y4b{bottom:824.865000px;}
.yb3{bottom:835.305000px;}
.y1b{bottom:842.325000px;}
.yfb{bottom:847.185000px;}
.yd9{bottom:849.165000px;}
.y4a{bottom:849.525000px;}
.yb2{bottom:860.685000px;}
.y1a{bottom:864.105000px;}
.yfa{bottom:871.845000px;}
.y87{bottom:873.825000px;}
.y49{bottom:874.185000px;}
.y19{bottom:885.705000px;}
.yb0{bottom:886.065000px;}
.yf9{bottom:896.505000px;}
.y114{bottom:897.585000px;}
.y94{bottom:898.485000px;}
.y48{bottom:898.845000px;}
.y17{bottom:901.005000px;}
.y11{bottom:908.205000px;}
.y16{bottom:911.994278px;}
.yf8{bottom:922.290000px;}
.y96{bottom:923.190000px;}
.y47{bottom:923.550000px;}
.yaf{bottom:936.330000px;}
.yf7{bottom:947.130000px;}
.y46{bottom:947.850000px;}
.y6b{bottom:948.210000px;}
.yad{bottom:961.710000px;}
.yf6{bottom:971.790000px;}
.y45{bottom:972.510000px;}
.y6a{bottom:972.870000px;}
.yab{bottom:987.090000px;}
.yf5{bottom:996.450000px;}
.yd4{bottom:997.170000px;}
.y44{bottom:997.530000px;}
.yf4{bottom:1021.110000px;}
.y8e{bottom:1021.830000px;}
.y43{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.yf3{bottom:1045.770000px;}
.yd7{bottom:1046.490000px;}
.y42{bottom:1046.850000px;}
.yf2{bottom:1070.430000px;}
.y41{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y113{bottom:1094.730000px;}
.yf1{bottom:1095.090000px;}
.y93{bottom:1095.810000px;}
.y40{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.yf0{bottom:1119.750000px;}
.y69{bottom:1120.470000px;}
.y3f{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y3e{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y3d{bottom:1169.820000px;}
.y68{bottom:1170.180000px;}
.y3b{bottom:1187.280000px;}
.y3a{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h17{height:7.200000px;}
.hd{height:13.324219px;}
.h18{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h22{height:24.645000px;}
.h24{height:24.660000px;}
.h25{height:24.690000px;}
.h7{height:28.290000px;}
.h1d{height:30.480469px;}
.he{height:41.025000px;}
.h20{height:46.251562px;}
.h14{height:48.616875px;}
.h23{height:49.342500px;}
.h1a{height:50.391562px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1e{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1b{height:65.010937px;}
.h1f{height:66.757500px;}
.h21{height:68.084282px;}
.h1c{height:71.225156px;}
.h6{height:71.324297px;}
.h16{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h12{height:120.982500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w8{width:337.339500px;}
.w9{width:337.575000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x27{left:100.306500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x25{left:113.076000px;}
.x28{left:114.823500px;}
.x1a{left:123.516000px;}
.x1f{left:129.276000px;}
.x24{left:135.036000px;}
.x26{left:140.076000px;}
.x1b{left:150.510000px;}
.x15{left:155.908500px;}
.x19{left:162.030000px;}
.x4{left:168.885000px;}
.x14{left:173.188500px;}
.x16{left:202.528500px;}
.x6{left:209.010000px;}
.x13{left:216.568500px;}
.x17{left:324.965515px;}
.x12{left:335.578500px;}
.x29{left:438.375000px;}
.xa{left:445.620000px;}
.x1e{left:473.505000px;}
.x21{left:478.545000px;}
.x1d{left:488.985000px;}
.x23{left:500.505000px;}
.x22{left:505.545000px;}
.x1c{left:515.985000px;}
.x20{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v4{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls1f{letter-spacing:-0.912000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.406933pt;}
.ls1a{letter-spacing:-0.368533pt;}
.ls16{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.169067pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.101333pt;}
.ls1c{letter-spacing:-0.097067pt;}
.lsf{letter-spacing:-0.079467pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.030720pt;}
.ls2{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.069333pt;}
.ls12{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls13{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.280533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls18{letter-spacing:5.120000pt;}
.ls15{letter-spacing:6.031360pt;}
.ls17{letter-spacing:17.280000pt;}
.ls14{letter-spacing:19.200000pt;}
.ls1e{letter-spacing:30.080000pt;}
.ls5{letter-spacing:35.450027pt;}
.ls6{letter-spacing:35.471360pt;}
.ls1d{letter-spacing:52.730027pt;}
.ls10{letter-spacing:52.751360pt;}
.ls19{letter-spacing:88.960000pt;}
.wse{word-spacing:-58.880000pt;}
.wsd{word-spacing:-21.389227pt;}
.ws6{word-spacing:-17.310720pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws7{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.622933pt;}
.ws10{word-spacing:-14.448533pt;}
.ws4{word-spacing:-14.144000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws8{word-spacing:-9.560533pt;}
.wsb{word-spacing:-9.200533pt;}
.wsa{word-spacing:-9.078933pt;}
.ws9{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._2e{margin-left:-1.884160pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._6{width:2.251520pt;}
._7{width:3.768320pt;}
._c{width:4.769920pt;}
._9{width:6.190080pt;}
._8{width:7.124480pt;}
._10{width:8.125440pt;}
._5a{width:9.040000pt;}
._b{width:9.950720pt;}
._a{width:10.865280pt;}
._f{width:11.928960pt;}
._5{width:13.483520pt;}
._4{width:15.956480pt;}
._18{width:17.428480pt;}
._e{width:18.931840pt;}
._d{width:19.842560pt;}
._1f{width:21.079040pt;}
._3{width:22.017280pt;}
._2{width:22.994560pt;}
._12{width:23.928960pt;}
._29{width:24.834560pt;}
._13{width:26.350720pt;}
._2a{width:27.850240pt;}
._16{width:28.851200pt;}
._1e{width:30.007467pt;}
._3d{width:31.265280pt;}
._28{width:32.533120pt;}
._27{width:33.443840pt;}
._2b{width:34.385920pt;}
._21{width:35.916800pt;}
._17{width:37.773440pt;}
._33{width:38.829440pt;}
._3e{width:39.879680pt;}
._1c{width:40.980480pt;}
._34{width:42.216960pt;}
._11{width:44.042240pt;}
._1d{width:45.469440pt;}
._20{width:46.570880pt;}
._37{width:48.222720pt;}
._36{width:49.576960pt;}
._3f{width:51.827200pt;}
._25{width:53.096960pt;}
._24{width:54.331520pt;}
._39{width:55.464960pt;}
._4e{width:56.465920pt;}
._42{width:57.598720pt;}
._23{width:58.703360pt;}
._49{width:60.357547pt;}
._4a{width:61.824000pt;}
._50{width:63.060480pt;}
._54{width:64.179200pt;}
._30{width:65.827840pt;}
._2f{width:66.769920pt;}
._4f{width:67.947520pt;}
._38{width:69.419520pt;}
._15{width:70.656000pt;}
._35{width:71.774720pt;}
._3a{width:72.775680pt;}
._3b{width:73.672960pt;}
._58{width:74.833920pt;}
._14{width:76.190720pt;}
._57{width:78.428160pt;}
._4c{width:80.312320pt;}
._43{width:82.549760pt;}
._22{width:84.021760pt;}
._4b{width:85.140480pt;}
._46{width:86.626560pt;}
._26{width:89.147520pt;}
._51{width:90.176000pt;}
._52{width:91.170560pt;}
._4d{width:92.142080pt;}
._53{width:95.680000pt;}
._2d{width:97.328640pt;}
._41{width:98.388480pt;}
._45{width:100.037120pt;}
._3c{width:102.215680pt;}
._56{width:110.871040pt;}
._55{width:111.872000pt;}
._32{width:115.581440pt;}
._47{width:122.364587pt;}
._40{width:134.246400pt;}
._1b{width:135.905280pt;}
._48{width:141.135360pt;}
._44{width:152.087040pt;}
._2c{width:153.029120pt;}
._19{width:168.548907pt;}
._1a{width:175.686400pt;}
._5d{width:210.083840pt;}
._5c{width:262.917120pt;}
._5e{width:280.518400pt;}
._31{width:457.556480pt;}
._59{width:479.432320pt;}
._5b{width:495.063040pt;}
._5f{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs9{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.yac{bottom:8.320000pt;}
.yae{bottom:8.640000pt;}
.ye{bottom:20.320000pt;}
.y15{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.yb1{bottom:30.600000pt;}
.y1{bottom:45.760000pt;}
.y14{bottom:49.800000pt;}
.y3c{bottom:66.880000pt;}
.y13{bottom:70.920000pt;}
.y12{bottom:84.680000pt;}
.yd0{bottom:106.560000pt;}
.y112{bottom:112.960000pt;}
.y11f{bottom:115.040000pt;}
.y9c{bottom:118.880000pt;}
.y67{bottom:119.200000pt;}
.y39{bottom:120.320000pt;}
.ycf{bottom:128.480000pt;}
.y111{bottom:134.880000pt;}
.yef{bottom:135.840000pt;}
.y86{bottom:136.960000pt;}
.y9b{bottom:140.800000pt;}
.y66{bottom:141.120000pt;}
.y38{bottom:142.240000pt;}
.yce{bottom:150.400000pt;}
.y110{bottom:156.800000pt;}
.yee{bottom:157.760000pt;}
.y85{bottom:158.880000pt;}
.y65{bottom:163.040000pt;}
.y37{bottom:164.160000pt;}
.ycd{bottom:172.320000pt;}
.y10f{bottom:178.720000pt;}
.yed{bottom:179.680000pt;}
.y84{bottom:180.800000pt;}
.y92{bottom:184.666667pt;}
.y64{bottom:184.986667pt;}
.y36{bottom:186.106667pt;}
.ycc{bottom:194.266667pt;}
.y10e{bottom:200.666667pt;}
.yec{bottom:201.626667pt;}
.yaa{bottom:202.746667pt;}
.y83{bottom:203.706667pt;}
.y9a{bottom:206.586667pt;}
.y63{bottom:206.906667pt;}
.y35{bottom:208.026667pt;}
.ycb{bottom:216.186667pt;}
.yeb{bottom:223.546667pt;}
.ya9{bottom:224.666667pt;}
.y82{bottom:225.786667pt;}
.y8d{bottom:228.506667pt;}
.y62{bottom:228.826667pt;}
.y34{bottom:229.946667pt;}
.yca{bottom:238.106667pt;}
.yea{bottom:245.466667pt;}
.y11e{bottom:246.266667pt;}
.ya8{bottom:246.586667pt;}
.y81{bottom:247.706667pt;}
.y8c{bottom:250.426667pt;}
.y61{bottom:250.746667pt;}
.y33{bottom:251.866667pt;}
.yc9{bottom:259.706667pt;}
.yd3{bottom:260.026667pt;}
.ye9{bottom:267.386667pt;}
.ya7{bottom:268.186667pt;}
.y11d{bottom:268.506667pt;}
.y80{bottom:269.626667pt;}
.yd6{bottom:272.346667pt;}
.y60{bottom:272.666667pt;}
.y32{bottom:273.786667pt;}
.yc8{bottom:281.626667pt;}
.yd2{bottom:281.946667pt;}
.ye8{bottom:289.306667pt;}
.ya6{bottom:290.426667pt;}
.y7f{bottom:291.546667pt;}
.yd5{bottom:294.266667pt;}
.y5f{bottom:294.586667pt;}
.y31{bottom:295.706667pt;}
.yc7{bottom:303.866667pt;}
.y10d{bottom:311.226667pt;}
.ye7{bottom:311.386667pt;}
.ya5{bottom:312.346667pt;}
.y7e{bottom:313.466667pt;}
.y91{bottom:316.186667pt;}
.y5e{bottom:316.506667pt;}
.y30{bottom:317.626667pt;}
.yc6{bottom:325.786667pt;}
.y10c{bottom:332.986667pt;}
.ye6{bottom:334.266667pt;}
.ya4{bottom:334.426667pt;}
.y7d{bottom:336.346667pt;}
.y5d{bottom:338.426667pt;}
.y2f{bottom:339.546667pt;}
.yc5{bottom:347.706667pt;}
.ye5{bottom:356.186667pt;}
.ya3{bottom:357.306667pt;}
.y7c{bottom:358.266667pt;}
.y99{bottom:360.026667pt;}
.y5c{bottom:360.346667pt;}
.y2e{bottom:361.466667pt;}
.yc4{bottom:369.626667pt;}
.ye4{bottom:378.106667pt;}
.ya2{bottom:379.226667pt;}
.y7b{bottom:380.186667pt;}
.y5b{bottom:381.946667pt;}
.y8b{bottom:382.266667pt;}
.y2d{bottom:383.386667pt;}
.yc3{bottom:391.546667pt;}
.y10b{bottom:399.746667pt;}
.ye3{bottom:400.066667pt;}
.y11c{bottom:400.226667pt;}
.ya1{bottom:401.186667pt;}
.y7a{bottom:402.146667pt;}
.y5a{bottom:403.906667pt;}
.y90{bottom:404.226667pt;}
.y2c{bottom:405.346667pt;}
.yc2{bottom:413.186667pt;}
.yd1{bottom:413.506667pt;}
.y10a{bottom:421.666667pt;}
.ye2{bottom:422.146667pt;}
.ya0{bottom:423.106667pt;}
.y79{bottom:424.066667pt;}
.y59{bottom:425.986667pt;}
.y8a{bottom:426.306667pt;}
.y2b{bottom:427.426667pt;}
.yc1{bottom:435.426667pt;}
.y109{bottom:443.586667pt;}
.ye1{bottom:445.026667pt;}
.y78{bottom:445.986667pt;}
.y8f{bottom:447.906667pt;}
.y58{bottom:448.226667pt;}
.y2a{bottom:449.346667pt;}
.yc0{bottom:449.506667pt;}
.y108{bottom:465.826667pt;}
.ye0{bottom:466.946667pt;}
.y77{bottom:467.906667pt;}
.y95{bottom:469.826667pt;}
.y57{bottom:470.146667pt;}
.y29{bottom:471.266667pt;}
.ybf{bottom:472.066667pt;}
.y107{bottom:487.746667pt;}
.ydf{bottom:488.866667pt;}
.y76{bottom:489.826667pt;}
.y56{bottom:492.066667pt;}
.y28{bottom:492.226667pt;}
.ybe{bottom:494.626667pt;}
.y106{bottom:509.666667pt;}
.yde{bottom:510.786667pt;}
.y75{bottom:511.746667pt;}
.y55{bottom:513.986667pt;}
.y27{bottom:516.066667pt;}
.ybd{bottom:517.186667pt;}
.y105{bottom:531.586667pt;}
.y11b{bottom:532.706667pt;}
.y74{bottom:533.826667pt;}
.y26{bottom:535.426667pt;}
.y54{bottom:535.906667pt;}
.ybc{bottom:539.746667pt;}
.y104{bottom:553.506667pt;}
.y11a{bottom:554.626667pt;}
.y25{bottom:554.786667pt;}
.y73{bottom:555.746667pt;}
.y9f{bottom:556.706667pt;}
.y53{bottom:557.826667pt;}
.ybb{bottom:562.466667pt;}
.y24{bottom:574.146667pt;}
.y103{bottom:575.426667pt;}
.y119{bottom:576.546667pt;}
.ydd{bottom:577.666667pt;}
.y72{bottom:578.626667pt;}
.y98{bottom:579.426667pt;}
.y52{bottom:579.746667pt;}
.yba{bottom:585.026667pt;}
.y23{bottom:593.506667pt;}
.y102{bottom:597.506667pt;}
.y118{bottom:598.626667pt;}
.ydc{bottom:599.586667pt;}
.y71{bottom:600.546667pt;}
.y89{bottom:601.373333pt;}
.y51{bottom:601.693333pt;}
.yb9{bottom:607.613333pt;}
.y22{bottom:613.053333pt;}
.y101{bottom:620.413333pt;}
.ydb{bottom:621.533333pt;}
.y70{bottom:622.493333pt;}
.y9e{bottom:622.653333pt;}
.yd8{bottom:623.293333pt;}
.y50{bottom:623.613333pt;}
.y21{bottom:632.413333pt;}
.yb8{bottom:638.493333pt;}
.y100{bottom:642.333333pt;}
.y117{bottom:643.453333pt;}
.y6f{bottom:644.413333pt;}
.y97{bottom:645.213333pt;}
.y4f{bottom:645.533333pt;}
.y20{bottom:651.773333pt;}
.yb7{bottom:660.733333pt;}
.yff{bottom:664.253333pt;}
.y116{bottom:665.373333pt;}
.y6e{bottom:666.333333pt;}
.yda{bottom:666.493333pt;}
.y9d{bottom:667.133333pt;}
.y4e{bottom:667.453333pt;}
.y1f{bottom:671.133333pt;}
.yb6{bottom:674.653333pt;}
.yfe{bottom:686.333333pt;}
.y115{bottom:687.293333pt;}
.y6d{bottom:688.253333pt;}
.y4d{bottom:689.053333pt;}
.y88{bottom:689.373333pt;}
.y1e{bottom:690.493333pt;}
.yb5{bottom:697.373333pt;}
.yfd{bottom:709.213333pt;}
.y1d{bottom:710.013333pt;}
.y6c{bottom:710.333333pt;}
.y4c{bottom:711.293333pt;}
.yb4{bottom:719.933333pt;}
.y1c{bottom:729.373333pt;}
.yfc{bottom:731.133333pt;}
.y4b{bottom:733.213333pt;}
.yb3{bottom:742.493333pt;}
.y1b{bottom:748.733333pt;}
.yfb{bottom:753.053333pt;}
.yd9{bottom:754.813333pt;}
.y4a{bottom:755.133333pt;}
.yb2{bottom:765.053333pt;}
.y1a{bottom:768.093333pt;}
.yfa{bottom:774.973333pt;}
.y87{bottom:776.733333pt;}
.y49{bottom:777.053333pt;}
.y19{bottom:787.293333pt;}
.yb0{bottom:787.613333pt;}
.yf9{bottom:796.893333pt;}
.y114{bottom:797.853333pt;}
.y94{bottom:798.653333pt;}
.y48{bottom:798.973333pt;}
.y17{bottom:800.893333pt;}
.y11{bottom:807.293333pt;}
.y16{bottom:810.661580pt;}
.yf8{bottom:819.813333pt;}
.y96{bottom:820.613333pt;}
.y47{bottom:820.933333pt;}
.yaf{bottom:832.293333pt;}
.yf7{bottom:841.893333pt;}
.y46{bottom:842.533333pt;}
.y6b{bottom:842.853333pt;}
.yad{bottom:854.853333pt;}
.yf6{bottom:863.813333pt;}
.y45{bottom:864.453333pt;}
.y6a{bottom:864.773333pt;}
.yab{bottom:877.413333pt;}
.yf5{bottom:885.733333pt;}
.yd4{bottom:886.373333pt;}
.y44{bottom:886.693333pt;}
.yf4{bottom:907.653333pt;}
.y8e{bottom:908.293333pt;}
.y43{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.yf3{bottom:929.573333pt;}
.yd7{bottom:930.213333pt;}
.y42{bottom:930.533333pt;}
.yf2{bottom:951.493333pt;}
.y41{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y113{bottom:973.093333pt;}
.yf1{bottom:973.413333pt;}
.y93{bottom:974.053333pt;}
.y40{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.yf0{bottom:995.333333pt;}
.y69{bottom:995.973333pt;}
.y3f{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y3e{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y3d{bottom:1039.840000pt;}
.y68{bottom:1040.160000pt;}
.y3b{bottom:1055.360000pt;}
.y3a{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h17{height:6.400000pt;}
.hd{height:11.843750pt;}
.h18{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h22{height:21.906667pt;}
.h24{height:21.920000pt;}
.h25{height:21.946667pt;}
.h7{height:25.146667pt;}
.h1d{height:27.093750pt;}
.he{height:36.466667pt;}
.h20{height:41.112500pt;}
.h14{height:43.215000pt;}
.h23{height:43.860000pt;}
.h1a{height:44.792500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1e{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h1f{height:59.340000pt;}
.h21{height:60.519362pt;}
.h1c{height:63.311250pt;}
.h6{height:63.399375pt;}
.h16{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h12{height:107.540000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w8{width:299.857333pt;}
.w9{width:300.066667pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x27{left:89.161333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x25{left:100.512000pt;}
.x28{left:102.065333pt;}
.x1a{left:109.792000pt;}
.x1f{left:114.912000pt;}
.x24{left:120.032000pt;}
.x26{left:124.512000pt;}
.x1b{left:133.786667pt;}
.x15{left:138.585333pt;}
.x19{left:144.026667pt;}
.x4{left:150.120000pt;}
.x14{left:153.945333pt;}
.x16{left:180.025333pt;}
.x6{left:185.786667pt;}
.x13{left:192.505333pt;}
.x17{left:288.858236pt;}
.x12{left:298.292000pt;}
.x29{left:389.666667pt;}
.xa{left:396.106667pt;}
.x1e{left:420.893333pt;}
.x21{left:425.373333pt;}
.x1d{left:434.653333pt;}
.x23{left:444.893333pt;}
.x22{left:449.373333pt;}
.x1c{left:458.653333pt;}
.x20{left:468.893333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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