
    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_741f7395691bca1a7904a574.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_9d1bce6b5f5532c5476720f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_930cfe54b1c090fd6c0036d3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_12fdaee31c16ca8044686f6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_c846cca9218ea33508d9e703.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_ad143161e0d4037d6772e008.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_0d0d40ff712921d029a79c57.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_961f48fbf665eee819a6b254.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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:23.760000px;}
.ls17{letter-spacing:-0.936000px;}
.ls2c{letter-spacing:-0.756000px;}
.ls6{letter-spacing:-0.738000px;}
.ls2d{letter-spacing:-0.702000px;}
.ls29{letter-spacing:-0.472200px;}
.ls19{letter-spacing:-0.463800px;}
.ls23{letter-spacing:-0.366000px;}
.ls32{letter-spacing:-0.324000px;}
.lsb{letter-spacing:-0.252000px;}
.ls22{letter-spacing:-0.229800px;}
.ls18{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.193200px;}
.ls35{letter-spacing:-0.174000px;}
.ls24{letter-spacing:-0.132600px;}
.ls4{letter-spacing:-0.129600px;}
.ls12{letter-spacing:-0.115800px;}
.ls34{letter-spacing:-0.115200px;}
.ls9{letter-spacing:-0.064800px;}
.ls13{letter-spacing:-0.058320px;}
.ls25{letter-spacing:-0.048960px;}
.ls1c{letter-spacing:-0.037440px;}
.ls3{letter-spacing:-0.032400px;}
.ls5{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.060600px;}
.ls1a{letter-spacing:0.069000px;}
.ls1b{letter-spacing:0.075000px;}
.ls14{letter-spacing:0.132480px;}
.ls1e{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.162000px;}
.ls20{letter-spacing:0.216000px;}
.ls28{letter-spacing:0.238800px;}
.ls1d{letter-spacing:0.244800px;}
.ls0{letter-spacing:0.256200px;}
.ls31{letter-spacing:0.276480px;}
.ls27{letter-spacing:0.285120px;}
.ls30{letter-spacing:0.313920px;}
.lsa{letter-spacing:0.342000px;}
.ls15{letter-spacing:0.348600px;}
.ls16{letter-spacing:0.371400px;}
.ls2b{letter-spacing:0.391800px;}
.ls2e{letter-spacing:0.396000px;}
.lsc{letter-spacing:0.756000px;}
.ls1f{letter-spacing:19.781280px;}
.ls33{letter-spacing:32.705280px;}
.ls21{letter-spacing:38.304000px;}
.ls26{letter-spacing:56.465280px;}
.lsd{letter-spacing:69.408000px;}
.ls2f{letter-spacing:83.825280px;}
.lse{letter-spacing:90.264000px;}
.ls10{letter-spacing:111.168000px;}
.ls11{letter-spacing:131.328000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws18{word-spacing:-18.808440px;}
.ws1a{word-spacing:-16.488000px;}
.ws1c{word-spacing:-15.362040px;}
.wsf{word-spacing:-15.341640px;}
.ws17{word-spacing:-15.226440px;}
.ws1b{word-spacing:-15.209040px;}
.ws14{word-spacing:-15.045240px;}
.ws16{word-spacing:-15.039240px;}
.ws13{word-spacing:-14.970240px;}
.ws15{word-spacing:-14.932800px;}
.ws22{word-spacing:-14.855040px;}
.ws21{word-spacing:-14.837640px;}
.ws11{word-spacing:-14.754240px;}
.ws19{word-spacing:-14.604240px;}
.ws12{word-spacing:-14.506440px;}
.ws1e{word-spacing:-14.268240px;}
.ws1d{word-spacing:-14.214240px;}
.ws10{word-spacing:-14.034240px;}
.wse{word-spacing:-13.854360px;}
.wsd{word-spacing:-13.566360px;}
.wsc{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.473360px;}
.wsb{word-spacing:-13.447440px;}
.ws6{word-spacing:-13.440960px;}
.wsa{word-spacing:-13.389960px;}
.ws8{word-spacing:-12.546000px;}
.ws7{word-spacing:-12.366000px;}
.ws4{word-spacing:-12.222000px;}
.ws1{word-spacing:-12.204000px;}
.ws2{word-spacing:-12.186000px;}
.ws9{word-spacing:-11.952000px;}
.ws3{word-spacing:-11.466000px;}
.ws1f{word-spacing:-9.833760px;}
.ws23{word-spacing:-9.263760px;}
.ws20{word-spacing:-9.113760px;}
.ws5{word-spacing:0.000000px;}
._10{margin-left:-12.571920px;}
._e{margin-left:-9.011040px;}
._d{margin-left:-7.056960px;}
._f{margin-left:-5.733840px;}
._1a{margin-left:-3.610080px;}
._6{margin-left:-2.484000px;}
._3{margin-left:-1.157760px;}
._0{width:1.058400px;}
._7{width:2.474160px;}
._11{width:3.575280px;}
._8{width:5.076000px;}
._9{width:6.318000px;}
._13{width:8.157120px;}
._a{width:9.333600px;}
._12{width:10.439040px;}
._18{width:12.188160px;}
._19{width:13.372800px;}
._1e{width:16.184640px;}
._1d{width:17.881920px;}
._14{width:18.944640px;}
._15{width:20.234880px;}
._16{width:21.432960px;}
._17{width:22.839360px;}
._1c{width:31.530240px;}
._1{width:192.420480px;}
._4{width:849.329760px;}
._c{width:852.096000px;}
._b{width:1591.674240px;}
._1b{width:1602.474240px;}
._5{width:1605.354240px;}
._2{width:1619.034240px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:3.600000px;}
.y2{bottom:5.940000px;}
.y2d{bottom:6.660000px;}
.y3d{bottom:6.690000px;}
.y35{bottom:6.705000px;}
.y32{bottom:6.840000px;}
.y5c{bottom:7.920000px;}
.y5f{bottom:7.965000px;}
.y56{bottom:8.100000px;}
.y54{bottom:8.280000px;}
.yc9{bottom:8.820000px;}
.y14e{bottom:8.850000px;}
.y26{bottom:9.000000px;}
.y146{bottom:9.045000px;}
.y29{bottom:12.600000px;}
.y1c{bottom:13.500000px;}
.y72{bottom:19.980000px;}
.yd3{bottom:22.320000px;}
.yd1{bottom:22.500000px;}
.y2c{bottom:23.040000px;}
.y34{bottom:23.085000px;}
.y2f{bottom:23.220000px;}
.y3c{bottom:23.250000px;}
.y59{bottom:24.480000px;}
.y5a{bottom:24.660000px;}
.y28{bottom:29.160000px;}
.y170{bottom:29.190000px;}
.y167{bottom:29.205000px;}
.yd9{bottom:33.660000px;}
.y27{bottom:45.540000px;}
.y7{bottom:57.060000px;}
.y15d{bottom:59.040000px;}
.y6{bottom:75.240000px;}
.y5{bottom:93.600000px;}
.y1a1{bottom:113.220000px;}
.y15c{bottom:115.560000px;}
.ybc{bottom:117.180000px;}
.y52{bottom:127.260000px;}
.y13c{bottom:127.800000px;}
.y115{bottom:129.060000px;}
.yed{bottom:130.500000px;}
.y1a0{bottom:133.380000px;}
.y2a{bottom:133.920000px;}
.ybb{bottom:137.340000px;}
.y184{bottom:147.960000px;}
.y13e{bottom:148.680000px;}
.y16d{bottom:148.710000px;}
.y144{bottom:148.725000px;}
.y114{bottom:149.220000px;}
.y25{bottom:149.580000px;}
.yec{bottom:150.660000px;}
.y19f{bottom:153.540000px;}
.y51{bottom:155.520000px;}
.y13b{bottom:157.320000px;}
.yba{bottom:157.500000px;}
.y14a{bottom:158.610000px;}
.y15e{bottom:165.600000px;}
.y183{bottom:168.120000px;}
.y113{bottom:169.380000px;}
.y50{bottom:172.080000px;}
.y19e{bottom:173.700000px;}
.yeb{bottom:179.820000px;}
.yb9{bottom:187.740000px;}
.y4f{bottom:188.460000px;}
.y112{bottom:189.540000px;}
.y182{bottom:192.780000px;}
.yea{bottom:199.980000px;}
.y19d{bottom:202.680000px;}
.y13a{bottom:205.920000px;}
.y15b{bottom:208.980000px;}
.y111{bottom:209.700000px;}
.y1c3{bottom:212.220000px;}
.y181{bottom:212.940000px;}
.y4e{bottom:213.840000px;}
.ye9{bottom:220.140000px;}
.y19c{bottom:222.840000px;}
.y139{bottom:226.080000px;}
.y110{bottom:229.860000px;}
.y4d{bottom:230.400000px;}
.y24{bottom:230.580000px;}
.y1c2{bottom:232.380000px;}
.y180{bottom:233.100000px;}
.yb8{bottom:239.250000px;}
.y15a{bottom:247.170000px;}
.y10f{bottom:250.050000px;}
.y19b{bottom:252.030000px;}
.y1c1{bottom:252.570000px;}
.y138{bottom:255.630000px;}
.y4c{bottom:255.810000px;}
.y23{bottom:259.770000px;}
.ye8{bottom:261.930000px;}
.y17f{bottom:262.290000px;}
.y155{bottom:263.550000px;}
.yb7{bottom:268.410000px;}
.y19a{bottom:272.190000px;}
.y4b{bottom:272.370000px;}
.y1c0{bottom:272.730000px;}
.y10e{bottom:279.570000px;}
.ye7{bottom:282.090000px;}
.y17e{bottom:282.450000px;}
.yb6{bottom:288.570000px;}
.y22{bottom:288.930000px;}
.y199{bottom:292.350000px;}
.y1bf{bottom:292.890000px;}
.y159{bottom:293.430000px;}
.y4a{bottom:297.930000px;}
.y17d{bottom:302.610000px;}
.y137{bottom:304.050000px;}
.yb5{bottom:308.730000px;}
.y49{bottom:314.490000px;}
.y21{bottom:318.090000px;}
.y198{bottom:321.510000px;}
.y17c{bottom:322.770000px;}
.y1be{bottom:323.130000px;}
.y158{bottom:323.310000px;}
.ye6{bottom:323.670000px;}
.y136{bottom:324.210000px;}
.yb4{bottom:328.890000px;}
.y10d{bottom:329.250000px;}
.y48{bottom:330.870000px;}
.y76{bottom:334.290000px;}
.y197{bottom:341.670000px;}
.y17b{bottom:342.750000px;}
.y135{bottom:344.370000px;}
.y20{bottom:347.250000px;}
.y47{bottom:347.430000px;}
.yb3{bottom:349.050000px;}
.y157{bottom:353.190000px;}
.y75{bottom:359.850000px;}
.y196{bottom:361.830000px;}
.y17a{bottom:362.910000px;}
.y134{bottom:364.530000px;}
.ye5{bottom:365.430000px;}
.y92{bottom:370.110000px;}
.y74{bottom:372.810000px;}
.y46{bottom:373.710000px;}
.y1bd{bottom:374.610000px;}
.y1f{bottom:376.230000px;}
.yb2{bottom:378.030000px;}
.y10c{bottom:380.730000px;}
.y195{bottom:381.990000px;}
.y179{bottom:383.070000px;}
.y133{bottom:384.690000px;}
.ye4{bottom:385.590000px;}
.y1bc{bottom:394.770000px;}
.y73{bottom:398.190000px;}
.y91{bottom:398.550000px;}
.y45{bottom:402.870000px;}
.y156{bottom:403.230000px;}
.y1e{bottom:405.390000px;}
.ye3{bottom:405.750000px;}
.y10b{bottom:410.250000px;}
.y194{bottom:411.510000px;}
.y132{bottom:413.850000px;}
.yb1{bottom:418.350000px;}
.y44{bottom:419.250000px;}
.y1d{bottom:421.050000px;}
.y71{bottom:423.750000px;}
.y1bb{bottom:423.930000px;}
.y178{bottom:432.390000px;}
.y151{bottom:433.110000px;}
.y90{bottom:434.910000px;}
.yb0{bottom:438.510000px;}
.y131{bottom:443.010000px;}
.y1ba{bottom:444.090000px;}
.ye2{bottom:447.510000px;}
.y1b{bottom:450.210000px;}
.y177{bottom:452.550000px;}
.y70{bottom:456.690000px;}
.y43{bottom:458.310000px;}
.yaf{bottom:458.670000px;}
.y10a{bottom:458.850000px;}
.y193{bottom:459.930000px;}
.y154{bottom:462.990000px;}
.y1b9{bottom:464.250000px;}
.y8f{bottom:471.315000px;}
.y130{bottom:472.215000px;}
.y18e{bottom:476.535000px;}
.ye1{bottom:477.075000px;}
.yae{bottom:478.875000px;}
.y109{bottom:479.055000px;}
.y176{bottom:481.755000px;}
.y6f{bottom:482.295000px;}
.y1b8{bottom:484.455000px;}
.y1a{bottom:492.915000px;}
.y42{bottom:497.235000px;}
.y8e{bottom:498.675000px;}
.yad{bottom:499.035000px;}
.y108{bottom:499.215000px;}
.y12f{bottom:501.375000px;}
.y175{bottom:501.915000px;}
.y1b7{bottom:504.435000px;}
.y192{bottom:506.415000px;}
.y6d{bottom:507.675000px;}
.y8d{bottom:516.855000px;}
.yac{bottom:519.195000px;}
.y107{bottom:519.375000px;}
.y19{bottom:522.075000px;}
.y153{bottom:522.795000px;}
.y6c{bottom:524.235000px;}
.y1b6{bottom:524.595000px;}
.ye0{bottom:526.935000px;}
.y12e{bottom:530.535000px;}
.y174{bottom:531.075000px;}
.y8c{bottom:535.215000px;}
.y41{bottom:536.115000px;}
.y191{bottom:536.295000px;}
.yab{bottom:539.355000px;}
.y106{bottom:539.535000px;}
.y1b5{bottom:544.755000px;}
.y6b{bottom:549.615000px;}
.y12d{bottom:550.695000px;}
.y18{bottom:551.235000px;}
.y8b{bottom:553.575000px;}
.yaa{bottom:559.515000px;}
.y190{bottom:566.175000px;}
.y105{bottom:568.515000px;}
.y173{bottom:569.055000px;}
.y12c{bottom:570.675000px;}
.y8a{bottom:571.935000px;}
.y152{bottom:572.835000px;}
.y1b4{bottom:573.915000px;}
.y40{bottom:575.175000px;}
.ydf{bottom:578.235000px;}
.ya9{bottom:579.675000px;}
.y17{bottom:580.395000px;}
.y16c{bottom:585.615000px;}
.y104{bottom:588.675000px;}
.y89{bottom:590.115000px;}
.yde{bottom:593.895000px;}
.y1b3{bottom:594.075000px;}
.y12b{bottom:599.835000px;}
.y6a{bottom:600.555000px;}
.y149{bottom:602.715000px;}
.y88{bottom:608.475000px;}
.y103{bottom:608.835000px;}
.y16{bottom:609.555000px;}
.ya8{bottom:609.915000px;}
.ycf{bottom:611.535000px;}
.y3f{bottom:614.055000px;}
.y172{bottom:615.495000px;}
.y18f{bottom:616.215000px;}
.y12a{bottom:619.995000px;}
.ydd{bottom:623.055000px;}
.y1b2{bottom:623.235000px;}
.y69{bottom:626.115000px;}
.y87{bottom:626.835000px;}
.y102{bottom:628.995000px;}
.y150{bottom:632.595000px;}
.y15{bottom:638.715000px;}
.yce{bottom:640.695000px;}
.y1b1{bottom:643.395000px;}
.y86{bottom:645.195000px;}
.y171{bottom:645.375000px;}
.y129{bottom:649.155000px;}
.y68{bottom:651.495000px;}
.ydc{bottom:652.215000px;}
.y3e{bottom:653.115000px;}
.ycd{bottom:657.075000px;}
.y101{bottom:658.155000px;}
.y18d{bottom:659.595000px;}
.ya7{bottom:661.395000px;}
.y14f{bottom:662.655000px;}
.y1b0{bottom:663.555000px;}
.y14{bottom:668.955000px;}
.y85{bottom:672.375000px;}
.y16f{bottom:675.255000px;}
.y67{bottom:677.055000px;}
.y100{bottom:678.315000px;}
.ya6{bottom:681.555000px;}
.y3b{bottom:691.995000px;}
.y14d{bottom:692.535000px;}
.y1af{bottom:693.795000px;}
.ydb{bottom:695.235000px;}
.y18c{bottom:697.785000px;}
.y84{bottom:699.765000px;}
.ya5{bottom:701.745000px;}
.y13{bottom:702.465000px;}
.ycc{bottom:706.425000px;}
.y128{bottom:707.505000px;}
.yff{bottom:707.865000px;}
.y187{bottom:714.165000px;}
.ya4{bottom:721.905000px;}
.y14c{bottom:722.445000px;}
.y16e{bottom:725.325000px;}
.y83{bottom:727.125000px;}
.y66{bottom:728.025000px;}
.y3a{bottom:731.085000px;}
.y12{bottom:731.625000px;}
.ycb{bottom:735.585000px;}
.y127{bottom:736.665000px;}
.ya3{bottom:741.885000px;}
.y18b{bottom:744.045000px;}
.y1ae{bottom:745.305000px;}
.y14b{bottom:752.325000px;}
.y65{bottom:753.585000px;}
.y82{bottom:754.305000px;}
.yfe{bottom:756.465000px;}
.y126{bottom:756.825000px;}
.y11{bottom:760.785000px;}
.yca{bottom:764.745000px;}
.y1ad{bottom:765.465000px;}
.y16b{bottom:768.705000px;}
.y39{bottom:769.965000px;}
.ya2{bottom:771.045000px;}
.y18a{bottom:773.925000px;}
.yfd{bottom:776.625000px;}
.yda{bottom:778.605000px;}
.y143{bottom:782.205000px;}
.y1ac{bottom:785.625000px;}
.y125{bottom:785.805000px;}
.y10{bottom:789.945000px;}
.y81{bottom:790.665000px;}
.ya1{bottom:791.205000px;}
.y64{bottom:793.365000px;}
.yc8{bottom:793.905000px;}
.yd8{bottom:794.985000px;}
.yfc{bottom:796.785000px;}
.y189{bottom:803.805000px;}
.y1ab{bottom:805.785000px;}
.y124{bottom:805.965000px;}
.y63{bottom:806.325000px;}
.y16a{bottom:806.865000px;}
.y38{bottom:809.025000px;}
.ya0{bottom:811.365000px;}
.y148{bottom:812.085000px;}
.yf{bottom:814.605000px;}
.yfb{bottom:816.945000px;}
.y80{bottom:818.025000px;}
.yc7{bottom:822.885000px;}
.y164{bottom:823.245000px;}
.y1aa{bottom:825.945000px;}
.y9f{bottom:831.525000px;}
.y62{bottom:831.705000px;}
.y123{bottom:835.125000px;}
.yfa{bottom:837.105000px;}
.y7f{bottom:845.385000px;}
.y37{bottom:847.905000px;}
.yd7{bottom:849.525000px;}
.y9e{bottom:851.685000px;}
.yc6{bottom:852.045000px;}
.y169{bottom:853.125000px;}
.y188{bottom:853.845000px;}
.y1a9{bottom:854.925000px;}
.y122{bottom:855.285000px;}
.y147{bottom:862.125000px;}
.yf9{bottom:866.085000px;}
.y9d{bottom:871.845000px;}
.y7e{bottom:872.565000px;}
.y61{bottom:873.825000px;}
.y1a8{bottom:875.085000px;}
.yc5{bottom:881.205000px;}
.y168{bottom:883.005000px;}
.y121{bottom:884.445000px;}
.yf8{bottom:886.245000px;}
.y36{bottom:886.785000px;}
.y9c{bottom:892.005000px;}
.yd6{bottom:892.725000px;}
.y1a7{bottom:895.245000px;}
.y186{bottom:897.225000px;}
.y60{bottom:899.205000px;}
.y120{bottom:904.605000px;}
.yf7{bottom:906.405000px;}
.y7d{bottom:908.925000px;}
.yc4{bottom:910.365000px;}
.y9b{bottom:912.165000px;}
.y166{bottom:912.885000px;}
.y1a6{bottom:915.405000px;}
.y145{bottom:921.885000px;}
.y5e{bottom:924.765000px;}
.y33{bottom:925.845000px;}
.yf6{bottom:926.610000px;}
.y9a{bottom:932.370000px;}
.y11f{bottom:933.810000px;}
.y185{bottom:935.430000px;}
.y1a5{bottom:935.610000px;}
.yc3{bottom:939.570000px;}
.yd5{bottom:942.810000px;}
.y7c{bottom:945.330000px;}
.y5d{bottom:950.190000px;}
.y13d{bottom:951.810000px;}
.y11e{bottom:953.970000px;}
.yf5{bottom:955.770000px;}
.ye{bottom:960.090000px;}
.y99{bottom:961.350000px;}
.y165{bottom:962.970000px;}
.y31{bottom:964.770000px;}
.yc2{bottom:968.730000px;}
.y11d{bottom:974.130000px;}
.y5b{bottom:975.750000px;}
.yf4{bottom:975.930000px;}
.y7b{bottom:981.510000px;}
.y142{bottom:981.690000px;}
.y1a4{bottom:984.930000px;}
.yd4{bottom:986.010000px;}
.yd{bottom:989.250000px;}
.y11c{bottom:994.290000px;}
.yf3{bottom:996.090000px;}
.yc1{bottom:997.890000px;}
.y58{bottom:1001.130000px;}
.y98{bottom:1001.670000px;}
.y30{bottom:1003.830000px;}
.y1a3{bottom:1005.090000px;}
.y163{bottom:1006.350000px;}
.y141{bottom:1011.570000px;}
.y7a{bottom:1017.870000px;}
.yc{bottom:1018.410000px;}
.y97{bottom:1021.830000px;}
.y11b{bottom:1023.270000px;}
.yf2{bottom:1025.250000px;}
.yc0{bottom:1027.050000px;}
.yd2{bottom:1029.390000px;}
.y140{bottom:1041.450000px;}
.y96{bottom:1041.990000px;}
.y2e{bottom:1042.710000px;}
.y57{bottom:1043.070000px;}
.y11a{bottom:1043.430000px;}
.y162{bottom:1044.510000px;}
.yf1{bottom:1045.410000px;}
.yb{bottom:1047.390000px;}
.y79{bottom:1054.230000px;}
.ybf{bottom:1056.930000px;}
.y161{bottom:1060.890000px;}
.y95{bottom:1062.150000px;}
.y119{bottom:1063.590000px;}
.yf0{bottom:1065.570000px;}
.y55{bottom:1068.630000px;}
.yd0{bottom:1072.590000px;}
.ya{bottom:1076.550000px;}
.y2b{bottom:1081.770000px;}
.y94{bottom:1082.310000px;}
.y118{bottom:1083.750000px;}
.yef{bottom:1085.550000px;}
.y78{bottom:1090.410000px;}
.y160{bottom:1090.770000px;}
.y13f{bottom:1091.490000px;}
.y53{bottom:1094.190000px;}
.y1a2{bottom:1094.550000px;}
.ybe{bottom:1100.310000px;}
.y117{bottom:1103.910000px;}
.y9{bottom:1105.710000px;}
.y93{bottom:1112.550000px;}
.yee{bottom:1114.710000px;}
.y15f{bottom:1120.650000px;}
.y77{bottom:1130.370000px;}
.ybd{bottom:1130.550000px;}
.y116{bottom:1133.430000px;}
.y8{bottom:1134.870000px;}
.y4{bottom:1154.490000px;}
.y3{bottom:1172.880000px;}
.y1{bottom:1187.280000px;}
.h16{height:16.560000px;}
.h2{height:22.500000px;}
.h13{height:25.380000px;}
.h14{height:25.416000px;}
.h11{height:25.560000px;}
.h17{height:25.596000px;}
.hf{height:27.180000px;}
.h1b{height:28.980000px;}
.h25{height:29.016000px;}
.h8{height:29.160000px;}
.h7{height:29.196000px;}
.h18{height:32.940000px;}
.hb{height:38.880000px;}
.hd{height:38.916000px;}
.hc{height:39.060000px;}
.he{height:39.096000px;}
.h12{height:41.940000px;}
.h15{height:42.120000px;}
.h1e{height:42.480000px;}
.h1d{height:42.660000px;}
.h22{height:49.320000px;}
.h1c{height:49.356000px;}
.ha{height:53.709961px;}
.h1f{height:53.820000px;}
.h4{height:59.439023px;}
.h10{height:61.189805px;}
.h3{height:65.884219px;}
.h9{height:67.500000px;}
.h6{height:67.824844px;}
.h1a{height:71.613281px;}
.h20{height:73.722656px;}
.h26{height:79.200000px;}
.h19{height:80.208984px;}
.h5{height:86.255508px;}
.h21{height:168.840000px;}
.h23{height:168.870000px;}
.h24{height:178.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:41.436000px;}
.w9{width:95.796000px;}
.w7{width:106.416000px;}
.w5{width:116.676000px;}
.w12{width:127.656000px;}
.wd{width:138.276000px;}
.w15{width:158.790000px;}
.w10{width:202.215000px;}
.wb{width:265.710000px;}
.w6{width:287.130000px;}
.w2{width:297.795000px;}
.wa{width:361.695000px;}
.w3{width:424.515000px;}
.w8{width:467.895000px;}
.w16{width:520.275000px;}
.w11{width:520.995000px;}
.we{width:584.925000px;}
.w13{width:595.545000px;}
.wf{width:615.885000px;}
.wc{width:723.210000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x18{left:9.900000px;}
.x1{left:84.960000px;}
.xb{left:93.825000px;}
.x10{left:101.555987px;}
.x15{left:111.995987px;}
.x11{left:117.935987px;}
.x17{left:128.016000px;}
.x12{left:134.495987px;}
.x16{left:138.995987px;}
.xd{left:180.750000px;}
.x2{left:190.290000px;}
.xa{left:191.370000px;}
.x4{left:193.350000px;}
.x7{left:212.609987px;}
.xf{left:223.230000px;}
.x14{left:287.175000px;}
.xc{left:297.795000px;}
.x13{left:317.055000px;}
.x9{left:329.295000px;}
.x3{left:382.755000px;}
.x6{left:446.474987px;}
.xe{left:542.445000px;}
.x5{left:745.709987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls2c{letter-spacing:-0.672000pt;}
.ls6{letter-spacing:-0.656000pt;}
.ls2d{letter-spacing:-0.624000pt;}
.ls29{letter-spacing:-0.419733pt;}
.ls19{letter-spacing:-0.412267pt;}
.ls23{letter-spacing:-0.325333pt;}
.ls32{letter-spacing:-0.288000pt;}
.lsb{letter-spacing:-0.224000pt;}
.ls22{letter-spacing:-0.204267pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.171733pt;}
.ls35{letter-spacing:-0.154667pt;}
.ls24{letter-spacing:-0.117867pt;}
.ls4{letter-spacing:-0.115200pt;}
.ls12{letter-spacing:-0.102933pt;}
.ls34{letter-spacing:-0.102400pt;}
.ls9{letter-spacing:-0.057600pt;}
.ls13{letter-spacing:-0.051840pt;}
.ls25{letter-spacing:-0.043520pt;}
.ls1c{letter-spacing:-0.033280pt;}
.ls3{letter-spacing:-0.028800pt;}
.ls5{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.053867pt;}
.ls1a{letter-spacing:0.061333pt;}
.ls1b{letter-spacing:0.066667pt;}
.ls14{letter-spacing:0.117760pt;}
.ls1e{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.144000pt;}
.ls20{letter-spacing:0.192000pt;}
.ls28{letter-spacing:0.212267pt;}
.ls1d{letter-spacing:0.217600pt;}
.ls0{letter-spacing:0.227733pt;}
.ls31{letter-spacing:0.245760pt;}
.ls27{letter-spacing:0.253440pt;}
.ls30{letter-spacing:0.279040pt;}
.lsa{letter-spacing:0.304000pt;}
.ls15{letter-spacing:0.309867pt;}
.ls16{letter-spacing:0.330133pt;}
.ls2b{letter-spacing:0.348267pt;}
.ls2e{letter-spacing:0.352000pt;}
.lsc{letter-spacing:0.672000pt;}
.ls1f{letter-spacing:17.583360pt;}
.ls33{letter-spacing:29.071360pt;}
.ls21{letter-spacing:34.048000pt;}
.ls26{letter-spacing:50.191360pt;}
.lsd{letter-spacing:61.696000pt;}
.ls2f{letter-spacing:74.511360pt;}
.lse{letter-spacing:80.234667pt;}
.ls10{letter-spacing:98.816000pt;}
.ls11{letter-spacing:116.736000pt;}
.ws18{word-spacing:-16.718613pt;}
.ws1a{word-spacing:-14.656000pt;}
.ws1c{word-spacing:-13.655147pt;}
.wsf{word-spacing:-13.637013pt;}
.ws17{word-spacing:-13.534613pt;}
.ws1b{word-spacing:-13.519147pt;}
.ws14{word-spacing:-13.373547pt;}
.ws16{word-spacing:-13.368213pt;}
.ws13{word-spacing:-13.306880pt;}
.ws15{word-spacing:-13.273600pt;}
.ws22{word-spacing:-13.204480pt;}
.ws21{word-spacing:-13.189013pt;}
.ws11{word-spacing:-13.114880pt;}
.ws19{word-spacing:-12.981547pt;}
.ws12{word-spacing:-12.894613pt;}
.ws1e{word-spacing:-12.682880pt;}
.ws1d{word-spacing:-12.634880pt;}
.ws10{word-spacing:-12.474880pt;}
.wse{word-spacing:-12.314987pt;}
.wsd{word-spacing:-12.058987pt;}
.wsc{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.976320pt;}
.wsb{word-spacing:-11.953280pt;}
.ws6{word-spacing:-11.947520pt;}
.wsa{word-spacing:-11.902187pt;}
.ws8{word-spacing:-11.152000pt;}
.ws7{word-spacing:-10.992000pt;}
.ws4{word-spacing:-10.864000pt;}
.ws1{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.832000pt;}
.ws9{word-spacing:-10.624000pt;}
.ws3{word-spacing:-10.192000pt;}
.ws1f{word-spacing:-8.741120pt;}
.ws23{word-spacing:-8.234453pt;}
.ws20{word-spacing:-8.101120pt;}
.ws5{word-spacing:0.000000pt;}
._10{margin-left:-11.175040pt;}
._e{margin-left:-8.009813pt;}
._d{margin-left:-6.272853pt;}
._f{margin-left:-5.096747pt;}
._1a{margin-left:-3.208960pt;}
._6{margin-left:-2.208000pt;}
._3{margin-left:-1.029120pt;}
._0{width:0.940800pt;}
._7{width:2.199253pt;}
._11{width:3.178027pt;}
._8{width:4.512000pt;}
._9{width:5.616000pt;}
._13{width:7.250773pt;}
._a{width:8.296533pt;}
._12{width:9.279147pt;}
._18{width:10.833920pt;}
._19{width:11.886933pt;}
._1e{width:14.386347pt;}
._1d{width:15.895040pt;}
._14{width:16.839680pt;}
._15{width:17.986560pt;}
._16{width:19.051520pt;}
._17{width:20.301653pt;}
._1c{width:28.026880pt;}
._1{width:171.040427pt;}
._4{width:754.959787pt;}
._c{width:757.418667pt;}
._b{width:1414.821547pt;}
._1b{width:1424.421547pt;}
._5{width:1426.981547pt;}
._2{width:1439.141547pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:3.200000pt;}
.y2{bottom:5.280000pt;}
.y2d{bottom:5.920000pt;}
.y3d{bottom:5.946667pt;}
.y35{bottom:5.960000pt;}
.y32{bottom:6.080000pt;}
.y5c{bottom:7.040000pt;}
.y5f{bottom:7.080000pt;}
.y56{bottom:7.200000pt;}
.y54{bottom:7.360000pt;}
.yc9{bottom:7.840000pt;}
.y14e{bottom:7.866667pt;}
.y26{bottom:8.000000pt;}
.y146{bottom:8.040000pt;}
.y29{bottom:11.200000pt;}
.y1c{bottom:12.000000pt;}
.y72{bottom:17.760000pt;}
.yd3{bottom:19.840000pt;}
.yd1{bottom:20.000000pt;}
.y2c{bottom:20.480000pt;}
.y34{bottom:20.520000pt;}
.y2f{bottom:20.640000pt;}
.y3c{bottom:20.666667pt;}
.y59{bottom:21.760000pt;}
.y5a{bottom:21.920000pt;}
.y28{bottom:25.920000pt;}
.y170{bottom:25.946667pt;}
.y167{bottom:25.960000pt;}
.yd9{bottom:29.920000pt;}
.y27{bottom:40.480000pt;}
.y7{bottom:50.720000pt;}
.y15d{bottom:52.480000pt;}
.y6{bottom:66.880000pt;}
.y5{bottom:83.200000pt;}
.y1a1{bottom:100.640000pt;}
.y15c{bottom:102.720000pt;}
.ybc{bottom:104.160000pt;}
.y52{bottom:113.120000pt;}
.y13c{bottom:113.600000pt;}
.y115{bottom:114.720000pt;}
.yed{bottom:116.000000pt;}
.y1a0{bottom:118.560000pt;}
.y2a{bottom:119.040000pt;}
.ybb{bottom:122.080000pt;}
.y184{bottom:131.520000pt;}
.y13e{bottom:132.160000pt;}
.y16d{bottom:132.186667pt;}
.y144{bottom:132.200000pt;}
.y114{bottom:132.640000pt;}
.y25{bottom:132.960000pt;}
.yec{bottom:133.920000pt;}
.y19f{bottom:136.480000pt;}
.y51{bottom:138.240000pt;}
.y13b{bottom:139.840000pt;}
.yba{bottom:140.000000pt;}
.y14a{bottom:140.986667pt;}
.y15e{bottom:147.200000pt;}
.y183{bottom:149.440000pt;}
.y113{bottom:150.560000pt;}
.y50{bottom:152.960000pt;}
.y19e{bottom:154.400000pt;}
.yeb{bottom:159.840000pt;}
.yb9{bottom:166.880000pt;}
.y4f{bottom:167.520000pt;}
.y112{bottom:168.480000pt;}
.y182{bottom:171.360000pt;}
.yea{bottom:177.760000pt;}
.y19d{bottom:180.160000pt;}
.y13a{bottom:183.040000pt;}
.y15b{bottom:185.760000pt;}
.y111{bottom:186.400000pt;}
.y1c3{bottom:188.640000pt;}
.y181{bottom:189.280000pt;}
.y4e{bottom:190.080000pt;}
.ye9{bottom:195.680000pt;}
.y19c{bottom:198.080000pt;}
.y139{bottom:200.960000pt;}
.y110{bottom:204.320000pt;}
.y4d{bottom:204.800000pt;}
.y24{bottom:204.960000pt;}
.y1c2{bottom:206.560000pt;}
.y180{bottom:207.200000pt;}
.yb8{bottom:212.666667pt;}
.y15a{bottom:219.706667pt;}
.y10f{bottom:222.266667pt;}
.y19b{bottom:224.026667pt;}
.y1c1{bottom:224.506667pt;}
.y138{bottom:227.226667pt;}
.y4c{bottom:227.386667pt;}
.y23{bottom:230.906667pt;}
.ye8{bottom:232.826667pt;}
.y17f{bottom:233.146667pt;}
.y155{bottom:234.266667pt;}
.yb7{bottom:238.586667pt;}
.y19a{bottom:241.946667pt;}
.y4b{bottom:242.106667pt;}
.y1c0{bottom:242.426667pt;}
.y10e{bottom:248.506667pt;}
.ye7{bottom:250.746667pt;}
.y17e{bottom:251.066667pt;}
.yb6{bottom:256.506667pt;}
.y22{bottom:256.826667pt;}
.y199{bottom:259.866667pt;}
.y1bf{bottom:260.346667pt;}
.y159{bottom:260.826667pt;}
.y4a{bottom:264.826667pt;}
.y17d{bottom:268.986667pt;}
.y137{bottom:270.266667pt;}
.yb5{bottom:274.426667pt;}
.y49{bottom:279.546667pt;}
.y21{bottom:282.746667pt;}
.y198{bottom:285.786667pt;}
.y17c{bottom:286.906667pt;}
.y1be{bottom:287.226667pt;}
.y158{bottom:287.386667pt;}
.ye6{bottom:287.706667pt;}
.y136{bottom:288.186667pt;}
.yb4{bottom:292.346667pt;}
.y10d{bottom:292.666667pt;}
.y48{bottom:294.106667pt;}
.y76{bottom:297.146667pt;}
.y197{bottom:303.706667pt;}
.y17b{bottom:304.666667pt;}
.y135{bottom:306.106667pt;}
.y20{bottom:308.666667pt;}
.y47{bottom:308.826667pt;}
.yb3{bottom:310.266667pt;}
.y157{bottom:313.946667pt;}
.y75{bottom:319.866667pt;}
.y196{bottom:321.626667pt;}
.y17a{bottom:322.586667pt;}
.y134{bottom:324.026667pt;}
.ye5{bottom:324.826667pt;}
.y92{bottom:328.986667pt;}
.y74{bottom:331.386667pt;}
.y46{bottom:332.186667pt;}
.y1bd{bottom:332.986667pt;}
.y1f{bottom:334.426667pt;}
.yb2{bottom:336.026667pt;}
.y10c{bottom:338.426667pt;}
.y195{bottom:339.546667pt;}
.y179{bottom:340.506667pt;}
.y133{bottom:341.946667pt;}
.ye4{bottom:342.746667pt;}
.y1bc{bottom:350.906667pt;}
.y73{bottom:353.946667pt;}
.y91{bottom:354.266667pt;}
.y45{bottom:358.106667pt;}
.y156{bottom:358.426667pt;}
.y1e{bottom:360.346667pt;}
.ye3{bottom:360.666667pt;}
.y10b{bottom:364.666667pt;}
.y194{bottom:365.786667pt;}
.y132{bottom:367.866667pt;}
.yb1{bottom:371.866667pt;}
.y44{bottom:372.666667pt;}
.y1d{bottom:374.266667pt;}
.y71{bottom:376.666667pt;}
.y1bb{bottom:376.826667pt;}
.y178{bottom:384.346667pt;}
.y151{bottom:384.986667pt;}
.y90{bottom:386.586667pt;}
.yb0{bottom:389.786667pt;}
.y131{bottom:393.786667pt;}
.y1ba{bottom:394.746667pt;}
.ye2{bottom:397.786667pt;}
.y1b{bottom:400.186667pt;}
.y177{bottom:402.266667pt;}
.y70{bottom:405.946667pt;}
.y43{bottom:407.386667pt;}
.yaf{bottom:407.706667pt;}
.y10a{bottom:407.866667pt;}
.y193{bottom:408.826667pt;}
.y154{bottom:411.546667pt;}
.y1b9{bottom:412.666667pt;}
.y8f{bottom:418.946667pt;}
.y130{bottom:419.746667pt;}
.y18e{bottom:423.586667pt;}
.ye1{bottom:424.066667pt;}
.yae{bottom:425.666667pt;}
.y109{bottom:425.826667pt;}
.y176{bottom:428.226667pt;}
.y6f{bottom:428.706667pt;}
.y1b8{bottom:430.626667pt;}
.y1a{bottom:438.146667pt;}
.y42{bottom:441.986667pt;}
.y8e{bottom:443.266667pt;}
.yad{bottom:443.586667pt;}
.y108{bottom:443.746667pt;}
.y12f{bottom:445.666667pt;}
.y175{bottom:446.146667pt;}
.y1b7{bottom:448.386667pt;}
.y192{bottom:450.146667pt;}
.y6d{bottom:451.266667pt;}
.y8d{bottom:459.426667pt;}
.yac{bottom:461.506667pt;}
.y107{bottom:461.666667pt;}
.y19{bottom:464.066667pt;}
.y153{bottom:464.706667pt;}
.y6c{bottom:465.986667pt;}
.y1b6{bottom:466.306667pt;}
.ye0{bottom:468.386667pt;}
.y12e{bottom:471.586667pt;}
.y174{bottom:472.066667pt;}
.y8c{bottom:475.746667pt;}
.y41{bottom:476.546667pt;}
.y191{bottom:476.706667pt;}
.yab{bottom:479.426667pt;}
.y106{bottom:479.586667pt;}
.y1b5{bottom:484.226667pt;}
.y6b{bottom:488.546667pt;}
.y12d{bottom:489.506667pt;}
.y18{bottom:489.986667pt;}
.y8b{bottom:492.066667pt;}
.yaa{bottom:497.346667pt;}
.y190{bottom:503.266667pt;}
.y105{bottom:505.346667pt;}
.y173{bottom:505.826667pt;}
.y12c{bottom:507.266667pt;}
.y8a{bottom:508.386667pt;}
.y152{bottom:509.186667pt;}
.y1b4{bottom:510.146667pt;}
.y40{bottom:511.266667pt;}
.ydf{bottom:513.986667pt;}
.ya9{bottom:515.266667pt;}
.y17{bottom:515.906667pt;}
.y16c{bottom:520.546667pt;}
.y104{bottom:523.266667pt;}
.y89{bottom:524.546667pt;}
.yde{bottom:527.906667pt;}
.y1b3{bottom:528.066667pt;}
.y12b{bottom:533.186667pt;}
.y6a{bottom:533.826667pt;}
.y149{bottom:535.746667pt;}
.y88{bottom:540.866667pt;}
.y103{bottom:541.186667pt;}
.y16{bottom:541.826667pt;}
.ya8{bottom:542.146667pt;}
.ycf{bottom:543.586667pt;}
.y3f{bottom:545.826667pt;}
.y172{bottom:547.106667pt;}
.y18f{bottom:547.746667pt;}
.y12a{bottom:551.106667pt;}
.ydd{bottom:553.826667pt;}
.y1b2{bottom:553.986667pt;}
.y69{bottom:556.546667pt;}
.y87{bottom:557.186667pt;}
.y102{bottom:559.106667pt;}
.y150{bottom:562.306667pt;}
.y15{bottom:567.746667pt;}
.yce{bottom:569.506667pt;}
.y1b1{bottom:571.906667pt;}
.y86{bottom:573.506667pt;}
.y171{bottom:573.666667pt;}
.y129{bottom:577.026667pt;}
.y68{bottom:579.106667pt;}
.ydc{bottom:579.746667pt;}
.y3e{bottom:580.546667pt;}
.ycd{bottom:584.066667pt;}
.y101{bottom:585.026667pt;}
.y18d{bottom:586.306667pt;}
.ya7{bottom:587.906667pt;}
.y14f{bottom:589.026667pt;}
.y1b0{bottom:589.826667pt;}
.y14{bottom:594.626667pt;}
.y85{bottom:597.666667pt;}
.y16f{bottom:600.226667pt;}
.y67{bottom:601.826667pt;}
.y100{bottom:602.946667pt;}
.ya6{bottom:605.826667pt;}
.y3b{bottom:615.106667pt;}
.y14d{bottom:615.586667pt;}
.y1af{bottom:616.706667pt;}
.ydb{bottom:617.986667pt;}
.y18c{bottom:620.253333pt;}
.y84{bottom:622.013333pt;}
.ya5{bottom:623.773333pt;}
.y13{bottom:624.413333pt;}
.ycc{bottom:627.933333pt;}
.y128{bottom:628.893333pt;}
.yff{bottom:629.213333pt;}
.y187{bottom:634.813333pt;}
.ya4{bottom:641.693333pt;}
.y14c{bottom:642.173333pt;}
.y16e{bottom:644.733333pt;}
.y83{bottom:646.333333pt;}
.y66{bottom:647.133333pt;}
.y3a{bottom:649.853333pt;}
.y12{bottom:650.333333pt;}
.ycb{bottom:653.853333pt;}
.y127{bottom:654.813333pt;}
.ya3{bottom:659.453333pt;}
.y18b{bottom:661.373333pt;}
.y1ae{bottom:662.493333pt;}
.y14b{bottom:668.733333pt;}
.y65{bottom:669.853333pt;}
.y82{bottom:670.493333pt;}
.yfe{bottom:672.413333pt;}
.y126{bottom:672.733333pt;}
.y11{bottom:676.253333pt;}
.yca{bottom:679.773333pt;}
.y1ad{bottom:680.413333pt;}
.y16b{bottom:683.293333pt;}
.y39{bottom:684.413333pt;}
.ya2{bottom:685.373333pt;}
.y18a{bottom:687.933333pt;}
.yfd{bottom:690.333333pt;}
.yda{bottom:692.093333pt;}
.y143{bottom:695.293333pt;}
.y1ac{bottom:698.333333pt;}
.y125{bottom:698.493333pt;}
.y10{bottom:702.173333pt;}
.y81{bottom:702.813333pt;}
.ya1{bottom:703.293333pt;}
.y64{bottom:705.213333pt;}
.yc8{bottom:705.693333pt;}
.yd8{bottom:706.653333pt;}
.yfc{bottom:708.253333pt;}
.y189{bottom:714.493333pt;}
.y1ab{bottom:716.253333pt;}
.y124{bottom:716.413333pt;}
.y63{bottom:716.733333pt;}
.y16a{bottom:717.213333pt;}
.y38{bottom:719.133333pt;}
.ya0{bottom:721.213333pt;}
.y148{bottom:721.853333pt;}
.yf{bottom:724.093333pt;}
.yfb{bottom:726.173333pt;}
.y80{bottom:727.133333pt;}
.yc7{bottom:731.453333pt;}
.y164{bottom:731.773333pt;}
.y1aa{bottom:734.173333pt;}
.y9f{bottom:739.133333pt;}
.y62{bottom:739.293333pt;}
.y123{bottom:742.333333pt;}
.yfa{bottom:744.093333pt;}
.y7f{bottom:751.453333pt;}
.y37{bottom:753.693333pt;}
.yd7{bottom:755.133333pt;}
.y9e{bottom:757.053333pt;}
.yc6{bottom:757.373333pt;}
.y169{bottom:758.333333pt;}
.y188{bottom:758.973333pt;}
.y1a9{bottom:759.933333pt;}
.y122{bottom:760.253333pt;}
.y147{bottom:766.333333pt;}
.yf9{bottom:769.853333pt;}
.y9d{bottom:774.973333pt;}
.y7e{bottom:775.613333pt;}
.y61{bottom:776.733333pt;}
.y1a8{bottom:777.853333pt;}
.yc5{bottom:783.293333pt;}
.y168{bottom:784.893333pt;}
.y121{bottom:786.173333pt;}
.yf8{bottom:787.773333pt;}
.y36{bottom:788.253333pt;}
.y9c{bottom:792.893333pt;}
.yd6{bottom:793.533333pt;}
.y1a7{bottom:795.773333pt;}
.y186{bottom:797.533333pt;}
.y60{bottom:799.293333pt;}
.y120{bottom:804.093333pt;}
.yf7{bottom:805.693333pt;}
.y7d{bottom:807.933333pt;}
.yc4{bottom:809.213333pt;}
.y9b{bottom:810.813333pt;}
.y166{bottom:811.453333pt;}
.y1a6{bottom:813.693333pt;}
.y145{bottom:819.453333pt;}
.y5e{bottom:822.013333pt;}
.y33{bottom:822.973333pt;}
.yf6{bottom:823.653333pt;}
.y9a{bottom:828.773333pt;}
.y11f{bottom:830.053333pt;}
.y185{bottom:831.493333pt;}
.y1a5{bottom:831.653333pt;}
.yc3{bottom:835.173333pt;}
.yd5{bottom:838.053333pt;}
.y7c{bottom:840.293333pt;}
.y5d{bottom:844.613333pt;}
.y13d{bottom:846.053333pt;}
.y11e{bottom:847.973333pt;}
.yf5{bottom:849.573333pt;}
.ye{bottom:853.413333pt;}
.y99{bottom:854.533333pt;}
.y165{bottom:855.973333pt;}
.y31{bottom:857.573333pt;}
.yc2{bottom:861.093333pt;}
.y11d{bottom:865.893333pt;}
.y5b{bottom:867.333333pt;}
.yf4{bottom:867.493333pt;}
.y7b{bottom:872.453333pt;}
.y142{bottom:872.613333pt;}
.y1a4{bottom:875.493333pt;}
.yd4{bottom:876.453333pt;}
.yd{bottom:879.333333pt;}
.y11c{bottom:883.813333pt;}
.yf3{bottom:885.413333pt;}
.yc1{bottom:887.013333pt;}
.y58{bottom:889.893333pt;}
.y98{bottom:890.373333pt;}
.y30{bottom:892.293333pt;}
.y1a3{bottom:893.413333pt;}
.y163{bottom:894.533333pt;}
.y141{bottom:899.173333pt;}
.y7a{bottom:904.773333pt;}
.yc{bottom:905.253333pt;}
.y97{bottom:908.293333pt;}
.y11b{bottom:909.573333pt;}
.yf2{bottom:911.333333pt;}
.yc0{bottom:912.933333pt;}
.yd2{bottom:915.013333pt;}
.y140{bottom:925.733333pt;}
.y96{bottom:926.213333pt;}
.y2e{bottom:926.853333pt;}
.y57{bottom:927.173333pt;}
.y11a{bottom:927.493333pt;}
.y162{bottom:928.453333pt;}
.yf1{bottom:929.253333pt;}
.yb{bottom:931.013333pt;}
.y79{bottom:937.093333pt;}
.ybf{bottom:939.493333pt;}
.y161{bottom:943.013333pt;}
.y95{bottom:944.133333pt;}
.y119{bottom:945.413333pt;}
.yf0{bottom:947.173333pt;}
.y55{bottom:949.893333pt;}
.yd0{bottom:953.413333pt;}
.ya{bottom:956.933333pt;}
.y2b{bottom:961.573333pt;}
.y94{bottom:962.053333pt;}
.y118{bottom:963.333333pt;}
.yef{bottom:964.933333pt;}
.y78{bottom:969.253333pt;}
.y160{bottom:969.573333pt;}
.y13f{bottom:970.213333pt;}
.y53{bottom:972.613333pt;}
.y1a2{bottom:972.933333pt;}
.ybe{bottom:978.053333pt;}
.y117{bottom:981.253333pt;}
.y9{bottom:982.853333pt;}
.y93{bottom:988.933333pt;}
.yee{bottom:990.853333pt;}
.y15f{bottom:996.133333pt;}
.y77{bottom:1004.773333pt;}
.ybd{bottom:1004.933333pt;}
.y116{bottom:1007.493333pt;}
.y8{bottom:1008.773333pt;}
.y4{bottom:1026.213333pt;}
.y3{bottom:1042.560000pt;}
.y1{bottom:1055.360000pt;}
.h16{height:14.720000pt;}
.h2{height:20.000000pt;}
.h13{height:22.560000pt;}
.h14{height:22.592000pt;}
.h11{height:22.720000pt;}
.h17{height:22.752000pt;}
.hf{height:24.160000pt;}
.h1b{height:25.760000pt;}
.h25{height:25.792000pt;}
.h8{height:25.920000pt;}
.h7{height:25.952000pt;}
.h18{height:29.280000pt;}
.hb{height:34.560000pt;}
.hd{height:34.592000pt;}
.hc{height:34.720000pt;}
.he{height:34.752000pt;}
.h12{height:37.280000pt;}
.h15{height:37.440000pt;}
.h1e{height:37.760000pt;}
.h1d{height:37.920000pt;}
.h22{height:43.840000pt;}
.h1c{height:43.872000pt;}
.ha{height:47.742188pt;}
.h1f{height:47.840000pt;}
.h4{height:52.834688pt;}
.h10{height:54.390938pt;}
.h3{height:58.563750pt;}
.h9{height:60.000000pt;}
.h6{height:60.288750pt;}
.h1a{height:63.656250pt;}
.h20{height:65.531250pt;}
.h26{height:70.400000pt;}
.h19{height:71.296875pt;}
.h5{height:76.671562pt;}
.h21{height:150.080000pt;}
.h23{height:150.106667pt;}
.h24{height:158.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:36.832000pt;}
.w9{width:85.152000pt;}
.w7{width:94.592000pt;}
.w5{width:103.712000pt;}
.w12{width:113.472000pt;}
.wd{width:122.912000pt;}
.w15{width:141.146667pt;}
.w10{width:179.746667pt;}
.wb{width:236.186667pt;}
.w6{width:255.226667pt;}
.w2{width:264.706667pt;}
.wa{width:321.506667pt;}
.w3{width:377.346667pt;}
.w8{width:415.906667pt;}
.w16{width:462.466667pt;}
.w11{width:463.106667pt;}
.we{width:519.933333pt;}
.w13{width:529.373333pt;}
.wf{width:547.453333pt;}
.wc{width:642.853333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x18{left:8.800000pt;}
.x1{left:75.520000pt;}
.xb{left:83.400000pt;}
.x10{left:90.271988pt;}
.x15{left:99.551988pt;}
.x11{left:104.831988pt;}
.x17{left:113.792000pt;}
.x12{left:119.551988pt;}
.x16{left:123.551988pt;}
.xd{left:160.666667pt;}
.x2{left:169.146667pt;}
.xa{left:170.106667pt;}
.x4{left:171.866667pt;}
.x7{left:188.986655pt;}
.xf{left:198.426667pt;}
.x14{left:255.266667pt;}
.xc{left:264.706667pt;}
.x13{left:281.826667pt;}
.x9{left:292.706667pt;}
.x3{left:340.226667pt;}
.x6{left:396.866655pt;}
.xe{left:482.173333pt;}
.x5{left:662.853322pt;}
}




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