
    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_69fb3e36aa210c0d18c2195e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_622bce53ea9b9e3ff09ec23b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_25800be45c9c91bf0a4549f3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5032211b50b831006ac8edf9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b62457a4e12393403eefd154.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d0456a94bc92cf2785cd4738.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_aad96923b7f904cb7bcc117d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-2.520000px;}
.ls11{letter-spacing:-0.612000px;}
.ls1e{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.457800px;}
.ls19{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.208200px;}
.ls15{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.ls20{letter-spacing:0.033840px;}
.ls10{letter-spacing:0.053280px;}
.ls1f{letter-spacing:0.106560px;}
.ls1d{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.135600px;}
.ls2{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.306600px;}
.lsd{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.660000px;}
.ls1c{letter-spacing:0.828000px;}
.ls9{letter-spacing:0.870000px;}
.ls4{letter-spacing:1.386720px;}
.ls22{letter-spacing:16.506720px;}
.ls21{letter-spacing:38.250720px;}
.ls23{letter-spacing:41.850720px;}
.ls3{letter-spacing:46.026720px;}
.ls12{letter-spacing:46.170720px;}
.ls14{letter-spacing:90.810720px;}
.ls13{letter-spacing:91.530720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-23.940000px;}
.ws4{word-spacing:-23.921280px;}
.ws13{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.246600px;}
.ws10{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.075600px;}
.ws15{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.wse{word-spacing:-14.580000px;}
.wsf{word-spacing:-12.420000px;}
.ws5{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.wsa{word-spacing:0.000000px;}
.ws14{word-spacing:125.815920px;}
.ws12{word-spacing:126.235920px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1449.751680px;}
._6{margin-left:-1444.731480px;}
._5{margin-left:-930.896640px;}
._7{margin-left:-577.969920px;}
._e{margin-left:-9.502320px;}
._4{margin-left:-8.213760px;}
._17{margin-left:-6.756480px;}
._c{margin-left:-5.075280px;}
._8{margin-left:-3.512160px;}
._10{margin-left:-2.449920px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._a{width:2.350560px;}
._9{width:3.913680px;}
._11{width:5.139360px;}
._12{width:6.573600px;}
._14{width:7.857840px;}
._13{width:9.183840px;}
._15{width:10.886400px;}
._16{width:12.041280px;}
._1a{width:13.456080px;}
._24{width:16.118400px;}
._25{width:17.375520px;}
._19{width:20.477520px;}
._18{width:21.523680px;}
._27{width:25.594080px;}
._b{width:29.404080px;}
._1c{width:32.220720px;}
._1b{width:33.286320px;}
._f{width:35.280000px;}
._d{width:36.484560px;}
._1d{width:40.517280px;}
._26{width:53.076960px;}
._23{width:66.788160px;}
._22{width:75.773040px;}
._21{width:173.093280px;}
._1f{width:178.145520px;}
._1e{width:185.016960px;}
._20{width:533.781600px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:79.200000px;}
.fs7{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y96{bottom:5.760000px;}
.yb8{bottom:5.790000px;}
.ya5{bottom:5.940000px;}
.ybe{bottom:7.380000px;}
.yc2{bottom:7.560000px;}
.yc0{bottom:8.640000px;}
.y110{bottom:8.820000px;}
.y1a9{bottom:10.800000px;}
.y135{bottom:13.170000px;}
.y104{bottom:13.500000px;}
.y140{bottom:14.685000px;}
.ye9{bottom:14.688000px;}
.y9a{bottom:15.480000px;}
.y98{bottom:15.660000px;}
.y15e{bottom:15.690000px;}
.yd3{bottom:15.840000px;}
.y9f{bottom:16.230000px;}
.y95{bottom:25.560000px;}
.yb7{bottom:25.590000px;}
.y15a{bottom:25.605000px;}
.ya4{bottom:25.740000px;}
.yf8{bottom:27.075000px;}
.y10f{bottom:29.520000px;}
.y1a8{bottom:30.600000px;}
.y134{bottom:32.655000px;}
.y103{bottom:33.450000px;}
.y1a5{bottom:34.740000px;}
.y154{bottom:35.460000px;}
.y146{bottom:35.640000px;}
.ye8{bottom:40.140000px;}
.y155{bottom:45.360000px;}
.y166{bottom:45.405000px;}
.y143{bottom:45.540000px;}
.y1a7{bottom:50.400000px;}
.y133{bottom:52.170000px;}
.y102{bottom:53.385000px;}
.y167{bottom:55.305000px;}
.y145{bottom:55.440000px;}
.y6{bottom:59.256000px;}
.yf7{bottom:60.555000px;}
.y12d{bottom:61.485000px;}
.y165{bottom:65.205000px;}
.y142{bottom:65.340000px;}
.y10e{bottom:66.450000px;}
.y1a6{bottom:70.200000px;}
.y132{bottom:71.670000px;}
.y106{bottom:72.360000px;}
.yef{bottom:73.080000px;}
.ye6{bottom:73.185000px;}
.y13d{bottom:73.230000px;}
.y144{bottom:75.240000px;}
.y12c{bottom:78.405000px;}
.y147{bottom:85.140000px;}
.y164{bottom:85.185000px;}
.y1a3{bottom:87.876000px;}
.y33{bottom:88.956000px;}
.ye5{bottom:90.435000px;}
.y13c{bottom:90.465000px;}
.yf6{bottom:93.990000px;}
.y15d{bottom:94.716000px;}
.y149{bottom:95.040000px;}
.yda{bottom:99.036000px;}
.yec{bottom:100.476000px;}
.y12a{bottom:100.836000px;}
.yb5{bottom:101.196000px;}
.y10d{bottom:103.350000px;}
.y148{bottom:104.940000px;}
.y6a{bottom:105.876000px;}
.y1a2{bottom:107.676000px;}
.ydc{bottom:107.715000px;}
.y137{bottom:107.790000px;}
.yf5{bottom:108.510000px;}
.y32{bottom:108.756000px;}
.y100{bottom:110.850000px;}
.y93{bottom:114.876000px;}
.y105{bottom:116.100000px;}
.yd9{bottom:118.836000px;}
.y188{bottom:119.016000px;}
.y10c{bottom:119.550000px;}
.y129{bottom:120.636000px;}
.yb4{bottom:121.716000px;}
.y12e{bottom:122.550000px;}
.yf0{bottom:124.020000px;}
.y69{bottom:125.676000px;}
.yf4{bottom:127.470000px;}
.y1a1{bottom:127.476000px;}
.yff{bottom:128.085000px;}
.ydd{bottom:128.340000px;}
.y31{bottom:128.556000px;}
.ydb{bottom:133.560000px;}
.y92{bottom:134.676000px;}
.y138{bottom:138.030000px;}
.y187{bottom:138.816000px;}
.y10b{bottom:140.250000px;}
.y128{bottom:140.436000px;}
.yb3{bottom:142.236000px;}
.y12f{bottom:144.180000px;}
.y68{bottom:145.476000px;}
.yfa{bottom:145.725000px;}
.y1a0{bottom:147.276000px;}
.y30{bottom:148.356000px;}
.yde{bottom:149.010000px;}
.yee{bottom:151.275000px;}
.y1a4{bottom:154.110000px;}
.y91{bottom:154.470000px;}
.y15c{bottom:155.010000px;}
.y107{bottom:156.885000px;}
.y186{bottom:158.610000px;}
.y127{bottom:160.230000px;}
.y131{bottom:161.130000px;}
.yb2{bottom:162.930000px;}
.yf1{bottom:164.805000px;}
.y67{bottom:165.270000px;}
.yf2{bottom:167.010000px;}
.y19f{bottom:167.250000px;}
.y139{bottom:168.300000px;}
.ydf{bottom:169.635000px;}
.y90{bottom:174.270000px;}
.y2f{bottom:177.150000px;}
.y185{bottom:178.410000px;}
.y126{bottom:180.030000px;}
.y108{bottom:180.105000px;}
.y130{bottom:181.830000px;}
.yb1{bottom:183.450000px;}
.yfb{bottom:183.960000px;}
.y66{bottom:185.250000px;}
.y19e{bottom:187.050000px;}
.ye0{bottom:190.260000px;}
.y8f{bottom:194.250000px;}
.y109{bottom:194.295000px;}
.y15b{bottom:195.510000px;}
.y2e{bottom:196.950000px;}
.y184{bottom:198.210000px;}
.y13a{bottom:198.540000px;}
.y125{bottom:200.010000px;}
.yb0{bottom:203.970000px;}
.y65{bottom:205.050000px;}
.y19d{bottom:206.850000px;}
.yf3{bottom:209.415000px;}
.ye1{bottom:210.885000px;}
.y8e{bottom:214.050000px;}
.y2d{bottom:216.930000px;}
.y183{bottom:218.190000px;}
.y124{bottom:219.810000px;}
.yfc{bottom:222.195000px;}
.y64{bottom:224.850000px;}
.y19c{bottom:226.650000px;}
.y13b{bottom:228.810000px;}
.y10a{bottom:229.245000px;}
.ye2{bottom:231.510000px;}
.y8d{bottom:233.850000px;}
.y2c{bottom:236.730000px;}
.y182{bottom:237.990000px;}
.y63{bottom:244.650000px;}
.y19b{bottom:246.450000px;}
.y123{bottom:248.610000px;}
.yaf{bottom:250.230000px;}
.ye3{bottom:252.150000px;}
.y8c{bottom:253.650000px;}
.y159{bottom:255.810000px;}
.y2b{bottom:256.530000px;}
.y181{bottom:257.790000px;}
.yfd{bottom:260.430000px;}
.y62{bottom:264.450000px;}
.y19a{bottom:266.430000px;}
.y122{bottom:268.410000px;}
.yae{bottom:270.030000px;}
.ye4{bottom:272.775000px;}
.y8b{bottom:273.495000px;}
.y13f{bottom:275.145000px;}
.y2a{bottom:276.375000px;}
.y180{bottom:277.635000px;}
.y101{bottom:280.695000px;}
.y61{bottom:284.475000px;}
.y199{bottom:286.275000px;}
.y121{bottom:288.255000px;}
.yad{bottom:290.055000px;}
.y8a{bottom:293.475000px;}
.y13e{bottom:295.845000px;}
.y29{bottom:296.175000px;}
.y17f{bottom:297.435000px;}
.yfe{bottom:298.650000px;}
.y60{bottom:304.275000px;}
.yac{bottom:304.815000px;}
.y198{bottom:306.075000px;}
.y120{bottom:308.235000px;}
.y89{bottom:313.275000px;}
.y28{bottom:316.155000px;}
.y17e{bottom:317.415000px;}
.ye7{bottom:317.910000px;}
.y5f{bottom:324.075000px;}
.yab{bottom:325.335000px;}
.y197{bottom:325.875000px;}
.y11f{bottom:328.035000px;}
.y88{bottom:333.075000px;}
.y27{bottom:335.955000px;}
.y17d{bottom:337.215000px;}
.y5e{bottom:343.875000px;}
.y196{bottom:345.675000px;}
.yaa{bottom:345.855000px;}
.y11e{bottom:347.835000px;}
.y87{bottom:352.875000px;}
.y26{bottom:355.755000px;}
.y158{bottom:356.475000px;}
.y17c{bottom:357.015000px;}
.y5d{bottom:363.675000px;}
.y195{bottom:365.655000px;}
.ya9{bottom:366.555000px;}
.y11d{bottom:367.635000px;}
.y86{bottom:372.675000px;}
.y25{bottom:375.555000px;}
.y17b{bottom:376.815000px;}
.yeb{bottom:381.495000px;}
.y5c{bottom:383.655000px;}
.y194{bottom:385.455000px;}
.ya8{bottom:387.075000px;}
.y11c{bottom:387.435000px;}
.y85{bottom:392.655000px;}
.y24{bottom:395.355000px;}
.y17a{bottom:396.615000px;}
.y157{bottom:396.795000px;}
.yea{bottom:401.295000px;}
.y5b{bottom:403.455000px;}
.y193{bottom:405.255000px;}
.y11b{bottom:407.415000px;}
.ya7{bottom:407.775000px;}
.y84{bottom:412.455000px;}
.y23{bottom:415.335000px;}
.yed{bottom:415.440000px;}
.y179{bottom:416.595000px;}
.y5a{bottom:423.255000px;}
.y192{bottom:425.055000px;}
.y11a{bottom:427.215000px;}
.ya6{bottom:428.295000px;}
.y83{bottom:432.255000px;}
.y22{bottom:435.135000px;}
.y178{bottom:436.395000px;}
.y59{bottom:443.055000px;}
.y119{bottom:447.015000px;}
.ya3{bottom:448.815000px;}
.y82{bottom:452.055000px;}
.y191{bottom:453.855000px;}
.y21{bottom:454.935000px;}
.y177{bottom:456.195000px;}
.y156{bottom:457.095000px;}
.y58{bottom:462.855000px;}
.y118{bottom:466.815000px;}
.y81{bottom:471.855000px;}
.y190{bottom:473.835000px;}
.y20{bottom:474.735000px;}
.y176{bottom:475.995000px;}
.y57{bottom:482.835000px;}
.y117{bottom:486.615000px;}
.y80{bottom:491.835000px;}
.y18f{bottom:493.635000px;}
.y1f{bottom:494.535000px;}
.ya2{bottom:495.075000px;}
.y175{bottom:495.795000px;}
.yd8{bottom:496.515000px;}
.y153{bottom:497.595000px;}
.y56{bottom:502.635000px;}
.y116{bottom:506.595000px;}
.yd7{bottom:511.275000px;}
.y7f{bottom:511.635000px;}
.y18e{bottom:513.435000px;}
.y1e{bottom:514.515000px;}
.ya1{bottom:514.875000px;}
.y174{bottom:515.775000px;}
.y55{bottom:522.435000px;}
.y7e{bottom:531.435000px;}
.yd6{bottom:531.795000px;}
.y18d{bottom:533.235000px;}
.y1d{bottom:534.315000px;}
.ya0{bottom:534.675000px;}
.y115{bottom:535.395000px;}
.y173{bottom:535.575000px;}
.y54{bottom:542.235000px;}
.y9e{bottom:549.615000px;}
.y7d{bottom:551.235000px;}
.yd5{bottom:552.495000px;}
.y18c{bottom:553.035000px;}
.y114{bottom:555.195000px;}
.y172{bottom:555.375000px;}
.y1c{bottom:556.485000px;}
.y152{bottom:557.925000px;}
.y53{bottom:562.065000px;}
.y7c{bottom:571.065000px;}
.yd4{bottom:573.045000px;}
.y113{bottom:575.025000px;}
.y171{bottom:575.205000px;}
.y1b{bottom:576.285000px;}
.y9d{bottom:580.785000px;}
.y52{bottom:582.045000px;}
.y7b{bottom:591.045000px;}
.y18b{bottom:592.845000px;}
.yd2{bottom:593.565000px;}
.y112{bottom:594.825000px;}
.y151{bottom:598.245000px;}
.y51{bottom:601.845000px;}
.y170{bottom:604.005000px;}
.y1a{bottom:605.085000px;}
.y136{bottom:609.120000px;}
.y7a{bottom:610.845000px;}
.y9c{bottom:611.025000px;}
.y18a{bottom:612.645000px;}
.y50{bottom:621.645000px;}
.y16f{bottom:623.985000px;}
.y19{bottom:624.885000px;}
.y79{bottom:630.645000px;}
.yd1{bottom:634.065000px;}
.y4f{bottom:641.445000px;}
.y16e{bottom:643.785000px;}
.y18{bottom:644.685000px;}
.y78{bottom:650.445000px;}
.y150{bottom:658.545000px;}
.y4e{bottom:661.245000px;}
.y16d{bottom:663.585000px;}
.y17{bottom:664.665000px;}
.y77{bottom:670.245000px;}
.y9b{bottom:671.865000px;}
.yd0{bottom:680.325000px;}
.y4d{bottom:681.225000px;}
.y16c{bottom:683.385000px;}
.y16{bottom:684.465000px;}
.y76{bottom:690.225000px;}
.y14f{bottom:698.865000px;}
.ycf{bottom:700.125000px;}
.y4c{bottom:701.025000px;}
.y99{bottom:702.285000px;}
.y16b{bottom:703.185000px;}
.y15{bottom:704.265000px;}
.y75{bottom:710.025000px;}
.y4b{bottom:720.825000px;}
.y16a{bottom:723.165000px;}
.y14{bottom:724.065000px;}
.yce{bottom:728.925000px;}
.y74{bottom:729.825000px;}
.y97{bottom:732.525000px;}
.y169{bottom:737.925000px;}
.y4a{bottom:740.625000px;}
.y13{bottom:743.865000px;}
.ycd{bottom:748.725000px;}
.y73{bottom:749.625000px;}
.y168{bottom:758.445000px;}
.y14e{bottom:759.165000px;}
.y49{bottom:760.425000px;}
.y94{bottom:762.945000px;}
.y12{bottom:763.845000px;}
.ycc{bottom:768.705000px;}
.y72{bottom:769.425000px;}
.y48{bottom:780.405000px;}
.y11{bottom:783.465000px;}
.ycb{bottom:788.505000px;}
.y71{bottom:789.405000px;}
.y163{bottom:798.945000px;}
.y14d{bottom:799.665000px;}
.y47{bottom:800.205000px;}
.yca{bottom:803.265000px;}
.y10{bottom:805.605000px;}
.y70{bottom:809.205000px;}
.y46{bottom:820.005000px;}
.yc9{bottom:823.785000px;}
.yf{bottom:825.585000px;}
.y6f{bottom:829.005000px;}
.y45{bottom:839.850000px;}
.y14c{bottom:840.030000px;}
.yf9{bottom:847.800000px;}
.y6e{bottom:848.850000px;}
.yc8{bottom:850.290000px;}
.ye{bottom:850.650000px;}
.y44{bottom:859.650000px;}
.y14b{bottom:860.730000px;}
.yd{bottom:865.230000px;}
.y6d{bottom:868.650000px;}
.yc7{bottom:870.090000px;}
.y43{bottom:879.630000px;}
.y6c{bottom:888.630000px;}
.yc6{bottom:889.890000px;}
.yc{bottom:890.250000px;}
.y162{bottom:898.890000px;}
.y42{bottom:899.430000px;}
.y14a{bottom:901.050000px;}
.yc5{bottom:904.650000px;}
.yb{bottom:905.370000px;}
.y6b{bottom:908.430000px;}
.y189{bottom:919.230000px;}
.ya{bottom:926.790000px;}
.yc4{bottom:926.970000px;}
.y41{bottom:928.230000px;}
.y161{bottom:939.210000px;}
.y111{bottom:939.390000px;}
.y40{bottom:948.030000px;}
.yc3{bottom:949.110000px;}
.y9{bottom:950.190000px;}
.y12b{bottom:953.640000px;}
.y141{bottom:961.350000px;}
.y3f{bottom:967.830000px;}
.yc1{bottom:971.250000px;}
.y8{bottom:981.870000px;}
.y3e{bottom:987.810000px;}
.ybf{bottom:993.570000px;}
.y3d{bottom:1007.610000px;}
.y7{bottom:1013.730000px;}
.ybd{bottom:1016.970000px;}
.y160{bottom:1019.310000px;}
.y3c{bottom:1027.410000px;}
.ybc{bottom:1045.050000px;}
.y3b{bottom:1047.210000px;}
.y5{bottom:1052.070000px;}
.y15f{bottom:1059.810000px;}
.ybb{bottom:1064.850000px;}
.y3a{bottom:1067.010000px;}
.y4{bottom:1082.850000px;}
.yba{bottom:1084.650000px;}
.y39{bottom:1086.990000px;}
.yb9{bottom:1099.410000px;}
.y38{bottom:1106.790000px;}
.y3{bottom:1113.630000px;}
.yb6{bottom:1120.110000px;}
.y37{bottom:1126.620000px;}
.y2{bottom:1144.620000px;}
.y36{bottom:1146.420000px;}
.y35{bottom:1173.960000px;}
.y1{bottom:1178.460000px;}
.y34{bottom:1194.120000px;}
.h29{height:2.010938px;}
.h10{height:19.800000px;}
.h16{height:19.836000px;}
.h11{height:19.980000px;}
.h13{height:21.420000px;}
.h15{height:21.600000px;}
.h14{height:22.680000px;}
.h7{height:27.147656px;}
.hd{height:29.520000px;}
.hc{height:29.700000px;}
.he{height:30.276000px;}
.hb{height:39.600000px;}
.h12{height:39.636000px;}
.hf{height:39.780000px;}
.h5{height:41.726953px;}
.h8{height:42.164648px;}
.h9{height:43.506914px;}
.h27{height:44.265586px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h1e{height:50.273438px;}
.h18{height:50.800781px;}
.h6{height:53.224453px;}
.h1a{height:55.880859px;}
.h24{height:59.400000px;}
.h23{height:59.436000px;}
.h1c{height:59.436914px;}
.h22{height:59.580000px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.h25{height:79.380000px;}
.h28{height:84.240000px;}
.h26{height:99.216000px;}
.h21{height:118.980000px;}
.h1f{height:207.000000px;}
.h19{height:238.500000px;}
.h1d{height:257.400000px;}
.h1b{height:311.580000px;}
.h20{height:315.000000px;}
.h17{height:346.140000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:41.400000px;}
.w28{width:48.420000px;}
.w27{width:48.600000px;}
.w2c{width:50.400000px;}
.w2f{width:54.900000px;}
.w2e{width:54.936000px;}
.w2a{width:56.520000px;}
.w9{width:58.140000px;}
.wd{width:58.176000px;}
.w2d{width:58.860000px;}
.w29{width:59.436000px;}
.wb{width:60.840000px;}
.w2b{width:62.136000px;}
.w7{width:62.280000px;}
.w26{width:63.900000px;}
.w25{width:63.936000px;}
.w17{width:69.840000px;}
.w5{width:73.836000px;}
.wf{width:79.416000px;}
.w1e{width:80.100000px;}
.w15{width:84.240000px;}
.w16{width:84.456000px;}
.w1b{width:91.080000px;}
.w1c{width:102.636000px;}
.w18{width:111.996000px;}
.w10{width:113.940000px;}
.w1a{width:118.116000px;}
.w19{width:118.260000px;}
.w12{width:145.260000px;}
.w13{width:145.296000px;}
.w1d{width:157.170000px;}
.w31{width:210.810000px;}
.w8{width:242.130000px;}
.w11{width:242.715000px;}
.we{width:264.630000px;}
.w6{width:271.830000px;}
.w14{width:275.430000px;}
.w4{width:286.410000px;}
.wc{width:289.830000px;}
.wa{width:310.935000px;}
.w20{width:422.100000px;}
.w22{width:430.200000px;}
.w23{width:473.400000px;}
.w21{width:555.840000px;}
.w24{width:563.040000px;}
.w1f{width:572.400000px;}
.w32{width:580.965000px;}
.w30{width:783.690000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:2.340000px;}
.x7{left:7.740000px;}
.x34{left:17.310000px;}
.x24{left:27.930000px;}
.x23{left:35.430000px;}
.x22{left:42.945000px;}
.x4a{left:50.940000px;}
.x36{left:52.230000px;}
.x1{left:54.179987px;}
.x2a{left:55.725000px;}
.x37{left:57.885000px;}
.x6{left:64.799987px;}
.x49{left:67.170000px;}
.x5{left:68.939987px;}
.x3{left:73.079987px;}
.x48{left:74.625000px;}
.x25{left:79.635000px;}
.x2{left:80.999987px;}
.x29{left:98.460000px;}
.x4{left:108.035987px;}
.x3b{left:118.440000px;}
.x42{left:125.745000px;}
.x3c{left:127.155000px;}
.x43{left:128.265000px;}
.x45{left:139.035000px;}
.x3a{left:142.530000px;}
.x21{left:148.140000px;}
.x8{left:150.870000px;}
.x40{left:154.620000px;}
.x31{left:158.940000px;}
.x44{left:160.710000px;}
.x11{left:161.850000px;}
.x33{left:163.080000px;}
.x19{left:167.430000px;}
.xe{left:170.310000px;}
.xb{left:171.750000px;}
.x26{left:175.710000px;}
.x38{left:179.850000px;}
.x4b{left:183.990000px;}
.x55{left:191.370000px;}
.x2e{left:205.020000px;}
.x39{left:209.520000px;}
.x2f{left:211.830000px;}
.x30{left:213.150000px;}
.x46{left:219.315000px;}
.x41{left:220.470000px;}
.x4c{left:233.310000px;}
.x3f{left:247.889987px;}
.x1f{left:251.849987px;}
.x20{left:265.529987px;}
.x12{left:276.510000px;}
.x4d{left:282.450000px;}
.x1a{left:286.410000px;}
.x2b{left:291.269987px;}
.x3e{left:315.254987px;}
.x2c{left:321.554987px;}
.x32{left:324.615000px;}
.x3d{left:328.035000px;}
.x47{left:343.545000px;}
.x27{left:350.385000px;}
.x14{left:384.915000px;}
.x4e{left:391.935000px;}
.x1b{left:405.255000px;}
.xc{left:414.615000px;}
.x9{left:438.015000px;}
.x28{left:439.380000px;}
.x2d{left:446.474987px;}
.x4f{left:449.175000px;}
.xf{left:460.875000px;}
.x15{left:469.875000px;}
.xd{left:473.475000px;}
.x1c{left:497.055000px;}
.xa{left:512.565000px;}
.x10{left:519.765000px;}
.x16{left:555.045000px;}
.x50{left:563.325000px;}
.x1d{left:600.405000px;}
.x51{left:622.905000px;}
.x17{left:640.005000px;}
.x13{left:665.925000px;}
.x52{left:672.045000px;}
.x18{left:714.570000px;}
.x53{left:727.890000px;}
.x1e{left:758.310000px;}
.x54{left:783.510000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-2.240000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls1e{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.406933pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.185067pt;}
.ls15{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.ls20{letter-spacing:0.030080pt;}
.ls10{letter-spacing:0.047360pt;}
.ls1f{letter-spacing:0.094720pt;}
.ls1d{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.120533pt;}
.ls2{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.272533pt;}
.lsd{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.586667pt;}
.ls1c{letter-spacing:0.736000pt;}
.ls9{letter-spacing:0.773333pt;}
.ls4{letter-spacing:1.232640pt;}
.ls22{letter-spacing:14.672640pt;}
.ls21{letter-spacing:34.000640pt;}
.ls23{letter-spacing:37.200640pt;}
.ls3{letter-spacing:40.912640pt;}
.ls12{letter-spacing:41.040640pt;}
.ls14{letter-spacing:80.720640pt;}
.ls13{letter-spacing:81.360640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws4{word-spacing:-21.263360pt;}
.ws13{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.552533pt;}
.ws10{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.400533pt;}
.ws15{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.960000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.wsa{word-spacing:0.000000pt;}
.ws14{word-spacing:111.836373pt;}
.ws12{word-spacing:112.209707pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1288.668160pt;}
._6{margin-left:-1284.205760pt;}
._5{margin-left:-827.463680pt;}
._7{margin-left:-513.751040pt;}
._e{margin-left:-8.446507pt;}
._4{margin-left:-7.301120pt;}
._17{margin-left:-6.005760pt;}
._c{margin-left:-4.511360pt;}
._8{margin-left:-3.121920pt;}
._10{margin-left:-2.177707pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._a{width:2.089387pt;}
._9{width:3.478827pt;}
._11{width:4.568320pt;}
._12{width:5.843200pt;}
._14{width:6.984747pt;}
._13{width:8.163413pt;}
._15{width:9.676800pt;}
._16{width:10.703360pt;}
._1a{width:11.960960pt;}
._24{width:14.327467pt;}
._25{width:15.444907pt;}
._19{width:18.202240pt;}
._18{width:19.132160pt;}
._27{width:22.750293pt;}
._b{width:26.136960pt;}
._1c{width:28.640640pt;}
._1b{width:29.587840pt;}
._f{width:31.360000pt;}
._d{width:32.430720pt;}
._1d{width:36.015360pt;}
._26{width:47.179520pt;}
._23{width:59.367253pt;}
._22{width:67.353813pt;}
._21{width:153.860693pt;}
._1f{width:158.351573pt;}
._1e{width:164.459520pt;}
._20{width:474.472533pt;}
.fs8{font-size:2.560000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:70.400000pt;}
.fs7{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:5.120000pt;}
.yb8{bottom:5.146667pt;}
.ya5{bottom:5.280000pt;}
.ybe{bottom:6.560000pt;}
.yc2{bottom:6.720000pt;}
.yc0{bottom:7.680000pt;}
.y110{bottom:7.840000pt;}
.y1a9{bottom:9.600000pt;}
.y135{bottom:11.706667pt;}
.y104{bottom:12.000000pt;}
.y140{bottom:13.053333pt;}
.ye9{bottom:13.056000pt;}
.y9a{bottom:13.760000pt;}
.y98{bottom:13.920000pt;}
.y15e{bottom:13.946667pt;}
.yd3{bottom:14.080000pt;}
.y9f{bottom:14.426667pt;}
.y95{bottom:22.720000pt;}
.yb7{bottom:22.746667pt;}
.y15a{bottom:22.760000pt;}
.ya4{bottom:22.880000pt;}
.yf8{bottom:24.066667pt;}
.y10f{bottom:26.240000pt;}
.y1a8{bottom:27.200000pt;}
.y134{bottom:29.026667pt;}
.y103{bottom:29.733333pt;}
.y1a5{bottom:30.880000pt;}
.y154{bottom:31.520000pt;}
.y146{bottom:31.680000pt;}
.ye8{bottom:35.680000pt;}
.y155{bottom:40.320000pt;}
.y166{bottom:40.360000pt;}
.y143{bottom:40.480000pt;}
.y1a7{bottom:44.800000pt;}
.y133{bottom:46.373333pt;}
.y102{bottom:47.453333pt;}
.y167{bottom:49.160000pt;}
.y145{bottom:49.280000pt;}
.y6{bottom:52.672000pt;}
.yf7{bottom:53.826667pt;}
.y12d{bottom:54.653333pt;}
.y165{bottom:57.960000pt;}
.y142{bottom:58.080000pt;}
.y10e{bottom:59.066667pt;}
.y1a6{bottom:62.400000pt;}
.y132{bottom:63.706667pt;}
.y106{bottom:64.320000pt;}
.yef{bottom:64.960000pt;}
.ye6{bottom:65.053333pt;}
.y13d{bottom:65.093333pt;}
.y144{bottom:66.880000pt;}
.y12c{bottom:69.693333pt;}
.y147{bottom:75.680000pt;}
.y164{bottom:75.720000pt;}
.y1a3{bottom:78.112000pt;}
.y33{bottom:79.072000pt;}
.ye5{bottom:80.386667pt;}
.y13c{bottom:80.413333pt;}
.yf6{bottom:83.546667pt;}
.y15d{bottom:84.192000pt;}
.y149{bottom:84.480000pt;}
.yda{bottom:88.032000pt;}
.yec{bottom:89.312000pt;}
.y12a{bottom:89.632000pt;}
.yb5{bottom:89.952000pt;}
.y10d{bottom:91.866667pt;}
.y148{bottom:93.280000pt;}
.y6a{bottom:94.112000pt;}
.y1a2{bottom:95.712000pt;}
.ydc{bottom:95.746667pt;}
.y137{bottom:95.813333pt;}
.yf5{bottom:96.453333pt;}
.y32{bottom:96.672000pt;}
.y100{bottom:98.533333pt;}
.y93{bottom:102.112000pt;}
.y105{bottom:103.200000pt;}
.yd9{bottom:105.632000pt;}
.y188{bottom:105.792000pt;}
.y10c{bottom:106.266667pt;}
.y129{bottom:107.232000pt;}
.yb4{bottom:108.192000pt;}
.y12e{bottom:108.933333pt;}
.yf0{bottom:110.240000pt;}
.y69{bottom:111.712000pt;}
.yf4{bottom:113.306667pt;}
.y1a1{bottom:113.312000pt;}
.yff{bottom:113.853333pt;}
.ydd{bottom:114.080000pt;}
.y31{bottom:114.272000pt;}
.ydb{bottom:118.720000pt;}
.y92{bottom:119.712000pt;}
.y138{bottom:122.693333pt;}
.y187{bottom:123.392000pt;}
.y10b{bottom:124.666667pt;}
.y128{bottom:124.832000pt;}
.yb3{bottom:126.432000pt;}
.y12f{bottom:128.160000pt;}
.y68{bottom:129.312000pt;}
.yfa{bottom:129.533333pt;}
.y1a0{bottom:130.912000pt;}
.y30{bottom:131.872000pt;}
.yde{bottom:132.453333pt;}
.yee{bottom:134.466667pt;}
.y1a4{bottom:136.986667pt;}
.y91{bottom:137.306667pt;}
.y15c{bottom:137.786667pt;}
.y107{bottom:139.453333pt;}
.y186{bottom:140.986667pt;}
.y127{bottom:142.426667pt;}
.y131{bottom:143.226667pt;}
.yb2{bottom:144.826667pt;}
.yf1{bottom:146.493333pt;}
.y67{bottom:146.906667pt;}
.yf2{bottom:148.453333pt;}
.y19f{bottom:148.666667pt;}
.y139{bottom:149.600000pt;}
.ydf{bottom:150.786667pt;}
.y90{bottom:154.906667pt;}
.y2f{bottom:157.466667pt;}
.y185{bottom:158.586667pt;}
.y126{bottom:160.026667pt;}
.y108{bottom:160.093333pt;}
.y130{bottom:161.626667pt;}
.yb1{bottom:163.066667pt;}
.yfb{bottom:163.520000pt;}
.y66{bottom:164.666667pt;}
.y19e{bottom:166.266667pt;}
.ye0{bottom:169.120000pt;}
.y8f{bottom:172.666667pt;}
.y109{bottom:172.706667pt;}
.y15b{bottom:173.786667pt;}
.y2e{bottom:175.066667pt;}
.y184{bottom:176.186667pt;}
.y13a{bottom:176.480000pt;}
.y125{bottom:177.786667pt;}
.yb0{bottom:181.306667pt;}
.y65{bottom:182.266667pt;}
.y19d{bottom:183.866667pt;}
.yf3{bottom:186.146667pt;}
.ye1{bottom:187.453333pt;}
.y8e{bottom:190.266667pt;}
.y2d{bottom:192.826667pt;}
.y183{bottom:193.946667pt;}
.y124{bottom:195.386667pt;}
.yfc{bottom:197.506667pt;}
.y64{bottom:199.866667pt;}
.y19c{bottom:201.466667pt;}
.y13b{bottom:203.386667pt;}
.y10a{bottom:203.773333pt;}
.ye2{bottom:205.786667pt;}
.y8d{bottom:207.866667pt;}
.y2c{bottom:210.426667pt;}
.y182{bottom:211.546667pt;}
.y63{bottom:217.466667pt;}
.y19b{bottom:219.066667pt;}
.y123{bottom:220.986667pt;}
.yaf{bottom:222.426667pt;}
.ye3{bottom:224.133333pt;}
.y8c{bottom:225.466667pt;}
.y159{bottom:227.386667pt;}
.y2b{bottom:228.026667pt;}
.y181{bottom:229.146667pt;}
.yfd{bottom:231.493333pt;}
.y62{bottom:235.066667pt;}
.y19a{bottom:236.826667pt;}
.y122{bottom:238.586667pt;}
.yae{bottom:240.026667pt;}
.ye4{bottom:242.466667pt;}
.y8b{bottom:243.106667pt;}
.y13f{bottom:244.573333pt;}
.y2a{bottom:245.666667pt;}
.y180{bottom:246.786667pt;}
.y101{bottom:249.506667pt;}
.y61{bottom:252.866667pt;}
.y199{bottom:254.466667pt;}
.y121{bottom:256.226667pt;}
.yad{bottom:257.826667pt;}
.y8a{bottom:260.866667pt;}
.y13e{bottom:262.973333pt;}
.y29{bottom:263.266667pt;}
.y17f{bottom:264.386667pt;}
.yfe{bottom:265.466667pt;}
.y60{bottom:270.466667pt;}
.yac{bottom:270.946667pt;}
.y198{bottom:272.066667pt;}
.y120{bottom:273.986667pt;}
.y89{bottom:278.466667pt;}
.y28{bottom:281.026667pt;}
.y17e{bottom:282.146667pt;}
.ye7{bottom:282.586667pt;}
.y5f{bottom:288.066667pt;}
.yab{bottom:289.186667pt;}
.y197{bottom:289.666667pt;}
.y11f{bottom:291.586667pt;}
.y88{bottom:296.066667pt;}
.y27{bottom:298.626667pt;}
.y17d{bottom:299.746667pt;}
.y5e{bottom:305.666667pt;}
.y196{bottom:307.266667pt;}
.yaa{bottom:307.426667pt;}
.y11e{bottom:309.186667pt;}
.y87{bottom:313.666667pt;}
.y26{bottom:316.226667pt;}
.y158{bottom:316.866667pt;}
.y17c{bottom:317.346667pt;}
.y5d{bottom:323.266667pt;}
.y195{bottom:325.026667pt;}
.ya9{bottom:325.826667pt;}
.y11d{bottom:326.786667pt;}
.y86{bottom:331.266667pt;}
.y25{bottom:333.826667pt;}
.y17b{bottom:334.946667pt;}
.yeb{bottom:339.106667pt;}
.y5c{bottom:341.026667pt;}
.y194{bottom:342.626667pt;}
.ya8{bottom:344.066667pt;}
.y11c{bottom:344.386667pt;}
.y85{bottom:349.026667pt;}
.y24{bottom:351.426667pt;}
.y17a{bottom:352.546667pt;}
.y157{bottom:352.706667pt;}
.yea{bottom:356.706667pt;}
.y5b{bottom:358.626667pt;}
.y193{bottom:360.226667pt;}
.y11b{bottom:362.146667pt;}
.ya7{bottom:362.466667pt;}
.y84{bottom:366.626667pt;}
.y23{bottom:369.186667pt;}
.yed{bottom:369.280000pt;}
.y179{bottom:370.306667pt;}
.y5a{bottom:376.226667pt;}
.y192{bottom:377.826667pt;}
.y11a{bottom:379.746667pt;}
.ya6{bottom:380.706667pt;}
.y83{bottom:384.226667pt;}
.y22{bottom:386.786667pt;}
.y178{bottom:387.906667pt;}
.y59{bottom:393.826667pt;}
.y119{bottom:397.346667pt;}
.ya3{bottom:398.946667pt;}
.y82{bottom:401.826667pt;}
.y191{bottom:403.426667pt;}
.y21{bottom:404.386667pt;}
.y177{bottom:405.506667pt;}
.y156{bottom:406.306667pt;}
.y58{bottom:411.426667pt;}
.y118{bottom:414.946667pt;}
.y81{bottom:419.426667pt;}
.y190{bottom:421.186667pt;}
.y20{bottom:421.986667pt;}
.y176{bottom:423.106667pt;}
.y57{bottom:429.186667pt;}
.y117{bottom:432.546667pt;}
.y80{bottom:437.186667pt;}
.y18f{bottom:438.786667pt;}
.y1f{bottom:439.586667pt;}
.ya2{bottom:440.066667pt;}
.y175{bottom:440.706667pt;}
.yd8{bottom:441.346667pt;}
.y153{bottom:442.306667pt;}
.y56{bottom:446.786667pt;}
.y116{bottom:450.306667pt;}
.yd7{bottom:454.466667pt;}
.y7f{bottom:454.786667pt;}
.y18e{bottom:456.386667pt;}
.y1e{bottom:457.346667pt;}
.ya1{bottom:457.666667pt;}
.y174{bottom:458.466667pt;}
.y55{bottom:464.386667pt;}
.y7e{bottom:472.386667pt;}
.yd6{bottom:472.706667pt;}
.y18d{bottom:473.986667pt;}
.y1d{bottom:474.946667pt;}
.ya0{bottom:475.266667pt;}
.y115{bottom:475.906667pt;}
.y173{bottom:476.066667pt;}
.y54{bottom:481.986667pt;}
.y9e{bottom:488.546667pt;}
.y7d{bottom:489.986667pt;}
.yd5{bottom:491.106667pt;}
.y18c{bottom:491.586667pt;}
.y114{bottom:493.506667pt;}
.y172{bottom:493.666667pt;}
.y1c{bottom:494.653333pt;}
.y152{bottom:495.933333pt;}
.y53{bottom:499.613333pt;}
.y7c{bottom:507.613333pt;}
.yd4{bottom:509.373333pt;}
.y113{bottom:511.133333pt;}
.y171{bottom:511.293333pt;}
.y1b{bottom:512.253333pt;}
.y9d{bottom:516.253333pt;}
.y52{bottom:517.373333pt;}
.y7b{bottom:525.373333pt;}
.y18b{bottom:526.973333pt;}
.yd2{bottom:527.613333pt;}
.y112{bottom:528.733333pt;}
.y151{bottom:531.773333pt;}
.y51{bottom:534.973333pt;}
.y170{bottom:536.893333pt;}
.y1a{bottom:537.853333pt;}
.y136{bottom:541.440000pt;}
.y7a{bottom:542.973333pt;}
.y9c{bottom:543.133333pt;}
.y18a{bottom:544.573333pt;}
.y50{bottom:552.573333pt;}
.y16f{bottom:554.653333pt;}
.y19{bottom:555.453333pt;}
.y79{bottom:560.573333pt;}
.yd1{bottom:563.613333pt;}
.y4f{bottom:570.173333pt;}
.y16e{bottom:572.253333pt;}
.y18{bottom:573.053333pt;}
.y78{bottom:578.173333pt;}
.y150{bottom:585.373333pt;}
.y4e{bottom:587.773333pt;}
.y16d{bottom:589.853333pt;}
.y17{bottom:590.813333pt;}
.y77{bottom:595.773333pt;}
.y9b{bottom:597.213333pt;}
.yd0{bottom:604.733333pt;}
.y4d{bottom:605.533333pt;}
.y16c{bottom:607.453333pt;}
.y16{bottom:608.413333pt;}
.y76{bottom:613.533333pt;}
.y14f{bottom:621.213333pt;}
.ycf{bottom:622.333333pt;}
.y4c{bottom:623.133333pt;}
.y99{bottom:624.253333pt;}
.y16b{bottom:625.053333pt;}
.y15{bottom:626.013333pt;}
.y75{bottom:631.133333pt;}
.y4b{bottom:640.733333pt;}
.y16a{bottom:642.813333pt;}
.y14{bottom:643.613333pt;}
.yce{bottom:647.933333pt;}
.y74{bottom:648.733333pt;}
.y97{bottom:651.133333pt;}
.y169{bottom:655.933333pt;}
.y4a{bottom:658.333333pt;}
.y13{bottom:661.213333pt;}
.ycd{bottom:665.533333pt;}
.y73{bottom:666.333333pt;}
.y168{bottom:674.173333pt;}
.y14e{bottom:674.813333pt;}
.y49{bottom:675.933333pt;}
.y94{bottom:678.173333pt;}
.y12{bottom:678.973333pt;}
.ycc{bottom:683.293333pt;}
.y72{bottom:683.933333pt;}
.y48{bottom:693.693333pt;}
.y11{bottom:696.413333pt;}
.ycb{bottom:700.893333pt;}
.y71{bottom:701.693333pt;}
.y163{bottom:710.173333pt;}
.y14d{bottom:710.813333pt;}
.y47{bottom:711.293333pt;}
.yca{bottom:714.013333pt;}
.y10{bottom:716.093333pt;}
.y70{bottom:719.293333pt;}
.y46{bottom:728.893333pt;}
.yc9{bottom:732.253333pt;}
.yf{bottom:733.853333pt;}
.y6f{bottom:736.893333pt;}
.y45{bottom:746.533333pt;}
.y14c{bottom:746.693333pt;}
.yf9{bottom:753.600000pt;}
.y6e{bottom:754.533333pt;}
.yc8{bottom:755.813333pt;}
.ye{bottom:756.133333pt;}
.y44{bottom:764.133333pt;}
.y14b{bottom:765.093333pt;}
.yd{bottom:769.093333pt;}
.y6d{bottom:772.133333pt;}
.yc7{bottom:773.413333pt;}
.y43{bottom:781.893333pt;}
.y6c{bottom:789.893333pt;}
.yc6{bottom:791.013333pt;}
.yc{bottom:791.333333pt;}
.y162{bottom:799.013333pt;}
.y42{bottom:799.493333pt;}
.y14a{bottom:800.933333pt;}
.yc5{bottom:804.133333pt;}
.yb{bottom:804.773333pt;}
.y6b{bottom:807.493333pt;}
.y189{bottom:817.093333pt;}
.ya{bottom:823.813333pt;}
.yc4{bottom:823.973333pt;}
.y41{bottom:825.093333pt;}
.y161{bottom:834.853333pt;}
.y111{bottom:835.013333pt;}
.y40{bottom:842.693333pt;}
.yc3{bottom:843.653333pt;}
.y9{bottom:844.613333pt;}
.y12b{bottom:847.680000pt;}
.y141{bottom:854.533333pt;}
.y3f{bottom:860.293333pt;}
.yc1{bottom:863.333333pt;}
.y8{bottom:872.773333pt;}
.y3e{bottom:878.053333pt;}
.ybf{bottom:883.173333pt;}
.y3d{bottom:895.653333pt;}
.y7{bottom:901.093333pt;}
.ybd{bottom:903.973333pt;}
.y160{bottom:906.053333pt;}
.y3c{bottom:913.253333pt;}
.ybc{bottom:928.933333pt;}
.y3b{bottom:930.853333pt;}
.y5{bottom:935.173333pt;}
.y15f{bottom:942.053333pt;}
.ybb{bottom:946.533333pt;}
.y3a{bottom:948.453333pt;}
.y4{bottom:962.533333pt;}
.yba{bottom:964.133333pt;}
.y39{bottom:966.213333pt;}
.yb9{bottom:977.253333pt;}
.y38{bottom:983.813333pt;}
.y3{bottom:989.893333pt;}
.yb6{bottom:995.653333pt;}
.y37{bottom:1001.440000pt;}
.y2{bottom:1017.440000pt;}
.y36{bottom:1019.040000pt;}
.y35{bottom:1043.520000pt;}
.y1{bottom:1047.520000pt;}
.y34{bottom:1061.440000pt;}
.h29{height:1.787500pt;}
.h10{height:17.600000pt;}
.h16{height:17.632000pt;}
.h11{height:17.760000pt;}
.h13{height:19.040000pt;}
.h15{height:19.200000pt;}
.h14{height:20.160000pt;}
.h7{height:24.131250pt;}
.hd{height:26.240000pt;}
.hc{height:26.400000pt;}
.he{height:26.912000pt;}
.hb{height:35.200000pt;}
.h12{height:35.232000pt;}
.hf{height:35.360000pt;}
.h5{height:37.090625pt;}
.h8{height:37.479688pt;}
.h9{height:38.672812pt;}
.h27{height:39.347188pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h1e{height:44.687500pt;}
.h18{height:45.156250pt;}
.h6{height:47.310625pt;}
.h1a{height:49.671875pt;}
.h24{height:52.800000pt;}
.h23{height:52.832000pt;}
.h1c{height:52.832812pt;}
.h22{height:52.960000pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.h25{height:70.560000pt;}
.h28{height:74.880000pt;}
.h26{height:88.192000pt;}
.h21{height:105.760000pt;}
.h1f{height:184.000000pt;}
.h19{height:212.000000pt;}
.h1d{height:228.800000pt;}
.h1b{height:276.960000pt;}
.h20{height:280.000000pt;}
.h17{height:307.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:36.800000pt;}
.w28{width:43.040000pt;}
.w27{width:43.200000pt;}
.w2c{width:44.800000pt;}
.w2f{width:48.800000pt;}
.w2e{width:48.832000pt;}
.w2a{width:50.240000pt;}
.w9{width:51.680000pt;}
.wd{width:51.712000pt;}
.w2d{width:52.320000pt;}
.w29{width:52.832000pt;}
.wb{width:54.080000pt;}
.w2b{width:55.232000pt;}
.w7{width:55.360000pt;}
.w26{width:56.800000pt;}
.w25{width:56.832000pt;}
.w17{width:62.080000pt;}
.w5{width:65.632000pt;}
.wf{width:70.592000pt;}
.w1e{width:71.200000pt;}
.w15{width:74.880000pt;}
.w16{width:75.072000pt;}
.w1b{width:80.960000pt;}
.w1c{width:91.232000pt;}
.w18{width:99.552000pt;}
.w10{width:101.280000pt;}
.w1a{width:104.992000pt;}
.w19{width:105.120000pt;}
.w12{width:129.120000pt;}
.w13{width:129.152000pt;}
.w1d{width:139.706667pt;}
.w31{width:187.386667pt;}
.w8{width:215.226667pt;}
.w11{width:215.746667pt;}
.we{width:235.226667pt;}
.w6{width:241.626667pt;}
.w14{width:244.826667pt;}
.w4{width:254.586667pt;}
.wc{width:257.626667pt;}
.wa{width:276.386667pt;}
.w20{width:375.200000pt;}
.w22{width:382.400000pt;}
.w23{width:420.800000pt;}
.w21{width:494.080000pt;}
.w24{width:500.480000pt;}
.w1f{width:508.800000pt;}
.w32{width:516.413333pt;}
.w30{width:696.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:2.080000pt;}
.x7{left:6.880000pt;}
.x34{left:15.386667pt;}
.x24{left:24.826667pt;}
.x23{left:31.493333pt;}
.x22{left:38.173333pt;}
.x4a{left:45.280000pt;}
.x36{left:46.426667pt;}
.x1{left:48.159988pt;}
.x2a{left:49.533333pt;}
.x37{left:51.453333pt;}
.x6{left:57.599988pt;}
.x49{left:59.706667pt;}
.x5{left:61.279988pt;}
.x3{left:64.959988pt;}
.x48{left:66.333333pt;}
.x25{left:70.786667pt;}
.x2{left:71.999988pt;}
.x29{left:87.520000pt;}
.x4{left:96.031988pt;}
.x3b{left:105.280000pt;}
.x42{left:111.773333pt;}
.x3c{left:113.026667pt;}
.x43{left:114.013333pt;}
.x45{left:123.586667pt;}
.x3a{left:126.693333pt;}
.x21{left:131.680000pt;}
.x8{left:134.106667pt;}
.x40{left:137.440000pt;}
.x31{left:141.280000pt;}
.x44{left:142.853333pt;}
.x11{left:143.866667pt;}
.x33{left:144.960000pt;}
.x19{left:148.826667pt;}
.xe{left:151.386667pt;}
.xb{left:152.666667pt;}
.x26{left:156.186667pt;}
.x38{left:159.866667pt;}
.x4b{left:163.546667pt;}
.x55{left:170.106667pt;}
.x2e{left:182.240000pt;}
.x39{left:186.240000pt;}
.x2f{left:188.293333pt;}
.x30{left:189.466667pt;}
.x46{left:194.946667pt;}
.x41{left:195.973333pt;}
.x4c{left:207.386667pt;}
.x3f{left:220.346655pt;}
.x1f{left:223.866655pt;}
.x20{left:236.026655pt;}
.x12{left:245.786667pt;}
.x4d{left:251.066667pt;}
.x1a{left:254.586667pt;}
.x2b{left:258.906655pt;}
.x3e{left:280.226655pt;}
.x2c{left:285.826655pt;}
.x32{left:288.546667pt;}
.x3d{left:291.586667pt;}
.x47{left:305.373333pt;}
.x27{left:311.453333pt;}
.x14{left:342.146667pt;}
.x4e{left:348.386667pt;}
.x1b{left:360.226667pt;}
.xc{left:368.546667pt;}
.x9{left:389.346667pt;}
.x28{left:390.560000pt;}
.x2d{left:396.866655pt;}
.x4f{left:399.266667pt;}
.xf{left:409.666667pt;}
.x15{left:417.666667pt;}
.xd{left:420.866667pt;}
.x1c{left:441.826667pt;}
.xa{left:455.613333pt;}
.x10{left:462.013333pt;}
.x16{left:493.373333pt;}
.x50{left:500.733333pt;}
.x1d{left:533.693333pt;}
.x51{left:553.693333pt;}
.x17{left:568.893333pt;}
.x13{left:591.933333pt;}
.x52{left:597.373333pt;}
.x18{left:635.173333pt;}
.x53{left:647.013333pt;}
.x1e{left:674.053333pt;}
.x54{left:696.453333pt;}
}




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