
    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_4574ac7329a21a297f76eccc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_95643575b73c6fbc97304eb3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922363;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_0736c9545109cd9bf45be7cb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4ae714f7c32978fc85dc40aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935059;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_11226e9c8f039e426f4b5734.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_c34fd95de450f4e358157f58.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_67c0e686d6474fc28d0bfe86.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_7e787247e325db06f9338e22.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935059;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_5a493b09494a3cdab2b90a60.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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);}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.436400px;}
.v1{vertical-align:25.198560px;}
.v3{vertical-align:26.634960px;}
.v4{vertical-align:50.397120px;}
.ls13{letter-spacing:-0.369360px;}
.ls12{letter-spacing:-0.328320px;}
.ls11{letter-spacing:-0.287280px;}
.ls3{letter-spacing:-0.273600px;}
.lsa{letter-spacing:-0.259200px;}
.ls0{letter-spacing:-0.250560px;}
.ls6{letter-spacing:-0.164160px;}
.ls14{letter-spacing:-0.157680px;}
.ls16{letter-spacing:-0.133920px;}
.lsc{letter-spacing:-0.115200px;}
.lsb{letter-spacing:-0.064800px;}
.ls2{letter-spacing:-0.054720px;}
.ls8{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.041040px;}
.ls15{letter-spacing:0.052560px;}
.ls1{letter-spacing:0.062640px;}
.ls5{letter-spacing:0.109440px;}
.ls9{letter-spacing:0.194400px;}
.ls10{letter-spacing:0.210240px;}
.ls4{letter-spacing:0.218880px;}
.lsf{letter-spacing:0.315360px;}
.ls7{letter-spacing:0.328320px;}
.lse{letter-spacing:0.369360px;}
.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;}
}
.wsb{word-spacing:-17.431200px;}
.wsc{word-spacing:-17.172000px;}
.wsd{word-spacing:-15.897600px;}
.ws38{word-spacing:-14.033520px;}
.ws0{word-spacing:-13.530240px;}
.ws1{word-spacing:-11.983680px;}
.ws2{word-spacing:-11.874240px;}
.ws24{word-spacing:-11.696400px;}
.ws1c{word-spacing:-11.368080px;}
.ws14{word-spacing:-11.327040px;}
.ws31{word-spacing:-11.039760px;}
.ws18{word-spacing:-10.998720px;}
.ws2a{word-spacing:-10.957680px;}
.ws39{word-spacing:-0.525600px;}
.ws3f{word-spacing:-0.367920px;}
.ws42{word-spacing:-0.315360px;}
.ws40{word-spacing:-0.210240px;}
.ws3{word-spacing:-0.187920px;}
.ws3a{word-spacing:-0.164160px;}
.ws9{word-spacing:-0.109440px;}
.wsf{word-spacing:-0.057600px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:0.054720px;}
.ws8{word-spacing:0.109440px;}
.ws11{word-spacing:0.115200px;}
.ws3c{word-spacing:0.164160px;}
.ws3e{word-spacing:0.205200px;}
.wsa{word-spacing:0.218880px;}
.ws4{word-spacing:0.273600px;}
.wse{word-spacing:0.288000px;}
.ws10{word-spacing:0.324000px;}
.ws41{word-spacing:0.334800px;}
.ws5{word-spacing:0.492480px;}
.ws3b{word-spacing:0.533520px;}
.ws3d{word-spacing:0.574560px;}
.ws1b{word-spacing:67.071672px;}
.ws25{word-spacing:73.688976px;}
.ws19{word-spacing:94.863960px;}
.ws1e{word-spacing:94.868064px;}
.ws23{word-spacing:101.335968px;}
.ws22{word-spacing:133.720632px;}
.ws2f{word-spacing:138.349944px;}
.ws1d{word-spacing:138.370464px;}
.ws2d{word-spacing:138.387024px;}
.ws20{word-spacing:138.764448px;}
.ws29{word-spacing:139.503168px;}
.ws27{word-spacing:139.532472px;}
.ws26{word-spacing:142.339032px;}
.ws17{word-spacing:142.355592px;}
.ws28{word-spacing:142.363512px;}
.ws15{word-spacing:155.668824px;}
.ws1a{word-spacing:160.987608px;}
.ws21{word-spacing:179.357112px;}
.ws35{word-spacing:380.692872px;}
.ws2c{word-spacing:392.114304px;}
.ws2e{word-spacing:392.120784px;}
.ws2b{word-spacing:399.949200px;}
.ws32{word-spacing:402.911928px;}
.ws13{word-spacing:402.918408px;}
.ws16{word-spacing:402.962328px;}
.ws30{word-spacing:404.101440px;}
.ws36{word-spacing:406.992240px;}
.ws12{word-spacing:408.180960px;}
.ws37{word-spacing:570.691224px;}
.ws34{word-spacing:1129.457592px;}
.ws33{word-spacing:1148.992632px;}
.ws1f{word-spacing:2266.261632px;}
._1{margin-left:-1.089936px;}
._0{width:1.052352px;}
._2{width:9.644832px;}
._27{width:43.745184px;}
._f{width:81.546912px;}
._a{width:207.604080px;}
._c{width:241.824528px;}
._13{width:259.919856px;}
._16{width:276.510240px;}
._3{width:296.773416px;}
._21{width:298.325376px;}
._1a{width:320.556096px;}
._18{width:363.081744px;}
._1d{width:367.639344px;}
._e{width:389.246472px;}
._10{width:408.107160px;}
._11{width:420.830208px;}
._24{width:455.049792px;}
._4{width:466.379424px;}
._15{width:500.872896px;}
._6{width:518.388552px;}
._28{width:527.040504px;}
._19{width:538.044768px;}
._2d{width:539.524872px;}
._30{width:556.181352px;}
._1e{width:557.355600px;}
._8{width:568.360152px;}
._20{width:577.962432px;}
._26{width:606.815712px;}
._d{width:621.344880px;}
._1c{width:641.628864px;}
._17{width:691.456176px;}
._23{width:699.888960px;}
._12{width:773.236800px;}
._14{width:789.949152px;}
._29{width:811.159272px;}
._2f{width:853.653672px;}
._2b{width:898.909128px;}
._2a{width:906.951384px;}
._2e{width:913.448952px;}
._1f{width:919.908144px;}
._2c{width:998.096328px;}
._1b{width:1161.000000px;}
._5{width:1349.250480px;}
._25{width:1402.363800px;}
._b{width:1409.031072px;}
._9{width:1414.482264px;}
._22{width:1664.505936px;}
._7{width:2091.782016px;}
.fc1{color:rgb(110,172,28);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.040000px;}
.fs5{font-size:52.560000px;}
.fs1{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs0{font-size:62.640000px;}
.fs3{font-size:64.800000px;}
.fs7{font-size:66.960000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:0.900000px;}
.yb5{bottom:1.080150px;}
.y97{bottom:1.260720px;}
.y92{bottom:1.260870px;}
.ydc{bottom:1.620870px;}
.ya5{bottom:1.800720px;}
.yd8{bottom:2.160150px;}
.ye8{bottom:2.340720px;}
.ycc{bottom:2.520000px;}
.y33{bottom:2.700000px;}
.y77{bottom:2.700720px;}
.yc4{bottom:2.880000px;}
.ybd{bottom:2.880150px;}
.y4e{bottom:3.059850px;}
.y63{bottom:3.060000px;}
.ydf{bottom:3.060150px;}
.y83{bottom:3.420000px;}
.y85{bottom:3.420150px;}
.y11{bottom:3.600000px;}
.y54{bottom:3.779850px;}
.y56{bottom:3.780000px;}
.ya9{bottom:3.780150px;}
.y26{bottom:4.139850px;}
.y3b{bottom:4.140000px;}
.yf0{bottom:4.140150px;}
.y41{bottom:4.147200px;}
.y96{bottom:13.860000px;}
.y91{bottom:13.860150px;}
.ydb{bottom:14.220150px;}
.ya4{bottom:14.400000px;}
.ye7{bottom:14.940000px;}
.y76{bottom:15.300000px;}
.y69{bottom:16.380000px;}
.y7c{bottom:16.740150px;}
.yf2{bottom:20.162340px;}
.y16{bottom:21.600000px;}
.y47{bottom:23.940000px;}
.yb3{bottom:26.280000px;}
.y9b{bottom:27.900150px;}
.yea{bottom:28.260000px;}
.yec{bottom:36.180000px;}
.y8a{bottom:38.700150px;}
.y43{bottom:39.960000px;}
.y35{bottom:40.140000px;}
.y2c{bottom:42.300000px;}
.y23{bottom:56.520000px;}
.y29{bottom:94.680000px;}
.y1a{bottom:213.660000px;}
.ye6{bottom:310.140000px;}
.y12{bottom:318.780000px;}
.y46{bottom:320.220000px;}
.y48{bottom:326.700000px;}
.ye5{bottom:336.420000px;}
.ye4{bottom:344.160000px;}
.y42{bottom:358.920000px;}
.ye3{bottom:360.720000px;}
.y45{bottom:363.959850px;}
.ye2{bottom:369.180150px;}
.y44{bottom:381.419850px;}
.ye1{bottom:386.460000px;}
.ye0{bottom:394.560150px;}
.yde{bottom:411.480000px;}
.y2{bottom:412.560000px;}
.y40{bottom:415.800000px;}
.ydd{bottom:420.840150px;}
.yda{bottom:439.200000px;}
.yd9{bottom:447.300000px;}
.y3e{bottom:450.540000px;}
.yd7{bottom:464.220000px;}
.y3d{bottom:470.700000px;}
.yd6{bottom:472.680150px;}
.y3f{bottom:484.380000px;}
.y3c{bottom:488.160000px;}
.yd5{bottom:489.960000px;}
.yd4{bottom:498.960000px;}
.y3a{bottom:506.160000px;}
.yd3{bottom:516.960000px;}
.yd2{bottom:531.000000px;}
.y39{bottom:531.540000px;}
.yd1{bottom:546.840000px;}
.y38{bottom:549.000000px;}
.yd0{bottom:565.200150px;}
.y34{bottom:567.360000px;}
.y37{bottom:572.580000px;}
.ycf{bottom:577.800000px;}
.y36{bottom:590.040000px;}
.yce{bottom:591.660000px;}
.ycd{bottom:610.020150px;}
.y32{bottom:622.260000px;}
.ycb{bottom:622.620000px;}
.yca{bottom:636.480000px;}
.y31{bottom:642.420000px;}
.yc9{bottom:644.220150px;}
.y30{bottom:659.880000px;}
.yc8{bottom:660.780000px;}
.yc7{bottom:668.520150px;}
.y2f{bottom:679.500000px;}
.yc6{bottom:685.080000px;}
.yc5{bottom:692.820000px;}
.y28{bottom:706.500000px;}
.yc3{bottom:709.380000px;}
.y2e{bottom:713.887200px;}
.yc2{bottom:728.637810px;}
.y2d{bottom:731.340000px;}
.yc1{bottom:734.937450px;}
.y1{bottom:752.760000px;}
.yc0{bottom:758.155830px;}
.y2b{bottom:766.267200px;}
.y10{bottom:773.250480px;}
.ybf{bottom:774.900150px;}
.y2a{bottom:783.720000px;}
.ybe{bottom:786.960000px;}
.yf{bottom:790.172640px;}
.ybc{bottom:802.800000px;}
.ye{bottom:807.094800px;}
.yb9{bottom:818.640000px;}
.y27{bottom:819.360000px;}
.ybb{bottom:828.355680px;}
.yb6{bottom:834.653700px;}
.yb8{bottom:834.660870px;}
.yba{bottom:834.840000px;}
.y19{bottom:842.940000px;}
.y13{bottom:844.740000px;}
.yb7{bottom:847.260150px;}
.yb2{bottom:859.500000px;}
.y25{bottom:864.547200px;}
.yb4{bottom:873.180000px;}
.yb1{bottom:873.181770px;}
.y24{bottom:882.000000px;}
.yd{bottom:891.691920px;}
.yaf{bottom:899.642310px;}
.yad{bottom:905.941950px;}
.yc{bottom:908.614080px;}
.yac{bottom:912.241590px;}
.yb0{bottom:912.426270px;}
.y22{bottom:916.970400px;}
.yae{bottom:924.840870px;}
.yb{bottom:925.536240px;}
.y21{bottom:934.423200px;}
.ya8{bottom:937.440000px;}
.yaa{bottom:947.520000px;}
.ya7{bottom:947.520360px;}
.yab{bottom:947.700150px;}
.y20{bottom:951.876000px;}
.ya{bottom:959.380560px;}
.ya3{bottom:966.420000px;}
.y1f{bottom:969.328800px;}
.ya2{bottom:974.159640px;}
.ya6{bottom:974.340000px;}
.y9{bottom:976.302720px;}
.y1e{bottom:986.781600px;}
.y9f{bottom:990.720000px;}
.ya0{bottom:998.460000px;}
.y9e{bottom:998.463060px;}
.ya1{bottom:998.640000px;}
.y1d{bottom:1004.234400px;}
.y8{bottom:1010.147040px;}
.y9a{bottom:1015.020000px;}
.y1c{bottom:1021.687200px;}
.y7{bottom:1027.069200px;}
.y9c{bottom:1030.320000px;}
.y9d{bottom:1030.320360px;}
.y99{bottom:1036.623060px;}
.y1b{bottom:1039.140000px;}
.y6{bottom:1043.991360px;}
.y5{bottom:1060.913520px;}
.y95{bottom:1067.040000px;}
.y18{bottom:1072.260000px;}
.y98{bottom:1074.780000px;}
.y94{bottom:1074.784470px;}
.y90{bottom:1091.340000px;}
.y15{bottom:1095.840000px;}
.y8f{bottom:1099.079460px;}
.y93{bottom:1099.080150px;}
.y17{bottom:1099.980000px;}
.y4{bottom:1111.680000px;}
.y89{bottom:1115.640000px;}
.y87{bottom:1129.140000px;}
.y8c{bottom:1129.140870px;}
.y14{bottom:1134.000000px;}
.y86{bottom:1135.439640px;}
.y8e{bottom:1135.800000px;}
.y88{bottom:1141.739280px;}
.y8b{bottom:1141.740150px;}
.y3{bottom:1146.060000px;}
.y82{bottom:1164.240000px;}
.y7f{bottom:1173.961800px;}
.y81{bottom:1180.260720px;}
.y7e{bottom:1180.261440px;}
.y84{bottom:1180.440000px;}
.y80{bottom:1192.860000px;}
.y7b{bottom:1205.100000px;}
.y7d{bottom:1209.240150px;}
.y7a{bottom:1209.244320px;}
.y79{bottom:1215.543960px;}
.y75{bottom:1234.800000px;}
.y74{bottom:1243.799640px;}
.y78{bottom:1243.800000px;}
.y72{bottom:1266.484500px;}
.y71{bottom:1272.784140px;}
.y73{bottom:1279.083780px;}
.y6f{bottom:1292.760000px;}
.y6c{bottom:1302.841800px;}
.y6e{bottom:1309.140870px;}
.y6b{bottom:1309.141440px;}
.y70{bottom:1309.320000px;}
.y6d{bottom:1321.740150px;}
.y68{bottom:1334.340000px;}
.y6a{bottom:1338.115680px;}
.y67{bottom:1338.120000px;}
.y66{bottom:1344.419640px;}
.y62{bottom:1363.320000px;}
.y65{bottom:1372.675680px;}
.y5f{bottom:1372.688790px;}
.y61{bottom:1378.980870px;}
.y5e{bottom:1378.988430px;}
.y64{bottom:1379.160000px;}
.y60{bottom:1391.580150px;}
.y5c{bottom:1408.147350px;}
.y5b{bottom:1414.446990px;}
.y5d{bottom:1420.746630px;}
.y5a{bottom:1438.024470px;}
.y59{bottom:1444.324110px;}
.y58{bottom:1466.280510px;}
.y57{bottom:1472.580150px;}
.y53{bottom:1490.940000px;}
.y52{bottom:1501.023750px;}
.y55{bottom:1501.200150px;}
.y51{bottom:1523.339250px;}
.y50{bottom:1529.638890px;}
.y4d{bottom:1548.180000px;}
.y4a{bottom:1563.840150px;}
.y4c{bottom:1563.840720px;}
.y4f{bottom:1564.020150px;}
.y4b{bottom:1576.440000px;}
.y49{bottom:1591.200000px;}
.ye9{bottom:1606.860000px;}
.yf3{bottom:1611.000000px;}
.yee{bottom:1611.002040px;}
.yeb{bottom:1619.100000px;}
.yed{bottom:1627.019700px;}
.yf1{bottom:1627.379850px;}
.yef{bottom:1683.900000px;}
.h32{height:12.420000px;}
.h35{height:12.601500px;}
.h34{height:13.140000px;}
.h2f{height:14.398500px;}
.h30{height:14.400000px;}
.hf{height:17.461500px;}
.h3f{height:19.260000px;}
.h2a{height:22.860000px;}
.h3c{height:23.578500px;}
.h3a{height:23.580000px;}
.h39{height:24.300000px;}
.h3d{height:24.840000px;}
.h25{height:25.560000px;}
.h37{height:25.561500px;}
.h3b{height:26.280000px;}
.h1e{height:27.540000px;}
.h27{height:28.260000px;}
.h9{height:33.300000px;}
.h18{height:33.645586px;}
.h33{height:33.646186px;}
.h17{height:34.384306px;}
.h2e{height:34.918500px;}
.h26{height:35.081986px;}
.h31{height:35.084986px;}
.h13{height:37.260000px;}
.h11{height:38.390625px;}
.h4{height:38.528438px;}
.h21{height:38.698500px;}
.h19{height:38.700000px;}
.h5{height:39.410156px;}
.h16{height:39.420000px;}
.h24{height:40.140000px;}
.h3{height:45.114258px;}
.h29{height:47.160000px;}
.ha{height:47.221875px;}
.h3e{height:48.418500px;}
.h8{height:48.600000px;}
.h40{height:50.220000px;}
.h2b{height:50.578500px;}
.hd{height:52.380000px;}
.he{height:53.460000px;}
.h7{height:54.000000px;}
.h10{height:54.181500px;}
.h12{height:55.438500px;}
.h22{height:58.105426px;}
.h1f{height:58.124986px;}
.h1d{height:58.830586px;}
.h1a{height:58.844146px;}
.h38{height:58.844986px;}
.h2d{height:58.845586px;}
.h36{height:58.846186px;}
.h28{height:59.564986px;}
.h1c{height:59.582866px;}
.h20{height:60.280546px;}
.h23{height:84.025426px;}
.h1b{height:84.042706px;}
.h2c{height:84.044146px;}
.hc{height:108.000000px;}
.hb{height:224.460000px;}
.h2{height:427.320000px;}
.h6{height:861.300000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.h14{height:1785.600000px;}
.h15{height:1785.750000px;}
.w9{width:72.180000px;}
.we{width:73.620000px;}
.wc{width:77.580000px;}
.wb{width:83.160000px;}
.w8{width:243.540000px;}
.w7{width:569.880000px;}
.w2{width:730.438500px;}
.w4{width:731.160000px;}
.w3{width:732.598500px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.wd{width:1013.580000px;}
.wa{width:1097.460000px;}
.w6{width:1262.250000px;}
.w5{width:1262.520000px;}
.x0{left:0.000000px;}
.x2{left:2.160000px;}
.x16{left:3.780000px;}
.x1c{left:5.041800px;}
.x14{left:7.200000px;}
.xe{left:13.320000px;}
.x12{left:14.760000px;}
.x13{left:17.817480px;}
.x11{left:19.078740px;}
.x1{left:77.040000px;}
.x3{left:79.200000px;}
.x1b{left:89.640000px;}
.xd{left:123.840000px;}
.x1d{left:125.820000px;}
.xf{left:138.047940px;}
.xc{left:141.107040px;}
.x10{left:142.561620px;}
.xa{left:197.460000px;}
.x9{left:198.899280px;}
.x1a{left:313.560000px;}
.x18{left:441.720000px;}
.xb{left:443.880000px;}
.x5{left:450.900000px;}
.x19{left:454.856400px;}
.x7{left:520.020000px;}
.x6{left:521.460000px;}
.x4{left:523.080000px;}
.x15{left:1090.620000px;}
.x17{left:1099.440000px;}
.x8{left:1130.220000px;}
@media print{
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.276800pt;}
.v1{vertical-align:22.398720pt;}
.v3{vertical-align:23.675520pt;}
.v4{vertical-align:44.797440pt;}
.ls13{letter-spacing:-0.328320pt;}
.ls12{letter-spacing:-0.291840pt;}
.ls11{letter-spacing:-0.255360pt;}
.ls3{letter-spacing:-0.243200pt;}
.lsa{letter-spacing:-0.230400pt;}
.ls0{letter-spacing:-0.222720pt;}
.ls6{letter-spacing:-0.145920pt;}
.ls14{letter-spacing:-0.140160pt;}
.ls16{letter-spacing:-0.119040pt;}
.lsc{letter-spacing:-0.102400pt;}
.lsb{letter-spacing:-0.057600pt;}
.ls2{letter-spacing:-0.048640pt;}
.ls8{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.036480pt;}
.ls15{letter-spacing:0.046720pt;}
.ls1{letter-spacing:0.055680pt;}
.ls5{letter-spacing:0.097280pt;}
.ls9{letter-spacing:0.172800pt;}
.ls10{letter-spacing:0.186880pt;}
.ls4{letter-spacing:0.194560pt;}
.lsf{letter-spacing:0.280320pt;}
.ls7{letter-spacing:0.291840pt;}
.lse{letter-spacing:0.328320pt;}
.wsb{word-spacing:-15.494400pt;}
.wsc{word-spacing:-15.264000pt;}
.wsd{word-spacing:-14.131200pt;}
.ws38{word-spacing:-12.474240pt;}
.ws0{word-spacing:-12.026880pt;}
.ws1{word-spacing:-10.652160pt;}
.ws2{word-spacing:-10.554880pt;}
.ws24{word-spacing:-10.396800pt;}
.ws1c{word-spacing:-10.104960pt;}
.ws14{word-spacing:-10.068480pt;}
.ws31{word-spacing:-9.813120pt;}
.ws18{word-spacing:-9.776640pt;}
.ws2a{word-spacing:-9.740160pt;}
.ws39{word-spacing:-0.467200pt;}
.ws3f{word-spacing:-0.327040pt;}
.ws42{word-spacing:-0.280320pt;}
.ws40{word-spacing:-0.186880pt;}
.ws3{word-spacing:-0.167040pt;}
.ws3a{word-spacing:-0.145920pt;}
.ws9{word-spacing:-0.097280pt;}
.wsf{word-spacing:-0.051200pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:0.048640pt;}
.ws8{word-spacing:0.097280pt;}
.ws11{word-spacing:0.102400pt;}
.ws3c{word-spacing:0.145920pt;}
.ws3e{word-spacing:0.182400pt;}
.wsa{word-spacing:0.194560pt;}
.ws4{word-spacing:0.243200pt;}
.wse{word-spacing:0.256000pt;}
.ws10{word-spacing:0.288000pt;}
.ws41{word-spacing:0.297600pt;}
.ws5{word-spacing:0.437760pt;}
.ws3b{word-spacing:0.474240pt;}
.ws3d{word-spacing:0.510720pt;}
.ws1b{word-spacing:59.619264pt;}
.ws25{word-spacing:65.501312pt;}
.ws19{word-spacing:84.323520pt;}
.ws1e{word-spacing:84.327168pt;}
.ws23{word-spacing:90.076416pt;}
.ws22{word-spacing:118.862784pt;}
.ws2f{word-spacing:122.977728pt;}
.ws1d{word-spacing:122.995968pt;}
.ws2d{word-spacing:123.010688pt;}
.ws20{word-spacing:123.346176pt;}
.ws29{word-spacing:124.002816pt;}
.ws27{word-spacing:124.028864pt;}
.ws26{word-spacing:126.523584pt;}
.ws17{word-spacing:126.538304pt;}
.ws28{word-spacing:126.545344pt;}
.ws15{word-spacing:138.372288pt;}
.ws1a{word-spacing:143.100096pt;}
.ws21{word-spacing:159.428544pt;}
.ws35{word-spacing:338.393664pt;}
.ws2c{word-spacing:348.546048pt;}
.ws2e{word-spacing:348.551808pt;}
.ws2b{word-spacing:355.510400pt;}
.ws32{word-spacing:358.143936pt;}
.ws13{word-spacing:358.149696pt;}
.ws16{word-spacing:358.188736pt;}
.ws30{word-spacing:359.201280pt;}
.ws36{word-spacing:361.770880pt;}
.ws12{word-spacing:362.827520pt;}
.ws37{word-spacing:507.281088pt;}
.ws34{word-spacing:1003.962304pt;}
.ws33{word-spacing:1021.326784pt;}
.ws1f{word-spacing:2014.454784pt;}
._1{margin-left:-0.968832pt;}
._0{width:0.935424pt;}
._2{width:8.573184pt;}
._27{width:38.884608pt;}
._f{width:72.486144pt;}
._a{width:184.536960pt;}
._c{width:214.955136pt;}
._13{width:231.039872pt;}
._16{width:245.786880pt;}
._3{width:263.798592pt;}
._21{width:265.178112pt;}
._1a{width:284.938752pt;}
._18{width:322.739328pt;}
._1d{width:326.790528pt;}
._e{width:345.996864pt;}
._10{width:362.761920pt;}
._11{width:374.071296pt;}
._24{width:404.488704pt;}
._4{width:414.559488pt;}
._15{width:445.220352pt;}
._6{width:460.789824pt;}
._28{width:468.480448pt;}
._19{width:478.262016pt;}
._2d{width:479.577664pt;}
._30{width:494.383424pt;}
._1e{width:495.427200pt;}
._8{width:505.209024pt;}
._20{width:513.744384pt;}
._26{width:539.391744pt;}
._d{width:552.306560pt;}
._1c{width:570.336768pt;}
._17{width:614.627712pt;}
._23{width:622.123520pt;}
._12{width:687.321600pt;}
._14{width:702.177024pt;}
._29{width:721.030464pt;}
._2f{width:758.803264pt;}
._2b{width:799.030336pt;}
._2a{width:806.179008pt;}
._2e{width:811.954624pt;}
._1f{width:817.696128pt;}
._2c{width:887.196736pt;}
._1b{width:1032.000000pt;}
._5{width:1199.333760pt;}
._25{width:1246.545600pt;}
._b{width:1252.472064pt;}
._9{width:1257.317568pt;}
._22{width:1479.560832pt;}
._7{width:1859.361792pt;}
.fs6{font-size:36.480000pt;}
.fs5{font-size:46.720000pt;}
.fs1{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs0{font-size:55.680000pt;}
.fs3{font-size:57.600000pt;}
.fs7{font-size:59.520000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:0.800000pt;}
.yb5{bottom:0.960133pt;}
.y97{bottom:1.120640pt;}
.y92{bottom:1.120773pt;}
.ydc{bottom:1.440773pt;}
.ya5{bottom:1.600640pt;}
.yd8{bottom:1.920133pt;}
.ye8{bottom:2.080640pt;}
.ycc{bottom:2.240000pt;}
.y33{bottom:2.400000pt;}
.y77{bottom:2.400640pt;}
.yc4{bottom:2.560000pt;}
.ybd{bottom:2.560133pt;}
.y4e{bottom:2.719867pt;}
.y63{bottom:2.720000pt;}
.ydf{bottom:2.720133pt;}
.y83{bottom:3.040000pt;}
.y85{bottom:3.040133pt;}
.y11{bottom:3.200000pt;}
.y54{bottom:3.359867pt;}
.y56{bottom:3.360000pt;}
.ya9{bottom:3.360133pt;}
.y26{bottom:3.679867pt;}
.y3b{bottom:3.680000pt;}
.yf0{bottom:3.680133pt;}
.y41{bottom:3.686400pt;}
.y96{bottom:12.320000pt;}
.y91{bottom:12.320133pt;}
.ydb{bottom:12.640133pt;}
.ya4{bottom:12.800000pt;}
.ye7{bottom:13.280000pt;}
.y76{bottom:13.600000pt;}
.y69{bottom:14.560000pt;}
.y7c{bottom:14.880133pt;}
.yf2{bottom:17.922080pt;}
.y16{bottom:19.200000pt;}
.y47{bottom:21.280000pt;}
.yb3{bottom:23.360000pt;}
.y9b{bottom:24.800133pt;}
.yea{bottom:25.120000pt;}
.yec{bottom:32.160000pt;}
.y8a{bottom:34.400133pt;}
.y43{bottom:35.520000pt;}
.y35{bottom:35.680000pt;}
.y2c{bottom:37.600000pt;}
.y23{bottom:50.240000pt;}
.y29{bottom:84.160000pt;}
.y1a{bottom:189.920000pt;}
.ye6{bottom:275.680000pt;}
.y12{bottom:283.360000pt;}
.y46{bottom:284.640000pt;}
.y48{bottom:290.400000pt;}
.ye5{bottom:299.040000pt;}
.ye4{bottom:305.920000pt;}
.y42{bottom:319.040000pt;}
.ye3{bottom:320.640000pt;}
.y45{bottom:323.519867pt;}
.ye2{bottom:328.160133pt;}
.y44{bottom:339.039867pt;}
.ye1{bottom:343.520000pt;}
.ye0{bottom:350.720133pt;}
.yde{bottom:365.760000pt;}
.y2{bottom:366.720000pt;}
.y40{bottom:369.600000pt;}
.ydd{bottom:374.080133pt;}
.yda{bottom:390.400000pt;}
.yd9{bottom:397.600000pt;}
.y3e{bottom:400.480000pt;}
.yd7{bottom:412.640000pt;}
.y3d{bottom:418.400000pt;}
.yd6{bottom:420.160133pt;}
.y3f{bottom:430.560000pt;}
.y3c{bottom:433.920000pt;}
.yd5{bottom:435.520000pt;}
.yd4{bottom:443.520000pt;}
.y3a{bottom:449.920000pt;}
.yd3{bottom:459.520000pt;}
.yd2{bottom:472.000000pt;}
.y39{bottom:472.480000pt;}
.yd1{bottom:486.080000pt;}
.y38{bottom:488.000000pt;}
.yd0{bottom:502.400133pt;}
.y34{bottom:504.320000pt;}
.y37{bottom:508.960000pt;}
.ycf{bottom:513.600000pt;}
.y36{bottom:524.480000pt;}
.yce{bottom:525.920000pt;}
.ycd{bottom:542.240133pt;}
.y32{bottom:553.120000pt;}
.ycb{bottom:553.440000pt;}
.yca{bottom:565.760000pt;}
.y31{bottom:571.040000pt;}
.yc9{bottom:572.640133pt;}
.y30{bottom:586.560000pt;}
.yc8{bottom:587.360000pt;}
.yc7{bottom:594.240133pt;}
.y2f{bottom:604.000000pt;}
.yc6{bottom:608.960000pt;}
.yc5{bottom:615.840000pt;}
.y28{bottom:628.000000pt;}
.yc3{bottom:630.560000pt;}
.y2e{bottom:634.566400pt;}
.yc2{bottom:647.678053pt;}
.y2d{bottom:650.080000pt;}
.yc1{bottom:653.277733pt;}
.y1{bottom:669.120000pt;}
.yc0{bottom:673.916293pt;}
.y2b{bottom:681.126400pt;}
.y10{bottom:687.333760pt;}
.ybf{bottom:688.800133pt;}
.y2a{bottom:696.640000pt;}
.ybe{bottom:699.520000pt;}
.yf{bottom:702.375680pt;}
.ybc{bottom:713.600000pt;}
.ye{bottom:717.417600pt;}
.yb9{bottom:727.680000pt;}
.y27{bottom:728.320000pt;}
.ybb{bottom:736.316160pt;}
.yb6{bottom:741.914400pt;}
.yb8{bottom:741.920773pt;}
.yba{bottom:742.080000pt;}
.y19{bottom:749.280000pt;}
.y13{bottom:750.880000pt;}
.yb7{bottom:753.120133pt;}
.yb2{bottom:764.000000pt;}
.y25{bottom:768.486400pt;}
.yb4{bottom:776.160000pt;}
.yb1{bottom:776.161573pt;}
.y24{bottom:784.000000pt;}
.yd{bottom:792.615040pt;}
.yaf{bottom:799.682053pt;}
.yad{bottom:805.281733pt;}
.yc{bottom:807.656960pt;}
.yac{bottom:810.881413pt;}
.yb0{bottom:811.045573pt;}
.y22{bottom:815.084800pt;}
.yae{bottom:822.080773pt;}
.yb{bottom:822.698880pt;}
.y21{bottom:830.598400pt;}
.ya8{bottom:833.280000pt;}
.yaa{bottom:842.240000pt;}
.ya7{bottom:842.240320pt;}
.yab{bottom:842.400133pt;}
.y20{bottom:846.112000pt;}
.ya{bottom:852.782720pt;}
.ya3{bottom:859.040000pt;}
.y1f{bottom:861.625600pt;}
.ya2{bottom:865.919680pt;}
.ya6{bottom:866.080000pt;}
.y9{bottom:867.824640pt;}
.y1e{bottom:877.139200pt;}
.y9f{bottom:880.640000pt;}
.ya0{bottom:887.520000pt;}
.y9e{bottom:887.522720pt;}
.ya1{bottom:887.680000pt;}
.y1d{bottom:892.652800pt;}
.y8{bottom:897.908480pt;}
.y9a{bottom:902.240000pt;}
.y1c{bottom:908.166400pt;}
.y7{bottom:912.950400pt;}
.y9c{bottom:915.840000pt;}
.y9d{bottom:915.840320pt;}
.y99{bottom:921.442720pt;}
.y1b{bottom:923.680000pt;}
.y6{bottom:927.992320pt;}
.y5{bottom:943.034240pt;}
.y95{bottom:948.480000pt;}
.y18{bottom:953.120000pt;}
.y98{bottom:955.360000pt;}
.y94{bottom:955.363973pt;}
.y90{bottom:970.080000pt;}
.y15{bottom:974.080000pt;}
.y8f{bottom:976.959520pt;}
.y93{bottom:976.960133pt;}
.y17{bottom:977.760000pt;}
.y4{bottom:988.160000pt;}
.y89{bottom:991.680000pt;}
.y87{bottom:1003.680000pt;}
.y8c{bottom:1003.680773pt;}
.y14{bottom:1008.000000pt;}
.y86{bottom:1009.279680pt;}
.y8e{bottom:1009.600000pt;}
.y88{bottom:1014.879360pt;}
.y8b{bottom:1014.880133pt;}
.y3{bottom:1018.720000pt;}
.y82{bottom:1034.880000pt;}
.y7f{bottom:1043.521600pt;}
.y81{bottom:1049.120640pt;}
.y7e{bottom:1049.121280pt;}
.y84{bottom:1049.280000pt;}
.y80{bottom:1060.320000pt;}
.y7b{bottom:1071.200000pt;}
.y7d{bottom:1074.880133pt;}
.y7a{bottom:1074.883840pt;}
.y79{bottom:1080.483520pt;}
.y75{bottom:1097.600000pt;}
.y74{bottom:1105.599680pt;}
.y78{bottom:1105.600000pt;}
.y72{bottom:1125.764000pt;}
.y71{bottom:1131.363680pt;}
.y73{bottom:1136.963360pt;}
.y6f{bottom:1149.120000pt;}
.y6c{bottom:1158.081600pt;}
.y6e{bottom:1163.680773pt;}
.y6b{bottom:1163.681280pt;}
.y70{bottom:1163.840000pt;}
.y6d{bottom:1174.880133pt;}
.y68{bottom:1186.080000pt;}
.y6a{bottom:1189.436160pt;}
.y67{bottom:1189.440000pt;}
.y66{bottom:1195.039680pt;}
.y62{bottom:1211.840000pt;}
.y65{bottom:1220.156160pt;}
.y5f{bottom:1220.167813pt;}
.y61{bottom:1225.760773pt;}
.y5e{bottom:1225.767493pt;}
.y64{bottom:1225.920000pt;}
.y60{bottom:1236.960133pt;}
.y5c{bottom:1251.686533pt;}
.y5b{bottom:1257.286213pt;}
.y5d{bottom:1262.885893pt;}
.y5a{bottom:1278.243973pt;}
.y59{bottom:1283.843653pt;}
.y58{bottom:1303.360453pt;}
.y57{bottom:1308.960133pt;}
.y53{bottom:1325.280000pt;}
.y52{bottom:1334.243333pt;}
.y55{bottom:1334.400133pt;}
.y51{bottom:1354.079333pt;}
.y50{bottom:1359.679013pt;}
.y4d{bottom:1376.160000pt;}
.y4a{bottom:1390.080133pt;}
.y4c{bottom:1390.080640pt;}
.y4f{bottom:1390.240133pt;}
.y4b{bottom:1401.280000pt;}
.y49{bottom:1414.400000pt;}
.ye9{bottom:1428.320000pt;}
.yf3{bottom:1432.000000pt;}
.yee{bottom:1432.001813pt;}
.yeb{bottom:1439.200000pt;}
.yed{bottom:1446.239733pt;}
.yf1{bottom:1446.559867pt;}
.yef{bottom:1496.800000pt;}
.h32{height:11.040000pt;}
.h35{height:11.201333pt;}
.h34{height:11.680000pt;}
.h2f{height:12.798667pt;}
.h30{height:12.800000pt;}
.hf{height:15.521333pt;}
.h3f{height:17.120000pt;}
.h2a{height:20.320000pt;}
.h3c{height:20.958667pt;}
.h3a{height:20.960000pt;}
.h39{height:21.600000pt;}
.h3d{height:22.080000pt;}
.h25{height:22.720000pt;}
.h37{height:22.721333pt;}
.h3b{height:23.360000pt;}
.h1e{height:24.480000pt;}
.h27{height:25.120000pt;}
.h9{height:29.600000pt;}
.h18{height:29.907187pt;}
.h33{height:29.907721pt;}
.h17{height:30.563828pt;}
.h2e{height:31.038667pt;}
.h26{height:31.183987pt;}
.h31{height:31.186654pt;}
.h13{height:33.120000pt;}
.h11{height:34.125000pt;}
.h4{height:34.247500pt;}
.h21{height:34.398667pt;}
.h19{height:34.400000pt;}
.h5{height:35.031250pt;}
.h16{height:35.040000pt;}
.h24{height:35.680000pt;}
.h3{height:40.101562pt;}
.h29{height:41.920000pt;}
.ha{height:41.975000pt;}
.h3e{height:43.038667pt;}
.h8{height:43.200000pt;}
.h40{height:44.640000pt;}
.h2b{height:44.958667pt;}
.hd{height:46.560000pt;}
.he{height:47.520000pt;}
.h7{height:48.000000pt;}
.h10{height:48.161333pt;}
.h12{height:49.278667pt;}
.h22{height:51.649268pt;}
.h1f{height:51.666654pt;}
.h1d{height:52.293854pt;}
.h1a{height:52.305908pt;}
.h38{height:52.306654pt;}
.h2d{height:52.307187pt;}
.h36{height:52.307721pt;}
.h28{height:52.946654pt;}
.h1c{height:52.962548pt;}
.h20{height:53.582707pt;}
.h23{height:74.689267pt;}
.h1b{height:74.704628pt;}
.h2c{height:74.705907pt;}
.hc{height:96.000000pt;}
.hb{height:199.520000pt;}
.h2{height:379.840000pt;}
.h6{height:765.600000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.h14{height:1587.200000pt;}
.h15{height:1587.333333pt;}
.w9{width:64.160000pt;}
.we{width:65.440000pt;}
.wc{width:68.960000pt;}
.wb{width:73.920000pt;}
.w8{width:216.480000pt;}
.w7{width:506.560000pt;}
.w2{width:649.278667pt;}
.w4{width:649.920000pt;}
.w3{width:651.198667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.wd{width:900.960000pt;}
.wa{width:975.520000pt;}
.w6{width:1122.000000pt;}
.w5{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x2{left:1.920000pt;}
.x16{left:3.360000pt;}
.x1c{left:4.481600pt;}
.x14{left:6.400000pt;}
.xe{left:11.840000pt;}
.x12{left:13.120000pt;}
.x13{left:15.837760pt;}
.x11{left:16.958880pt;}
.x1{left:68.480000pt;}
.x3{left:70.400000pt;}
.x1b{left:79.680000pt;}
.xd{left:110.080000pt;}
.x1d{left:111.840000pt;}
.xf{left:122.709280pt;}
.xc{left:125.428480pt;}
.x10{left:126.721440pt;}
.xa{left:175.520000pt;}
.x9{left:176.799360pt;}
.x1a{left:278.720000pt;}
.x18{left:392.640000pt;}
.xb{left:394.560000pt;}
.x5{left:400.800000pt;}
.x19{left:404.316800pt;}
.x7{left:462.240000pt;}
.x6{left:463.520000pt;}
.x4{left:464.960000pt;}
.x15{left:969.440000pt;}
.x17{left:977.280000pt;}
.x8{left:1004.640000pt;}
}




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