
    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_5c239d9260b69ba5c14b3c4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.013000;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_f246f7230a1fb3f0eecb6445.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.923000;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_7dd8c8d42e2e2b526d82955e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_73ffa1f31870e6b718b5e1f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_7eeae6a5b7663eb71d0fd841.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_6b03134ef40a105f5ffdf2a5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.965500;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_b187520f6888e5bf53316c23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_088f995d7beaa083e1930a95.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.741500;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_ad4b9dd09b093c1a887f7b64.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923000;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_a89ed19131f30e2fbb98a83e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958000;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);}
.v1{vertical-align:-28.815000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:43.620600px;}
.ls6{letter-spacing:-9.216000px;}
.ls4{letter-spacing:-6.048000px;}
.ls5{letter-spacing:-3.744000px;}
.ls3{letter-spacing:-3.456000px;}
.lsd{letter-spacing:-2.520000px;}
.lsf{letter-spacing:-2.508000px;}
.lse{letter-spacing:-2.223000px;}
.ls1{letter-spacing:-1.680000px;}
.ls12{letter-spacing:-1.653000px;}
.ls11{letter-spacing:-1.197000px;}
.ls17{letter-spacing:-0.462000px;}
.ls13{letter-spacing:-0.456000px;}
.ls14{letter-spacing:-0.078000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.228000px;}
.ls8{letter-spacing:0.285000px;}
.ls1a{letter-spacing:0.330000px;}
.ls10{letter-spacing:0.342000px;}
.ls16{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.399000px;}
.lsb{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.570000px;}
.ls18{letter-spacing:0.594000px;}
.ls0{letter-spacing:0.627000px;}
.ls15{letter-spacing:0.648000px;}
.ls1b{letter-spacing:0.720000px;}
.ls1c{letter-spacing:0.768000px;}
.ls19{letter-spacing:1.998000px;}
.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;}
}
.ws2{word-spacing:-64.800000px;}
.ws1c{word-spacing:-16.368000px;}
.ws1b{word-spacing:-15.822000px;}
.ws17{word-spacing:-14.934000px;}
.ws3{word-spacing:-14.649000px;}
.ws1d{word-spacing:-14.592000px;}
.ws1{word-spacing:-14.580000px;}
.ws1a{word-spacing:-14.421000px;}
.ws19{word-spacing:-13.851000px;}
.ws18{word-spacing:-12.654000px;}
.ws15{word-spacing:-12.141000px;}
.ws16{word-spacing:-11.856000px;}
.ws25{word-spacing:-3.834000px;}
.ws3b{word-spacing:-0.768000px;}
.ws3a{word-spacing:-0.720000px;}
.ws2f{word-spacing:-0.648000px;}
.wsc{word-spacing:-0.627000px;}
.wsb{word-spacing:-0.570000px;}
.ws12{word-spacing:-0.540000px;}
.ws13{word-spacing:-0.480000px;}
.ws10{word-spacing:-0.399000px;}
.ws21{word-spacing:-0.342000px;}
.wse{word-spacing:-0.285000px;}
.ws14{word-spacing:-0.228000px;}
.ws6{word-spacing:-0.060000px;}
.wsd{word-spacing:0.000000px;}
.ws24{word-spacing:0.078000px;}
.ws23{word-spacing:0.456000px;}
.ws32{word-spacing:0.462000px;}
.ws22{word-spacing:1.653000px;}
.ws1e{word-spacing:1.680000px;}
.ws7{word-spacing:3.456000px;}
.ws2b{word-spacing:3.726000px;}
.ws9{word-spacing:3.744000px;}
.ws28{word-spacing:3.780000px;}
.ws3c{word-spacing:3.996000px;}
.ws38{word-spacing:4.428000px;}
.ws31{word-spacing:5.076000px;}
.ws2e{word-spacing:5.508000px;}
.ws8{word-spacing:6.048000px;}
.ws30{word-spacing:6.210000px;}
.ws39{word-spacing:6.858000px;}
.wsf{word-spacing:7.581000px;}
.ws34{word-spacing:8.370000px;}
.ws27{word-spacing:8.478000px;}
.ws2a{word-spacing:10.800000px;}
.ws2c{word-spacing:11.448000px;}
.ws37{word-spacing:14.796000px;}
.ws26{word-spacing:15.012000px;}
.ws20{word-spacing:16.017000px;}
.ws2d{word-spacing:20.196000px;}
.ws35{word-spacing:21.708000px;}
.wsa{word-spacing:22.686000px;}
.ws11{word-spacing:22.971000px;}
.ws36{word-spacing:25.650000px;}
.ws33{word-spacing:27.378000px;}
.ws1f{word-spacing:34.200000px;}
.ws29{word-spacing:37.098000px;}
.ws4{word-spacing:3443.466600px;}
.ws0{word-spacing:4819.299000px;}
.ws5{word-spacing:5284.529400px;}
._3{margin-left:-22.147200px;}
._b{margin-left:-20.643600px;}
._5{margin-left:-14.083200px;}
._6{margin-left:-11.917200px;}
._8{margin-left:-8.956800px;}
._14{margin-left:-7.125300px;}
._0{margin-left:-5.160000px;}
._1{margin-left:-4.110000px;}
._2{margin-left:-2.310000px;}
._c{margin-left:-1.056000px;}
._e{width:1.026000px;}
._4{width:2.073600px;}
._a{width:3.272400px;}
._1d{width:4.788000px;}
._9{width:5.857200px;}
._13{width:6.993900px;}
._2e{width:8.046300px;}
._d{width:9.054000px;}
._7{width:11.030400px;}
._12{width:12.159300px;}
._43{width:15.174000px;}
._11{width:16.383300px;}
._1b{width:18.200100px;}
._15{width:19.818900px;}
._23{width:21.380700px;}
._1a{width:22.869600px;}
._1e{width:24.561300px;}
._30{width:25.686900px;}
._28{width:26.757300px;}
._19{width:27.981300px;}
._18{width:29.349300px;}
._32{width:30.617700px;}
._2c{width:32.200800px;}
._1c{width:33.720300px;}
._40{width:34.771500px;}
._17{width:35.814900px;}
._25{width:37.668600px;}
._20{width:38.685900px;}
._24{width:40.219200px;}
._f{width:42.044700px;}
._10{width:43.646400px;}
._27{width:44.973000px;}
._21{width:48.489900px;}
._22{width:50.150400px;}
._26{width:53.461800px;}
._31{width:54.565800px;}
._2a{width:55.614900px;}
._2b{width:57.195300px;}
._2d{width:58.459200px;}
._41{width:63.560700px;}
._34{width:65.209500px;}
._36{width:67.859700px;}
._29{width:76.750500px;}
._1f{width:78.187200px;}
._35{width:82.137000px;}
._16{width:89.176500px;}
._38{width:91.462200px;}
._37{width:97.481400px;}
._42{width:100.057800px;}
._33{width:104.748900px;}
._2f{width:124.780200px;}
._3e{width:154.215000px;}
._39{width:164.651400px;}
._3b{width:169.461000px;}
._3d{width:236.208000px;}
._3f{width:245.727000px;}
._3c{width:273.627600px;}
._3a{width:427.614000px;}
.fc3{color:rgb(12,46,58);}
.fc2{color:rgb(241,90,41);}
.fc1{color:rgb(134,224,75);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.yab{bottom:24.644850px;}
.yaa{bottom:78.712950px;}
.y3a{bottom:93.403050px;}
.ya4{bottom:93.528600px;}
.y6f{bottom:93.573300px;}
.y13b{bottom:97.609050px;}
.y13a{bottom:108.409050px;}
.y39{bottom:111.443550px;}
.y6e{bottom:111.742050px;}
.ya3{bottom:111.754350px;}
.ye4{bottom:112.570800px;}
.y139{bottom:119.209050px;}
.y6d{bottom:129.910800px;}
.ya2{bottom:129.980100px;}
.y138{bottom:130.009050px;}
.ye3{bottom:130.568550px;}
.y137{bottom:145.060950px;}
.y38{bottom:147.510300px;}
.y6c{bottom:148.079550px;}
.ya1{bottom:148.205850px;}
.ye2{bottom:157.073550px;}
.y136{bottom:159.460950px;}
.y37{bottom:165.550800px;}
.y6b{bottom:166.248300px;}
.ya0{bottom:166.431600px;}
.y135{bottom:173.860950px;}
.ye1{bottom:183.578550px;}
.y36{bottom:183.591300px;}
.y6a{bottom:184.417050px;}
.y9f{bottom:184.657350px;}
.y35{bottom:201.631800px;}
.y69{bottom:202.585800px;}
.y9e{bottom:202.883100px;}
.ye0{bottom:210.083550px;}
.y34{bottom:219.672300px;}
.y68{bottom:220.754550px;}
.y9d{bottom:221.108850px;}
.ydf{bottom:236.588550px;}
.y33{bottom:237.712800px;}
.y67{bottom:238.923300px;}
.y9c{bottom:239.334600px;}
.y32{bottom:255.753300px;}
.y66{bottom:257.092050px;}
.y9b{bottom:257.560350px;}
.y134{bottom:258.616950px;}
.yde{bottom:263.093550px;}
.y31{bottom:273.793800px;}
.y65{bottom:275.260800px;}
.y9a{bottom:275.786100px;}
.ydd{bottom:281.091300px;}
.y30{bottom:291.834300px;}
.y64{bottom:293.429550px;}
.y133{bottom:294.615750px;}
.yd9{bottom:301.515900px;}
.ydc{bottom:307.596300px;}
.y2f{bottom:309.874800px;}
.y99{bottom:312.237600px;}
.y132{bottom:315.068250px;}
.yd8{bottom:319.513650px;}
.ydb{bottom:325.594050px;}
.y2e{bottom:327.915300px;}
.y63{bottom:329.767050px;}
.y98{bottom:330.463350px;}
.y131{bottom:335.520750px;}
.yd7{bottom:337.511400px;}
.y2d{bottom:345.955800px;}
.y62{bottom:347.935800px;}
.y97{bottom:348.689100px;}
.yda{bottom:352.097850px;}
.yd6{bottom:355.509150px;}
.y130{bottom:355.972800px;}
.y61{bottom:366.104550px;}
.y96{bottom:366.914850px;}
.yd5{bottom:373.506900px;}
.y2c{bottom:382.022550px;}
.y60{bottom:384.273300px;}
.y95{bottom:385.140600px;}
.yd4{bottom:391.504650px;}
.y12f{bottom:391.972800px;}
.y2b{bottom:400.063050px;}
.y94{bottom:403.366350px;}
.y13c{bottom:407.347800px;}
.y12e{bottom:408.172800px;}
.yd3{bottom:409.502400px;}
.y5f{bottom:410.949300px;}
.y2a{bottom:418.103550px;}
.y93{bottom:421.592100px;}
.y12d{bottom:424.372800px;}
.y5e{bottom:429.118050px;}
.yd2{bottom:436.007400px;}
.y29{bottom:436.144050px;}
.y92{bottom:439.817850px;}
.y12c{bottom:440.572800px;}
.y5d{bottom:447.286800px;}
.yd1{bottom:454.005150px;}
.y28{bottom:454.184550px;}
.y12b{bottom:456.772800px;}
.y91{bottom:458.043600px;}
.y5c{bottom:465.455550px;}
.yd0{bottom:472.002900px;}
.y27{bottom:472.225050px;}
.y12a{bottom:472.972800px;}
.y90{bottom:476.269350px;}
.y129{bottom:489.172800px;}
.ycf{bottom:490.000650px;}
.y26{bottom:490.265550px;}
.y5b{bottom:492.131550px;}
.y8f{bottom:494.495100px;}
.y128{bottom:505.372800px;}
.yce{bottom:507.998400px;}
.y25{bottom:508.306050px;}
.y5a{bottom:510.300300px;}
.y8e{bottom:512.720850px;}
.y127{bottom:521.572800px;}
.ycd{bottom:525.996150px;}
.y24{bottom:526.346550px;}
.y59{bottom:528.469050px;}
.y8d{bottom:530.946600px;}
.y126{bottom:537.772800px;}
.y23{bottom:544.387050px;}
.y8c{bottom:549.172350px;}
.ycc{bottom:552.501150px;}
.y58{bottom:555.145050px;}
.y125{bottom:558.224850px;}
.y22{bottom:562.427550px;}
.ycb{bottom:570.498900px;}
.y8b{bottom:571.649850px;}
.y57{bottom:573.313800px;}
.y21{bottom:580.468050px;}
.yca{bottom:588.496650px;}
.y8a{bottom:589.874850px;}
.y56{bottom:591.482550px;}
.y124{bottom:594.224850px;}
.y20{bottom:598.508550px;}
.yc9{bottom:606.494400px;}
.y89{bottom:608.099850px;}
.y123{bottom:610.424850px;}
.y55{bottom:618.158550px;}
.yc8{bottom:624.492150px;}
.y122{bottom:626.624850px;}
.y1f{bottom:634.573050px;}
.y88{bottom:634.816650px;}
.y54{bottom:636.327300px;}
.yc7{bottom:642.489900px;}
.y121{bottom:642.824850px;}
.ya9{bottom:651.901500px;}
.y87{bottom:653.042400px;}
.y53{bottom:654.496050px;}
.y1e{bottom:658.012050px;}
.y120{bottom:659.024850px;}
.yc6{bottom:668.994900px;}
.y86{bottom:671.268150px;}
.y52{bottom:672.664800px;}
.y11f{bottom:675.224850px;}
.ya8{bottom:677.101500px;}
.yc5{bottom:686.992650px;}
.y51{bottom:690.833550px;}
.y11e{bottom:691.424850px;}
.y1d{bottom:699.350550px;}
.ya7{bottom:702.301500px;}
.yc4{bottom:704.990400px;}
.y11d{bottom:707.624850px;}
.y85{bottom:707.719650px;}
.y50{bottom:709.002300px;}
.y1c{bottom:717.391050px;}
.yc3{bottom:722.988150px;}
.y11c{bottom:723.824850px;}
.y84{bottom:725.945400px;}
.y4f{bottom:727.171050px;}
.ya6{bottom:727.501500px;}
.y1b{bottom:735.431550px;}
.y11b{bottom:740.024850px;}
.yc2{bottom:740.985900px;}
.y83{bottom:744.171150px;}
.y4e{bottom:745.339800px;}
.ya5{bottom:752.701500px;}
.y1a{bottom:753.472050px;}
.y11a{bottom:756.224850px;}
.yc1{bottom:758.983650px;}
.y82{bottom:762.396900px;}
.y4d{bottom:763.508550px;}
.y19{bottom:771.512550px;}
.y119{bottom:772.424850px;}
.yc0{bottom:776.981400px;}
.y81{bottom:780.622650px;}
.y118{bottom:788.624850px;}
.y18{bottom:789.553050px;}
.ybf{bottom:794.979150px;}
.y80{bottom:798.848400px;}
.y4c{bottom:799.848600px;}
.y105{bottom:801.540900px;}
.yf6{bottom:801.550800px;}
.y117{bottom:804.824850px;}
.y17{bottom:807.593550px;}
.ybe{bottom:812.976900px;}
.y7f{bottom:817.074150px;}
.y104{bottom:819.609900px;}
.yf5{bottom:819.691050px;}
.y116{bottom:821.024850px;}
.y16{bottom:825.634050px;}
.ybd{bottom:830.974650px;}
.y7e{bottom:835.299900px;}
.y5{bottom:835.979850px;}
.y115{bottom:837.224850px;}
.y103{bottom:837.678900px;}
.yf4{bottom:837.831300px;}
.y4b{bottom:841.471050px;}
.y15{bottom:843.674550px;}
.y114{bottom:853.424850px;}
.y7d{bottom:853.525650px;}
.y102{bottom:855.747900px;}
.yf3{bottom:855.971550px;}
.ybc{bottom:857.479650px;}
.y4a{bottom:859.639800px;}
.y14{bottom:861.715050px;}
.y113{bottom:869.624850px;}
.y7c{bottom:871.751400px;}
.y101{bottom:873.816900px;}
.yf2{bottom:874.111800px;}
.ybb{bottom:875.477400px;}
.y49{bottom:877.808550px;}
.y7b{bottom:889.977150px;}
.y112{bottom:890.076750px;}
.y100{bottom:891.885900px;}
.yf1{bottom:892.252050px;}
.yba{bottom:893.475150px;}
.y48{bottom:895.977300px;}
.y13{bottom:897.781800px;}
.y7a{bottom:908.202900px;}
.yff{bottom:909.954900px;}
.yf0{bottom:910.392300px;}
.yb9{bottom:911.472900px;}
.y47{bottom:914.146050px;}
.y12{bottom:915.822300px;}
.y4{bottom:916.979850px;}
.y111{bottom:926.076750px;}
.y79{bottom:926.428650px;}
.yfe{bottom:928.023900px;}
.yef{bottom:928.532550px;}
.yb8{bottom:929.470650px;}
.y46{bottom:932.314800px;}
.y11{bottom:933.862800px;}
.y110{bottom:942.276750px;}
.y78{bottom:944.654400px;}
.yee{bottom:946.672800px;}
.yb7{bottom:947.468400px;}
.y45{bottom:950.483550px;}
.y10{bottom:951.903300px;}
.y10f{bottom:958.476750px;}
.y77{bottom:962.880150px;}
.yfd{bottom:964.176150px;}
.yed{bottom:964.813050px;}
.yb6{bottom:965.466150px;}
.y44{bottom:968.652300px;}
.yf{bottom:969.943800px;}
.y10e{bottom:974.676750px;}
.y76{bottom:981.105900px;}
.yfc{bottom:982.245150px;}
.yec{bottom:982.953300px;}
.yb5{bottom:983.463900px;}
.y43{bottom:986.821050px;}
.ye{bottom:987.984300px;}
.y10d{bottom:990.876750px;}
.y3{bottom:997.979850px;}
.y75{bottom:999.331650px;}
.yfb{bottom:1000.314150px;}
.yeb{bottom:1001.093550px;}
.yb4{bottom:1001.461650px;}
.y42{bottom:1004.989800px;}
.yd{bottom:1006.024800px;}
.y10c{bottom:1007.076750px;}
.y74{bottom:1017.557400px;}
.yfa{bottom:1018.383150px;}
.yea{bottom:1019.233800px;}
.yb3{bottom:1019.459400px;}
.y41{bottom:1023.158550px;}
.y10b{bottom:1023.276750px;}
.yc{bottom:1024.065300px;}
.ye9{bottom:1037.374050px;}
.yb2{bottom:1037.457150px;}
.y10a{bottom:1039.476750px;}
.y40{bottom:1041.327300px;}
.yb{bottom:1042.105800px;}
.y73{bottom:1054.007700px;}
.yf9{bottom:1054.530900px;}
.yb1{bottom:1055.454900px;}
.ye8{bottom:1055.514300px;}
.y109{bottom:1055.676750px;}
.y3f{bottom:1059.496050px;}
.ya{bottom:1060.146300px;}
.y108{bottom:1071.876750px;}
.yb0{bottom:1073.452650px;}
.ye7{bottom:1073.654550px;}
.y3e{bottom:1077.664800px;}
.y9{bottom:1078.186800px;}
.y2{bottom:1078.979850px;}
.y107{bottom:1088.076750px;}
.ye6{bottom:1091.794800px;}
.yaf{bottom:1095.704550px;}
.y3d{bottom:1095.833550px;}
.y72{bottom:1095.889800px;}
.y8{bottom:1096.227300px;}
.y106{bottom:1104.276600px;}
.yae{bottom:1113.704550px;}
.y3c{bottom:1114.002300px;}
.y71{bottom:1114.115550px;}
.y7{bottom:1114.267800px;}
.yf8{bottom:1114.295550px;}
.ye5{bottom:1128.082200px;}
.yad{bottom:1131.704550px;}
.y3b{bottom:1132.171050px;}
.y6{bottom:1132.308300px;}
.y70{bottom:1132.341300px;}
.yf7{bottom:1132.364550px;}
.yac{bottom:1209.027900px;}
.y1{bottom:1209.093450px;}
.h12{height:27.918000px;}
.ha{height:32.571000px;}
.h11{height:37.224000px;}
.h10{height:41.877000px;}
.he{height:44.203500px;}
.h4{height:44.346000px;}
.h6{height:44.580000px;}
.hd{height:44.745000px;}
.h7{height:47.100000px;}
.hf{height:51.810000px;}
.hb{height:52.812000px;}
.h5{height:60.333000px;}
.h8{height:62.412000px;}
.h2{height:64.092000px;}
.h9{height:65.940000px;}
.hc{height:88.200600px;}
.h3{height:219.744000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w1{width:1785.750000px;}
.w0{width:1785.825000px;}
.x0{left:0.000000px;}
.x2{left:42.519600px;}
.x9{left:59.534100px;}
.x8{left:148.818900px;}
.x1{left:318.897600px;}
.xa{left:335.905500px;}
.xb{left:352.920000px;}
.x7{left:431.505750px;}
.xc{left:595.276350px;}
.x3{left:935.433000px;}
.x4{left:1211.811750px;}
.x5{left:1228.825500px;}
.xd{left:1445.669250px;}
.xe{left:1479.689250px;}
.x6{left:1488.189750px;}
@media print{
.v1{vertical-align:-25.613333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:38.773867pt;}
.ls6{letter-spacing:-8.192000pt;}
.ls4{letter-spacing:-5.376000pt;}
.ls5{letter-spacing:-3.328000pt;}
.ls3{letter-spacing:-3.072000pt;}
.lsd{letter-spacing:-2.240000pt;}
.lsf{letter-spacing:-2.229333pt;}
.lse{letter-spacing:-1.976000pt;}
.ls1{letter-spacing:-1.493333pt;}
.ls12{letter-spacing:-1.469333pt;}
.ls11{letter-spacing:-1.064000pt;}
.ls17{letter-spacing:-0.410667pt;}
.ls13{letter-spacing:-0.405333pt;}
.ls14{letter-spacing:-0.069333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.202667pt;}
.ls8{letter-spacing:0.253333pt;}
.ls1a{letter-spacing:0.293333pt;}
.ls10{letter-spacing:0.304000pt;}
.ls16{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.354667pt;}
.lsb{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.506667pt;}
.ls18{letter-spacing:0.528000pt;}
.ls0{letter-spacing:0.557333pt;}
.ls15{letter-spacing:0.576000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls1c{letter-spacing:0.682667pt;}
.ls19{letter-spacing:1.776000pt;}
.ws2{word-spacing:-57.600000pt;}
.ws1c{word-spacing:-14.549333pt;}
.ws1b{word-spacing:-14.064000pt;}
.ws17{word-spacing:-13.274667pt;}
.ws3{word-spacing:-13.021333pt;}
.ws1d{word-spacing:-12.970667pt;}
.ws1{word-spacing:-12.960000pt;}
.ws1a{word-spacing:-12.818667pt;}
.ws19{word-spacing:-12.312000pt;}
.ws18{word-spacing:-11.248000pt;}
.ws15{word-spacing:-10.792000pt;}
.ws16{word-spacing:-10.538667pt;}
.ws25{word-spacing:-3.408000pt;}
.ws3b{word-spacing:-0.682667pt;}
.ws3a{word-spacing:-0.640000pt;}
.ws2f{word-spacing:-0.576000pt;}
.wsc{word-spacing:-0.557333pt;}
.wsb{word-spacing:-0.506667pt;}
.ws12{word-spacing:-0.480000pt;}
.ws13{word-spacing:-0.426667pt;}
.ws10{word-spacing:-0.354667pt;}
.ws21{word-spacing:-0.304000pt;}
.wse{word-spacing:-0.253333pt;}
.ws14{word-spacing:-0.202667pt;}
.ws6{word-spacing:-0.053333pt;}
.wsd{word-spacing:0.000000pt;}
.ws24{word-spacing:0.069333pt;}
.ws23{word-spacing:0.405333pt;}
.ws32{word-spacing:0.410667pt;}
.ws22{word-spacing:1.469333pt;}
.ws1e{word-spacing:1.493333pt;}
.ws7{word-spacing:3.072000pt;}
.ws2b{word-spacing:3.312000pt;}
.ws9{word-spacing:3.328000pt;}
.ws28{word-spacing:3.360000pt;}
.ws3c{word-spacing:3.552000pt;}
.ws38{word-spacing:3.936000pt;}
.ws31{word-spacing:4.512000pt;}
.ws2e{word-spacing:4.896000pt;}
.ws8{word-spacing:5.376000pt;}
.ws30{word-spacing:5.520000pt;}
.ws39{word-spacing:6.096000pt;}
.wsf{word-spacing:6.738667pt;}
.ws34{word-spacing:7.440000pt;}
.ws27{word-spacing:7.536000pt;}
.ws2a{word-spacing:9.600000pt;}
.ws2c{word-spacing:10.176000pt;}
.ws37{word-spacing:13.152000pt;}
.ws26{word-spacing:13.344000pt;}
.ws20{word-spacing:14.237333pt;}
.ws2d{word-spacing:17.952000pt;}
.ws35{word-spacing:19.296000pt;}
.wsa{word-spacing:20.165333pt;}
.ws11{word-spacing:20.418667pt;}
.ws36{word-spacing:22.800000pt;}
.ws33{word-spacing:24.336000pt;}
.ws1f{word-spacing:30.400000pt;}
.ws29{word-spacing:32.976000pt;}
.ws4{word-spacing:3060.859200pt;}
.ws0{word-spacing:4283.821333pt;}
.ws5{word-spacing:4697.359467pt;}
._3{margin-left:-19.686400pt;}
._b{margin-left:-18.349867pt;}
._5{margin-left:-12.518400pt;}
._6{margin-left:-10.593067pt;}
._8{margin-left:-7.961600pt;}
._14{margin-left:-6.333600pt;}
._0{margin-left:-4.586667pt;}
._1{margin-left:-3.653333pt;}
._2{margin-left:-2.053333pt;}
._c{margin-left:-0.938667pt;}
._e{width:0.912000pt;}
._4{width:1.843200pt;}
._a{width:2.908800pt;}
._1d{width:4.256000pt;}
._9{width:5.206400pt;}
._13{width:6.216800pt;}
._2e{width:7.152267pt;}
._d{width:8.048000pt;}
._7{width:9.804800pt;}
._12{width:10.808267pt;}
._43{width:13.488000pt;}
._11{width:14.562933pt;}
._1b{width:16.177867pt;}
._15{width:17.616800pt;}
._23{width:19.005067pt;}
._1a{width:20.328533pt;}
._1e{width:21.832267pt;}
._30{width:22.832800pt;}
._28{width:23.784267pt;}
._19{width:24.872267pt;}
._18{width:26.088267pt;}
._32{width:27.215733pt;}
._2c{width:28.622933pt;}
._1c{width:29.973600pt;}
._40{width:30.908000pt;}
._17{width:31.835467pt;}
._25{width:33.483200pt;}
._20{width:34.387467pt;}
._24{width:35.750400pt;}
._f{width:37.373067pt;}
._10{width:38.796800pt;}
._27{width:39.976000pt;}
._21{width:43.102133pt;}
._22{width:44.578133pt;}
._26{width:47.521600pt;}
._31{width:48.502933pt;}
._2a{width:49.435467pt;}
._2b{width:50.840267pt;}
._2d{width:51.963733pt;}
._41{width:56.498400pt;}
._34{width:57.964000pt;}
._36{width:60.319733pt;}
._29{width:68.222667pt;}
._1f{width:69.499733pt;}
._35{width:73.010667pt;}
._16{width:79.268000pt;}
._38{width:81.299733pt;}
._37{width:86.650133pt;}
._42{width:88.940267pt;}
._33{width:93.110133pt;}
._2f{width:110.915733pt;}
._3e{width:137.080000pt;}
._39{width:146.356800pt;}
._3b{width:150.632000pt;}
._3d{width:209.962667pt;}
._3f{width:218.424000pt;}
._3c{width:243.224533pt;}
._3a{width:380.101333pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.yab{bottom:21.906533pt;}
.yaa{bottom:69.967067pt;}
.y3a{bottom:83.024933pt;}
.ya4{bottom:83.136533pt;}
.y6f{bottom:83.176267pt;}
.y13b{bottom:86.763600pt;}
.y13a{bottom:96.363600pt;}
.y39{bottom:99.060933pt;}
.y6e{bottom:99.326267pt;}
.ya3{bottom:99.337200pt;}
.ye4{bottom:100.062933pt;}
.y139{bottom:105.963600pt;}
.y6d{bottom:115.476267pt;}
.ya2{bottom:115.537867pt;}
.y138{bottom:115.563600pt;}
.ye3{bottom:116.060933pt;}
.y137{bottom:128.943067pt;}
.y38{bottom:131.120267pt;}
.y6c{bottom:131.626267pt;}
.ya1{bottom:131.738533pt;}
.ye2{bottom:139.620933pt;}
.y136{bottom:141.743067pt;}
.y37{bottom:147.156267pt;}
.y6b{bottom:147.776267pt;}
.ya0{bottom:147.939200pt;}
.y135{bottom:154.543067pt;}
.ye1{bottom:163.180933pt;}
.y36{bottom:163.192267pt;}
.y6a{bottom:163.926267pt;}
.y9f{bottom:164.139867pt;}
.y35{bottom:179.228267pt;}
.y69{bottom:180.076267pt;}
.y9e{bottom:180.340533pt;}
.ye0{bottom:186.740933pt;}
.y34{bottom:195.264267pt;}
.y68{bottom:196.226267pt;}
.y9d{bottom:196.541200pt;}
.ydf{bottom:210.300933pt;}
.y33{bottom:211.300267pt;}
.y67{bottom:212.376267pt;}
.y9c{bottom:212.741867pt;}
.y32{bottom:227.336267pt;}
.y66{bottom:228.526267pt;}
.y9b{bottom:228.942533pt;}
.y134{bottom:229.881733pt;}
.yde{bottom:233.860933pt;}
.y31{bottom:243.372267pt;}
.y65{bottom:244.676267pt;}
.y9a{bottom:245.143200pt;}
.ydd{bottom:249.858933pt;}
.y30{bottom:259.408267pt;}
.y64{bottom:260.826267pt;}
.y133{bottom:261.880667pt;}
.yd9{bottom:268.014133pt;}
.ydc{bottom:273.418933pt;}
.y2f{bottom:275.444267pt;}
.y99{bottom:277.544533pt;}
.y132{bottom:280.060667pt;}
.yd8{bottom:284.012133pt;}
.ydb{bottom:289.416933pt;}
.y2e{bottom:291.480267pt;}
.y63{bottom:293.126267pt;}
.y98{bottom:293.745200pt;}
.y131{bottom:298.240667pt;}
.yd7{bottom:300.010133pt;}
.y2d{bottom:307.516267pt;}
.y62{bottom:309.276267pt;}
.y97{bottom:309.945867pt;}
.yda{bottom:312.975867pt;}
.yd6{bottom:316.008133pt;}
.y130{bottom:316.420267pt;}
.y61{bottom:325.426267pt;}
.y96{bottom:326.146533pt;}
.yd5{bottom:332.006133pt;}
.y2c{bottom:339.575600pt;}
.y60{bottom:341.576267pt;}
.y95{bottom:342.347200pt;}
.yd4{bottom:348.004133pt;}
.y12f{bottom:348.420267pt;}
.y2b{bottom:355.611600pt;}
.y94{bottom:358.547867pt;}
.y13c{bottom:362.086933pt;}
.y12e{bottom:362.820267pt;}
.yd3{bottom:364.002133pt;}
.y5f{bottom:365.288267pt;}
.y2a{bottom:371.647600pt;}
.y93{bottom:374.748533pt;}
.y12d{bottom:377.220267pt;}
.y5e{bottom:381.438267pt;}
.yd2{bottom:387.562133pt;}
.y29{bottom:387.683600pt;}
.y92{bottom:390.949200pt;}
.y12c{bottom:391.620267pt;}
.y5d{bottom:397.588267pt;}
.yd1{bottom:403.560133pt;}
.y28{bottom:403.719600pt;}
.y12b{bottom:406.020267pt;}
.y91{bottom:407.149867pt;}
.y5c{bottom:413.738267pt;}
.yd0{bottom:419.558133pt;}
.y27{bottom:419.755600pt;}
.y12a{bottom:420.420267pt;}
.y90{bottom:423.350533pt;}
.y129{bottom:434.820267pt;}
.ycf{bottom:435.556133pt;}
.y26{bottom:435.791600pt;}
.y5b{bottom:437.450267pt;}
.y8f{bottom:439.551200pt;}
.y128{bottom:449.220267pt;}
.yce{bottom:451.554133pt;}
.y25{bottom:451.827600pt;}
.y5a{bottom:453.600267pt;}
.y8e{bottom:455.751867pt;}
.y127{bottom:463.620267pt;}
.ycd{bottom:467.552133pt;}
.y24{bottom:467.863600pt;}
.y59{bottom:469.750267pt;}
.y8d{bottom:471.952533pt;}
.y126{bottom:478.020267pt;}
.y23{bottom:483.899600pt;}
.y8c{bottom:488.153200pt;}
.ycc{bottom:491.112133pt;}
.y58{bottom:493.462267pt;}
.y125{bottom:496.199867pt;}
.y22{bottom:499.935600pt;}
.ycb{bottom:507.110133pt;}
.y8b{bottom:508.133200pt;}
.y57{bottom:509.612267pt;}
.y21{bottom:515.971600pt;}
.yca{bottom:523.108133pt;}
.y8a{bottom:524.333200pt;}
.y56{bottom:525.762267pt;}
.y124{bottom:528.199867pt;}
.y20{bottom:532.007600pt;}
.yc9{bottom:539.106133pt;}
.y89{bottom:540.533200pt;}
.y123{bottom:542.599867pt;}
.y55{bottom:549.474267pt;}
.yc8{bottom:555.104133pt;}
.y122{bottom:556.999867pt;}
.y1f{bottom:564.064933pt;}
.y88{bottom:564.281467pt;}
.y54{bottom:565.624267pt;}
.yc7{bottom:571.102133pt;}
.y121{bottom:571.399867pt;}
.ya9{bottom:579.468000pt;}
.y87{bottom:580.482133pt;}
.y53{bottom:581.774267pt;}
.y1e{bottom:584.899600pt;}
.y120{bottom:585.799867pt;}
.yc6{bottom:594.662133pt;}
.y86{bottom:596.682800pt;}
.y52{bottom:597.924267pt;}
.y11f{bottom:600.199867pt;}
.ya8{bottom:601.868000pt;}
.yc5{bottom:610.660133pt;}
.y51{bottom:614.074267pt;}
.y11e{bottom:614.599867pt;}
.y1d{bottom:621.644933pt;}
.ya7{bottom:624.268000pt;}
.yc4{bottom:626.658133pt;}
.y11d{bottom:628.999867pt;}
.y85{bottom:629.084133pt;}
.y50{bottom:630.224267pt;}
.y1c{bottom:637.680933pt;}
.yc3{bottom:642.656133pt;}
.y11c{bottom:643.399867pt;}
.y84{bottom:645.284800pt;}
.y4f{bottom:646.374267pt;}
.ya6{bottom:646.668000pt;}
.y1b{bottom:653.716933pt;}
.y11b{bottom:657.799867pt;}
.yc2{bottom:658.654133pt;}
.y83{bottom:661.485467pt;}
.y4e{bottom:662.524267pt;}
.ya5{bottom:669.068000pt;}
.y1a{bottom:669.752933pt;}
.y11a{bottom:672.199867pt;}
.yc1{bottom:674.652133pt;}
.y82{bottom:677.686133pt;}
.y4d{bottom:678.674267pt;}
.y19{bottom:685.788933pt;}
.y119{bottom:686.599867pt;}
.yc0{bottom:690.650133pt;}
.y81{bottom:693.886800pt;}
.y118{bottom:700.999867pt;}
.y18{bottom:701.824933pt;}
.ybf{bottom:706.648133pt;}
.y80{bottom:710.087467pt;}
.y4c{bottom:710.976533pt;}
.y105{bottom:712.480800pt;}
.yf6{bottom:712.489600pt;}
.y117{bottom:715.399867pt;}
.y17{bottom:717.860933pt;}
.ybe{bottom:722.646133pt;}
.y7f{bottom:726.288133pt;}
.y104{bottom:728.542133pt;}
.yf5{bottom:728.614267pt;}
.y116{bottom:729.799867pt;}
.y16{bottom:733.896933pt;}
.ybd{bottom:738.644133pt;}
.y7e{bottom:742.488800pt;}
.y5{bottom:743.093200pt;}
.y115{bottom:744.199867pt;}
.y103{bottom:744.603467pt;}
.yf4{bottom:744.738933pt;}
.y4b{bottom:747.974267pt;}
.y15{bottom:749.932933pt;}
.y114{bottom:758.599867pt;}
.y7d{bottom:758.689467pt;}
.y102{bottom:760.664800pt;}
.yf3{bottom:760.863600pt;}
.ybc{bottom:762.204133pt;}
.y4a{bottom:764.124267pt;}
.y14{bottom:765.968933pt;}
.y113{bottom:772.999867pt;}
.y7c{bottom:774.890133pt;}
.y101{bottom:776.726133pt;}
.yf2{bottom:776.988267pt;}
.ybb{bottom:778.202133pt;}
.y49{bottom:780.274267pt;}
.y7b{bottom:791.090800pt;}
.y112{bottom:791.179333pt;}
.y100{bottom:792.787467pt;}
.yf1{bottom:793.112933pt;}
.yba{bottom:794.200133pt;}
.y48{bottom:796.424267pt;}
.y13{bottom:798.028267pt;}
.y7a{bottom:807.291467pt;}
.yff{bottom:808.848800pt;}
.yf0{bottom:809.237600pt;}
.yb9{bottom:810.198133pt;}
.y47{bottom:812.574267pt;}
.y12{bottom:814.064267pt;}
.y4{bottom:815.093200pt;}
.y111{bottom:823.179333pt;}
.y79{bottom:823.492133pt;}
.yfe{bottom:824.910133pt;}
.yef{bottom:825.362267pt;}
.yb8{bottom:826.196133pt;}
.y46{bottom:828.724267pt;}
.y11{bottom:830.100267pt;}
.y110{bottom:837.579333pt;}
.y78{bottom:839.692800pt;}
.yee{bottom:841.486933pt;}
.yb7{bottom:842.194133pt;}
.y45{bottom:844.874267pt;}
.y10{bottom:846.136267pt;}
.y10f{bottom:851.979333pt;}
.y77{bottom:855.893467pt;}
.yfd{bottom:857.045467pt;}
.yed{bottom:857.611600pt;}
.yb6{bottom:858.192133pt;}
.y44{bottom:861.024267pt;}
.yf{bottom:862.172267pt;}
.y10e{bottom:866.379333pt;}
.y76{bottom:872.094133pt;}
.yfc{bottom:873.106800pt;}
.yec{bottom:873.736267pt;}
.yb5{bottom:874.190133pt;}
.y43{bottom:877.174267pt;}
.ye{bottom:878.208267pt;}
.y10d{bottom:880.779333pt;}
.y3{bottom:887.093200pt;}
.y75{bottom:888.294800pt;}
.yfb{bottom:889.168133pt;}
.yeb{bottom:889.860933pt;}
.yb4{bottom:890.188133pt;}
.y42{bottom:893.324267pt;}
.yd{bottom:894.244267pt;}
.y10c{bottom:895.179333pt;}
.y74{bottom:904.495467pt;}
.yfa{bottom:905.229467pt;}
.yea{bottom:905.985600pt;}
.yb3{bottom:906.186133pt;}
.y41{bottom:909.474267pt;}
.y10b{bottom:909.579333pt;}
.yc{bottom:910.280267pt;}
.ye9{bottom:922.110267pt;}
.yb2{bottom:922.184133pt;}
.y10a{bottom:923.979333pt;}
.y40{bottom:925.624267pt;}
.yb{bottom:926.316267pt;}
.y73{bottom:936.895733pt;}
.yf9{bottom:937.360800pt;}
.yb1{bottom:938.182133pt;}
.ye8{bottom:938.234933pt;}
.y109{bottom:938.379333pt;}
.y3f{bottom:941.774267pt;}
.ya{bottom:942.352267pt;}
.y108{bottom:952.779333pt;}
.yb0{bottom:954.180133pt;}
.ye7{bottom:954.359600pt;}
.y3e{bottom:957.924267pt;}
.y9{bottom:958.388267pt;}
.y2{bottom:959.093200pt;}
.y107{bottom:967.179333pt;}
.ye6{bottom:970.484267pt;}
.yaf{bottom:973.959600pt;}
.y3d{bottom:974.074267pt;}
.y72{bottom:974.124267pt;}
.y8{bottom:974.424267pt;}
.y106{bottom:981.579200pt;}
.yae{bottom:989.959600pt;}
.y3c{bottom:990.224267pt;}
.y71{bottom:990.324933pt;}
.y7{bottom:990.460267pt;}
.yf8{bottom:990.484933pt;}
.ye5{bottom:1002.739733pt;}
.yad{bottom:1005.959600pt;}
.y3b{bottom:1006.374267pt;}
.y6{bottom:1006.496267pt;}
.y70{bottom:1006.525600pt;}
.yf7{bottom:1006.546267pt;}
.yac{bottom:1074.691467pt;}
.y1{bottom:1074.749733pt;}
.h12{height:24.816000pt;}
.ha{height:28.952000pt;}
.h11{height:33.088000pt;}
.h10{height:37.224000pt;}
.he{height:39.292000pt;}
.h4{height:39.418667pt;}
.h6{height:39.626667pt;}
.hd{height:39.773333pt;}
.h7{height:41.866667pt;}
.hf{height:46.053333pt;}
.hb{height:46.944000pt;}
.h5{height:53.629333pt;}
.h8{height:55.477333pt;}
.h2{height:56.970667pt;}
.h9{height:58.613333pt;}
.hc{height:78.400533pt;}
.h3{height:195.328000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w1{width:1587.333333pt;}
.w0{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x2{left:37.795200pt;}
.x9{left:52.919200pt;}
.x8{left:132.283467pt;}
.x1{left:283.464533pt;}
.xa{left:298.582667pt;}
.xb{left:313.706667pt;}
.x7{left:383.560667pt;}
.xc{left:529.134533pt;}
.x3{left:831.496000pt;}
.x4{left:1077.166000pt;}
.x5{left:1092.289333pt;}
.xd{left:1285.039333pt;}
.xe{left:1315.279333pt;}
.x6{left:1322.835333pt;}
}




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