
    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_fbc44efaa35ffcca0d2d9261.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_867a1e83a8932b7ec590ac46.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074382;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_b806a1accc50a360ede75485.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.185547;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_debd08bf02d9a29932d7cdc4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.096000;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_16a34bc497c886695749df19.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005859;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_309e591a6a1240e3807fc8af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.927000;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_49f8e18a288fbd3b00722daf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.888000;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_13bc8367ead08927eb466c29.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_2ac761a3bb41895e4dfe5134.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.147461;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_31eebe9c75eea0481e3e0cfb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.188965;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_8977dfb9433d1424399d18a1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.v2{vertical-align:28.800000px;}
.ls12{letter-spacing:-3.240000px;}
.lsb{letter-spacing:-2.700000px;}
.lsd{letter-spacing:-2.400000px;}
.ls10{letter-spacing:-1.800000px;}
.lsf{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-0.960000px;}
.ls8{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.270000px;}
.lse{letter-spacing:0.378000px;}
.ls6{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.600000px;}
.ls3{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.260000px;}
.lsc{letter-spacing:1.620000px;}
.ls2{letter-spacing:16.399200px;}
.ls11{letter-spacing:31.709400px;}
.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;}
}
.ws1{word-spacing:-17.880000px;}
.ws20{word-spacing:-17.280000px;}
.ws6{word-spacing:-16.980000px;}
.ws25{word-spacing:-16.632000px;}
.ws4{word-spacing:-16.092000px;}
.wse{word-spacing:-16.080000px;}
.ws17{word-spacing:-14.418000px;}
.wsf{word-spacing:-14.310000px;}
.ws2{word-spacing:-14.040000px;}
.ws5{word-spacing:-13.932000px;}
.ws3{word-spacing:-12.480000px;}
.ws14{word-spacing:-2.538000px;}
.ws22{word-spacing:-2.343600px;}
.ws24{word-spacing:-2.322000px;}
.ws1f{word-spacing:-1.620000px;}
.ws16{word-spacing:-1.566000px;}
.ws9{word-spacing:-1.080000px;}
.ws1c{word-spacing:-0.378000px;}
.ws7{word-spacing:-0.270000px;}
.wsa{word-spacing:-0.216000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.648000px;}
.ws8{word-spacing:0.720000px;}
.ws21{word-spacing:1.800000px;}
.ws15{word-spacing:1.836000px;}
.wsd{word-spacing:2.916000px;}
.ws26{word-spacing:3.240000px;}
.ws1e{word-spacing:3.996000px;}
.ws12{word-spacing:5.130000px;}
.ws11{word-spacing:6.480000px;}
.ws13{word-spacing:6.534000px;}
.ws10{word-spacing:7.884000px;}
.ws23{word-spacing:9.180000px;}
.wsb{word-spacing:13.284000px;}
.ws27{word-spacing:36.612000px;}
.ws1a{word-spacing:281.379600px;}
.ws19{word-spacing:300.394800px;}
.ws1b{word-spacing:348.216600px;}
.ws18{word-spacing:386.060400px;}
.ws1d{word-spacing:1166.867400px;}
._16{margin-left:-14.426400px;}
._12{margin-left:-13.111200px;}
._34{margin-left:-7.436400px;}
._17{margin-left:-6.025800px;}
._7{margin-left:-4.990800px;}
._c{margin-left:-3.660000px;}
._2{margin-left:-2.257200px;}
._1{margin-left:-1.200000px;}
._0{width:1.200000px;}
._3{width:3.179400px;}
._5{width:4.331400px;}
._a{width:5.988600px;}
._9{width:7.009200px;}
._4{width:8.958600px;}
._6{width:10.654200px;}
._b{width:11.745000px;}
._f{width:12.884400px;}
._14{width:15.300000px;}
._8{width:16.322400px;}
._e{width:17.636400px;}
._13{width:19.094400px;}
._11{width:20.147400px;}
._18{width:21.799800px;}
._15{width:23.997600px;}
._35{width:25.120800px;}
._26{width:28.809000px;}
._10{width:29.959200px;}
._33{width:31.072800px;}
._32{width:32.339400px;}
._31{width:35.089200px;}
._30{width:36.838800px;}
._2d{width:38.826000px;}
._2f{width:43.664400px;}
._2e{width:45.446400px;}
._24{width:63.306000px;}
._22{width:67.234200px;}
._19{width:106.394400px;}
._1f{width:111.141600px;}
._28{width:112.784400px;}
._23{width:119.370000px;}
._20{width:128.003400px;}
._1b{width:130.147800px;}
._2b{width:145.692000px;}
._1d{width:153.952800px;}
._25{width:160.867200px;}
._1c{width:164.451600px;}
._1e{width:187.753200px;}
._2a{width:246.298800px;}
._29{width:250.882800px;}
._2c{width:259.948800px;}
._21{width:313.921800px;}
._1a{width:319.328400px;}
._27{width:353.544000px;}
._d{width:1903.860000px;}
.fc5{color:rgb(48,88,159);}
.fc3{color:rgb(58,60,141);}
.fc2{color:rgb(5,6,6);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.482000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y61{bottom:56.737950px;}
.y5{bottom:66.525004px;}
.y3b{bottom:89.114850px;}
.y4{bottom:97.125005px;}
.y3a{bottom:113.067600px;}
.ya8{bottom:115.795200px;}
.y8e{bottom:115.795350px;}
.y39{bottom:128.067600px;}
.ya7{bottom:133.795200px;}
.y8d{bottom:133.795350px;}
.y10a{bottom:136.165950px;}
.y21{bottom:139.264499px;}
.ya6{bottom:151.795200px;}
.y8c{bottom:151.795350px;}
.y109{bottom:153.865950px;}
.y38{bottom:169.795200px;}
.y8b{bottom:169.795350px;}
.y108{bottom:171.565950px;}
.y8f{bottom:175.039350px;}
.y37{bottom:187.795200px;}
.y8a{bottom:187.795350px;}
.y107{bottom:189.265800px;}
.ycc{bottom:193.039350px;}
.y18{bottom:196.933500px;}
.y36{bottom:205.795200px;}
.y89{bottom:205.795350px;}
.y106{bottom:206.965950px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.ya5{bottom:223.795200px;}
.y88{bottom:223.795350px;}
.y105{bottom:224.665950px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.ya4{bottom:241.795200px;}
.y87{bottom:241.795350px;}
.y104{bottom:242.365950px;}
.y5f{bottom:259.795200px;}
.y2e{bottom:259.795350px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y103{bottom:260.065950px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y102{bottom:277.765800px;}
.y5e{bottom:277.795200px;}
.y2d{bottom:277.795350px;}
.ycd{bottom:281.365950px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y101{bottom:295.465950px;}
.y5d{bottom:295.795200px;}
.y2c{bottom:295.795350px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y100{bottom:313.165950px;}
.y5c{bottom:313.795200px;}
.y2b{bottom:313.795350px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yff{bottom:330.865950px;}
.y5b{bottom:331.795200px;}
.y2a{bottom:331.795350px;}
.yd1{bottom:337.039350px;}
.yf{bottom:348.133500px;}
.yfe{bottom:348.565950px;}
.y5a{bottom:349.795200px;}
.y29{bottom:349.795350px;}
.yfd{bottom:366.265800px;}
.y59{bottom:367.795200px;}
.y28{bottom:367.795350px;}
.yfc{bottom:383.965950px;}
.y58{bottom:385.795200px;}
.y27{bottom:385.795350px;}
.ye{bottom:386.785499px;}
.yd0{bottom:391.039500px;}
.yfb{bottom:401.665950px;}
.y57{bottom:403.795200px;}
.y26{bottom:403.795350px;}
.yd{bottom:408.044999px;}
.yfa{bottom:419.365950px;}
.y56{bottom:421.795200px;}
.y25{bottom:421.795350px;}
.yf9{bottom:437.065950px;}
.y55{bottom:439.795200px;}
.y24{bottom:439.795350px;}
.ycf{bottom:445.039500px;}
.yf8{bottom:454.765950px;}
.y54{bottom:457.795200px;}
.y23{bottom:457.795350px;}
.yf7{bottom:472.465950px;}
.ya3{bottom:475.795200px;}
.y86{bottom:475.795350px;}
.y22{bottom:479.365800px;}
.yf6{bottom:490.165950px;}
.ya2{bottom:493.795200px;}
.y85{bottom:493.795350px;}
.yc{bottom:502.864502px;}
.yf5{bottom:507.865950px;}
.y4e{bottom:511.795200px;}
.y84{bottom:511.795350px;}
.yb{bottom:520.864502px;}
.yf4{bottom:525.565950px;}
.y4d{bottom:529.795200px;}
.y83{bottom:529.795350px;}
.yce{bottom:535.039500px;}
.ya{bottom:538.864499px;}
.yf3{bottom:543.265950px;}
.ya1{bottom:547.795200px;}
.y82{bottom:547.795350px;}
.y9{bottom:556.864499px;}
.yf2{bottom:560.965950px;}
.y4c{bottom:565.795200px;}
.y81{bottom:565.795350px;}
.yf1{bottom:578.665950px;}
.y4b{bottom:583.795200px;}
.y80{bottom:583.795350px;}
.yf0{bottom:596.365950px;}
.y4a{bottom:601.795200px;}
.y7f{bottom:601.795350px;}
.yef{bottom:614.065950px;}
.y49{bottom:619.795200px;}
.y7e{bottom:619.795350px;}
.yee{bottom:631.765950px;}
.y48{bottom:637.795200px;}
.y7d{bottom:637.795350px;}
.y8{bottom:645.510000px;}
.yed{bottom:649.465950px;}
.y47{bottom:655.795200px;}
.y7c{bottom:655.795350px;}
.yca{bottom:662.614650px;}
.y7{bottom:666.771000px;}
.yec{bottom:667.165950px;}
.yc9{bottom:669.814650px;}
.y46{bottom:673.795200px;}
.y7b{bottom:673.795350px;}
.yeb{bottom:684.865950px;}
.y112{bottom:690.709650px;}
.y45{bottom:691.795200px;}
.y7a{bottom:691.795350px;}
.yc8{bottom:694.084950px;}
.yea{bottom:702.565950px;}
.y44{bottom:709.795200px;}
.y79{bottom:709.795350px;}
.yc7{bottom:711.155400px;}
.y111{bottom:711.161550px;}
.ye9{bottom:720.265950px;}
.y6{bottom:726.298500px;}
.y43{bottom:727.795200px;}
.y78{bottom:727.795350px;}
.yc6{bottom:728.225700px;}
.y110{bottom:731.613600px;}
.ye8{bottom:737.965950px;}
.yc5{bottom:745.296000px;}
.y42{bottom:745.795200px;}
.y77{bottom:745.795350px;}
.y10f{bottom:752.065500px;}
.yc4{bottom:752.496150px;}
.y3{bottom:752.599495px;}
.ye7{bottom:755.665950px;}
.y41{bottom:763.795200px;}
.y76{bottom:763.795350px;}
.y10e{bottom:772.517550px;}
.ye6{bottom:773.365950px;}
.yc3{bottom:776.766300px;}
.y40{bottom:781.795200px;}
.y75{bottom:781.795350px;}
.ya0{bottom:787.039350px;}
.ye5{bottom:791.065950px;}
.yc2{bottom:793.836750px;}
.y10d{bottom:797.221500px;}
.y3f{bottom:799.795200px;}
.y74{bottom:799.795350px;}
.yc1{bottom:801.036750px;}
.ye4{bottom:808.765800px;}
.y3e{bottom:817.795200px;}
.y73{bottom:817.795350px;}
.y10c{bottom:818.821350px;}
.ye3{bottom:826.465950px;}
.yc0{bottom:833.048250px;}
.y3d{bottom:835.795200px;}
.y72{bottom:835.795350px;}
.y10b{bottom:840.421350px;}
.ye2{bottom:844.165950px;}
.y3c{bottom:853.795200px;}
.y71{bottom:853.795350px;}
.ybe{bottom:860.025300px;}
.ycb{bottom:861.121800px;}
.ye1{bottom:861.865950px;}
.ybb{bottom:867.225150px;}
.y9f{bottom:871.795200px;}
.y70{bottom:871.795350px;}
.ybd{bottom:874.425300px;}
.y2{bottom:879.369000px;}
.ye0{bottom:879.565950px;}
.yba{bottom:881.625300px;}
.y35{bottom:888.069450px;}
.ybc{bottom:888.825300px;}
.y9e{bottom:889.795200px;}
.y6f{bottom:889.795350px;}
.ydf{bottom:897.265800px;}
.y34{bottom:904.269450px;}
.yb9{bottom:905.895600px;}
.y9d{bottom:907.795200px;}
.y6e{bottom:907.795350px;}
.yde{bottom:914.965950px;}
.yb8{bottom:920.295600px;}
.y33{bottom:920.469300px;}
.y9c{bottom:925.795200px;}
.y6d{bottom:925.795350px;}
.ydd{bottom:932.665950px;}
.y32{bottom:936.669300px;}
.yb7{bottom:937.365900px;}
.y9b{bottom:943.795200px;}
.y6c{bottom:943.795350px;}
.yb6{bottom:944.565900px;}
.ydc{bottom:950.365950px;}
.y31{bottom:957.121350px;}
.y9a{bottom:961.795200px;}
.y6b{bottom:961.795350px;}
.y1{bottom:966.726000px;}
.ydb{bottom:968.065950px;}
.yb5{bottom:968.836350px;}
.yb2{bottom:976.036350px;}
.y99{bottom:979.795200px;}
.y6a{bottom:979.795350px;}
.y30{bottom:980.821350px;}
.yb4{bottom:983.236350px;}
.yda{bottom:985.765800px;}
.yb1{bottom:990.436350px;}
.yb3{bottom:997.636350px;}
.y98{bottom:997.795200px;}
.y69{bottom:997.795350px;}
.y2f{bottom:1002.421350px;}
.yd9{bottom:1003.465950px;}
.yb0{bottom:1014.706650px;}
.y97{bottom:1015.795200px;}
.y68{bottom:1015.795350px;}
.yd8{bottom:1021.165950px;}
.yaf{bottom:1029.106650px;}
.y96{bottom:1033.795200px;}
.y67{bottom:1033.795350px;}
.yd7{bottom:1038.865950px;}
.yae{bottom:1046.176950px;}
.y95{bottom:1051.795200px;}
.y53{bottom:1051.795350px;}
.yac{bottom:1053.376950px;}
.yd6{bottom:1056.565950px;}
.yab{bottom:1060.576950px;}
.y94{bottom:1069.795200px;}
.y66{bottom:1069.795350px;}
.yd5{bottom:1074.265800px;}
.yad{bottom:1074.976950px;}
.y93{bottom:1087.795200px;}
.y65{bottom:1087.795350px;}
.y52{bottom:1088.415000px;}
.yd4{bottom:1091.965950px;}
.yaa{bottom:1094.218350px;}
.ya9{bottom:1101.418350px;}
.y92{bottom:1105.795200px;}
.y64{bottom:1105.795350px;}
.y51{bottom:1107.915000px;}
.yd3{bottom:1109.665950px;}
.y91{bottom:1123.795200px;}
.y63{bottom:1123.795350px;}
.yd2{bottom:1127.365950px;}
.y50{bottom:1127.415000px;}
.ybf{bottom:1131.121800px;}
.y4f{bottom:1154.052750px;}
.y90{bottom:1175.269800px;}
.y62{bottom:1176.367650px;}
.y60{bottom:1186.184700px;}
.h7{height:32.130000px;}
.h12{height:34.560000px;}
.hf{height:36.726562px;}
.h13{height:38.880000px;}
.hd{height:39.408000px;}
.h14{height:41.317383px;}
.h11{height:43.200000px;}
.h15{height:43.260000px;}
.h1c{height:44.334000px;}
.he{height:45.351562px;}
.h1b{height:45.539062px;}
.hc{height:45.843570px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h16{height:48.963867px;}
.h9{height:49.260000px;}
.ha{height:51.020508px;}
.h2{height:55.080000px;}
.hb{height:59.112000px;}
.h18{height:74.151563px;}
.h1a{height:74.152162px;}
.h17{height:74.339063px;}
.h5{height:78.030000px;}
.h19{height:102.951562px;}
.h10{height:111.510000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:76.346850px;}
.x5{left:85.039350px;}
.x14{left:92.996250px;}
.x25{left:94.332150px;}
.x19{left:98.773500px;}
.x1{left:102.045000px;}
.x24{left:105.016800px;}
.x2{left:106.297500px;}
.x20{left:108.365400px;}
.xe{left:110.551200px;}
.x32{left:114.803250px;}
.x2b{left:117.237000px;}
.x1a{left:118.238400px;}
.x30{left:121.230150px;}
.x2d{left:124.013250px;}
.xf{left:131.701350px;}
.x2f{left:134.800350px;}
.x1c{left:142.352700px;}
.x23{left:152.887800px;}
.x12{left:156.087000px;}
.x8{left:201.889500px;}
.x4{left:203.484001px;}
.x6{left:237.742950px;}
.x7{left:241.651200px;}
.x13{left:285.658050px;}
.x2a{left:310.151550px;}
.x21{left:334.718550px;}
.x15{left:336.195150px;}
.x3{left:454.959000px;}
.x9{left:457.086600px;}
.x2e{left:460.173750px;}
.x26{left:462.692850px;}
.x1d{left:470.799300px;}
.xa{left:482.598450px;}
.x31{left:498.289050px;}
.x2c{left:505.247100px;}
.x27{left:512.031750px;}
.xc{left:571.609800px;}
.x1f{left:631.817550px;}
.x17{left:638.930850px;}
.x1e{left:639.976800px;}
.x1b{left:643.252050px;}
.x16{left:649.483500px;}
.x29{left:651.751200px;}
.x22{left:655.682850px;}
.x28{left:660.256050px;}
.x18{left:690.314550px;}
.xb{left:743.506650px;}
.x11{left:798.829050px;}
.xd{left:800.389200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.v2{vertical-align:25.600000pt;}
.ls12{letter-spacing:-2.880000pt;}
.lsb{letter-spacing:-2.400000pt;}
.lsd{letter-spacing:-2.133333pt;}
.ls10{letter-spacing:-1.600000pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.853333pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.240000pt;}
.lse{letter-spacing:0.336000pt;}
.ls6{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.120000pt;}
.lsc{letter-spacing:1.440000pt;}
.ls2{letter-spacing:14.577067pt;}
.ls11{letter-spacing:28.186133pt;}
.ws1{word-spacing:-15.893333pt;}
.ws20{word-spacing:-15.360000pt;}
.ws6{word-spacing:-15.093333pt;}
.ws25{word-spacing:-14.784000pt;}
.ws4{word-spacing:-14.304000pt;}
.wse{word-spacing:-14.293333pt;}
.ws17{word-spacing:-12.816000pt;}
.wsf{word-spacing:-12.720000pt;}
.ws2{word-spacing:-12.480000pt;}
.ws5{word-spacing:-12.384000pt;}
.ws3{word-spacing:-11.093333pt;}
.ws14{word-spacing:-2.256000pt;}
.ws22{word-spacing:-2.083200pt;}
.ws24{word-spacing:-2.064000pt;}
.ws1f{word-spacing:-1.440000pt;}
.ws16{word-spacing:-1.392000pt;}
.ws9{word-spacing:-0.960000pt;}
.ws1c{word-spacing:-0.336000pt;}
.ws7{word-spacing:-0.240000pt;}
.wsa{word-spacing:-0.192000pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.576000pt;}
.ws8{word-spacing:0.640000pt;}
.ws21{word-spacing:1.600000pt;}
.ws15{word-spacing:1.632000pt;}
.wsd{word-spacing:2.592000pt;}
.ws26{word-spacing:2.880000pt;}
.ws1e{word-spacing:3.552000pt;}
.ws12{word-spacing:4.560000pt;}
.ws11{word-spacing:5.760000pt;}
.ws13{word-spacing:5.808000pt;}
.ws10{word-spacing:7.008000pt;}
.ws23{word-spacing:8.160000pt;}
.wsb{word-spacing:11.808000pt;}
.ws27{word-spacing:32.544000pt;}
.ws1a{word-spacing:250.115200pt;}
.ws19{word-spacing:267.017600pt;}
.ws1b{word-spacing:309.525867pt;}
.ws18{word-spacing:343.164800pt;}
.ws1d{word-spacing:1037.215467pt;}
._16{margin-left:-12.823467pt;}
._12{margin-left:-11.654400pt;}
._34{margin-left:-6.610133pt;}
._17{margin-left:-5.356267pt;}
._7{margin-left:-4.436267pt;}
._c{margin-left:-3.253333pt;}
._2{margin-left:-2.006400pt;}
._1{margin-left:-1.066667pt;}
._0{width:1.066667pt;}
._3{width:2.826133pt;}
._5{width:3.850133pt;}
._a{width:5.323200pt;}
._9{width:6.230400pt;}
._4{width:7.963200pt;}
._6{width:9.470400pt;}
._b{width:10.440000pt;}
._f{width:11.452800pt;}
._14{width:13.600000pt;}
._8{width:14.508800pt;}
._e{width:15.676800pt;}
._13{width:16.972800pt;}
._11{width:17.908800pt;}
._18{width:19.377600pt;}
._15{width:21.331200pt;}
._35{width:22.329600pt;}
._26{width:25.608000pt;}
._10{width:26.630400pt;}
._33{width:27.620267pt;}
._32{width:28.746133pt;}
._31{width:31.190400pt;}
._30{width:32.745600pt;}
._2d{width:34.512000pt;}
._2f{width:38.812800pt;}
._2e{width:40.396800pt;}
._24{width:56.272000pt;}
._22{width:59.763733pt;}
._19{width:94.572800pt;}
._1f{width:98.792533pt;}
._28{width:100.252800pt;}
._23{width:106.106667pt;}
._20{width:113.780800pt;}
._1b{width:115.686933pt;}
._2b{width:129.504000pt;}
._1d{width:136.846933pt;}
._25{width:142.993067pt;}
._1c{width:146.179200pt;}
._1e{width:166.891733pt;}
._2a{width:218.932267pt;}
._29{width:223.006933pt;}
._2c{width:231.065600pt;}
._21{width:279.041600pt;}
._1a{width:283.847467pt;}
._27{width:314.261333pt;}
._d{width:1692.320000pt;}
.fs6{font-size:27.984000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:50.433733pt;}
.y5{bottom:59.133337pt;}
.y3b{bottom:79.213200pt;}
.y4{bottom:86.333337pt;}
.y3a{bottom:100.504533pt;}
.ya8{bottom:102.929067pt;}
.y8e{bottom:102.929200pt;}
.y39{bottom:113.837867pt;}
.ya7{bottom:118.929067pt;}
.y8d{bottom:118.929200pt;}
.y10a{bottom:121.036400pt;}
.y21{bottom:123.790666pt;}
.ya6{bottom:134.929067pt;}
.y8c{bottom:134.929200pt;}
.y109{bottom:136.769733pt;}
.y38{bottom:150.929067pt;}
.y8b{bottom:150.929200pt;}
.y108{bottom:152.503067pt;}
.y8f{bottom:155.590533pt;}
.y37{bottom:166.929067pt;}
.y8a{bottom:166.929200pt;}
.y107{bottom:168.236267pt;}
.ycc{bottom:171.590533pt;}
.y18{bottom:175.052000pt;}
.y36{bottom:182.929067pt;}
.y89{bottom:182.929200pt;}
.y106{bottom:183.969733pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.ya5{bottom:198.929067pt;}
.y88{bottom:198.929200pt;}
.y105{bottom:199.703067pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.ya4{bottom:214.929067pt;}
.y87{bottom:214.929200pt;}
.y104{bottom:215.436400pt;}
.y5f{bottom:230.929067pt;}
.y2e{bottom:230.929200pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y103{bottom:231.169733pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y102{bottom:246.902933pt;}
.y5e{bottom:246.929067pt;}
.y2d{bottom:246.929200pt;}
.ycd{bottom:250.103067pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y101{bottom:262.636400pt;}
.y5d{bottom:262.929067pt;}
.y2c{bottom:262.929200pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y100{bottom:278.369733pt;}
.y5c{bottom:278.929067pt;}
.y2b{bottom:278.929200pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yff{bottom:294.103067pt;}
.y5b{bottom:294.929067pt;}
.y2a{bottom:294.929200pt;}
.yd1{bottom:299.590533pt;}
.yf{bottom:309.452000pt;}
.yfe{bottom:309.836400pt;}
.y5a{bottom:310.929067pt;}
.y29{bottom:310.929200pt;}
.yfd{bottom:325.569600pt;}
.y59{bottom:326.929067pt;}
.y28{bottom:326.929200pt;}
.yfc{bottom:341.303067pt;}
.y58{bottom:342.929067pt;}
.y27{bottom:342.929200pt;}
.ye{bottom:343.809333pt;}
.yd0{bottom:347.590667pt;}
.yfb{bottom:357.036400pt;}
.y57{bottom:358.929067pt;}
.y26{bottom:358.929200pt;}
.yd{bottom:362.706666pt;}
.yfa{bottom:372.769733pt;}
.y56{bottom:374.929067pt;}
.y25{bottom:374.929200pt;}
.yf9{bottom:388.503067pt;}
.y55{bottom:390.929067pt;}
.y24{bottom:390.929200pt;}
.ycf{bottom:395.590667pt;}
.yf8{bottom:404.236400pt;}
.y54{bottom:406.929067pt;}
.y23{bottom:406.929200pt;}
.yf7{bottom:419.969733pt;}
.ya3{bottom:422.929067pt;}
.y86{bottom:422.929200pt;}
.y22{bottom:426.102933pt;}
.yf6{bottom:435.703067pt;}
.ya2{bottom:438.929067pt;}
.y85{bottom:438.929200pt;}
.yc{bottom:446.990669pt;}
.yf5{bottom:451.436400pt;}
.y4e{bottom:454.929067pt;}
.y84{bottom:454.929200pt;}
.yb{bottom:462.990669pt;}
.yf4{bottom:467.169733pt;}
.y4d{bottom:470.929067pt;}
.y83{bottom:470.929200pt;}
.yce{bottom:475.590667pt;}
.ya{bottom:478.990666pt;}
.yf3{bottom:482.903067pt;}
.ya1{bottom:486.929067pt;}
.y82{bottom:486.929200pt;}
.y9{bottom:494.990666pt;}
.yf2{bottom:498.636400pt;}
.y4c{bottom:502.929067pt;}
.y81{bottom:502.929200pt;}
.yf1{bottom:514.369733pt;}
.y4b{bottom:518.929067pt;}
.y80{bottom:518.929200pt;}
.yf0{bottom:530.103067pt;}
.y4a{bottom:534.929067pt;}
.y7f{bottom:534.929200pt;}
.yef{bottom:545.836400pt;}
.y49{bottom:550.929067pt;}
.y7e{bottom:550.929200pt;}
.yee{bottom:561.569733pt;}
.y48{bottom:566.929067pt;}
.y7d{bottom:566.929200pt;}
.y8{bottom:573.786667pt;}
.yed{bottom:577.303067pt;}
.y47{bottom:582.929067pt;}
.y7c{bottom:582.929200pt;}
.yca{bottom:588.990800pt;}
.y7{bottom:592.685334pt;}
.yec{bottom:593.036400pt;}
.yc9{bottom:595.390800pt;}
.y46{bottom:598.929067pt;}
.y7b{bottom:598.929200pt;}
.yeb{bottom:608.769733pt;}
.y112{bottom:613.964133pt;}
.y45{bottom:614.929067pt;}
.y7a{bottom:614.929200pt;}
.yc8{bottom:616.964400pt;}
.yea{bottom:624.503067pt;}
.y44{bottom:630.929067pt;}
.y79{bottom:630.929200pt;}
.yc7{bottom:632.138133pt;}
.y111{bottom:632.143600pt;}
.ye9{bottom:640.236400pt;}
.y6{bottom:645.598667pt;}
.y43{bottom:646.929067pt;}
.y78{bottom:646.929200pt;}
.yc6{bottom:647.311733pt;}
.y110{bottom:650.323200pt;}
.ye8{bottom:655.969733pt;}
.yc5{bottom:662.485333pt;}
.y42{bottom:662.929067pt;}
.y77{bottom:662.929200pt;}
.y10f{bottom:668.502667pt;}
.yc4{bottom:668.885467pt;}
.y3{bottom:668.977329pt;}
.ye7{bottom:671.703067pt;}
.y41{bottom:678.929067pt;}
.y76{bottom:678.929200pt;}
.y10e{bottom:686.682267pt;}
.ye6{bottom:687.436400pt;}
.yc3{bottom:690.458933pt;}
.y40{bottom:694.929067pt;}
.y75{bottom:694.929200pt;}
.ya0{bottom:699.590533pt;}
.ye5{bottom:703.169733pt;}
.yc2{bottom:705.632667pt;}
.y10d{bottom:708.641333pt;}
.y3f{bottom:710.929067pt;}
.y74{bottom:710.929200pt;}
.yc1{bottom:712.032667pt;}
.ye4{bottom:718.902933pt;}
.y3e{bottom:726.929067pt;}
.y73{bottom:726.929200pt;}
.y10c{bottom:727.841200pt;}
.ye3{bottom:734.636400pt;}
.yc0{bottom:740.487333pt;}
.y3d{bottom:742.929067pt;}
.y72{bottom:742.929200pt;}
.y10b{bottom:747.041200pt;}
.ye2{bottom:750.369733pt;}
.y3c{bottom:758.929067pt;}
.y71{bottom:758.929200pt;}
.ybe{bottom:764.466933pt;}
.ycb{bottom:765.441600pt;}
.ye1{bottom:766.103067pt;}
.ybb{bottom:770.866800pt;}
.y9f{bottom:774.929067pt;}
.y70{bottom:774.929200pt;}
.ybd{bottom:777.266933pt;}
.y2{bottom:781.661334pt;}
.ye0{bottom:781.836400pt;}
.yba{bottom:783.666933pt;}
.y35{bottom:789.395067pt;}
.ybc{bottom:790.066933pt;}
.y9e{bottom:790.929067pt;}
.y6f{bottom:790.929200pt;}
.ydf{bottom:797.569600pt;}
.y34{bottom:803.795067pt;}
.yb9{bottom:805.240533pt;}
.y9d{bottom:806.929067pt;}
.y6e{bottom:806.929200pt;}
.yde{bottom:813.303067pt;}
.yb8{bottom:818.040533pt;}
.y33{bottom:818.194933pt;}
.y9c{bottom:822.929067pt;}
.y6d{bottom:822.929200pt;}
.ydd{bottom:829.036400pt;}
.y32{bottom:832.594933pt;}
.yb7{bottom:833.214133pt;}
.y9b{bottom:838.929067pt;}
.y6c{bottom:838.929200pt;}
.yb6{bottom:839.614133pt;}
.ydc{bottom:844.769733pt;}
.y31{bottom:850.774533pt;}
.y9a{bottom:854.929067pt;}
.y6b{bottom:854.929200pt;}
.y1{bottom:859.312000pt;}
.ydb{bottom:860.503067pt;}
.yb5{bottom:861.187867pt;}
.yb2{bottom:867.587867pt;}
.y99{bottom:870.929067pt;}
.y6a{bottom:870.929200pt;}
.y30{bottom:871.841200pt;}
.yb4{bottom:873.987867pt;}
.yda{bottom:876.236267pt;}
.yb1{bottom:880.387867pt;}
.yb3{bottom:886.787867pt;}
.y98{bottom:886.929067pt;}
.y69{bottom:886.929200pt;}
.y2f{bottom:891.041200pt;}
.yd9{bottom:891.969733pt;}
.yb0{bottom:901.961467pt;}
.y97{bottom:902.929067pt;}
.y68{bottom:902.929200pt;}
.yd8{bottom:907.703067pt;}
.yaf{bottom:914.761467pt;}
.y96{bottom:918.929067pt;}
.y67{bottom:918.929200pt;}
.yd7{bottom:923.436400pt;}
.yae{bottom:929.935067pt;}
.y95{bottom:934.929067pt;}
.y53{bottom:934.929200pt;}
.yac{bottom:936.335067pt;}
.yd6{bottom:939.169733pt;}
.yab{bottom:942.735067pt;}
.y94{bottom:950.929067pt;}
.y66{bottom:950.929200pt;}
.yd5{bottom:954.902933pt;}
.yad{bottom:955.535067pt;}
.y93{bottom:966.929067pt;}
.y65{bottom:966.929200pt;}
.y52{bottom:967.480000pt;}
.yd4{bottom:970.636400pt;}
.yaa{bottom:972.638533pt;}
.ya9{bottom:979.038533pt;}
.y92{bottom:982.929067pt;}
.y64{bottom:982.929200pt;}
.y51{bottom:984.813333pt;}
.yd3{bottom:986.369733pt;}
.y91{bottom:998.929067pt;}
.y63{bottom:998.929200pt;}
.yd2{bottom:1002.103067pt;}
.y50{bottom:1002.146667pt;}
.ybf{bottom:1005.441600pt;}
.y4f{bottom:1025.824667pt;}
.y90{bottom:1044.684267pt;}
.y62{bottom:1045.660133pt;}
.y60{bottom:1054.386400pt;}
.h7{height:28.560000pt;}
.h12{height:30.720000pt;}
.hf{height:32.645833pt;}
.h13{height:34.560000pt;}
.hd{height:35.029333pt;}
.h14{height:36.726562pt;}
.h11{height:38.400000pt;}
.h15{height:38.453333pt;}
.h1c{height:39.408000pt;}
.he{height:40.312500pt;}
.h1b{height:40.479167pt;}
.hc{height:40.749840pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h16{height:43.523438pt;}
.h9{height:43.786667pt;}
.ha{height:45.351562pt;}
.h2{height:48.960000pt;}
.hb{height:52.544000pt;}
.h18{height:65.912500pt;}
.h1a{height:65.913033pt;}
.h17{height:66.079167pt;}
.h5{height:69.360000pt;}
.h19{height:91.512500pt;}
.h10{height:99.120000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:67.863867pt;}
.x5{left:75.590533pt;}
.x14{left:82.663333pt;}
.x25{left:83.850800pt;}
.x19{left:87.798667pt;}
.x1{left:90.706667pt;}
.x24{left:93.348267pt;}
.x2{left:94.486667pt;}
.x20{left:96.324800pt;}
.xe{left:98.267733pt;}
.x32{left:102.047333pt;}
.x2b{left:104.210667pt;}
.x1a{left:105.100800pt;}
.x30{left:107.760133pt;}
.x2d{left:110.234000pt;}
.xf{left:117.067867pt;}
.x2f{left:119.822533pt;}
.x1c{left:126.535733pt;}
.x23{left:135.900267pt;}
.x12{left:138.744000pt;}
.x8{left:179.457333pt;}
.x4{left:180.874667pt;}
.x6{left:211.327067pt;}
.x7{left:214.801067pt;}
.x13{left:253.918267pt;}
.x2a{left:275.690267pt;}
.x21{left:297.527600pt;}
.x15{left:298.840133pt;}
.x3{left:404.408000pt;}
.x9{left:406.299200pt;}
.x2e{left:409.043333pt;}
.x26{left:411.282533pt;}
.x1d{left:418.488267pt;}
.xa{left:428.976400pt;}
.x31{left:442.923600pt;}
.x2c{left:449.108533pt;}
.x27{left:455.139333pt;}
.xc{left:508.097600pt;}
.x1f{left:561.615600pt;}
.x17{left:567.938533pt;}
.x1e{left:568.868267pt;}
.x1b{left:571.779600pt;}
.x16{left:577.318667pt;}
.x29{left:579.334400pt;}
.x22{left:582.829200pt;}
.x28{left:586.894267pt;}
.x18{left:613.612933pt;}
.xb{left:660.894800pt;}
.x11{left:710.070267pt;}
.xd{left:711.457067pt;}
}




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