
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ebce93ef4289b68c0fbba5a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_eab152947cf4df2998af46be.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_f38d85d40d5b55e67c371c99.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_bd06f4ae2966afbc8d09c0df.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_cdd878fb423e014ed3f13956.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_f44e2566e20a45819a141530.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.368400px;}
.ls19{letter-spacing:-0.243600px;}
.ls11{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.160800px;}
.ls9{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.067200px;}
.ls17{letter-spacing:-0.037800px;}
.ls13{letter-spacing:-0.013320px;}
.ls16{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.065520px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.lse{letter-spacing:0.092160px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.115800px;}
.lsc{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.425520px;}
.lsa{letter-spacing:0.534600px;}
.ls1f{letter-spacing:47.726640px;}
.ls1e{letter-spacing:48.446640px;}
.ls15{letter-spacing:63.566640px;}
.ls1c{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.453600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws5{word-spacing:-13.342800px;}
.wsf{word-spacing:-13.342200px;}
.ws4{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.218840px;}
.wsa{word-spacing:-13.213080px;}
.wsc{word-spacing:-13.188600px;}
.ws11{word-spacing:-13.159200px;}
.ws10{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.982800px;}
.wse{word-spacing:-12.858000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws3{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
._13{margin-left:-3.570840px;}
._f{margin-left:-2.381040px;}
._0{margin-left:-1.110000px;}
._2{width:1.092804px;}
._9{width:2.946000px;}
._a{width:3.970319px;}
._d{width:4.990200px;}
._6{width:6.312600px;}
._7{width:7.695600px;}
._8{width:9.231719px;}
._c{width:10.263600px;}
._3{width:11.661024px;}
._4{width:13.112593px;}
._b{width:14.368800px;}
._5{width:15.648600px;}
._11{width:16.695960px;}
._12{width:18.293880px;}
._5f{width:19.421400px;}
._16{width:20.621160px;}
._14{width:22.320360px;}
._15{width:23.328516px;}
._2c{width:24.949800px;}
._1a{width:26.753400px;}
._1e{width:27.955800px;}
._59{width:28.977840px;}
._4e{width:30.240360px;}
._10{width:31.587718px;}
._e{width:32.705400px;}
._45{width:34.328400px;}
._4b{width:36.432720px;}
._3f{width:38.055960px;}
._2e{width:39.318480px;}
._19{width:41.302440px;}
._34{width:44.669160px;}
._1{width:46.469436px;}
._25{width:48.035880px;}
._4c{width:49.057920px;}
._5a{width:51.462720px;}
._1c{width:52.544880px;}
._3b{width:53.927640px;}
._5c{width:55.436760px;}
._23{width:58.917600px;}
._5e{width:60.207960px;}
._3e{width:61.322400px;}
._52{width:62.582400px;}
._71{width:64.749240px;}
._36{width:66.312360px;}
._3a{width:68.115960px;}
._1f{width:69.498720px;}
._61{width:71.001720px;}
._63{width:72.401676px;}
._66{width:74.669040px;}
._64{width:77.254200px;}
._29{width:82.364400px;}
._38{width:86.813280px;}
._50{width:88.376400px;}
._1b{width:93.125880px;}
._41{width:94.388400px;}
._51{width:95.831280px;}
._31{width:97.514640px;}
._18{width:98.717040px;}
._32{width:99.739080px;}
._21{width:101.269920px;}
._46{width:102.444480px;}
._5d{width:103.466520px;}
._4d{width:104.909400px;}
._3c{width:105.991560px;}
._6f{width:107.516160px;}
._53{width:108.817200px;}
._2a{width:112.484520px;}
._24{width:114.107760px;}
._6b{width:117.173880px;}
._6c{width:119.518560px;}
._48{width:120.869040px;}
._22{width:124.207920px;}
._1d{width:132.744960px;}
._5b{width:134.548560px;}
._6e{width:143.626680px;}
._62{width:151.682760px;}
._43{width:152.825040px;}
._55{width:154.929240px;}
._42{width:157.875120px;}
._56{width:159.137640px;}
._33{width:162.564480px;}
._65{width:172.123560px;}
._6d{width:173.205720px;}
._35{width:175.009320px;}
._20{width:183.486240px;}
._70{width:184.989240px;}
._27{width:188.596440px;}
._17{width:191.121480px;}
._39{width:197.373960px;}
._44{width:200.139480px;}
._26{width:206.091360px;}
._4a{width:207.955080px;}
._3d{width:212.764680px;}
._68{width:219.738600px;}
._2d{width:222.444000px;}
._2b{width:228.756600px;}
._69{width:234.347760px;}
._49{width:235.971000px;}
._60{width:241.141320px;}
._58{width:246.792600px;}
._2f{width:251.542080px;}
._28{width:262.425120px;}
._57{width:272.584080px;}
._30{width:279.858600px;}
._40{width:284.127120px;}
._37{width:289.598040px;}
._67{width:298.555920px;}
._47{width:301.501800px;}
._6a{width:340.098840px;}
._4f{width:364.748040px;}
._54{width:400.940280px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y98{bottom:7.830000px;}
.y9c{bottom:7.920000px;}
.ya1{bottom:25.380000px;}
.y97{bottom:25.470000px;}
.y101{bottom:25.500000px;}
.y9f{bottom:43.020000px;}
.yb5{bottom:43.050000px;}
.y9b{bottom:43.110000px;}
.yba{bottom:60.570000px;}
.y100{bottom:60.600000px;}
.yb7{bottom:60.660000px;}
.yb4{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.yde{bottom:78.210000px;}
.ye0{bottom:78.240000px;}
.y1{bottom:101.640000px;}
.y87{bottom:117.300000px;}
.ydc{bottom:122.520000px;}
.y1a3{bottom:123.600000px;}
.y123{bottom:125.130000px;}
.y29{bottom:128.010000px;}
.y86{bottom:134.850000px;}
.y1a2{bottom:141.240000px;}
.y122{bottom:142.680000px;}
.y5a{bottom:145.560000px;}
.y28{bottom:145.650000px;}
.y1c9{bottom:150.870000px;}
.y14e{bottom:152.130000px;}
.y176{bottom:156.000000px;}
.y121{bottom:160.230000px;}
.y59{bottom:163.110000px;}
.y27{bottom:163.200000px;}
.y1a1{bottom:166.260000px;}
.y1c8{bottom:168.510000px;}
.y14d{bottom:169.680000px;}
.y85{bottom:170.490000px;}
.y175{bottom:173.640000px;}
.y58{bottom:180.750000px;}
.y26{bottom:180.840000px;}
.y1a0{bottom:183.900000px;}
.y95{bottom:186.600000px;}
.y14c{bottom:187.320000px;}
.y84{bottom:188.040000px;}
.y1c7{bottom:195.060000px;}
.y120{bottom:195.870000px;}
.y57{bottom:198.300000px;}
.y25{bottom:198.390000px;}
.y174{bottom:198.660000px;}
.yf9{bottom:200.100000px;}
.ydb{bottom:202.620000px;}
.y14b{bottom:204.870000px;}
.y83{bottom:205.680000px;}
.y19f{bottom:208.920000px;}
.y1c6{bottom:212.610000px;}
.y11f{bottom:213.420000px;}
.y173{bottom:216.390000px;}
.yb2{bottom:221.250000px;}
.y94{bottom:222.240000px;}
.y14a{bottom:222.510000px;}
.y82{bottom:223.230000px;}
.ycb{bottom:223.950000px;}
.y19e{bottom:226.560000px;}
.y11e{bottom:231.060000px;}
.y56{bottom:233.850000px;}
.y24{bottom:233.940000px;}
.yf8{bottom:235.650000px;}
.y1c5{bottom:239.250000px;}
.y93{bottom:239.790000px;}
.y149{bottom:240.060000px;}
.y81{bottom:240.780000px;}
.y172{bottom:243.210000px;}
.y11d{bottom:248.610000px;}
.y55{bottom:251.490000px;}
.y23{bottom:251.580000px;}
.yb1{bottom:256.800000px;}
.y92{bottom:257.340000px;}
.y148{bottom:257.610000px;}
.y80{bottom:258.420000px;}
.yca{bottom:259.590000px;}
.y11c{bottom:266.160000px;}
.y54{bottom:269.040000px;}
.y22{bottom:269.130000px;}
.y19d{bottom:269.220000px;}
.y108{bottom:269.940000px;}
.yf7{bottom:271.200000px;}
.y91{bottom:274.980000px;}
.y147{bottom:275.250000px;}
.y7f{bottom:275.970000px;}
.yc9{bottom:277.140000px;}
.yda{bottom:282.720000px;}
.y1c4{bottom:283.440000px;}
.y11b{bottom:283.800000px;}
.y21{bottom:286.770000px;}
.y107{bottom:287.490000px;}
.yf6{bottom:288.840000px;}
.y171{bottom:291.540000px;}
.yb0{bottom:292.440000px;}
.y90{bottom:292.530000px;}
.y7e{bottom:293.610000px;}
.y19c{bottom:294.240000px;}
.yc8{bottom:294.780000px;}
.y1c3{bottom:300.990000px;}
.y11a{bottom:301.350000px;}
.y20{bottom:304.320000px;}
.y53{bottom:304.680000px;}
.y106{bottom:305.130000px;}
.yf5{bottom:306.390000px;}
.y170{bottom:309.090000px;}
.y146{bottom:310.800000px;}
.y19b{bottom:311.880000px;}
.yc7{bottom:312.330000px;}
.y119{bottom:318.990000px;}
.y8f{bottom:319.440000px;}
.y1f{bottom:321.870000px;}
.y52{bottom:322.230000px;}
.y105{bottom:322.680000px;}
.yf4{bottom:324.030000px;}
.y16f{bottom:326.730000px;}
.y1c2{bottom:327.540000px;}
.yaf{bottom:327.990000px;}
.y145{bottom:328.440000px;}
.y7d{bottom:329.160000px;}
.yc6{bottom:329.880000px;}
.y19a{bottom:336.900000px;}
.y51{bottom:339.780000px;}
.y104{bottom:340.320000px;}
.yf3{bottom:341.580000px;}
.y16e{bottom:344.280000px;}
.y1c1{bottom:345.180000px;}
.yae{bottom:345.540000px;}
.y118{bottom:345.810000px;}
.y144{bottom:345.990000px;}
.y7c{bottom:346.710000px;}
.yc5{bottom:347.520000px;}
.yd9{bottom:348.960000px;}
.y199{bottom:354.540000px;}
.y50{bottom:357.420000px;}
.y1e{bottom:357.510000px;}
.y103{bottom:357.870000px;}
.yf2{bottom:359.130000px;}
.yad{bottom:363.180000px;}
.y143{bottom:363.540000px;}
.y7b{bottom:364.350000px;}
.yc4{bottom:365.070000px;}
.yd8{bottom:366.600000px;}
.y8e{bottom:367.680000px;}
.y16d{bottom:371.190000px;}
.y1c0{bottom:371.730000px;}
.y1d{bottom:375.060000px;}
.yf1{bottom:376.770000px;}
.y198{bottom:379.560000px;}
.yac{bottom:380.730000px;}
.y142{bottom:381.180000px;}
.y7a{bottom:381.900000px;}
.yc3{bottom:382.620000px;}
.y8d{bottom:385.320000px;}
.y1bf{bottom:389.370000px;}
.y102{bottom:390.810000px;}
.y1c{bottom:392.700000px;}
.y4f{bottom:392.970000px;}
.y117{bottom:394.140000px;}
.y197{bottom:397.290000px;}
.yab{bottom:398.370000px;}
.y79{bottom:399.540000px;}
.yc2{bottom:400.260000px;}
.yd7{bottom:402.150000px;}
.y16c{bottom:408.180000px;}
.y1b{bottom:410.250000px;}
.y4e{bottom:410.610000px;}
.y116{bottom:411.690000px;}
.yf0{bottom:412.320000px;}
.y196{bottom:414.840000px;}
.yaa{bottom:415.920000px;}
.y141{bottom:416.730000px;}
.y78{bottom:417.090000px;}
.yc1{bottom:417.810000px;}
.yd6{bottom:419.790000px;}
.y8c{bottom:420.870000px;}
.y16b{bottom:425.820000px;}
.y1a{bottom:427.800000px;}
.y4d{bottom:428.160000px;}
.y115{bottom:429.330000px;}
.yef{bottom:429.870000px;}
.ya9{bottom:433.470000px;}
.y140{bottom:434.370000px;}
.y77{bottom:434.640000px;}
.yc0{bottom:435.450000px;}
.yd5{bottom:437.340000px;}
.y195{bottom:439.860000px;}
.y19{bottom:445.440000px;}
.y4c{bottom:445.710000px;}
.y114{bottom:446.880000px;}
.yee{bottom:447.510000px;}
.ya8{bottom:451.110000px;}
.y13f{bottom:451.920000px;}
.y16a{bottom:452.730000px;}
.ybf{bottom:453.000000px;}
.y8b{bottom:453.090000px;}
.yff{bottom:453.360000px;}
.yd4{bottom:454.890000px;}
.y194{bottom:457.500000px;}
.y1be{bottom:460.110000px;}
.y18{bottom:462.990000px;}
.y4b{bottom:463.350000px;}
.y113{bottom:464.430000px;}
.yed{bottom:465.060000px;}
.ya7{bottom:468.660000px;}
.y13e{bottom:469.470000px;}
.y76{bottom:470.310000px;}
.yd3{bottom:472.560000px;}
.y1bd{bottom:477.690000px;}
.y4a{bottom:480.930000px;}
.y112{bottom:482.100000px;}
.y193{bottom:482.550000px;}
.yec{bottom:482.730000px;}
.ybe{bottom:485.970000px;}
.y13d{bottom:487.140000px;}
.y75{bottom:487.860000px;}
.y169{bottom:489.750000px;}
.yd2{bottom:490.110000px;}
.y17{bottom:498.660000px;}
.yeb{bottom:500.280000px;}
.ya6{bottom:501.720000px;}
.y1bc{bottom:504.330000px;}
.y74{bottom:505.500000px;}
.y168{bottom:507.300000px;}
.y192{bottom:507.660000px;}
.yd1{bottom:507.750000px;}
.y16{bottom:516.210000px;}
.y49{bottom:516.480000px;}
.y111{bottom:517.650000px;}
.yea{bottom:517.830000px;}
.y1bb{bottom:521.880000px;}
.y13c{bottom:522.690000px;}
.y73{bottom:523.050000px;}
.yd0{bottom:525.300000px;}
.y15{bottom:533.760000px;}
.y48{bottom:534.120000px;}
.y167{bottom:534.210000px;}
.y110{bottom:535.290000px;}
.ye9{bottom:535.470000px;}
.y13b{bottom:540.330000px;}
.y72{bottom:540.600000px;}
.ycf{bottom:542.850000px;}
.ya5{bottom:546.630000px;}
.y1ba{bottom:548.430000px;}
.ybd{bottom:548.520000px;}
.y191{bottom:550.320000px;}
.yfe{bottom:551.040000px;}
.y14{bottom:551.400000px;}
.y47{bottom:551.670000px;}
.y10f{bottom:552.840000px;}
.ye8{bottom:553.020000px;}
.y13a{bottom:557.880000px;}
.y71{bottom:558.240000px;}
.yce{bottom:560.490000px;}
.y1b9{bottom:566.070000px;}
.y190{bottom:567.960000px;}
.y13{bottom:568.950000px;}
.y46{bottom:569.310000px;}
.y10e{bottom:570.390000px;}
.ye7{bottom:570.660000px;}
.y166{bottom:571.290000px;}
.y139{bottom:575.430000px;}
.y70{bottom:575.790000px;}
.ycd{bottom:578.040000px;}
.y45{bottom:586.860000px;}
.y10d{bottom:588.030000px;}
.ye6{bottom:588.210000px;}
.y1b8{bottom:592.620000px;}
.y18f{bottom:592.980000px;}
.y138{bottom:593.070000px;}
.y165{bottom:598.200000px;}
.y12{bottom:604.590000px;}
.y10c{bottom:605.580000px;}
.ye5{bottom:605.760000px;}
.ya4{bottom:609.090000px;}
.y1b7{bottom:610.260000px;}
.y18e{bottom:610.620000px;}
.ybc{bottom:610.980000px;}
.y6f{bottom:611.340000px;}
.y11{bottom:622.140000px;}
.y44{bottom:622.410000px;}
.y10b{bottom:623.220000px;}
.y137{bottom:628.620000px;}
.y6e{bottom:628.980000px;}
.yfd{bottom:631.140000px;}
.y164{bottom:635.550000px;}
.y18d{bottom:635.640000px;}
.y1b6{bottom:636.810000px;}
.ye4{bottom:638.790000px;}
.y10{bottom:639.690000px;}
.y43{bottom:640.050000px;}
.y136{bottom:646.260000px;}
.y6d{bottom:646.530000px;}
.y18c{bottom:653.280000px;}
.y1b5{bottom:654.360000px;}
.yf{bottom:657.330000px;}
.y42{bottom:657.600000px;}
.y10a{bottom:658.770000px;}
.y135{bottom:663.810000px;}
.y6c{bottom:664.170000px;}
.ya3{bottom:671.640000px;}
.ycc{bottom:673.530000px;}
.ye{bottom:674.880000px;}
.y41{bottom:675.240000px;}
.y18b{bottom:678.300000px;}
.y1b4{bottom:681.000000px;}
.y134{bottom:681.360000px;}
.y6b{bottom:681.720000px;}
.y163{bottom:683.790000px;}
.y109{bottom:690.990000px;}
.ybb{bottom:691.080000px;}
.y40{bottom:692.790000px;}
.y18a{bottom:695.940000px;}
.yfc{bottom:697.470000px;}
.y1b3{bottom:698.550000px;}
.y133{bottom:699.000000px;}
.y6a{bottom:699.270000px;}
.ye3{bottom:701.250000px;}
.y162{bottom:701.340000px;}
.yd{bottom:701.790000px;}
.y69{bottom:716.910000px;}
.y161{bottom:718.980000px;}
.y189{bottom:720.960000px;}
.y1b2{bottom:725.190000px;}
.y3f{bottom:728.340000px;}
.yfb{bottom:733.020000px;}
.ya2{bottom:734.100000px;}
.y132{bottom:734.550000px;}
.y188{bottom:738.690000px;}
.y1b1{bottom:742.740000px;}
.y3e{bottom:745.980000px;}
.yc{bottom:750.030000px;}
.y131{bottom:752.190000px;}
.y68{bottom:752.460000px;}
.yb9{bottom:753.630000px;}
.y160{bottom:754.530000px;}
.y3d{bottom:763.530000px;}
.y187{bottom:763.620000px;}
.yfa{bottom:765.240000px;}
.y1b0{bottom:769.290000px;}
.y130{bottom:769.740000px;}
.y67{bottom:770.100000px;}
.y15f{bottom:772.170000px;}
.y3c{bottom:781.170000px;}
.y186{bottom:781.350000px;}
.yb{bottom:785.850000px;}
.y1af{bottom:786.930000px;}
.y12f{bottom:787.290000px;}
.y66{bottom:787.650000px;}
.y15e{bottom:789.720000px;}
.ya0{bottom:796.650000px;}
.y3b{bottom:798.720000px;}
.ye2{bottom:798.990000px;}
.y12e{bottom:804.930000px;}
.y65{bottom:805.200000px;}
.y185{bottom:806.280000px;}
.y1ae{bottom:813.480000px;}
.y3a{bottom:816.270000px;}
.ya{bottom:821.850000px;}
.y12d{bottom:822.480000px;}
.y64{bottom:822.840000px;}
.y184{bottom:824.010000px;}
.y15d{bottom:825.270000px;}
.y1ad{bottom:831.030000px;}
.yb8{bottom:833.730000px;}
.y63{bottom:840.390000px;}
.y9e{bottom:841.560000px;}
.y15c{bottom:842.910000px;}
.y183{bottom:848.940000px;}
.y39{bottom:851.910000px;}
.y1ac{bottom:857.670000px;}
.y12c{bottom:858.030000px;}
.y9{bottom:861.630000px;}
.y182{bottom:866.670000px;}
.y62{bottom:867.300000px;}
.y38{bottom:869.460000px;}
.y15b{bottom:869.820000px;}
.y1ab{bottom:875.220000px;}
.y12b{bottom:875.670000px;}
.ye1{bottom:879.000000px;}
.y8{bottom:879.630000px;}
.y37{bottom:887.100000px;}
.y181{bottom:891.690000px;}
.y12a{bottom:893.220000px;}
.yb6{bottom:896.190000px;}
.y7{bottom:897.630000px;}
.y1aa{bottom:901.860000px;}
.y9d{bottom:904.020000px;}
.y36{bottom:904.650000px;}
.y15a{bottom:906.810000px;}
.y180{bottom:909.330000px;}
.y129{bottom:910.860000px;}
.y61{bottom:915.630000px;}
.y1a9{bottom:919.410000px;}
.y35{bottom:922.200000px;}
.y159{bottom:924.450000px;}
.y128{bottom:928.410000px;}
.y6{bottom:929.940000px;}
.y60{bottom:933.180000px;}
.y17f{bottom:934.350000px;}
.y34{bottom:939.840000px;}
.y158{bottom:942.000000px;}
.y127{bottom:945.960000px;}
.y9a{bottom:948.930000px;}
.y5{bottom:949.290000px;}
.y5f{bottom:951.630000px;}
.y17e{bottom:951.990000px;}
.y33{bottom:957.390000px;}
.ydf{bottom:959.100000px;}
.y157{bottom:959.550000px;}
.y1a8{bottom:963.600000px;}
.y5e{bottom:969.180000px;}
.yb3{bottom:976.290000px;}
.y17d{bottom:977.010000px;}
.y156{bottom:977.190000px;}
.y126{bottom:981.600000px;}
.y32{bottom:984.300000px;}
.y4{bottom:987.630000px;}
.y1a7{bottom:990.150000px;}
.y17c{bottom:994.650000px;}
.y125{bottom:999.150000px;}
.y5d{bottom:1005.180000px;}
.y1a6{bottom:1007.790000px;}
.y99{bottom:1011.510000px;}
.y3{bottom:1012.320000px;}
.y155{bottom:1012.770000px;}
.y8a{bottom:1016.820000px;}
.y17b{bottom:1019.700000px;}
.y154{bottom:1030.320000px;}
.y31{bottom:1032.570000px;}
.y5c{bottom:1032.930000px;}
.y89{bottom:1034.370000px;}
.y17a{bottom:1037.340000px;}
.y153{bottom:1047.960000px;}
.y30{bottom:1050.480000px;}
.y88{bottom:1051.920000px;}
.y96{bottom:1056.420000px;}
.ydd{bottom:1056.870000px;}
.y179{bottom:1062.360000px;}
.y152{bottom:1065.510000px;}
.y124{bottom:1069.560000px;}
.y5b{bottom:1069.920000px;}
.y1a5{bottom:1078.560000px;}
.y178{bottom:1080.000000px;}
.y151{bottom:1083.150000px;}
.y2f{bottom:1087.560000px;}
.y1a4{bottom:1096.110000px;}
.y150{bottom:1100.700000px;}
.y177{bottom:1105.020000px;}
.y2e{bottom:1105.110000px;}
.y2d{bottom:1122.750000px;}
.y14f{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hf{height:44.100000px;}
.hb{height:44.190000px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.he{height:61.740000px;}
.ha{height:61.793886px;}
.h13{height:61.830000px;}
.hd{height:61.860000px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h12{height:79.290000px;}
.h11{height:79.380000px;}
.h10{height:79.410000px;}
.h14{height:96.930000px;}
.h15{height:96.960000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w14{width:103.590000px;}
.w13{width:109.290000px;}
.w5{width:151.050000px;}
.w15{width:151.200000px;}
.wd{width:153.300000px;}
.wf{width:157.080000px;}
.w9{width:158.880000px;}
.wb{width:169.590000px;}
.w11{width:172.560000px;}
.w3{width:184.890000px;}
.w10{width:185.850000px;}
.w7{width:186.960000px;}
.wa{width:192.870000px;}
.w4{width:194.490000px;}
.we{width:209.430000px;}
.w8{width:214.740000px;}
.wc{width:221.040000px;}
.w6{width:222.930000px;}
.w12{width:237.780000px;}
.w16{width:389.280000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x1b{left:101.339987px;}
.x17{left:110.069987px;}
.x1c{left:111.419987px;}
.x5{left:122.039987px;}
.x18{left:178.860000px;}
.x12{left:226.650000px;}
.xf{left:239.160000px;}
.x2{left:251.759987px;}
.x9{left:254.460000px;}
.xc{left:256.440000px;}
.x7{left:282.359987px;}
.x13{left:413.310000px;}
.x19{left:435.180000px;}
.x15{left:446.609987px;}
.xa{left:449.760000px;}
.x10{left:460.920000px;}
.xd{left:471.900000px;}
.x14{left:586.680000px;}
.xb{left:601.530000px;}
.x11{left:615.030000px;}
.x6{left:621.059987px;}
.xe{left:631.590000px;}
.x16{left:788.639987px;}
.x1a{left:794.309987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.327467pt;}
.ls19{letter-spacing:-0.216533pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.142933pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.059733pt;}
.ls17{letter-spacing:-0.033600pt;}
.ls13{letter-spacing:-0.011840pt;}
.ls16{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.058240pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.081920pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.102933pt;}
.lsc{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.378240pt;}
.lsa{letter-spacing:0.475200pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls1e{letter-spacing:43.063680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls1c{letter-spacing:72.503680pt;}
.ws2{word-spacing:-16.403200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws5{word-spacing:-11.860267pt;}
.wsf{word-spacing:-11.859733pt;}
.ws4{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.750080pt;}
.wsa{word-spacing:-11.744960pt;}
.wsc{word-spacing:-11.723200pt;}
.ws11{word-spacing:-11.697067pt;}
.ws10{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.540267pt;}
.wse{word-spacing:-11.429333pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws3{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
._13{margin-left:-3.174080pt;}
._f{margin-left:-2.116480pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.971381pt;}
._9{width:2.618667pt;}
._a{width:3.529172pt;}
._d{width:4.435734pt;}
._6{width:5.611200pt;}
._7{width:6.840534pt;}
._8{width:8.205972pt;}
._c{width:9.123200pt;}
._3{width:10.365354pt;}
._4{width:11.655638pt;}
._b{width:12.772267pt;}
._5{width:13.909867pt;}
._11{width:14.840853pt;}
._12{width:16.261227pt;}
._5f{width:17.263467pt;}
._16{width:18.329920pt;}
._14{width:19.840320pt;}
._15{width:20.736459pt;}
._2c{width:22.177600pt;}
._1a{width:23.780800pt;}
._1e{width:24.849600pt;}
._59{width:25.758080pt;}
._4e{width:26.880320pt;}
._10{width:28.077972pt;}
._e{width:29.071467pt;}
._45{width:30.514133pt;}
._4b{width:32.384640pt;}
._3f{width:33.827520pt;}
._2e{width:34.949760pt;}
._19{width:36.713280pt;}
._34{width:39.705920pt;}
._1{width:41.306165pt;}
._25{width:42.698560pt;}
._4c{width:43.607040pt;}
._5a{width:45.744640pt;}
._1c{width:46.706560pt;}
._3b{width:47.935680pt;}
._5c{width:49.277120pt;}
._23{width:52.371200pt;}
._5e{width:53.518187pt;}
._3e{width:54.508800pt;}
._52{width:55.628800pt;}
._71{width:57.554880pt;}
._36{width:58.944320pt;}
._3a{width:60.547520pt;}
._1f{width:61.776640pt;}
._61{width:63.112640pt;}
._63{width:64.357045pt;}
._66{width:66.372480pt;}
._64{width:68.670400pt;}
._29{width:73.212800pt;}
._38{width:77.167360pt;}
._50{width:78.556800pt;}
._1b{width:82.778560pt;}
._41{width:83.900800pt;}
._51{width:85.183360pt;}
._31{width:86.679680pt;}
._18{width:87.748480pt;}
._32{width:88.656960pt;}
._21{width:90.017707pt;}
._46{width:91.061760pt;}
._5d{width:91.970240pt;}
._4d{width:93.252800pt;}
._3c{width:94.214720pt;}
._6f{width:95.569920pt;}
._53{width:96.726400pt;}
._2a{width:99.986240pt;}
._24{width:101.429120pt;}
._6b{width:104.154560pt;}
._6c{width:106.238720pt;}
._48{width:107.439147pt;}
._22{width:110.407040pt;}
._1d{width:117.995520pt;}
._5b{width:119.598720pt;}
._6e{width:127.668160pt;}
._62{width:134.829120pt;}
._43{width:135.844480pt;}
._55{width:137.714880pt;}
._42{width:140.333440pt;}
._56{width:141.455680pt;}
._33{width:144.501760pt;}
._65{width:152.998720pt;}
._6d{width:153.960640pt;}
._35{width:155.563840pt;}
._20{width:163.098880pt;}
._70{width:164.434880pt;}
._27{width:167.641280pt;}
._17{width:169.885760pt;}
._39{width:175.443520pt;}
._44{width:177.901760pt;}
._26{width:183.192320pt;}
._4a{width:184.848960pt;}
._3d{width:189.124160pt;}
._68{width:195.323200pt;}
._2d{width:197.728000pt;}
._2b{width:203.339200pt;}
._69{width:208.309120pt;}
._49{width:209.752000pt;}
._60{width:214.347840pt;}
._58{width:219.371200pt;}
._2f{width:223.592960pt;}
._28{width:233.266773pt;}
._57{width:242.296960pt;}
._30{width:248.763200pt;}
._40{width:252.557440pt;}
._37{width:257.420480pt;}
._67{width:265.383040pt;}
._47{width:268.001600pt;}
._6a{width:302.310080pt;}
._4f{width:324.220480pt;}
._54{width:356.391360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:6.960000pt;}
.y9c{bottom:7.040000pt;}
.ya1{bottom:22.560000pt;}
.y97{bottom:22.640000pt;}
.y101{bottom:22.666667pt;}
.y9f{bottom:38.240000pt;}
.yb5{bottom:38.266667pt;}
.y9b{bottom:38.320000pt;}
.yba{bottom:53.840000pt;}
.y100{bottom:53.866667pt;}
.yb7{bottom:53.920000pt;}
.yb4{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.yde{bottom:69.520000pt;}
.ye0{bottom:69.546667pt;}
.y1{bottom:90.346667pt;}
.y87{bottom:104.266667pt;}
.ydc{bottom:108.906667pt;}
.y1a3{bottom:109.866667pt;}
.y123{bottom:111.226667pt;}
.y29{bottom:113.786667pt;}
.y86{bottom:119.866667pt;}
.y1a2{bottom:125.546667pt;}
.y122{bottom:126.826667pt;}
.y5a{bottom:129.386667pt;}
.y28{bottom:129.466667pt;}
.y1c9{bottom:134.106667pt;}
.y14e{bottom:135.226667pt;}
.y176{bottom:138.666667pt;}
.y121{bottom:142.426667pt;}
.y59{bottom:144.986667pt;}
.y27{bottom:145.066667pt;}
.y1a1{bottom:147.786667pt;}
.y1c8{bottom:149.786667pt;}
.y14d{bottom:150.826667pt;}
.y85{bottom:151.546667pt;}
.y175{bottom:154.346667pt;}
.y58{bottom:160.666667pt;}
.y26{bottom:160.746667pt;}
.y1a0{bottom:163.466667pt;}
.y95{bottom:165.866667pt;}
.y14c{bottom:166.506667pt;}
.y84{bottom:167.146667pt;}
.y1c7{bottom:173.386667pt;}
.y120{bottom:174.106667pt;}
.y57{bottom:176.266667pt;}
.y25{bottom:176.346667pt;}
.y174{bottom:176.586667pt;}
.yf9{bottom:177.866667pt;}
.ydb{bottom:180.106667pt;}
.y14b{bottom:182.106667pt;}
.y83{bottom:182.826667pt;}
.y19f{bottom:185.706667pt;}
.y1c6{bottom:188.986667pt;}
.y11f{bottom:189.706667pt;}
.y173{bottom:192.346667pt;}
.yb2{bottom:196.666667pt;}
.y94{bottom:197.546667pt;}
.y14a{bottom:197.786667pt;}
.y82{bottom:198.426667pt;}
.ycb{bottom:199.066667pt;}
.y19e{bottom:201.386667pt;}
.y11e{bottom:205.386667pt;}
.y56{bottom:207.866667pt;}
.y24{bottom:207.946667pt;}
.yf8{bottom:209.466667pt;}
.y1c5{bottom:212.666667pt;}
.y93{bottom:213.146667pt;}
.y149{bottom:213.386667pt;}
.y81{bottom:214.026667pt;}
.y172{bottom:216.186667pt;}
.y11d{bottom:220.986667pt;}
.y55{bottom:223.546667pt;}
.y23{bottom:223.626667pt;}
.yb1{bottom:228.266667pt;}
.y92{bottom:228.746667pt;}
.y148{bottom:228.986667pt;}
.y80{bottom:229.706667pt;}
.yca{bottom:230.746667pt;}
.y11c{bottom:236.586667pt;}
.y54{bottom:239.146667pt;}
.y22{bottom:239.226667pt;}
.y19d{bottom:239.306667pt;}
.y108{bottom:239.946667pt;}
.yf7{bottom:241.066667pt;}
.y91{bottom:244.426667pt;}
.y147{bottom:244.666667pt;}
.y7f{bottom:245.306667pt;}
.yc9{bottom:246.346667pt;}
.yda{bottom:251.306667pt;}
.y1c4{bottom:251.946667pt;}
.y11b{bottom:252.266667pt;}
.y21{bottom:254.906667pt;}
.y107{bottom:255.546667pt;}
.yf6{bottom:256.746667pt;}
.y171{bottom:259.146667pt;}
.yb0{bottom:259.946667pt;}
.y90{bottom:260.026667pt;}
.y7e{bottom:260.986667pt;}
.y19c{bottom:261.546667pt;}
.yc8{bottom:262.026667pt;}
.y1c3{bottom:267.546667pt;}
.y11a{bottom:267.866667pt;}
.y20{bottom:270.506667pt;}
.y53{bottom:270.826667pt;}
.y106{bottom:271.226667pt;}
.yf5{bottom:272.346667pt;}
.y170{bottom:274.746667pt;}
.y146{bottom:276.266667pt;}
.y19b{bottom:277.226667pt;}
.yc7{bottom:277.626667pt;}
.y119{bottom:283.546667pt;}
.y8f{bottom:283.946667pt;}
.y1f{bottom:286.106667pt;}
.y52{bottom:286.426667pt;}
.y105{bottom:286.826667pt;}
.yf4{bottom:288.026667pt;}
.y16f{bottom:290.426667pt;}
.y1c2{bottom:291.146667pt;}
.yaf{bottom:291.546667pt;}
.y145{bottom:291.946667pt;}
.y7d{bottom:292.586667pt;}
.yc6{bottom:293.226667pt;}
.y19a{bottom:299.466667pt;}
.y51{bottom:302.026667pt;}
.y104{bottom:302.506667pt;}
.yf3{bottom:303.626667pt;}
.y16e{bottom:306.026667pt;}
.y1c1{bottom:306.826667pt;}
.yae{bottom:307.146667pt;}
.y118{bottom:307.386667pt;}
.y144{bottom:307.546667pt;}
.y7c{bottom:308.186667pt;}
.yc5{bottom:308.906667pt;}
.yd9{bottom:310.186667pt;}
.y199{bottom:315.146667pt;}
.y50{bottom:317.706667pt;}
.y1e{bottom:317.786667pt;}
.y103{bottom:318.106667pt;}
.yf2{bottom:319.226667pt;}
.yad{bottom:322.826667pt;}
.y143{bottom:323.146667pt;}
.y7b{bottom:323.866667pt;}
.yc4{bottom:324.506667pt;}
.yd8{bottom:325.866667pt;}
.y8e{bottom:326.826667pt;}
.y16d{bottom:329.946667pt;}
.y1c0{bottom:330.426667pt;}
.y1d{bottom:333.386667pt;}
.yf1{bottom:334.906667pt;}
.y198{bottom:337.386667pt;}
.yac{bottom:338.426667pt;}
.y142{bottom:338.826667pt;}
.y7a{bottom:339.466667pt;}
.yc3{bottom:340.106667pt;}
.y8d{bottom:342.506667pt;}
.y1bf{bottom:346.106667pt;}
.y102{bottom:347.386667pt;}
.y1c{bottom:349.066667pt;}
.y4f{bottom:349.306667pt;}
.y117{bottom:350.346667pt;}
.y197{bottom:353.146667pt;}
.yab{bottom:354.106667pt;}
.y79{bottom:355.146667pt;}
.yc2{bottom:355.786667pt;}
.yd7{bottom:357.466667pt;}
.y16c{bottom:362.826667pt;}
.y1b{bottom:364.666667pt;}
.y4e{bottom:364.986667pt;}
.y116{bottom:365.946667pt;}
.yf0{bottom:366.506667pt;}
.y196{bottom:368.746667pt;}
.yaa{bottom:369.706667pt;}
.y141{bottom:370.426667pt;}
.y78{bottom:370.746667pt;}
.yc1{bottom:371.386667pt;}
.yd6{bottom:373.146667pt;}
.y8c{bottom:374.106667pt;}
.y16b{bottom:378.506667pt;}
.y1a{bottom:380.266667pt;}
.y4d{bottom:380.586667pt;}
.y115{bottom:381.626667pt;}
.yef{bottom:382.106667pt;}
.ya9{bottom:385.306667pt;}
.y140{bottom:386.106667pt;}
.y77{bottom:386.346667pt;}
.yc0{bottom:387.066667pt;}
.yd5{bottom:388.746667pt;}
.y195{bottom:390.986667pt;}
.y19{bottom:395.946667pt;}
.y4c{bottom:396.186667pt;}
.y114{bottom:397.226667pt;}
.yee{bottom:397.786667pt;}
.ya8{bottom:400.986667pt;}
.y13f{bottom:401.706667pt;}
.y16a{bottom:402.426667pt;}
.ybf{bottom:402.666667pt;}
.y8b{bottom:402.746667pt;}
.yff{bottom:402.986667pt;}
.yd4{bottom:404.346667pt;}
.y194{bottom:406.666667pt;}
.y1be{bottom:408.986667pt;}
.y18{bottom:411.546667pt;}
.y4b{bottom:411.866667pt;}
.y113{bottom:412.826667pt;}
.yed{bottom:413.386667pt;}
.ya7{bottom:416.586667pt;}
.y13e{bottom:417.306667pt;}
.y76{bottom:418.053333pt;}
.yd3{bottom:420.053333pt;}
.y1bd{bottom:424.613333pt;}
.y4a{bottom:427.493333pt;}
.y112{bottom:428.533333pt;}
.y193{bottom:428.933333pt;}
.yec{bottom:429.093333pt;}
.ybe{bottom:431.973333pt;}
.y13d{bottom:433.013333pt;}
.y75{bottom:433.653333pt;}
.y169{bottom:435.333333pt;}
.yd2{bottom:435.653333pt;}
.y17{bottom:443.253333pt;}
.yeb{bottom:444.693333pt;}
.ya6{bottom:445.973333pt;}
.y1bc{bottom:448.293333pt;}
.y74{bottom:449.333333pt;}
.y168{bottom:450.933333pt;}
.y192{bottom:451.253333pt;}
.yd1{bottom:451.333333pt;}
.y16{bottom:458.853333pt;}
.y49{bottom:459.093333pt;}
.y111{bottom:460.133333pt;}
.yea{bottom:460.293333pt;}
.y1bb{bottom:463.893333pt;}
.y13c{bottom:464.613333pt;}
.y73{bottom:464.933333pt;}
.yd0{bottom:466.933333pt;}
.y15{bottom:474.453333pt;}
.y48{bottom:474.773333pt;}
.y167{bottom:474.853333pt;}
.y110{bottom:475.813333pt;}
.ye9{bottom:475.973333pt;}
.y13b{bottom:480.293333pt;}
.y72{bottom:480.533333pt;}
.ycf{bottom:482.533333pt;}
.ya5{bottom:485.893333pt;}
.y1ba{bottom:487.493333pt;}
.ybd{bottom:487.573333pt;}
.y191{bottom:489.173333pt;}
.yfe{bottom:489.813333pt;}
.y14{bottom:490.133333pt;}
.y47{bottom:490.373333pt;}
.y10f{bottom:491.413333pt;}
.ye8{bottom:491.573333pt;}
.y13a{bottom:495.893333pt;}
.y71{bottom:496.213333pt;}
.yce{bottom:498.213333pt;}
.y1b9{bottom:503.173333pt;}
.y190{bottom:504.853333pt;}
.y13{bottom:505.733333pt;}
.y46{bottom:506.053333pt;}
.y10e{bottom:507.013333pt;}
.ye7{bottom:507.253333pt;}
.y166{bottom:507.813333pt;}
.y139{bottom:511.493333pt;}
.y70{bottom:511.813333pt;}
.ycd{bottom:513.813333pt;}
.y45{bottom:521.653333pt;}
.y10d{bottom:522.693333pt;}
.ye6{bottom:522.853333pt;}
.y1b8{bottom:526.773333pt;}
.y18f{bottom:527.093333pt;}
.y138{bottom:527.173333pt;}
.y165{bottom:531.733333pt;}
.y12{bottom:537.413333pt;}
.y10c{bottom:538.293333pt;}
.ye5{bottom:538.453333pt;}
.ya4{bottom:541.413333pt;}
.y1b7{bottom:542.453333pt;}
.y18e{bottom:542.773333pt;}
.ybc{bottom:543.093333pt;}
.y6f{bottom:543.413333pt;}
.y11{bottom:553.013333pt;}
.y44{bottom:553.253333pt;}
.y10b{bottom:553.973333pt;}
.y137{bottom:558.773333pt;}
.y6e{bottom:559.093333pt;}
.yfd{bottom:561.013333pt;}
.y164{bottom:564.933333pt;}
.y18d{bottom:565.013333pt;}
.y1b6{bottom:566.053333pt;}
.ye4{bottom:567.813333pt;}
.y10{bottom:568.613333pt;}
.y43{bottom:568.933333pt;}
.y136{bottom:574.453333pt;}
.y6d{bottom:574.693333pt;}
.y18c{bottom:580.693333pt;}
.y1b5{bottom:581.653333pt;}
.yf{bottom:584.293333pt;}
.y42{bottom:584.533333pt;}
.y10a{bottom:585.573333pt;}
.y135{bottom:590.053333pt;}
.y6c{bottom:590.373333pt;}
.ya3{bottom:597.013333pt;}
.ycc{bottom:598.693333pt;}
.ye{bottom:599.893333pt;}
.y41{bottom:600.213333pt;}
.y18b{bottom:602.933333pt;}
.y1b4{bottom:605.333333pt;}
.y134{bottom:605.653333pt;}
.y6b{bottom:605.973333pt;}
.y163{bottom:607.813333pt;}
.y109{bottom:614.213333pt;}
.ybb{bottom:614.293333pt;}
.y40{bottom:615.813333pt;}
.y18a{bottom:618.613333pt;}
.yfc{bottom:619.973333pt;}
.y1b3{bottom:620.933333pt;}
.y133{bottom:621.333333pt;}
.y6a{bottom:621.573333pt;}
.ye3{bottom:623.333333pt;}
.y162{bottom:623.413333pt;}
.yd{bottom:623.813333pt;}
.y69{bottom:637.253333pt;}
.y161{bottom:639.093333pt;}
.y189{bottom:640.853333pt;}
.y1b2{bottom:644.613333pt;}
.y3f{bottom:647.413333pt;}
.yfb{bottom:651.573333pt;}
.ya2{bottom:652.533333pt;}
.y132{bottom:652.933333pt;}
.y188{bottom:656.613333pt;}
.y1b1{bottom:660.213333pt;}
.y3e{bottom:663.093333pt;}
.yc{bottom:666.693333pt;}
.y131{bottom:668.613333pt;}
.y68{bottom:668.853333pt;}
.yb9{bottom:669.893333pt;}
.y160{bottom:670.693333pt;}
.y3d{bottom:678.693333pt;}
.y187{bottom:678.773333pt;}
.yfa{bottom:680.213333pt;}
.y1b0{bottom:683.813333pt;}
.y130{bottom:684.213333pt;}
.y67{bottom:684.533333pt;}
.y15f{bottom:686.373333pt;}
.y3c{bottom:694.373333pt;}
.y186{bottom:694.533333pt;}
.yb{bottom:698.533333pt;}
.y1af{bottom:699.493333pt;}
.y12f{bottom:699.813333pt;}
.y66{bottom:700.133333pt;}
.y15e{bottom:701.973333pt;}
.ya0{bottom:708.133333pt;}
.y3b{bottom:709.973333pt;}
.ye2{bottom:710.213333pt;}
.y12e{bottom:715.493333pt;}
.y65{bottom:715.733333pt;}
.y185{bottom:716.693333pt;}
.y1ae{bottom:723.093333pt;}
.y3a{bottom:725.573333pt;}
.ya{bottom:730.533333pt;}
.y12d{bottom:731.093333pt;}
.y64{bottom:731.413333pt;}
.y184{bottom:732.453333pt;}
.y15d{bottom:733.573333pt;}
.y1ad{bottom:738.693333pt;}
.yb8{bottom:741.093333pt;}
.y63{bottom:747.013333pt;}
.y9e{bottom:748.053333pt;}
.y15c{bottom:749.253333pt;}
.y183{bottom:754.613333pt;}
.y39{bottom:757.253333pt;}
.y1ac{bottom:762.373333pt;}
.y12c{bottom:762.693333pt;}
.y9{bottom:765.893333pt;}
.y182{bottom:770.373333pt;}
.y62{bottom:770.933333pt;}
.y38{bottom:772.853333pt;}
.y15b{bottom:773.173333pt;}
.y1ab{bottom:777.973333pt;}
.y12b{bottom:778.373333pt;}
.ye1{bottom:781.333333pt;}
.y8{bottom:781.893333pt;}
.y37{bottom:788.533333pt;}
.y181{bottom:792.613333pt;}
.y12a{bottom:793.973333pt;}
.yb6{bottom:796.613333pt;}
.y7{bottom:797.893333pt;}
.y1aa{bottom:801.653333pt;}
.y9d{bottom:803.573333pt;}
.y36{bottom:804.133333pt;}
.y15a{bottom:806.053333pt;}
.y180{bottom:808.293333pt;}
.y129{bottom:809.653333pt;}
.y61{bottom:813.893333pt;}
.y1a9{bottom:817.253333pt;}
.y35{bottom:819.733333pt;}
.y159{bottom:821.733333pt;}
.y128{bottom:825.253333pt;}
.y6{bottom:826.613333pt;}
.y60{bottom:829.493333pt;}
.y17f{bottom:830.533333pt;}
.y34{bottom:835.413333pt;}
.y158{bottom:837.333333pt;}
.y127{bottom:840.853333pt;}
.y9a{bottom:843.493333pt;}
.y5{bottom:843.813333pt;}
.y5f{bottom:845.893333pt;}
.y17e{bottom:846.213333pt;}
.y33{bottom:851.013333pt;}
.ydf{bottom:852.533333pt;}
.y157{bottom:852.933333pt;}
.y1a8{bottom:856.533333pt;}
.y5e{bottom:861.493333pt;}
.yb3{bottom:867.813333pt;}
.y17d{bottom:868.453333pt;}
.y156{bottom:868.613333pt;}
.y126{bottom:872.533333pt;}
.y32{bottom:874.933333pt;}
.y4{bottom:877.893333pt;}
.y1a7{bottom:880.133333pt;}
.y17c{bottom:884.133333pt;}
.y125{bottom:888.133333pt;}
.y5d{bottom:893.493333pt;}
.y1a6{bottom:895.813333pt;}
.y99{bottom:899.120000pt;}
.y3{bottom:899.840000pt;}
.y155{bottom:900.240000pt;}
.y8a{bottom:903.840000pt;}
.y17b{bottom:906.400000pt;}
.y154{bottom:915.840000pt;}
.y31{bottom:917.840000pt;}
.y5c{bottom:918.160000pt;}
.y89{bottom:919.440000pt;}
.y17a{bottom:922.080000pt;}
.y153{bottom:931.520000pt;}
.y30{bottom:933.760000pt;}
.y88{bottom:935.040000pt;}
.y96{bottom:939.040000pt;}
.ydd{bottom:939.440000pt;}
.y179{bottom:944.320000pt;}
.y152{bottom:947.120000pt;}
.y124{bottom:950.720000pt;}
.y5b{bottom:951.040000pt;}
.y1a5{bottom:958.720000pt;}
.y178{bottom:960.000000pt;}
.y151{bottom:962.800000pt;}
.y2f{bottom:966.720000pt;}
.y1a4{bottom:974.320000pt;}
.y150{bottom:978.400000pt;}
.y177{bottom:982.240000pt;}
.y2e{bottom:982.320000pt;}
.y2d{bottom:998.000000pt;}
.y14f{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hf{height:39.200000pt;}
.hb{height:39.280000pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.he{height:54.880000pt;}
.ha{height:54.927899pt;}
.h13{height:54.960000pt;}
.hd{height:54.986667pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h12{height:70.480000pt;}
.h11{height:70.560000pt;}
.h10{height:70.586667pt;}
.h14{height:86.160000pt;}
.h15{height:86.186667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w14{width:92.080000pt;}
.w13{width:97.146667pt;}
.w5{width:134.266667pt;}
.w15{width:134.400000pt;}
.wd{width:136.266667pt;}
.wf{width:139.626667pt;}
.w9{width:141.226667pt;}
.wb{width:150.746667pt;}
.w11{width:153.386667pt;}
.w3{width:164.346667pt;}
.w10{width:165.200000pt;}
.w7{width:166.186667pt;}
.wa{width:171.440000pt;}
.w4{width:172.880000pt;}
.we{width:186.160000pt;}
.w8{width:190.880000pt;}
.wc{width:196.480000pt;}
.w6{width:198.160000pt;}
.w12{width:211.360000pt;}
.w16{width:346.026667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x1b{left:90.079988pt;}
.x17{left:97.839988pt;}
.x1c{left:99.039988pt;}
.x5{left:108.479988pt;}
.x18{left:158.986667pt;}
.x12{left:201.466667pt;}
.xf{left:212.586667pt;}
.x2{left:223.786655pt;}
.x9{left:226.186667pt;}
.xc{left:227.946667pt;}
.x7{left:250.986655pt;}
.x13{left:367.386667pt;}
.x19{left:386.826667pt;}
.x15{left:396.986655pt;}
.xa{left:399.786667pt;}
.x10{left:409.706667pt;}
.xd{left:419.466667pt;}
.x14{left:521.493333pt;}
.xb{left:534.693333pt;}
.x11{left:546.693333pt;}
.x6{left:552.053322pt;}
.xe{left:561.413333pt;}
.x16{left:701.013322pt;}
.x1a{left:706.053322pt;}
.x3{left:711.413322pt;}
}




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