
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d7805dfc8e700b1e3a6b4b22.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50afda5c8f6b34b2a046355d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7e07fa1a56e54ab1b8c79c50.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c95e85cbc748cc4ac2683fbc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9203aa81b795dae0a3004959.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_76eff4e560ef24ef081c6754.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2641b60ebee7703aa69277f7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bc2d453971658b93b509a5c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_604132842ab303cc546e1a3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.444600px;}
.ls13{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.183600px;}
.ls14{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.063600px;}
.ls24{letter-spacing:-0.049680px;}
.ls27{letter-spacing:-0.038880px;}
.ls25{letter-spacing:-0.018360px;}
.ls16{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.005400px;}
.ls4{letter-spacing:0.014760px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsf{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls22{letter-spacing:0.098400px;}
.ls23{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.160800px;}
.ls12{letter-spacing:0.173400px;}
.lsb{letter-spacing:0.174600px;}
.ls5{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.206640px;}
.ls1b{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.813600px;}
.ls1c{letter-spacing:5.493600px;}
.ls15{letter-spacing:9.453600px;}
.ls1d{letter-spacing:29.613600px;}
.ls21{letter-spacing:47.726640px;}
.ls19{letter-spacing:63.566640px;}
.ls20{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.387200px;}
.wsf{word-spacing:-13.342800px;}
.wse{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsb{word-spacing:-13.211640px;}
.ws11{word-spacing:-13.208040px;}
.ws13{word-spacing:-13.187520px;}
.ws10{word-spacing:-13.176720px;}
.wsd{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.042800px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._d{margin-left:-3.501480px;}
._4{margin-left:-2.149920px;}
._0{margin-left:-1.110000px;}
._3{width:1.187256px;}
._9{width:2.254488px;}
._7{width:3.306600px;}
._8{width:4.614720px;}
._5{width:5.952000px;}
._6{width:6.987120px;}
._a{width:8.451600px;}
._1{width:10.065600px;}
._2{width:11.984520px;}
._e{width:14.396520px;}
._f{width:15.856440px;}
._b{width:17.014200px;}
._c{width:18.215398px;}
._12{width:19.359602px;}
._10{width:20.380680px;}
._11{width:21.522960px;}
._1d{width:24.108120px;}
._22{width:25.319520px;}
._18{width:26.452800px;}
._23{width:27.685080px;}
._24{width:28.707480px;}
._13{width:30.027840px;}
._48{width:31.598040px;}
._31{width:32.645160px;}
._16{width:37.154160px;}
._15{width:38.597040px;}
._3d{width:40.641120px;}
._4a{width:42.204240px;}
._3b{width:44.188200px;}
._35{width:45.210240px;}
._4b{width:46.653120px;}
._2f{width:48.276360px;}
._1a{width:49.947120px;}
._1e{width:51.400800px;}
._37{width:54.228240px;}
._4d{width:55.731240px;}
._25{width:58.496760px;}
._26{width:59.518800px;}
._46{width:61.289040px;}
._2b{width:63.426600px;}
._42{width:67.875480px;}
._41{width:69.258240px;}
._2a{width:70.280280px;}
._44{width:71.542800px;}
._1c{width:74.308320px;}
._39{width:76.292280px;}
._3a{width:77.554800px;}
._38{width:84.468600px;}
._3e{width:86.272200px;}
._19{width:88.556760px;}
._2e{width:91.442520px;}
._47{width:98.412840px;}
._21{width:100.340280px;}
._33{width:103.013400px;}
._2c{width:105.210000px;}
._14{width:106.620600px;}
._29{width:108.809040px;}
._49{width:112.905360px;}
._2d{width:119.217960px;}
._27{width:125.771040px;}
._28{width:126.986880px;}
._4c{width:129.077640px;}
._34{width:133.346160px;}
._32{width:138.396240px;}
._20{width:150.600600px;}
._1f{width:153.486360px;}
._30{width:155.049480px;}
._45{width:168.215760px;}
._40{width:180.540360px;}
._3c{width:192.684600px;}
._17{width:249.978960px;}
._36{width:258.477120px;}
._1b{width:260.740440px;}
._3f{width:268.976880px;}
._43{width:307.874520px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ye9{bottom:7.830000px;}
.yee{bottom:7.860000px;}
.yeb{bottom:7.920000px;}
.y227{bottom:25.380000px;}
.y171{bottom:25.470000px;}
.y222{bottom:25.500000px;}
.y173{bottom:43.020000px;}
.y221{bottom:43.050000px;}
.y170{bottom:43.110000px;}
.y23e{bottom:60.570000px;}
.y225{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y218{bottom:74.280000px;}
.y1{bottom:101.640000px;}
.y228{bottom:111.090000px;}
.y236{bottom:113.250000px;}
.y8d{bottom:116.580000px;}
.ye7{bottom:118.200000px;}
.y250{bottom:120.090000px;}
.y5c{bottom:121.980000px;}
.y242{bottom:123.060000px;}
.yb3{bottom:126.210000px;}
.y14b{bottom:127.470000px;}
.y1dc{bottom:130.170000px;}
.y190{bottom:132.600000px;}
.y10f{bottom:132.870000px;}
.y8c{bottom:134.130000px;}
.y5b{bottom:139.530000px;}
.yb2{bottom:143.760000px;}
.y14a{bottom:145.020000px;}
.y206{bottom:145.470000px;}
.y1db{bottom:147.720000px;}
.y18f{bottom:150.150000px;}
.y8b{bottom:151.680000px;}
.ye6{bottom:153.750000px;}
.y24f{bottom:155.640000px;}
.y5a{bottom:157.170000px;}
.y235{bottom:158.160000px;}
.yb1{bottom:161.400000px;}
.y149{bottom:162.660000px;}
.y205{bottom:163.020000px;}
.y1da{bottom:166.080000px;}
.y1b3{bottom:166.440000px;}
.y135{bottom:167.610000px;}
.y18e{bottom:167.700000px;}
.y241{bottom:167.970000px;}
.y10e{bottom:168.420000px;}
.y8a{bottom:169.320000px;}
.y226{bottom:173.640000px;}
.y27{bottom:174.630000px;}
.y59{bottom:174.720000px;}
.y148{bottom:180.210000px;}
.y1d9{bottom:183.630000px;}
.y1b2{bottom:183.990000px;}
.y16e{bottom:184.710000px;}
.y10d{bottom:185.970000px;}
.y89{bottom:186.870000px;}
.ye5{bottom:189.390000px;}
.y204{bottom:189.660000px;}
.y24e{bottom:191.280000px;}
.y26{bottom:192.180000px;}
.y58{bottom:192.270000px;}
.yb0{bottom:196.950000px;}
.y134{bottom:203.250000px;}
.y18d{bottom:203.340000px;}
.y10c{bottom:203.610000px;}
.y25{bottom:209.820000px;}
.y57{bottom:209.910000px;}
.y1b1{bottom:210.540000px;}
.y240{bottom:212.880000px;}
.yaf{bottom:215.310000px;}
.y147{bottom:215.760000px;}
.y203{bottom:216.210000px;}
.y1d8{bottom:220.080000px;}
.y16d{bottom:220.260000px;}
.y234{bottom:220.710000px;}
.y133{bottom:220.800000px;}
.y18c{bottom:220.890000px;}
.y88{bottom:222.510000px;}
.ye4{bottom:224.940000px;}
.y24d{bottom:226.830000px;}
.y24{bottom:227.370000px;}
.y10b{bottom:230.160000px;}
.y146{bottom:233.400000px;}
.yae{bottom:233.760000px;}
.y224{bottom:236.100000px;}
.y1d7{bottom:237.720000px;}
.y132{bottom:238.440000px;}
.y87{bottom:240.060000px;}
.y23{bottom:245.010000px;}
.y56{bottom:245.460000px;}
.yd6{bottom:246.180000px;}
.y145{bottom:250.950000px;}
.y202{bottom:251.400000px;}
.y16c{bottom:255.900000px;}
.y131{bottom:255.990000px;}
.y18b{bottom:256.080000px;}
.y86{bottom:257.610000px;}
.ye3{bottom:260.580000px;}
.yad{bottom:261.120000px;}
.y24c{bottom:262.380000px;}
.y22{bottom:262.560000px;}
.y55{bottom:263.100000px;}
.y1b0{bottom:263.730000px;}
.y1d6{bottom:264.630000px;}
.y233{bottom:265.620000px;}
.y10a{bottom:265.800000px;}
.y144{bottom:268.590000px;}
.y85{bottom:275.250000px;}
.y23f{bottom:275.340000px;}
.y201{bottom:277.950000px;}
.y21{bottom:280.110000px;}
.y54{bottom:280.650000px;}
.yd5{bottom:281.730000px;}
.y109{bottom:283.350000px;}
.y1af{bottom:290.370000px;}
.y16b{bottom:291.450000px;}
.y130{bottom:291.540000px;}
.y18a{bottom:291.630000px;}
.y84{bottom:292.800000px;}
.yac{bottom:293.700000px;}
.y143{bottom:295.140000px;}
.y200{bottom:295.590000px;}
.ye2{bottom:296.130000px;}
.y20{bottom:297.750000px;}
.y24b{bottom:298.020000px;}
.y53{bottom:298.200000px;}
.yd4{bottom:299.370000px;}
.y108{bottom:300.900000px;}
.y1d5{bottom:301.620000px;}
.y16a{bottom:309.090000px;}
.y12f{bottom:309.180000px;}
.y189{bottom:309.270000px;}
.y232{bottom:310.530000px;}
.yab{bottom:312.150000px;}
.y1f{bottom:315.300000px;}
.y52{bottom:315.840000px;}
.y223{bottom:316.200000px;}
.y107{bottom:318.540000px;}
.y1d4{bottom:319.260000px;}
.y83{bottom:319.440000px;}
.y23d{bottom:320.340000px;}
.y1ff{bottom:322.140000px;}
.yd3{bottom:325.920000px;}
.y12e{bottom:326.730000px;}
.y188{bottom:326.820000px;}
.yaa{bottom:330.600000px;}
.y142{bottom:330.690000px;}
.ye1{bottom:331.680000px;}
.y51{bottom:333.390000px;}
.y24a{bottom:333.570000px;}
.y1fe{bottom:339.690000px;}
.y1e{bottom:342.210000px;}
.y1ae{bottom:343.470000px;}
.y187{bottom:344.370000px;}
.y169{bottom:344.640000px;}
.ye0{bottom:349.320000px;}
.y12d{bottom:353.370000px;}
.y106{bottom:354.090000px;}
.y1d3{bottom:354.810000px;}
.y82{bottom:354.990000px;}
.y231{bottom:355.440000px;}
.ya9{bottom:357.960000px;}
.y50{bottom:359.940000px;}
.y1ad{bottom:361.110000px;}
.yd2{bottom:361.560000px;}
.y186{bottom:362.010000px;}
.y141{bottom:362.910000px;}
.y168{bottom:363.000000px;}
.y1fd{bottom:366.330000px;}
.ydf{bottom:366.870000px;}
.y249{bottom:369.210000px;}
.y105{bottom:371.730000px;}
.y1d2{bottom:372.360000px;}
.y81{bottom:372.540000px;}
.yd1{bottom:379.110000px;}
.y167{bottom:381.450000px;}
.y1fc{bottom:383.880000px;}
.y1ac{bottom:387.660000px;}
.y12c{bottom:388.920000px;}
.y104{bottom:389.280000px;}
.y1d1{bottom:390.000000px;}
.y80{bottom:390.180000px;}
.y1d{bottom:390.450000px;}
.ya8{bottom:390.630000px;}
.yde{bottom:393.510000px;}
.y4f{bottom:395.580000px;}
.yd0{bottom:396.660000px;}
.y185{bottom:397.560000px;}
.y230{bottom:400.380000px;}
.y248{bottom:404.790000px;}
.y12b{bottom:406.470000px;}
.y103{bottom:406.830000px;}
.y7f{bottom:407.730000px;}
.y1c{bottom:408.360000px;}
.y1fb{bottom:410.520000px;}
.y4e{bottom:413.130000px;}
.y166{bottom:417.900000px;}
.y1ab{bottom:423.300000px;}
.ycf{bottom:423.570000px;}
.y220{bottom:423.690000px;}
.y12a{bottom:424.110000px;}
.y184{bottom:424.200000px;}
.y7e{bottom:425.370000px;}
.y1d0{bottom:425.550000px;}
.ya7{bottom:426.180000px;}
.y1fa{bottom:428.070000px;}
.ydd{bottom:429.060000px;}
.y4d{bottom:430.770000px;}
.y102{bottom:433.470000px;}
.y247{bottom:440.340000px;}
.y129{bottom:441.660000px;}
.y7d{bottom:442.920000px;}
.y1cf{bottom:443.190000px;}
.ya6{bottom:443.730000px;}
.y22f{bottom:445.380000px;}
.y1b{bottom:445.440000px;}
.ydc{bottom:446.610000px;}
.y4c{bottom:448.320000px;}
.y1aa{bottom:449.850000px;}
.y165{bottom:453.450000px;}
.y1f9{bottom:454.620000px;}
.y183{bottom:459.750000px;}
.y1ce{bottom:460.740000px;}
.y1a{bottom:462.990000px;}
.y4b{bottom:465.870000px;}
.y128{bottom:468.300000px;}
.y101{bottom:469.020000px;}
.y164{bottom:471.120000px;}
.yce{bottom:471.930000px;}
.y1f8{bottom:472.290000px;}
.y246{bottom:475.980000px;}
.y182{bottom:477.330000px;}
.y7c{bottom:478.500000px;}
.ya5{bottom:479.400000px;}
.y19{bottom:480.660000px;}
.ydb{bottom:482.280000px;}
.y4a{bottom:483.540000px;}
.y1a9{bottom:485.430000px;}
.y21f{bottom:486.150000px;}
.y100{bottom:486.690000px;}
.y1cd{bottom:487.320000px;}
.ycd{bottom:489.480000px;}
.y22e{bottom:490.290000px;}
.y181{bottom:494.970000px;}
.y7b{bottom:496.140000px;}
.ya4{bottom:496.950000px;}
.y18{bottom:498.210000px;}
.y1f7{bottom:498.840000px;}
.yda{bottom:499.830000px;}
.y49{bottom:501.090000px;}
.y1a8{bottom:503.070000px;}
.y127{bottom:503.880000px;}
.yff{bottom:504.240000px;}
.y252{bottom:505.140000px;}
.y163{bottom:506.670000px;}
.ycc{bottom:507.120000px;}
.y23c{bottom:507.840000px;}
.y245{bottom:511.530000px;}
.y180{bottom:512.520000px;}
.y7a{bottom:513.690000px;}
.y17{bottom:515.760000px;}
.y1f6{bottom:516.480000px;}
.yd9{bottom:517.470000px;}
.y1a7{bottom:520.620000px;}
.y126{bottom:521.430000px;}
.yfe{bottom:521.790000px;}
.y1cc{bottom:522.960000px;}
.y162{bottom:524.220000px;}
.y48{bottom:528.000000px;}
.y79{bottom:531.330000px;}
.ya3{bottom:532.590000px;}
.y16{bottom:533.400000px;}
.y1a6{bottom:538.260000px;}
.y125{bottom:539.070000px;}
.yfd{bottom:539.430000px;}
.y1cb{bottom:540.510000px;}
.y161{bottom:541.860000px;}
.ycb{bottom:542.670000px;}
.y1f5{bottom:543.030000px;}
.y244{bottom:547.170000px;}
.y21e{bottom:548.700000px;}
.y78{bottom:548.880000px;}
.y15{bottom:550.950000px;}
.y22d{bottom:552.750000px;}
.yd8{bottom:553.020000px;}
.y124{bottom:556.620000px;}
.y1ca{bottom:558.150000px;}
.yca{bottom:560.220000px;}
.y1f4{bottom:560.580000px;}
.yfc{bottom:565.980000px;}
.ya2{bottom:568.140000px;}
.y160{bottom:568.410000px;}
.y14{bottom:568.590000px;}
.y23b{bottom:570.390000px;}
.y1a5{bottom:573.810000px;}
.y123{bottom:574.260000px;}
.y77{bottom:575.430000px;}
.y47{bottom:576.330000px;}
.yc9{bottom:577.860000px;}
.y1f3{bottom:578.220000px;}
.y243{bottom:582.720000px;}
.yd7{bottom:585.240000px;}
.ya1{bottom:585.690000px;}
.y13{bottom:586.140000px;}
.y17f{bottom:587.760000px;}
.y1a4{bottom:591.360000px;}
.y216{bottom:592.620000px;}
.y21d{bottom:593.610000px;}
.y1c9{bottom:593.700000px;}
.y46{bottom:593.880000px;}
.yc8{bottom:595.410000px;}
.y22c{bottom:597.660000px;}
.y122{bottom:600.810000px;}
.yfb{bottom:601.620000px;}
.ya0{bottom:603.330000px;}
.y12{bottom:603.690000px;}
.y15f{bottom:604.050000px;}
.y1f2{bottom:604.770000px;}
.y17e{bottom:605.310000px;}
.y1a3{bottom:609.000000px;}
.y215{bottom:610.260000px;}
.y76{bottom:611.070000px;}
.y1c8{bottom:611.250000px;}
.y45{bottom:611.430000px;}
.yc7{bottom:613.050000px;}
.y23a{bottom:615.300000px;}
.yfa{bottom:619.170000px;}
.y9f{bottom:620.880000px;}
.y11{bottom:621.330000px;}
.y15e{bottom:621.600000px;}
.y1f1{bottom:622.410000px;}
.y17d{bottom:622.860000px;}
.y1a2{bottom:626.550000px;}
.y75{bottom:628.620000px;}
.y1c7{bottom:628.890000px;}
.y44{bottom:629.070000px;}
.y121{bottom:636.360000px;}
.y214{bottom:636.810000px;}
.y21c{bottom:638.520000px;}
.y10{bottom:638.880000px;}
.y15d{bottom:639.150000px;}
.yc6{bottom:639.600000px;}
.y1f0{bottom:639.960000px;}
.y22b{bottom:642.570000px;}
.yf9{bottom:645.720000px;}
.y74{bottom:646.260000px;}
.y1c6{bottom:646.440000px;}
.y43{bottom:646.620000px;}
.y9e{bottom:647.520000px;}
.y1a1{bottom:653.190000px;}
.y120{bottom:654.000000px;}
.y213{bottom:654.360000px;}
.y17c{bottom:658.500000px;}
.y239{bottom:660.210000px;}
.y73{bottom:663.810000px;}
.y42{bottom:664.260000px;}
.yf{bottom:665.790000px;}
.y1ef{bottom:666.870000px;}
.y11f{bottom:671.550000px;}
.y1c5{bottom:673.350000px;}
.y15c{bottom:674.700000px;}
.yc5{bottom:675.150000px;}
.y17b{bottom:676.050000px;}
.y212{bottom:681.000000px;}
.y72{bottom:681.360000px;}
.y41{bottom:681.810000px;}
.y9d{bottom:683.070000px;}
.y21b{bottom:683.430000px;}
.y1a0{bottom:688.740000px;}
.y11e{bottom:689.190000px;}
.yc4{bottom:692.790000px;}
.y15b{bottom:693.150000px;}
.y17a{bottom:693.690000px;}
.yf8{bottom:698.910000px;}
.y71{bottom:699.000000px;}
.y9c{bottom:700.620000px;}
.y22a{bottom:705.120000px;}
.y19f{bottom:706.290000px;}
.y211{bottom:707.550000px;}
.y1c4{bottom:710.340000px;}
.y179{bottom:711.240000px;}
.y15a{bottom:711.600000px;}
.ye{bottom:714.030000px;}
.y1ee{bottom:715.110000px;}
.y11d{bottom:715.740000px;}
.y70{bottom:716.550000px;}
.y40{bottom:717.360000px;}
.y9b{bottom:718.260000px;}
.y238{bottom:722.670000px;}
.y19e{bottom:723.930000px;}
.y210{bottom:725.190000px;}
.y1c3{bottom:727.980000px;}
.yc3{bottom:728.340000px;}
.y159{bottom:729.960000px;}
.y140{bottom:730.860000px;}
.y3f{bottom:735.000000px;}
.y1ed{bottom:742.020000px;}
.y1c2{bottom:745.530000px;}
.yc2{bottom:745.980000px;}
.y178{bottom:746.790000px;}
.y13f{bottom:748.410000px;}
.y21a{bottom:749.790000px;}
.yd{bottom:749.850000px;}
.y229{bottom:750.060000px;}
.y19d{bottom:750.480000px;}
.y11c{bottom:751.290000px;}
.yf7{bottom:751.380000px;}
.y20f{bottom:751.740000px;}
.y6f{bottom:752.190000px;}
.y3e{bottom:752.550000px;}
.y9a{bottom:753.810000px;}
.y158{bottom:757.410000px;}
.y1c1{bottom:763.170000px;}
.yc1{bottom:763.530000px;}
.y177{bottom:764.430000px;}
.y237{bottom:767.610000px;}
.y11b{bottom:768.930000px;}
.y6e{bottom:769.740000px;}
.y3d{bottom:770.190000px;}
.y99{bottom:772.260000px;}
.y219{bottom:776.700000px;}
.y20e{bottom:778.290000px;}
.y1ec{bottom:779.370000px;}
.yc0{bottom:781.980000px;}
.y13e{bottom:784.050000px;}
.yc{bottom:785.850000px;}
.y19c{bottom:786.030000px;}
.y6d{bottom:787.290000px;}
.y3c{bottom:787.740000px;}
.y98{bottom:789.810000px;}
.yf6{bottom:790.890000px;}
.y157{bottom:793.050000px;}
.y11a{bottom:795.480000px;}
.y20d{bottom:795.930000px;}
.y1c0{bottom:798.720000px;}
.ybf{bottom:799.530000px;}
.y13d{bottom:801.600000px;}
.y19b{bottom:803.670000px;}
.y6c{bottom:804.930000px;}
.y3b{bottom:805.290000px;}
.y97{bottom:808.260000px;}
.y176{bottom:808.530000px;}
.y156{bottom:810.600000px;}
.y20c{bottom:813.480000px;}
.y1bf{bottom:816.270000px;}
.yf5{bottom:818.250000px;}
.y13c{bottom:820.050000px;}
.y6b{bottom:822.480000px;}
.y217{bottom:824.940000px;}
.yb{bottom:825.630000px;}
.y96{bottom:825.810000px;}
.y1eb{bottom:827.700000px;}
.y155{bottom:828.150000px;}
.y19a{bottom:830.220000px;}
.y119{bottom:831.030000px;}
.y1be{bottom:833.910000px;}
.ybe{bottom:835.890000px;}
.y13b{bottom:837.600000px;}
.y3a{bottom:840.930000px;}
.y175{bottom:841.560000px;}
.ya{bottom:843.630000px;}
.y1ea{bottom:845.250000px;}
.yf4{bottom:845.520000px;}
.y118{bottom:848.670000px;}
.y6a{bottom:849.030000px;}
.y1bd{bottom:851.460000px;}
.y154{bottom:854.790000px;}
.y13a{bottom:855.960000px;}
.y20b{bottom:857.670000px;}
.y39{bottom:858.480000px;}
.y9{bottom:861.630000px;}
.y95{bottom:862.260000px;}
.ybd{bottom:862.530000px;}
.y1e9{bottom:862.800000px;}
.y199{bottom:865.860000px;}
.y117{bottom:866.220000px;}
.y1bc{bottom:869.100000px;}
.yf3{bottom:872.880000px;}
.y139{bottom:873.510000px;}
.y38{bottom:876.030000px;}
.y8{bottom:879.630000px;}
.y1e8{bottom:880.440000px;}
.y198{bottom:883.410000px;}
.y116{bottom:883.860000px;}
.y20a{bottom:884.220000px;}
.y69{bottom:884.670000px;}
.y1bb{bottom:886.650000px;}
.y94{bottom:888.810000px;}
.y153{bottom:890.340000px;}
.y138{bottom:891.960000px;}
.y37{bottom:893.670000px;}
.y7{bottom:897.630000px;}
.ybc{bottom:898.080000px;}
.yf2{bottom:900.240000px;}
.y209{bottom:901.860000px;}
.y68{bottom:902.220000px;}
.y174{bottom:904.020000px;}
.y152{bottom:907.890000px;}
.y197{bottom:909.960000px;}
.y115{bottom:910.410000px;}
.y36{bottom:911.220000px;}
.y1ba{bottom:913.560000px;}
.ybb{bottom:915.720000px;}
.y1e7{bottom:915.990000px;}
.y67{bottom:919.860000px;}
.y93{bottom:924.450000px;}
.yf1{bottom:927.600000px;}
.y137{bottom:928.410000px;}
.y35{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.y1e6{bottom:933.630000px;}
.y66{bottom:937.410000px;}
.y92{bottom:942.000000px;}
.y151{bottom:943.530000px;}
.y196{bottom:945.600000px;}
.y114{bottom:945.960000px;}
.y34{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y1e5{bottom:951.180000px;}
.yba{bottom:951.270000px;}
.yf0{bottom:954.870000px;}
.y65{bottom:954.960000px;}
.y91{bottom:959.550000px;}
.y150{bottom:961.080000px;}
.y1b9{bottom:961.800000px;}
.y195{bottom:963.150000px;}
.y113{bottom:963.600000px;}
.y33{bottom:963.960000px;}
.y172{bottom:966.570000px;}
.y1e4{bottom:968.730000px;}
.yb9{bottom:968.820000px;}
.y64{bottom:972.600000px;}
.y90{bottom:977.190000px;}
.y14f{bottom:978.630000px;}
.y1b8{bottom:979.440000px;}
.y194{bottom:980.790000px;}
.y112{bottom:981.150000px;}
.yef{bottom:982.230000px;}
.yb8{bottom:986.460000px;}
.y4{bottom:987.630000px;}
.y63{bottom:990.150000px;}
.y8f{bottom:994.740000px;}
.y1e3{bottom:995.640000px;}
.y1b7{bottom:996.990000px;}
.y14e{bottom:997.080000px;}
.y111{bottom:998.790000px;}
.y32{bottom:999.600000px;}
.y193{bottom:1007.340000px;}
.y136{bottom:1007.790000px;}
.yed{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y1b6{bottom:1014.570000px;}
.y14d{bottom:1015.470000px;}
.y208{bottom:1016.820000px;}
.y31{bottom:1017.180000px;}
.yb7{bottom:1022.040000px;}
.y110{bottom:1025.370000px;}
.y62{bottom:1025.820000px;}
.y16f{bottom:1029.060000px;}
.y1b5{bottom:1032.210000px;}
.y1e2{bottom:1032.750000px;}
.y207{bottom:1034.370000px;}
.y30{bottom:1034.820000px;}
.yec{bottom:1036.890000px;}
.y8e{bottom:1039.230000px;}
.yb6{bottom:1040.400000px;}
.y14c{bottom:1042.920000px;}
.y61{bottom:1043.370000px;}
.y1e1{bottom:1050.300000px;}
.y2f{bottom:1052.370000px;}
.yb5{bottom:1058.850000px;}
.y1b4{bottom:1059.120000px;}
.y192{bottom:1060.560000px;}
.y60{bottom:1060.920000px;}
.yea{bottom:1064.250000px;}
.y2e{bottom:1069.920000px;}
.yb4{bottom:1077.300000px;}
.y5f{bottom:1078.560000px;}
.y1e0{bottom:1085.850000px;}
.y191{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.ye8{bottom:1091.610000px;}
.y5e{bottom:1096.110000px;}
.y1df{bottom:1103.400000px;}
.y2c{bottom:1105.110000px;}
.y5d{bottom:1113.750000px;}
.y1de{bottom:1121.850000px;}
.y2b{bottom:1122.750000px;}
.y251{bottom:1138.860000px;}
.y1dd{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.he{height:26.550000px;}
.h10{height:26.580000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h11{height:41.661211px;}
.h1a{height:44.100000px;}
.h17{height:44.190000px;}
.h19{height:44.220000px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h14{height:61.740000px;}
.h13{height:61.770000px;}
.hb{height:61.793886px;}
.h12{height:61.830000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h1b{height:79.320000px;}
.h18{height:79.380000px;}
.h15{height:893.160000px;}
.h16{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:56.160000px;}
.w10{width:59.040000px;}
.w5{width:82.260000px;}
.w13{width:89.040000px;}
.w14{width:102.150000px;}
.w8{width:147.000000px;}
.w9{width:151.920000px;}
.wf{width:154.470000px;}
.w3{width:187.410000px;}
.w11{width:196.200000px;}
.wa{width:207.390000px;}
.w12{width:219.600000px;}
.w15{width:220.230000px;}
.wb{width:247.140000px;}
.w6{width:394.950000px;}
.w7{width:722.940000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.wd{width:1262.250000px;}
.we{width:1262.519981px;}
.wc{width:1262.520000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:85.140000px;}
.x4{left:95.039987px;}
.x17{left:107.999981px;}
.x14{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:202.799987px;}
.x11{left:216.480000px;}
.x10{left:238.799987px;}
.x18{left:263.910000px;}
.xb{left:273.270000px;}
.x8{left:282.359987px;}
.x19{left:323.760000px;}
.xc{left:330.150000px;}
.xe{left:352.199987px;}
.x12{left:369.210000px;}
.x15{left:387.389981px;}
.xd{left:413.130000px;}
.x6{left:446.609987px;}
.x1a{left:520.680000px;}
.x13{left:577.320000px;}
.x7{left:653.639987px;}
.xf{left:725.639987px;}
.x1b{left:741.000000px;}
.x3{left:792.059987px;}
.x1c{left:830.760000px;}
.x1d{left:933.630000px;}
.x16{left:1121.369981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.395200pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.163200pt;}
.ls14{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.056533pt;}
.ls24{letter-spacing:-0.044160pt;}
.ls27{letter-spacing:-0.034560pt;}
.ls25{letter-spacing:-0.016320pt;}
.ls16{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.004800pt;}
.ls4{letter-spacing:0.013120pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsf{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls22{letter-spacing:0.087467pt;}
.ls23{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.142933pt;}
.ls12{letter-spacing:0.154133pt;}
.lsb{letter-spacing:0.155200pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.183680pt;}
.ls1b{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.723200pt;}
.ls1c{letter-spacing:4.883200pt;}
.ls15{letter-spacing:8.403200pt;}
.ls1d{letter-spacing:26.323200pt;}
.ls21{letter-spacing:42.423680pt;}
.ls19{letter-spacing:56.503680pt;}
.ls20{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.899733pt;}
.wsf{word-spacing:-11.860267pt;}
.wse{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsb{word-spacing:-11.743680pt;}
.ws11{word-spacing:-11.740480pt;}
.ws13{word-spacing:-11.722240pt;}
.ws10{word-spacing:-11.712640pt;}
.wsd{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.593600pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._d{margin-left:-3.112427pt;}
._4{margin-left:-1.911040pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.055338pt;}
._9{width:2.003990pt;}
._7{width:2.939200pt;}
._8{width:4.101973pt;}
._5{width:5.290667pt;}
._6{width:6.210773pt;}
._a{width:7.512534pt;}
._1{width:8.947200pt;}
._2{width:10.652907pt;}
._e{width:12.796907pt;}
._f{width:14.094613pt;}
._b{width:15.123734pt;}
._c{width:16.191465pt;}
._12{width:17.208535pt;}
._10{width:18.116160pt;}
._11{width:19.131520pt;}
._1d{width:21.429440pt;}
._22{width:22.506240pt;}
._18{width:23.513600pt;}
._23{width:24.608960pt;}
._24{width:25.517760pt;}
._13{width:26.691413pt;}
._48{width:28.087147pt;}
._31{width:29.017920pt;}
._16{width:33.025920pt;}
._15{width:34.308480pt;}
._3d{width:36.125440pt;}
._4a{width:37.514880pt;}
._3b{width:39.278400pt;}
._35{width:40.186880pt;}
._4b{width:41.469440pt;}
._2f{width:42.912320pt;}
._1a{width:44.397440pt;}
._1e{width:45.689600pt;}
._37{width:48.202880pt;}
._4d{width:49.538880pt;}
._25{width:51.997120pt;}
._26{width:52.905600pt;}
._46{width:54.479147pt;}
._2b{width:56.379200pt;}
._42{width:60.333760pt;}
._41{width:61.562880pt;}
._2a{width:62.471360pt;}
._44{width:63.593600pt;}
._1c{width:66.051840pt;}
._39{width:67.815360pt;}
._3a{width:68.937600pt;}
._38{width:75.083200pt;}
._3e{width:76.686400pt;}
._19{width:78.717120pt;}
._2e{width:81.282240pt;}
._47{width:87.478080pt;}
._21{width:89.191360pt;}
._33{width:91.567467pt;}
._2c{width:93.520000pt;}
._14{width:94.773867pt;}
._29{width:96.719147pt;}
._49{width:100.360320pt;}
._2d{width:105.971520pt;}
._27{width:111.796480pt;}
._28{width:112.877227pt;}
._4c{width:114.735680pt;}
._34{width:118.529920pt;}
._32{width:123.018880pt;}
._20{width:133.867200pt;}
._1f{width:136.432320pt;}
._30{width:137.821760pt;}
._45{width:149.525120pt;}
._40{width:160.480320pt;}
._3c{width:171.275200pt;}
._17{width:222.203520pt;}
._36{width:229.757440pt;}
._1b{width:231.769280pt;}
._3f{width:239.090560pt;}
._43{width:273.666240pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ye9{bottom:6.960000pt;}
.yee{bottom:6.986667pt;}
.yeb{bottom:7.040000pt;}
.y227{bottom:22.560000pt;}
.y171{bottom:22.640000pt;}
.y222{bottom:22.666667pt;}
.y173{bottom:38.240000pt;}
.y221{bottom:38.266667pt;}
.y170{bottom:38.320000pt;}
.y23e{bottom:53.840000pt;}
.y225{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y218{bottom:66.026667pt;}
.y1{bottom:90.346667pt;}
.y228{bottom:98.746667pt;}
.y236{bottom:100.666667pt;}
.y8d{bottom:103.626667pt;}
.ye7{bottom:105.066667pt;}
.y250{bottom:106.746667pt;}
.y5c{bottom:108.426667pt;}
.y242{bottom:109.386667pt;}
.yb3{bottom:112.186667pt;}
.y14b{bottom:113.306667pt;}
.y1dc{bottom:115.706667pt;}
.y190{bottom:117.866667pt;}
.y10f{bottom:118.106667pt;}
.y8c{bottom:119.226667pt;}
.y5b{bottom:124.026667pt;}
.yb2{bottom:127.786667pt;}
.y14a{bottom:128.906667pt;}
.y206{bottom:129.306667pt;}
.y1db{bottom:131.306667pt;}
.y18f{bottom:133.466667pt;}
.y8b{bottom:134.826667pt;}
.ye6{bottom:136.666667pt;}
.y24f{bottom:138.346667pt;}
.y5a{bottom:139.706667pt;}
.y235{bottom:140.586667pt;}
.yb1{bottom:143.466667pt;}
.y149{bottom:144.586667pt;}
.y205{bottom:144.906667pt;}
.y1da{bottom:147.626667pt;}
.y1b3{bottom:147.946667pt;}
.y135{bottom:148.986667pt;}
.y18e{bottom:149.066667pt;}
.y241{bottom:149.306667pt;}
.y10e{bottom:149.706667pt;}
.y8a{bottom:150.506667pt;}
.y226{bottom:154.346667pt;}
.y27{bottom:155.226667pt;}
.y59{bottom:155.306667pt;}
.y148{bottom:160.186667pt;}
.y1d9{bottom:163.226667pt;}
.y1b2{bottom:163.546667pt;}
.y16e{bottom:164.186667pt;}
.y10d{bottom:165.306667pt;}
.y89{bottom:166.106667pt;}
.ye5{bottom:168.346667pt;}
.y204{bottom:168.586667pt;}
.y24e{bottom:170.026667pt;}
.y26{bottom:170.826667pt;}
.y58{bottom:170.906667pt;}
.yb0{bottom:175.066667pt;}
.y134{bottom:180.666667pt;}
.y18d{bottom:180.746667pt;}
.y10c{bottom:180.986667pt;}
.y25{bottom:186.506667pt;}
.y57{bottom:186.586667pt;}
.y1b1{bottom:187.146667pt;}
.y240{bottom:189.226667pt;}
.yaf{bottom:191.386667pt;}
.y147{bottom:191.786667pt;}
.y203{bottom:192.186667pt;}
.y1d8{bottom:195.626667pt;}
.y16d{bottom:195.786667pt;}
.y234{bottom:196.186667pt;}
.y133{bottom:196.266667pt;}
.y18c{bottom:196.346667pt;}
.y88{bottom:197.786667pt;}
.ye4{bottom:199.946667pt;}
.y24d{bottom:201.626667pt;}
.y24{bottom:202.106667pt;}
.y10b{bottom:204.586667pt;}
.y146{bottom:207.466667pt;}
.yae{bottom:207.786667pt;}
.y224{bottom:209.866667pt;}
.y1d7{bottom:211.306667pt;}
.y132{bottom:211.946667pt;}
.y87{bottom:213.386667pt;}
.y23{bottom:217.786667pt;}
.y56{bottom:218.186667pt;}
.yd6{bottom:218.826667pt;}
.y145{bottom:223.066667pt;}
.y202{bottom:223.466667pt;}
.y16c{bottom:227.466667pt;}
.y131{bottom:227.546667pt;}
.y18b{bottom:227.626667pt;}
.y86{bottom:228.986667pt;}
.ye3{bottom:231.626667pt;}
.yad{bottom:232.106667pt;}
.y24c{bottom:233.226667pt;}
.y22{bottom:233.386667pt;}
.y55{bottom:233.866667pt;}
.y1b0{bottom:234.426667pt;}
.y1d6{bottom:235.226667pt;}
.y233{bottom:236.106667pt;}
.y10a{bottom:236.266667pt;}
.y144{bottom:238.746667pt;}
.y85{bottom:244.666667pt;}
.y23f{bottom:244.746667pt;}
.y201{bottom:247.066667pt;}
.y21{bottom:248.986667pt;}
.y54{bottom:249.466667pt;}
.yd5{bottom:250.426667pt;}
.y109{bottom:251.866667pt;}
.y1af{bottom:258.106667pt;}
.y16b{bottom:259.066667pt;}
.y130{bottom:259.146667pt;}
.y18a{bottom:259.226667pt;}
.y84{bottom:260.266667pt;}
.yac{bottom:261.066667pt;}
.y143{bottom:262.346667pt;}
.y200{bottom:262.746667pt;}
.ye2{bottom:263.226667pt;}
.y20{bottom:264.666667pt;}
.y24b{bottom:264.906667pt;}
.y53{bottom:265.066667pt;}
.yd4{bottom:266.106667pt;}
.y108{bottom:267.466667pt;}
.y1d5{bottom:268.106667pt;}
.y16a{bottom:274.746667pt;}
.y12f{bottom:274.826667pt;}
.y189{bottom:274.906667pt;}
.y232{bottom:276.026667pt;}
.yab{bottom:277.466667pt;}
.y1f{bottom:280.266667pt;}
.y52{bottom:280.746667pt;}
.y223{bottom:281.066667pt;}
.y107{bottom:283.146667pt;}
.y1d4{bottom:283.786667pt;}
.y83{bottom:283.946667pt;}
.y23d{bottom:284.746667pt;}
.y1ff{bottom:286.346667pt;}
.yd3{bottom:289.706667pt;}
.y12e{bottom:290.426667pt;}
.y188{bottom:290.506667pt;}
.yaa{bottom:293.866667pt;}
.y142{bottom:293.946667pt;}
.ye1{bottom:294.826667pt;}
.y51{bottom:296.346667pt;}
.y24a{bottom:296.506667pt;}
.y1fe{bottom:301.946667pt;}
.y1e{bottom:304.186667pt;}
.y1ae{bottom:305.306667pt;}
.y187{bottom:306.106667pt;}
.y169{bottom:306.346667pt;}
.ye0{bottom:310.506667pt;}
.y12d{bottom:314.106667pt;}
.y106{bottom:314.746667pt;}
.y1d3{bottom:315.386667pt;}
.y82{bottom:315.546667pt;}
.y231{bottom:315.946667pt;}
.ya9{bottom:318.186667pt;}
.y50{bottom:319.946667pt;}
.y1ad{bottom:320.986667pt;}
.yd2{bottom:321.386667pt;}
.y186{bottom:321.786667pt;}
.y141{bottom:322.586667pt;}
.y168{bottom:322.666667pt;}
.y1fd{bottom:325.626667pt;}
.ydf{bottom:326.106667pt;}
.y249{bottom:328.186667pt;}
.y105{bottom:330.426667pt;}
.y1d2{bottom:330.986667pt;}
.y81{bottom:331.146667pt;}
.yd1{bottom:336.986667pt;}
.y167{bottom:339.066667pt;}
.y1fc{bottom:341.226667pt;}
.y1ac{bottom:344.586667pt;}
.y12c{bottom:345.706667pt;}
.y104{bottom:346.026667pt;}
.y1d1{bottom:346.666667pt;}
.y80{bottom:346.826667pt;}
.y1d{bottom:347.066667pt;}
.ya8{bottom:347.226667pt;}
.yde{bottom:349.786667pt;}
.y4f{bottom:351.626667pt;}
.yd0{bottom:352.586667pt;}
.y185{bottom:353.386667pt;}
.y230{bottom:355.893333pt;}
.y248{bottom:359.813333pt;}
.y12b{bottom:361.306667pt;}
.y103{bottom:361.626667pt;}
.y7f{bottom:362.426667pt;}
.y1c{bottom:362.986667pt;}
.y1fb{bottom:364.906667pt;}
.y4e{bottom:367.226667pt;}
.y166{bottom:371.466667pt;}
.y1ab{bottom:376.266667pt;}
.ycf{bottom:376.506667pt;}
.y220{bottom:376.613333pt;}
.y12a{bottom:376.986667pt;}
.y184{bottom:377.066667pt;}
.y7e{bottom:378.106667pt;}
.y1d0{bottom:378.266667pt;}
.ya7{bottom:378.826667pt;}
.y1fa{bottom:380.506667pt;}
.ydd{bottom:381.386667pt;}
.y4d{bottom:382.906667pt;}
.y102{bottom:385.306667pt;}
.y247{bottom:391.413333pt;}
.y129{bottom:392.586667pt;}
.y7d{bottom:393.706667pt;}
.y1cf{bottom:393.946667pt;}
.ya6{bottom:394.426667pt;}
.y22f{bottom:395.893333pt;}
.y1b{bottom:395.946667pt;}
.ydc{bottom:396.986667pt;}
.y4c{bottom:398.506667pt;}
.y1aa{bottom:399.866667pt;}
.y165{bottom:403.066667pt;}
.y1f9{bottom:404.106667pt;}
.y183{bottom:408.666667pt;}
.y1ce{bottom:409.546667pt;}
.y1a{bottom:411.546667pt;}
.y4b{bottom:414.106667pt;}
.y128{bottom:416.266667pt;}
.y101{bottom:416.906667pt;}
.y164{bottom:418.773333pt;}
.yce{bottom:419.493333pt;}
.y1f8{bottom:419.813333pt;}
.y246{bottom:423.093333pt;}
.y182{bottom:424.293333pt;}
.y7c{bottom:425.333333pt;}
.ya5{bottom:426.133333pt;}
.y19{bottom:427.253333pt;}
.ydb{bottom:428.693333pt;}
.y4a{bottom:429.813333pt;}
.y1a9{bottom:431.493333pt;}
.y21f{bottom:432.133333pt;}
.y100{bottom:432.613333pt;}
.y1cd{bottom:433.173333pt;}
.ycd{bottom:435.093333pt;}
.y22e{bottom:435.813333pt;}
.y181{bottom:439.973333pt;}
.y7b{bottom:441.013333pt;}
.ya4{bottom:441.733333pt;}
.y18{bottom:442.853333pt;}
.y1f7{bottom:443.413333pt;}
.yda{bottom:444.293333pt;}
.y49{bottom:445.413333pt;}
.y1a8{bottom:447.173333pt;}
.y127{bottom:447.893333pt;}
.yff{bottom:448.213333pt;}
.y252{bottom:449.013333pt;}
.y163{bottom:450.373333pt;}
.ycc{bottom:450.773333pt;}
.y23c{bottom:451.413333pt;}
.y245{bottom:454.693333pt;}
.y180{bottom:455.573333pt;}
.y7a{bottom:456.613333pt;}
.y17{bottom:458.453333pt;}
.y1f6{bottom:459.093333pt;}
.yd9{bottom:459.973333pt;}
.y1a7{bottom:462.773333pt;}
.y126{bottom:463.493333pt;}
.yfe{bottom:463.813333pt;}
.y1cc{bottom:464.853333pt;}
.y162{bottom:465.973333pt;}
.y48{bottom:469.333333pt;}
.y79{bottom:472.293333pt;}
.ya3{bottom:473.413333pt;}
.y16{bottom:474.133333pt;}
.y1a6{bottom:478.453333pt;}
.y125{bottom:479.173333pt;}
.yfd{bottom:479.493333pt;}
.y1cb{bottom:480.453333pt;}
.y161{bottom:481.653333pt;}
.ycb{bottom:482.373333pt;}
.y1f5{bottom:482.693333pt;}
.y244{bottom:486.373333pt;}
.y21e{bottom:487.733333pt;}
.y78{bottom:487.893333pt;}
.y15{bottom:489.733333pt;}
.y22d{bottom:491.333333pt;}
.yd8{bottom:491.573333pt;}
.y124{bottom:494.773333pt;}
.y1ca{bottom:496.133333pt;}
.yca{bottom:497.973333pt;}
.y1f4{bottom:498.293333pt;}
.yfc{bottom:503.093333pt;}
.ya2{bottom:505.013333pt;}
.y160{bottom:505.253333pt;}
.y14{bottom:505.413333pt;}
.y23b{bottom:507.013333pt;}
.y1a5{bottom:510.053333pt;}
.y123{bottom:510.453333pt;}
.y77{bottom:511.493333pt;}
.y47{bottom:512.293333pt;}
.yc9{bottom:513.653333pt;}
.y1f3{bottom:513.973333pt;}
.y243{bottom:517.973333pt;}
.yd7{bottom:520.213333pt;}
.ya1{bottom:520.613333pt;}
.y13{bottom:521.013333pt;}
.y17f{bottom:522.453333pt;}
.y1a4{bottom:525.653333pt;}
.y216{bottom:526.773333pt;}
.y21d{bottom:527.653333pt;}
.y1c9{bottom:527.733333pt;}
.y46{bottom:527.893333pt;}
.yc8{bottom:529.253333pt;}
.y22c{bottom:531.253333pt;}
.y122{bottom:534.053333pt;}
.yfb{bottom:534.773333pt;}
.ya0{bottom:536.293333pt;}
.y12{bottom:536.613333pt;}
.y15f{bottom:536.933333pt;}
.y1f2{bottom:537.573333pt;}
.y17e{bottom:538.053333pt;}
.y1a3{bottom:541.333333pt;}
.y215{bottom:542.453333pt;}
.y76{bottom:543.173333pt;}
.y1c8{bottom:543.333333pt;}
.y45{bottom:543.493333pt;}
.yc7{bottom:544.933333pt;}
.y23a{bottom:546.933333pt;}
.yfa{bottom:550.373333pt;}
.y9f{bottom:551.893333pt;}
.y11{bottom:552.293333pt;}
.y15e{bottom:552.533333pt;}
.y1f1{bottom:553.253333pt;}
.y17d{bottom:553.653333pt;}
.y1a2{bottom:556.933333pt;}
.y75{bottom:558.773333pt;}
.y1c7{bottom:559.013333pt;}
.y44{bottom:559.173333pt;}
.y121{bottom:565.653333pt;}
.y214{bottom:566.053333pt;}
.y21c{bottom:567.573333pt;}
.y10{bottom:567.893333pt;}
.y15d{bottom:568.133333pt;}
.yc6{bottom:568.533333pt;}
.y1f0{bottom:568.853333pt;}
.y22b{bottom:571.173333pt;}
.yf9{bottom:573.973333pt;}
.y74{bottom:574.453333pt;}
.y1c6{bottom:574.613333pt;}
.y43{bottom:574.773333pt;}
.y9e{bottom:575.573333pt;}
.y1a1{bottom:580.613333pt;}
.y120{bottom:581.333333pt;}
.y213{bottom:581.653333pt;}
.y17c{bottom:585.333333pt;}
.y239{bottom:586.853333pt;}
.y73{bottom:590.053333pt;}
.y42{bottom:590.453333pt;}
.yf{bottom:591.813333pt;}
.y1ef{bottom:592.773333pt;}
.y11f{bottom:596.933333pt;}
.y1c5{bottom:598.533333pt;}
.y15c{bottom:599.733333pt;}
.yc5{bottom:600.133333pt;}
.y17b{bottom:600.933333pt;}
.y212{bottom:605.333333pt;}
.y72{bottom:605.653333pt;}
.y41{bottom:606.053333pt;}
.y9d{bottom:607.173333pt;}
.y21b{bottom:607.493333pt;}
.y1a0{bottom:612.213333pt;}
.y11e{bottom:612.613333pt;}
.yc4{bottom:615.813333pt;}
.y15b{bottom:616.133333pt;}
.y17a{bottom:616.613333pt;}
.yf8{bottom:621.253333pt;}
.y71{bottom:621.333333pt;}
.y9c{bottom:622.773333pt;}
.y22a{bottom:626.773333pt;}
.y19f{bottom:627.813333pt;}
.y211{bottom:628.933333pt;}
.y1c4{bottom:631.413333pt;}
.y179{bottom:632.213333pt;}
.y15a{bottom:632.533333pt;}
.ye{bottom:634.693333pt;}
.y1ee{bottom:635.653333pt;}
.y11d{bottom:636.213333pt;}
.y70{bottom:636.933333pt;}
.y40{bottom:637.653333pt;}
.y9b{bottom:638.453333pt;}
.y238{bottom:642.373333pt;}
.y19e{bottom:643.493333pt;}
.y210{bottom:644.613333pt;}
.y1c3{bottom:647.093333pt;}
.yc3{bottom:647.413333pt;}
.y159{bottom:648.853333pt;}
.y140{bottom:649.653333pt;}
.y3f{bottom:653.333333pt;}
.y1ed{bottom:659.573333pt;}
.y1c2{bottom:662.693333pt;}
.yc2{bottom:663.093333pt;}
.y178{bottom:663.813333pt;}
.y13f{bottom:665.253333pt;}
.y21a{bottom:666.480000pt;}
.yd{bottom:666.533333pt;}
.y229{bottom:666.720000pt;}
.y19d{bottom:667.093333pt;}
.y11c{bottom:667.813333pt;}
.yf7{bottom:667.893333pt;}
.y20f{bottom:668.213333pt;}
.y6f{bottom:668.613333pt;}
.y3e{bottom:668.933333pt;}
.y9a{bottom:670.053333pt;}
.y158{bottom:673.253333pt;}
.y1c1{bottom:678.373333pt;}
.yc1{bottom:678.693333pt;}
.y177{bottom:679.493333pt;}
.y237{bottom:682.320000pt;}
.y11b{bottom:683.493333pt;}
.y6e{bottom:684.213333pt;}
.y3d{bottom:684.613333pt;}
.y99{bottom:686.453333pt;}
.y219{bottom:690.400000pt;}
.y20e{bottom:691.813333pt;}
.y1ec{bottom:692.773333pt;}
.yc0{bottom:695.093333pt;}
.y13e{bottom:696.933333pt;}
.yc{bottom:698.533333pt;}
.y19c{bottom:698.693333pt;}
.y6d{bottom:699.813333pt;}
.y3c{bottom:700.213333pt;}
.y98{bottom:702.053333pt;}
.yf6{bottom:703.013333pt;}
.y157{bottom:704.933333pt;}
.y11a{bottom:707.093333pt;}
.y20d{bottom:707.493333pt;}
.y1c0{bottom:709.973333pt;}
.ybf{bottom:710.693333pt;}
.y13d{bottom:712.533333pt;}
.y19b{bottom:714.373333pt;}
.y6c{bottom:715.493333pt;}
.y3b{bottom:715.813333pt;}
.y97{bottom:718.453333pt;}
.y176{bottom:718.693333pt;}
.y156{bottom:720.533333pt;}
.y20c{bottom:723.093333pt;}
.y1bf{bottom:725.573333pt;}
.yf5{bottom:727.333333pt;}
.y13c{bottom:728.933333pt;}
.y6b{bottom:731.093333pt;}
.y217{bottom:733.280000pt;}
.yb{bottom:733.893333pt;}
.y96{bottom:734.053333pt;}
.y1eb{bottom:735.733333pt;}
.y155{bottom:736.133333pt;}
.y19a{bottom:737.973333pt;}
.y119{bottom:738.693333pt;}
.y1be{bottom:741.253333pt;}
.ybe{bottom:743.013333pt;}
.y13b{bottom:744.533333pt;}
.y3a{bottom:747.493333pt;}
.y175{bottom:748.053333pt;}
.ya{bottom:749.893333pt;}
.y1ea{bottom:751.333333pt;}
.yf4{bottom:751.573333pt;}
.y118{bottom:754.373333pt;}
.y6a{bottom:754.693333pt;}
.y1bd{bottom:756.853333pt;}
.y154{bottom:759.813333pt;}
.y13a{bottom:760.853333pt;}
.y20b{bottom:762.373333pt;}
.y39{bottom:763.093333pt;}
.y9{bottom:765.893333pt;}
.y95{bottom:766.453333pt;}
.ybd{bottom:766.693333pt;}
.y1e9{bottom:766.933333pt;}
.y199{bottom:769.653333pt;}
.y117{bottom:769.973333pt;}
.y1bc{bottom:772.533333pt;}
.yf3{bottom:775.893333pt;}
.y139{bottom:776.453333pt;}
.y38{bottom:778.693333pt;}
.y8{bottom:781.893333pt;}
.y1e8{bottom:782.613333pt;}
.y198{bottom:785.253333pt;}
.y116{bottom:785.653333pt;}
.y20a{bottom:785.973333pt;}
.y69{bottom:786.373333pt;}
.y1bb{bottom:788.133333pt;}
.y94{bottom:790.053333pt;}
.y153{bottom:791.413333pt;}
.y138{bottom:792.853333pt;}
.y37{bottom:794.373333pt;}
.y7{bottom:797.893333pt;}
.ybc{bottom:798.293333pt;}
.yf2{bottom:800.213333pt;}
.y209{bottom:801.653333pt;}
.y68{bottom:801.973333pt;}
.y174{bottom:803.573333pt;}
.y152{bottom:807.013333pt;}
.y197{bottom:808.853333pt;}
.y115{bottom:809.253333pt;}
.y36{bottom:809.973333pt;}
.y1ba{bottom:812.053333pt;}
.ybb{bottom:813.973333pt;}
.y1e7{bottom:814.213333pt;}
.y67{bottom:817.653333pt;}
.y93{bottom:821.733333pt;}
.yf1{bottom:824.533333pt;}
.y137{bottom:825.253333pt;}
.y35{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.y1e6{bottom:829.893333pt;}
.y66{bottom:833.253333pt;}
.y92{bottom:837.333333pt;}
.y151{bottom:838.693333pt;}
.y196{bottom:840.533333pt;}
.y114{bottom:840.853333pt;}
.y34{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y1e5{bottom:845.493333pt;}
.yba{bottom:845.573333pt;}
.yf0{bottom:848.773333pt;}
.y65{bottom:848.853333pt;}
.y91{bottom:852.933333pt;}
.y150{bottom:854.293333pt;}
.y1b9{bottom:854.933333pt;}
.y195{bottom:856.133333pt;}
.y113{bottom:856.533333pt;}
.y33{bottom:856.853333pt;}
.y172{bottom:859.173333pt;}
.y1e4{bottom:861.093333pt;}
.yb9{bottom:861.173333pt;}
.y64{bottom:864.533333pt;}
.y90{bottom:868.613333pt;}
.y14f{bottom:869.893333pt;}
.y1b8{bottom:870.613333pt;}
.y194{bottom:871.813333pt;}
.y112{bottom:872.133333pt;}
.yef{bottom:873.093333pt;}
.yb8{bottom:876.853333pt;}
.y4{bottom:877.893333pt;}
.y63{bottom:880.133333pt;}
.y8f{bottom:884.213333pt;}
.y1e3{bottom:885.013333pt;}
.y1b7{bottom:886.213333pt;}
.y14e{bottom:886.293333pt;}
.y111{bottom:887.813333pt;}
.y32{bottom:888.533333pt;}
.y193{bottom:895.413333pt;}
.y136{bottom:895.813333pt;}
.yed{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y1b6{bottom:901.840000pt;}
.y14d{bottom:902.640000pt;}
.y208{bottom:903.840000pt;}
.y31{bottom:904.160000pt;}
.yb7{bottom:908.480000pt;}
.y110{bottom:911.440000pt;}
.y62{bottom:911.840000pt;}
.y16f{bottom:914.720000pt;}
.y1b5{bottom:917.520000pt;}
.y1e2{bottom:918.000000pt;}
.y207{bottom:919.440000pt;}
.y30{bottom:919.840000pt;}
.yec{bottom:921.680000pt;}
.y8e{bottom:923.760000pt;}
.yb6{bottom:924.800000pt;}
.y14c{bottom:927.040000pt;}
.y61{bottom:927.440000pt;}
.y1e1{bottom:933.600000pt;}
.y2f{bottom:935.440000pt;}
.yb5{bottom:941.200000pt;}
.y1b4{bottom:941.440000pt;}
.y192{bottom:942.720000pt;}
.y60{bottom:943.040000pt;}
.yea{bottom:946.000000pt;}
.y2e{bottom:951.040000pt;}
.yb4{bottom:957.600000pt;}
.y5f{bottom:958.720000pt;}
.y1e0{bottom:965.200000pt;}
.y191{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.ye8{bottom:970.320000pt;}
.y5e{bottom:974.320000pt;}
.y1df{bottom:980.800000pt;}
.y2c{bottom:982.320000pt;}
.y5d{bottom:990.000000pt;}
.y1de{bottom:997.200000pt;}
.y2b{bottom:998.000000pt;}
.y251{bottom:1012.320000pt;}
.y1dd{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h10{height:23.626667pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h11{height:37.032187pt;}
.h1a{height:39.200000pt;}
.h17{height:39.280000pt;}
.h19{height:39.306667pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h14{height:54.880000pt;}
.h13{height:54.906667pt;}
.hb{height:54.927899pt;}
.h12{height:54.960000pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1b{height:70.506667pt;}
.h18{height:70.560000pt;}
.h15{height:793.920000pt;}
.h16{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:49.920000pt;}
.w10{width:52.480000pt;}
.w5{width:73.120000pt;}
.w13{width:79.146667pt;}
.w14{width:90.800000pt;}
.w8{width:130.666667pt;}
.w9{width:135.040000pt;}
.wf{width:137.306667pt;}
.w3{width:166.586667pt;}
.w11{width:174.400000pt;}
.wa{width:184.346667pt;}
.w12{width:195.200000pt;}
.w15{width:195.760000pt;}
.wb{width:219.680000pt;}
.w6{width:351.066667pt;}
.w7{width:642.613333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.wd{width:1122.000000pt;}
.we{width:1122.239983pt;}
.wc{width:1122.240000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:75.680000pt;}
.x4{left:84.479988pt;}
.x17{left:95.999983pt;}
.x14{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:180.266655pt;}
.x11{left:192.426667pt;}
.x10{left:212.266655pt;}
.x18{left:234.586667pt;}
.xb{left:242.906667pt;}
.x8{left:250.986655pt;}
.x19{left:287.786667pt;}
.xc{left:293.466667pt;}
.xe{left:313.066655pt;}
.x12{left:328.186667pt;}
.x15{left:344.346650pt;}
.xd{left:367.226667pt;}
.x6{left:396.986655pt;}
.x1a{left:462.826667pt;}
.x13{left:513.173333pt;}
.x7{left:581.013322pt;}
.xf{left:645.013322pt;}
.x1b{left:658.666667pt;}
.x3{left:704.053322pt;}
.x1c{left:738.453333pt;}
.x1d{left:829.893333pt;}
.x16{left:996.773317pt;}
}




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