
    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_4b0c16f541fbc58002a8dc04.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_c7fa1b79ffc37d7fae9c1a3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_16cecc8fa59e575ed4c2c00e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_af2319e1118ae2067ba11cbc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_30f3087d66ae374b950a202d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_7506a44f8e00ad532daf5843.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_24b68b556c17499059bd74b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1779d6acbc6f04408a090817.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.738770;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);}
.v4{vertical-align:-82.080000px;}
.v1{vertical-align:-69.120000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls1e{letter-spacing:-4.320000px;}
.ls19{letter-spacing:-2.520000px;}
.ls1c{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.457800px;}
.ls1d{letter-spacing:-0.414600px;}
.ls3{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.262200px;}
.ls15{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.lsb{letter-spacing:138.384000px;}
.ls16{letter-spacing:558.180000px;}
.ls1f{letter-spacing:1601.556000px;}
.ls0{letter-spacing:1851.780000px;}
.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:-21.060000px;}
.ws12{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.576000px;}
.ws9{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wse{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws14{word-spacing:-16.822200px;}
.ws15{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.254600px;}
.ws10{word-spacing:-16.102200px;}
.ws16{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.580000px;}
.ws13{word-spacing:-12.420000px;}
.ws17{word-spacing:-12.240000px;}
.ws5{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.700000px;}
.ws8{word-spacing:0.000000px;}
._1f{margin-left:-10.308960px;}
._18{margin-left:-8.670720px;}
._14{margin-left:-7.277280px;}
._3{margin-left:-6.160560px;}
._20{margin-left:-5.124720px;}
._f{margin-left:-4.123440px;}
._2{margin-left:-2.748960px;}
._1{margin-left:-1.494000px;}
._0{width:1.015920px;}
._4{width:3.010560px;}
._5{width:4.336080px;}
._c{width:5.790480px;}
._13{width:7.002240px;}
._12{width:8.110320px;}
._11{width:9.143280px;}
._10{width:10.517760px;}
._1e{width:11.538000px;}
._e{width:12.549600px;}
._d{width:13.744800px;}
._19{width:14.767200px;}
._7{width:16.553520px;}
._6{width:17.868240px;}
._15{width:19.368000px;}
._8{width:20.536080px;}
._16{width:21.715680px;}
._a{width:23.067360px;}
._9{width:24.680880px;}
._1d{width:25.864080px;}
._b{width:26.874960px;}
._17{width:27.967680px;}
._1a{width:29.016000px;}
._22{width:30.504000px;}
._21{width:31.672800px;}
._3c{width:33.857280px;}
._23{width:36.040080px;}
._1c{width:37.926000px;}
._1b{width:38.952000px;}
._3e{width:40.278240px;}
._2e{width:41.533200px;}
._3f{width:42.668640px;}
._2b{width:43.684560px;}
._37{width:46.194480px;}
._43{width:48.168000px;}
._35{width:49.242240px;}
._2c{width:51.274080px;}
._28{width:53.066880px;}
._39{width:55.116000px;}
._27{width:57.113280px;}
._2f{width:58.445280px;}
._30{width:59.461200px;}
._33{width:66.214080px;}
._38{width:70.755840px;}
._2a{width:72.488880px;}
._36{width:74.341440px;}
._2d{width:80.795520px;}
._40{width:82.648080px;}
._29{width:93.942720px;}
._26{width:96.512400px;}
._42{width:102.430080px;}
._3b{width:103.862880px;}
._41{width:108.720000px;}
._3a{width:129.918240px;}
._32{width:140.196960px;}
._25{width:193.861440px;}
._34{width:203.482800px;}
._3d{width:263.302560px;}
._31{width:271.668960px;}
._24{width:326.856000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y18b{bottom:3.234000px;}
.y99{bottom:3.240000px;}
.y113{bottom:3.960000px;}
.y11c{bottom:4.860000px;}
.y120{bottom:5.040000px;}
.y149{bottom:5.580000px;}
.y14b{bottom:5.760000px;}
.y150{bottom:7.740000px;}
.y153{bottom:7.785000px;}
.ydb{bottom:11.520000px;}
.y16c{bottom:20.334000px;}
.y98{bottom:20.340000px;}
.yd9{bottom:20.514000px;}
.ya1{bottom:20.520000px;}
.ye2{bottom:20.550000px;}
.yd3{bottom:20.565000px;}
.y112{bottom:24.660000px;}
.yda{bottom:28.620000px;}
.y16e{bottom:30.240000px;}
.y97{bottom:37.620000px;}
.ye1{bottom:37.650000px;}
.yd2{bottom:37.665000px;}
.yd8{bottom:37.794000px;}
.ya0{bottom:37.800000px;}
.yac{bottom:37.830000px;}
.y18d{bottom:43.020000px;}
.y111{bottom:45.360000px;}
.ya6{bottom:54.900000px;}
.yab{bottom:54.930000px;}
.y9f{bottom:54.945000px;}
.yd7{bottom:55.074000px;}
.yae{bottom:55.080000px;}
.y3{bottom:56.340000px;}
.y110{bottom:66.060000px;}
.y1a4{bottom:67.134000px;}
.y1b7{bottom:67.170000px;}
.ya5{bottom:72.180000px;}
.yaa{bottom:72.210000px;}
.y9e{bottom:72.225000px;}
.yb7{bottom:72.354000px;}
.ybb{bottom:72.360000px;}
.y168{bottom:81.894000px;}
.y147{bottom:81.900000px;}
.ycf{bottom:86.796000px;}
.y2c{bottom:88.236000px;}
.y115{bottom:88.920000px;}
.yb6{bottom:89.454000px;}
.ya4{bottom:89.460000px;}
.ya9{bottom:89.490000px;}
.y9d{bottom:89.505000px;}
.yd6{bottom:89.634000px;}
.yba{bottom:89.640000px;}
.y202{bottom:90.396000px;}
.yb3{bottom:90.756000px;}
.y18c{bottom:91.296000px;}
.y16d{bottom:92.196000px;}
.y1e2{bottom:93.096000px;}
.y7b{bottom:93.816000px;}
.y132{bottom:95.076000px;}
.y247{bottom:95.256000px;}
.y59{bottom:97.236000px;}
.y1bc{bottom:97.740000px;}
.y14e{bottom:97.785000px;}
.y1a8{bottom:98.136000px;}
.y101{bottom:103.896000px;}
.y2b{bottom:105.336000px;}
.yb5{bottom:106.734000px;}
.ya3{bottom:106.740000px;}
.ya8{bottom:106.770000px;}
.y9c{bottom:106.785000px;}
.y1e1{bottom:107.136000px;}
.y131{bottom:112.356000px;}
.y18e{bottom:113.796000px;}
.y246{bottom:114.336000px;}
.y10e{bottom:114.516000px;}
.y16f{bottom:114.696000px;}
.y11a{bottom:114.705000px;}
.yf1{bottom:116.136000px;}
.y95{bottom:117.936000px;}
.y1a3{bottom:120.636000px;}
.y201{bottom:121.536000px;}
.y21a{bottom:122.976000px;}
.yb4{bottom:124.014000px;}
.yb9{bottom:124.020000px;}
.y9b{bottom:124.065000px;}
.y7a{bottom:124.956000px;}
.y130{bottom:126.396000px;}
.y2a{bottom:127.836000px;}
.y58{bottom:128.376000px;}
.yd5{bottom:130.176000px;}
.y245{bottom:133.236000px;}
.y100{bottom:134.856000px;}
.y167{bottom:137.196000px;}
.y29{bottom:139.896000px;}
.y1a7{bottom:141.156000px;}
.yb2{bottom:141.345000px;}
.y219{bottom:141.876000px;}
.y10d{bottom:145.656000px;}
.yf0{bottom:147.276000px;}
.y94{bottom:149.076000px;}
.y244{bottom:152.130000px;}
.y200{bottom:152.490000px;}
.y79{bottom:155.910000px;}
.yb1{bottom:158.445000px;}
.y57{bottom:159.330000px;}
.y218{bottom:160.770000px;}
.y1a6{bottom:161.490000px;}
.y28{bottom:162.390000px;}
.yff{bottom:165.990000px;}
.y243{bottom:171.210000px;}
.y16b{bottom:172.290000px;}
.y27{bottom:174.450000px;}
.y10c{bottom:176.610000px;}
.yef{bottom:178.230000px;}
.y217{bottom:179.850000px;}
.y93{bottom:180.030000px;}
.y1a5{bottom:182.010000px;}
.y1ff{bottom:183.630000px;}
.y18a{bottom:184.350000px;}
.y78{bottom:187.050000px;}
.y242{bottom:190.110000px;}
.y56{bottom:190.470000px;}
.y26{bottom:191.730000px;}
.y16a{bottom:192.810000px;}
.yfe{bottom:196.950000px;}
.y216{bottom:198.750000px;}
.y1a2{bottom:202.530000px;}
.y189{bottom:204.870000px;}
.y10b{bottom:207.750000px;}
.y241{bottom:209.190000px;}
.yee{bottom:209.370000px;}
.y92{bottom:211.170000px;}
.y169{bottom:213.330000px;}
.y25{bottom:214.050000px;}
.y1fe{bottom:214.590000px;}
.y215{bottom:217.830000px;}
.y77{bottom:218.010000px;}
.y55{bottom:221.430000px;}
.y188{bottom:225.390000px;}
.yfd{bottom:228.090000px;}
.yb0{bottom:229.530000px;}
.y166{bottom:233.850000px;}
.y214{bottom:236.730000px;}
.y24{bottom:237.270000px;}
.y10a{bottom:238.710000px;}
.yed{bottom:240.330000px;}
.y91{bottom:242.130000px;}
.y1fd{bottom:245.550000px;}
.y187{bottom:245.730000px;}
.y240{bottom:246.990000px;}
.y76{bottom:249.150000px;}
.yd4{bottom:251.670000px;}
.y54{bottom:252.570000px;}
.y213{bottom:255.630000px;}
.yfc{bottom:259.050000px;}
.y23f{bottom:266.070000px;}
.y1c8{bottom:269.490000px;}
.y109{bottom:269.850000px;}
.yec{bottom:271.470000px;}
.y90{bottom:273.270000px;}
.y212{bottom:274.710000px;}
.y1fc{bottom:276.690000px;}
.y75{bottom:280.110000px;}
.y53{bottom:283.530000px;}
.y23{bottom:284.610000px;}
.y23e{bottom:284.970000px;}
.yd0{bottom:289.659000px;}
.yfb{bottom:290.010000px;}
.y211{bottom:293.610000px;}
.y8f{bottom:293.970000px;}
.y1a1{bottom:296.670000px;}
.y1c7{bottom:300.450000px;}
.y108{bottom:300.810000px;}
.yeb{bottom:302.430000px;}
.y23d{bottom:304.050000px;}
.y22{bottom:305.310000px;}
.y165{bottom:307.470000px;}
.y1fb{bottom:307.650000px;}
.y74{bottom:311.250000px;}
.y210{bottom:312.690000px;}
.y52{bottom:314.670000px;}
.y1a0{bottom:315.570000px;}
.y1e0{bottom:318.450000px;}
.y186{bottom:319.530000px;}
.yfa{bottom:321.150000px;}
.yd1{bottom:321.510000px;}
.y23c{bottom:322.950000px;}
.y1c6{bottom:331.590000px;}
.yea{bottom:333.570000px;}
.y21{bottom:333.750000px;}
.y8e{bottom:334.650000px;}
.y12f{bottom:336.675000px;}
.y164{bottom:338.655000px;}
.y1fa{bottom:338.835000px;}
.y107{bottom:342.075000px;}
.y73{bottom:342.255000px;}
.y51{bottom:345.675000px;}
.y1df{bottom:349.455000px;}
.y185{bottom:350.535000px;}
.y20{bottom:351.075000px;}
.y8d{bottom:351.975000px;}
.yf9{bottom:352.155000px;}
.y19f{bottom:353.595000px;}
.y106{bottom:360.975000px;}
.y1c5{bottom:362.595000px;}
.ye9{bottom:364.575000px;}
.y50{bottom:365.655000px;}
.y12e{bottom:367.815000px;}
.y1f{bottom:368.355000px;}
.y8c{bottom:369.075000px;}
.y163{bottom:369.615000px;}
.y1f9{bottom:369.795000px;}
.y72{bottom:373.395000px;}
.y105{bottom:379.875000px;}
.y1de{bottom:380.595000px;}
.y184{bottom:381.675000px;}
.y4f{bottom:382.935000px;}
.y19e{bottom:383.115000px;}
.yf8{bottom:383.295000px;}
.y1e{bottom:385.635000px;}
.y8b{bottom:386.355000px;}
.y20f{bottom:388.515000px;}
.yce{bottom:391.215000px;}
.y1c4{bottom:393.735000px;}
.ye8{bottom:395.715000px;}
.y12d{bottom:398.775000px;}
.y104{bottom:398.955000px;}
.y4e{bottom:400.215000px;}
.y1dd{bottom:400.575000px;}
.y162{bottom:400.755000px;}
.y1f8{bottom:400.935000px;}
.yaf{bottom:402.735000px;}
.y1d{bottom:402.915000px;}
.y8a{bottom:403.635000px;}
.y71{bottom:404.355000px;}
.y20e{bottom:407.595000px;}
.y183{bottom:412.635000px;}
.yf7{bottom:414.255000px;}
.y4d{bottom:417.495000px;}
.y103{bottom:417.855000px;}
.y1c{bottom:420.195000px;}
.y89{bottom:420.915000px;}
.y1c3{bottom:424.695000px;}
.y20d{bottom:426.495000px;}
.ye7{bottom:426.675000px;}
.y12c{bottom:429.915000px;}
.y161{bottom:431.715000px;}
.y1f7{bottom:431.895000px;}
.y1d8{bottom:432.615000px;}
.y4c{bottom:434.775000px;}
.y70{bottom:435.495000px;}
.y102{bottom:436.935000px;}
.y1b{bottom:437.295000px;}
.y182{bottom:443.775000px;}
.y1c2{bottom:444.675000px;}
.y19d{bottom:445.215000px;}
.yf6{bottom:445.395000px;}
.y88{bottom:449.175000px;}
.y4b{bottom:451.875000px;}
.y1a{bottom:454.575000px;}
.y1dc{bottom:455.115000px;}
.yad{bottom:455.295000px;}
.y23b{bottom:455.835000px;}
.ye6{bottom:457.815000px;}
.y12b{bottom:460.875000px;}
.y1c1{bottom:461.955000px;}
.y160{bottom:462.855000px;}
.y1f6{bottom:463.035000px;}
.y20c{bottom:464.475000px;}
.y6f{bottom:466.455000px;}
.y4a{bottom:469.155000px;}
.y19{bottom:471.855000px;}
.yde{bottom:472.035000px;}
.y181{bottom:474.735000px;}
.ycd{bottom:475.275000px;}
.yf5{bottom:476.355000px;}
.y1bb{bottom:476.715000px;}
.y1db{bottom:477.615000px;}
.ye5{bottom:477.795000px;}
.y87{bottom:480.315000px;}
.y20b{bottom:483.375000px;}
.y49{bottom:486.435000px;}
.y18{bottom:489.135000px;}
.y12a{bottom:492.015000px;}
.y15f{bottom:493.815000px;}
.y1f5{bottom:493.995000px;}
.ye4{bottom:495.075000px;}
.y6e{bottom:497.595000px;}
.y1c0{bottom:499.215000px;}
.y1da{bottom:500.115000px;}
.y20a{bottom:502.455000px;}
.y48{bottom:503.715000px;}
.y180{bottom:505.875000px;}
.y17{bottom:506.415000px;}
.y19c{bottom:507.315000px;}
.yf4{bottom:507.495000px;}
.y86{bottom:511.275000px;}
.ye3{bottom:512.175000px;}
.y23a{bottom:512.715000px;}
.y144{bottom:517.935000px;}
.y47{bottom:520.995000px;}
.y209{bottom:521.355000px;}
.y1bf{bottom:521.715000px;}
.y1d9{bottom:522.615000px;}
.y129{bottom:522.975000px;}
.y16{bottom:523.695000px;}
.y15e{bottom:524.955000px;}
.y1f4{bottom:525.135000px;}
.ydd{bottom:526.935000px;}
.yf3{bottom:527.475000px;}
.y6d{bottom:528.555000px;}
.y239{bottom:531.795000px;}
.y143{bottom:536.835000px;}
.ycc{bottom:537.375000px;}
.y19b{bottom:538.455000px;}
.y208{bottom:540.435000px;}
.y15{bottom:540.795000px;}
.y85{bottom:542.415000px;}
.y1be{bottom:544.215000px;}
.yf2{bottom:544.755000px;}
.y1d4{bottom:545.115000px;}
.y46{bottom:549.255000px;}
.y238{bottom:550.695000px;}
.y128{bottom:554.115000px;}
.y142{bottom:555.915000px;}
.y1f3{bottom:556.095000px;}
.y14{bottom:558.075000px;}
.y207{bottom:559.335000px;}
.y6c{bottom:559.695000px;}
.y84{bottom:563.115000px;}
.y1d7{bottom:565.455000px;}
.y1bd{bottom:566.715000px;}
.y17f{bottom:567.975000px;}
.ycb{bottom:568.515000px;}
.y19a{bottom:569.415000px;}
.y237{bottom:569.595000px;}
.y141{bottom:574.815000px;}
.ya7{bottom:576.795000px;}
.y206{bottom:578.235000px;}
.y45{bottom:580.395000px;}
.y83{bottom:583.455000px;}
.y127{bottom:585.075000px;}
.y1d6{bottom:585.975000px;}
.y15d{bottom:587.055000px;}
.y1f2{bottom:587.235000px;}
.y17e{bottom:587.955000px;}
.y236{bottom:588.675000px;}
.y1b6{bottom:589.215000px;}
.y6b{bottom:590.655000px;}
.y140{bottom:593.895000px;}
.y13{bottom:596.775000px;}
.y205{bottom:597.315000px;}
.yca{bottom:599.475000px;}
.y199{bottom:600.555000px;}
.y82{bottom:602.355000px;}
.y17d{bottom:605.085000px;}
.y1d5{bottom:606.525000px;}
.y235{bottom:607.605000px;}
.y1ba{bottom:609.765000px;}
.y44{bottom:611.385000px;}
.y13f{bottom:612.825000px;}
.y126{bottom:616.245000px;}
.y15c{bottom:618.045000px;}
.y1f1{bottom:618.225000px;}
.y17c{bottom:619.125000px;}
.y198{bottom:620.565000px;}
.y81{bottom:621.465000px;}
.y6a{bottom:621.645000px;}
.y234{bottom:626.685000px;}
.y1d3{bottom:627.045000px;}
.y12{bottom:627.765000px;}
.y1b9{bottom:630.285000px;}
.yc9{bottom:630.645000px;}
.y13e{bottom:631.725000px;}
.y204{bottom:635.325000px;}
.y197{bottom:637.845000px;}
.y80{bottom:640.365000px;}
.y43{bottom:642.345000px;}
.y233{bottom:645.585000px;}
.y125{bottom:647.205000px;}
.y15b{bottom:649.005000px;}
.y1f0{bottom:649.365000px;}
.y1b8{bottom:650.625000px;}
.y13d{bottom:650.805000px;}
.y196{bottom:651.885000px;}
.y69{bottom:652.785000px;}
.y203{bottom:654.225000px;}
.y11{bottom:657.285000px;}
.y7f{bottom:659.445000px;}
.yc8{bottom:661.605000px;}
.y232{bottom:664.485000px;}
.y13c{bottom:669.705000px;}
.y1b5{bottom:671.145000px;}
.y42{bottom:673.485000px;}
.y7e{bottom:678.345000px;}
.y15a{bottom:680.145000px;}
.y1ef{bottom:680.325000px;}
.y231{bottom:683.565000px;}
.y68{bottom:683.745000px;}
.y13b{bottom:688.785000px;}
.y10{bottom:689.685000px;}
.yc7{bottom:692.745000px;}
.y7d{bottom:697.425000px;}
.ya2{bottom:698.325000px;}
.y1d2{bottom:700.665000px;}
.y230{bottom:702.465000px;}
.y41{bottom:704.445000px;}
.y13a{bottom:707.685000px;}
.y124{bottom:709.305000px;}
.y159{bottom:711.105000px;}
.y1ee{bottom:711.465000px;}
.y67{bottom:714.885000px;}
.y7c{bottom:716.325000px;}
.yf{bottom:719.025000px;}
.y22f{bottom:721.545000px;}
.yc6{bottom:723.705000px;}
.y139{bottom:726.585000px;}
.y1d1{bottom:731.805000px;}
.y40{bottom:735.585000px;}
.y123{bottom:740.445000px;}
.y158{bottom:742.245000px;}
.y1ed{bottom:742.425000px;}
.y1b4{bottom:744.945000px;}
.y138{bottom:745.665000px;}
.y66{bottom:745.845000px;}
.ye{bottom:751.425000px;}
.yc5{bottom:754.845000px;}
.y22e{bottom:759.525000px;}
.y122{bottom:760.425000px;}
.y1d0{bottom:762.765000px;}
.y137{bottom:764.565000px;}
.y3f{bottom:766.545000px;}
.y157{bottom:773.205000px;}
.y1ec{bottom:773.565000px;}
.y1b3{bottom:775.905000px;}
.y65{bottom:776.985000px;}
.y121{bottom:777.525000px;}
.y22d{bottom:778.425000px;}
.yd{bottom:780.945000px;}
.y136{bottom:783.645000px;}
.yc4{bottom:785.805000px;}
.ye0{bottom:787.965000px;}
.y119{bottom:792.285000px;}
.y156{bottom:793.185000px;}
.y1cf{bottom:793.905000px;}
.y22c{bottom:797.325000px;}
.y3e{bottom:797.685000px;}
.y135{bottom:802.545000px;}
.y1eb{bottom:804.525000px;}
.y1b2{bottom:807.045000px;}
.y64{bottom:807.945000px;}
.y155{bottom:810.465000px;}
.yc{bottom:813.165000px;}
.y11f{bottom:814.785000px;}
.y22b{bottom:816.405000px;}
.yc3{bottom:816.945000px;}
.y9a{bottom:819.825000px;}
.y134{bottom:821.445000px;}
.y1ce{bottom:824.865000px;}
.y14d{bottom:825.225000px;}
.y3d{bottom:828.645000px;}
.y17b{bottom:829.545000px;}
.y22a{bottom:835.305000px;}
.y1ea{bottom:835.665000px;}
.y11e{bottom:837.285000px;}
.y1b1{bottom:838.005000px;}
.y63{bottom:839.085000px;}
.y133{bottom:840.525000px;}
.yb{bottom:846.465000px;}
.y154{bottom:847.725000px;}
.yc2{bottom:847.905000px;}
.y229{bottom:854.385000px;}
.y1cd{bottom:856.005000px;}
.y195{bottom:857.085000px;}
.y3c{bottom:859.785000px;}
.y17a{bottom:860.505000px;}
.y1e9{bottom:866.625000px;}
.y249{bottom:868.425000px;}
.y1b0{bottom:868.965000px;}
.y62{bottom:870.045000px;}
.y152{bottom:870.225000px;}
.y228{bottom:873.330000px;}
.yc1{bottom:879.090000px;}
.y11d{bottom:879.630000px;}
.y3b{bottom:879.810000px;}
.ya{bottom:882.870000px;}
.y1cc{bottom:887.010000px;}
.y194{bottom:888.090000px;}
.y179{bottom:891.510000px;}
.y227{bottom:892.230000px;}
.y151{bottom:892.770000px;}
.y3a{bottom:897.090000px;}
.y1e8{bottom:897.810000px;}
.y1af{bottom:900.150000px;}
.y61{bottom:901.230000px;}
.y11b{bottom:902.130000px;}
.y1cb{bottom:906.990000px;}
.y248{bottom:909.870000px;}
.yc0{bottom:910.050000px;}
.y226{bottom:911.310000px;}
.y39{bottom:914.370000px;}
.y14f{bottom:915.270000px;}
.y9{bottom:919.050000px;}
.y193{bottom:919.230000px;}
.y178{bottom:922.650000px;}
.y1ca{bottom:924.270000px;}
.y114{bottom:924.630000px;}
.ydf{bottom:926.790000px;}
.y1e7{bottom:928.770000px;}
.ybf{bottom:930.030000px;}
.y225{bottom:930.210000px;}
.y1ae{bottom:931.110000px;}
.y38{bottom:931.470000px;}
.y60{bottom:932.190000px;}
.y146{bottom:937.770000px;}
.y1c9{bottom:938.310000px;}
.ybe{bottom:947.310000px;}
.y37{bottom:948.750000px;}
.y224{bottom:949.290000px;}
.y192{bottom:950.190000px;}
.y177{bottom:953.610000px;}
.y8{bottom:955.230000px;}
.y96{bottom:958.650000px;}
.y1e6{bottom:959.910000px;}
.y1ad{bottom:962.250000px;}
.y5f{bottom:963.330000px;}
.ybd{bottom:964.590000px;}
.y36{bottom:966.030000px;}
.y118{bottom:966.750000px;}
.y223{bottom:968.190000px;}
.y14c{bottom:973.050000px;}
.y191{bottom:981.330000px;}
.ybc{bottom:981.690000px;}
.y35{bottom:983.310000px;}
.y176{bottom:984.750000px;}
.y222{bottom:987.090000px;}
.y117{bottom:988.170000px;}
.y1e5{bottom:990.870000px;}
.y7{bottom:991.410000px;}
.y1ac{bottom:993.210000px;}
.y14a{bottom:993.570000px;}
.y5e{bottom:994.290000px;}
.yb8{bottom:996.450000px;}
.y34{bottom:1000.590000px;}
.y221{bottom:1006.170000px;}
.y116{bottom:1009.590000px;}
.y190{bottom:1012.290000px;}
.y1ab{bottom:1013.190000px;}
.ydc{bottom:1013.730000px;}
.y148{bottom:1014.090000px;}
.y175{bottom:1015.710000px;}
.y33{bottom:1017.690000px;}
.y1e4{bottom:1022.010000px;}
.y220{bottom:1025.070000px;}
.y5d{bottom:1025.430000px;}
.y6{bottom:1030.110000px;}
.y1aa{bottom:1030.470000px;}
.y10f{bottom:1031.010000px;}
.y18f{bottom:1032.990000px;}
.y145{bottom:1034.430000px;}
.y32{bottom:1034.970000px;}
.y174{bottom:1035.690000px;}
.y21f{bottom:1044.150000px;}
.y1a9{bottom:1045.230000px;}
.y31{bottom:1052.250000px;}
.y173{bottom:1052.970000px;}
.y5c{bottom:1056.390000px;}
.y21e{bottom:1063.050000px;}
.y172{bottom:1067.730000px;}
.y30{bottom:1069.530000px;}
.y5{bottom:1071.510000px;}
.y21d{bottom:1081.950000px;}
.y1e3{bottom:1084.110000px;}
.y2f{bottom:1086.810000px;}
.y5b{bottom:1087.530000px;}
.y171{bottom:1090.230000px;}
.y21c{bottom:1101.030000px;}
.y2e{bottom:1104.090000px;}
.y170{bottom:1112.730000px;}
.y4{bottom:1112.910000px;}
.y5a{bottom:1118.490000px;}
.y21b{bottom:1119.930000px;}
.y2d{bottom:1121.190000px;}
.y2{bottom:1161.180000px;}
.y1{bottom:1195.740000px;}
.h2e{height:19.620000px;}
.h2f{height:19.800000px;}
.h39{height:19.836000px;}
.h27{height:20.700000px;}
.h2a{height:21.600000px;}
.h2c{height:21.780000px;}
.h32{height:21.816000px;}
.h34{height:34.380000px;}
.h30{height:34.560000px;}
.hc{height:35.332031px;}
.hd{height:38.158594px;}
.h28{height:41.220000px;}
.h2b{height:41.436000px;}
.h1f{height:42.660000px;}
.h35{height:44.100000px;}
.h13{height:51.660000px;}
.h18{height:51.840000px;}
.he{height:53.573906px;}
.h10{height:54.596250px;}
.h36{height:57.060000px;}
.h3{height:58.621992px;}
.h2{height:58.651172px;}
.h9{height:59.383125px;}
.hb{height:60.226875px;}
.hf{height:64.546875px;}
.h11{height:64.978594px;}
.h1c{height:65.010937px;}
.h14{height:66.757500px;}
.h33{height:68.940000px;}
.h1e{height:68.976000px;}
.h1b{height:69.120000px;}
.h8{height:70.664062px;}
.ha{height:72.562500px;}
.h12{height:74.004654px;}
.h7{height:74.820586px;}
.h3b{height:81.036000px;}
.h37{height:81.180000px;}
.h38{height:81.216000px;}
.h25{height:82.800000px;}
.h6{height:84.898125px;}
.h4{height:85.052461px;}
.h21{height:86.220000px;}
.h24{height:86.256000px;}
.h2d{height:95.940000px;}
.h5{height:96.508125px;}
.h23{height:103.500000px;}
.h26{height:105.660000px;}
.h3c{height:111.600000px;}
.h3a{height:111.780000px;}
.h31{height:111.816000px;}
.h16{height:120.780000px;}
.h17{height:120.816000px;}
.h29{height:131.436000px;}
.h15{height:137.916000px;}
.h1a{height:138.060000px;}
.h22{height:138.096000px;}
.h19{height:172.470000px;}
.h1d{height:303.690000px;}
.h20{height:486.075000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:22.680000px;}
.w1f{width:39.420000px;}
.w1a{width:39.960000px;}
.w28{width:40.140000px;}
.w14{width:40.500000px;}
.w2d{width:43.920000px;}
.w9{width:48.780000px;}
.w7{width:53.856000px;}
.w8{width:59.220000px;}
.w6{width:94.860000px;}
.w1e{width:95.400000px;}
.w11{width:95.580000px;}
.w25{width:95.760000px;}
.w19{width:99.180000px;}
.w17{width:101.196000px;}
.w3{width:105.660000px;}
.w13{width:105.840000px;}
.w22{width:106.020000px;}
.w21{width:106.236000px;}
.w12{width:106.416000px;}
.w2c{width:112.320000px;}
.w18{width:115.776000px;}
.w2a{width:116.496000px;}
.w1d{width:116.856000px;}
.w2b{width:119.736000px;}
.w5{width:143.136000px;}
.wc{width:161.460000px;}
.wd{width:164.010000px;}
.wb{width:170.850000px;}
.wf{width:173.730000px;}
.w4{width:185.610000px;}
.wa{width:197.130000px;}
.w26{width:256.350000px;}
.w23{width:256.710000px;}
.w20{width:257.790000px;}
.w1b{width:258.690000px;}
.w2e{width:261.570000px;}
.w15{width:267.555000px;}
.w24{width:296.850000px;}
.w1c{width:297.210000px;}
.w16{width:298.650000px;}
.w29{width:305.490000px;}
.w27{width:307.695000px;}
.w10{width:308.055000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:7.740000px;}
.x20{left:62.814000px;}
.x16{left:119.916000px;}
.x3{left:127.655987px;}
.x8{left:128.915987px;}
.x21{left:131.574000px;}
.x4{left:137.915987px;}
.x1e{left:140.795987px;}
.x5{left:142.595987px;}
.x32{left:154.125000px;}
.x9{left:155.729987px;}
.x27{left:159.870000px;}
.x3b{left:164.385000px;}
.x14{left:180.749987px;}
.x3f{left:184.710000px;}
.x25{left:191.549987px;}
.x35{left:199.290000px;}
.x2b{left:200.370000px;}
.x18{left:226.470000px;}
.x1{left:240.149987px;}
.x31{left:242.865000px;}
.x28{left:244.305000px;}
.x3a{left:253.665000px;}
.x15{left:297.794987px;}
.x22{left:317.775000px;}
.x37{left:320.654987px;}
.x26{left:323.534987px;}
.x24{left:342.074987px;}
.x30{left:347.294987px;}
.x36{left:363.134987px;}
.x3d{left:374.474987px;}
.x6{left:376.094987px;}
.x2d{left:381.674987px;}
.x1f{left:387.434987px;}
.x39{left:388.694987px;}
.x13{left:407.594987px;}
.x19{left:412.815000px;}
.xa{left:424.154987px;}
.x11{left:432.434987px;}
.x12{left:434.414987px;}
.x3e{left:446.295000px;}
.x33{left:457.095000px;}
.x2e{left:459.075000px;}
.x7{left:467.924987px;}
.x2{left:487.544987px;}
.x23{left:489.345000px;}
.x40{left:520.304987px;}
.x1a{left:556.845000px;}
.x2f{left:560.265000px;}
.x29{left:563.505000px;}
.x38{left:572.684987px;}
.x2c{left:575.024987px;}
.xf{left:596.444987px;}
.xc{left:599.504987px;}
.xd{left:634.604987px;}
.x1b{left:652.425000px;}
.x2a{left:669.930000px;}
.xb{left:676.049987px;}
.x34{left:680.370000px;}
.xe{left:681.629987px;}
.x3c{left:683.249987px;}
.x1c{left:707.010000px;}
.x1d{left:766.950000px;}
.x10{left:808.169987px;}
@media print{
.v4{vertical-align:-72.960000pt;}
.v1{vertical-align:-61.440000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls1e{letter-spacing:-3.840000pt;}
.ls19{letter-spacing:-2.240000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.406933pt;}
.ls1d{letter-spacing:-0.368533pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.233067pt;}
.ls15{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.lsb{letter-spacing:123.008000pt;}
.ls16{letter-spacing:496.160000pt;}
.ls1f{letter-spacing:1423.605333pt;}
.ls0{letter-spacing:1646.026667pt;}
.ws3{word-spacing:-18.720000pt;}
.ws12{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.512000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws14{word-spacing:-14.953067pt;}
.ws15{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.313067pt;}
.ws16{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws17{word-spacing:-10.880000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.400000pt;}
.ws8{word-spacing:0.000000pt;}
._1f{margin-left:-9.163520pt;}
._18{margin-left:-7.707307pt;}
._14{margin-left:-6.468693pt;}
._3{margin-left:-5.476053pt;}
._20{margin-left:-4.555307pt;}
._f{margin-left:-3.665280pt;}
._2{margin-left:-2.443520pt;}
._1{margin-left:-1.328000pt;}
._0{width:0.903040pt;}
._4{width:2.676053pt;}
._5{width:3.854293pt;}
._c{width:5.147093pt;}
._13{width:6.224213pt;}
._12{width:7.209173pt;}
._11{width:8.127360pt;}
._10{width:9.349120pt;}
._1e{width:10.256000pt;}
._e{width:11.155200pt;}
._d{width:12.217600pt;}
._19{width:13.126400pt;}
._7{width:14.714240pt;}
._6{width:15.882880pt;}
._15{width:17.216000pt;}
._8{width:18.254293pt;}
._16{width:19.302827pt;}
._a{width:20.504320pt;}
._9{width:21.938560pt;}
._1d{width:22.990293pt;}
._b{width:23.888853pt;}
._17{width:24.860160pt;}
._1a{width:25.792000pt;}
._22{width:27.114667pt;}
._21{width:28.153600pt;}
._3c{width:30.095360pt;}
._23{width:32.035627pt;}
._1c{width:33.712000pt;}
._1b{width:34.624000pt;}
._3e{width:35.802880pt;}
._2e{width:36.918400pt;}
._3f{width:37.927680pt;}
._2b{width:38.830720pt;}
._37{width:41.061760pt;}
._43{width:42.816000pt;}
._35{width:43.770880pt;}
._2c{width:45.576960pt;}
._28{width:47.170560pt;}
._39{width:48.992000pt;}
._27{width:50.767360pt;}
._2f{width:51.951360pt;}
._30{width:52.854400pt;}
._33{width:58.856960pt;}
._38{width:62.894080pt;}
._2a{width:64.434560pt;}
._36{width:66.081280pt;}
._2d{width:71.818240pt;}
._40{width:73.464960pt;}
._29{width:83.504640pt;}
._26{width:85.788800pt;}
._42{width:91.048960pt;}
._3b{width:92.322560pt;}
._41{width:96.640000pt;}
._3a{width:115.482880pt;}
._32{width:124.619520pt;}
._25{width:172.321280pt;}
._34{width:180.873600pt;}
._3d{width:234.046720pt;}
._31{width:241.483520pt;}
._24{width:290.538667pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y18b{bottom:2.874667pt;}
.y99{bottom:2.880000pt;}
.y113{bottom:3.520000pt;}
.y11c{bottom:4.320000pt;}
.y120{bottom:4.480000pt;}
.y149{bottom:4.960000pt;}
.y14b{bottom:5.120000pt;}
.y150{bottom:6.880000pt;}
.y153{bottom:6.920000pt;}
.ydb{bottom:10.240000pt;}
.y16c{bottom:18.074667pt;}
.y98{bottom:18.080000pt;}
.yd9{bottom:18.234667pt;}
.ya1{bottom:18.240000pt;}
.ye2{bottom:18.266667pt;}
.yd3{bottom:18.280000pt;}
.y112{bottom:21.920000pt;}
.yda{bottom:25.440000pt;}
.y16e{bottom:26.880000pt;}
.y97{bottom:33.440000pt;}
.ye1{bottom:33.466667pt;}
.yd2{bottom:33.480000pt;}
.yd8{bottom:33.594667pt;}
.ya0{bottom:33.600000pt;}
.yac{bottom:33.626667pt;}
.y18d{bottom:38.240000pt;}
.y111{bottom:40.320000pt;}
.ya6{bottom:48.800000pt;}
.yab{bottom:48.826667pt;}
.y9f{bottom:48.840000pt;}
.yd7{bottom:48.954667pt;}
.yae{bottom:48.960000pt;}
.y3{bottom:50.080000pt;}
.y110{bottom:58.720000pt;}
.y1a4{bottom:59.674667pt;}
.y1b7{bottom:59.706667pt;}
.ya5{bottom:64.160000pt;}
.yaa{bottom:64.186667pt;}
.y9e{bottom:64.200000pt;}
.yb7{bottom:64.314667pt;}
.ybb{bottom:64.320000pt;}
.y168{bottom:72.794667pt;}
.y147{bottom:72.800000pt;}
.ycf{bottom:77.152000pt;}
.y2c{bottom:78.432000pt;}
.y115{bottom:79.040000pt;}
.yb6{bottom:79.514667pt;}
.ya4{bottom:79.520000pt;}
.ya9{bottom:79.546667pt;}
.y9d{bottom:79.560000pt;}
.yd6{bottom:79.674667pt;}
.yba{bottom:79.680000pt;}
.y202{bottom:80.352000pt;}
.yb3{bottom:80.672000pt;}
.y18c{bottom:81.152000pt;}
.y16d{bottom:81.952000pt;}
.y1e2{bottom:82.752000pt;}
.y7b{bottom:83.392000pt;}
.y132{bottom:84.512000pt;}
.y247{bottom:84.672000pt;}
.y59{bottom:86.432000pt;}
.y1bc{bottom:86.880000pt;}
.y14e{bottom:86.920000pt;}
.y1a8{bottom:87.232000pt;}
.y101{bottom:92.352000pt;}
.y2b{bottom:93.632000pt;}
.yb5{bottom:94.874667pt;}
.ya3{bottom:94.880000pt;}
.ya8{bottom:94.906667pt;}
.y9c{bottom:94.920000pt;}
.y1e1{bottom:95.232000pt;}
.y131{bottom:99.872000pt;}
.y18e{bottom:101.152000pt;}
.y246{bottom:101.632000pt;}
.y10e{bottom:101.792000pt;}
.y16f{bottom:101.952000pt;}
.y11a{bottom:101.960000pt;}
.yf1{bottom:103.232000pt;}
.y95{bottom:104.832000pt;}
.y1a3{bottom:107.232000pt;}
.y201{bottom:108.032000pt;}
.y21a{bottom:109.312000pt;}
.yb4{bottom:110.234667pt;}
.yb9{bottom:110.240000pt;}
.y9b{bottom:110.280000pt;}
.y7a{bottom:111.072000pt;}
.y130{bottom:112.352000pt;}
.y2a{bottom:113.632000pt;}
.y58{bottom:114.112000pt;}
.yd5{bottom:115.712000pt;}
.y245{bottom:118.432000pt;}
.y100{bottom:119.872000pt;}
.y167{bottom:121.952000pt;}
.y29{bottom:124.352000pt;}
.y1a7{bottom:125.472000pt;}
.yb2{bottom:125.640000pt;}
.y219{bottom:126.112000pt;}
.y10d{bottom:129.472000pt;}
.yf0{bottom:130.912000pt;}
.y94{bottom:132.512000pt;}
.y244{bottom:135.226667pt;}
.y200{bottom:135.546667pt;}
.y79{bottom:138.586667pt;}
.yb1{bottom:140.840000pt;}
.y57{bottom:141.626667pt;}
.y218{bottom:142.906667pt;}
.y1a6{bottom:143.546667pt;}
.y28{bottom:144.346667pt;}
.yff{bottom:147.546667pt;}
.y243{bottom:152.186667pt;}
.y16b{bottom:153.146667pt;}
.y27{bottom:155.066667pt;}
.y10c{bottom:156.986667pt;}
.yef{bottom:158.426667pt;}
.y217{bottom:159.866667pt;}
.y93{bottom:160.026667pt;}
.y1a5{bottom:161.786667pt;}
.y1ff{bottom:163.226667pt;}
.y18a{bottom:163.866667pt;}
.y78{bottom:166.266667pt;}
.y242{bottom:168.986667pt;}
.y56{bottom:169.306667pt;}
.y26{bottom:170.426667pt;}
.y16a{bottom:171.386667pt;}
.yfe{bottom:175.066667pt;}
.y216{bottom:176.666667pt;}
.y1a2{bottom:180.026667pt;}
.y189{bottom:182.106667pt;}
.y10b{bottom:184.666667pt;}
.y241{bottom:185.946667pt;}
.yee{bottom:186.106667pt;}
.y92{bottom:187.706667pt;}
.y169{bottom:189.626667pt;}
.y25{bottom:190.266667pt;}
.y1fe{bottom:190.746667pt;}
.y215{bottom:193.626667pt;}
.y77{bottom:193.786667pt;}
.y55{bottom:196.826667pt;}
.y188{bottom:200.346667pt;}
.yfd{bottom:202.746667pt;}
.yb0{bottom:204.026667pt;}
.y166{bottom:207.866667pt;}
.y214{bottom:210.426667pt;}
.y24{bottom:210.906667pt;}
.y10a{bottom:212.186667pt;}
.yed{bottom:213.626667pt;}
.y91{bottom:215.226667pt;}
.y1fd{bottom:218.266667pt;}
.y187{bottom:218.426667pt;}
.y240{bottom:219.546667pt;}
.y76{bottom:221.466667pt;}
.yd4{bottom:223.706667pt;}
.y54{bottom:224.506667pt;}
.y213{bottom:227.226667pt;}
.yfc{bottom:230.266667pt;}
.y23f{bottom:236.506667pt;}
.y1c8{bottom:239.546667pt;}
.y109{bottom:239.866667pt;}
.yec{bottom:241.306667pt;}
.y90{bottom:242.906667pt;}
.y212{bottom:244.186667pt;}
.y1fc{bottom:245.946667pt;}
.y75{bottom:248.986667pt;}
.y53{bottom:252.026667pt;}
.y23{bottom:252.986667pt;}
.y23e{bottom:253.306667pt;}
.yd0{bottom:257.474667pt;}
.yfb{bottom:257.786667pt;}
.y211{bottom:260.986667pt;}
.y8f{bottom:261.306667pt;}
.y1a1{bottom:263.706667pt;}
.y1c7{bottom:267.066667pt;}
.y108{bottom:267.386667pt;}
.yeb{bottom:268.826667pt;}
.y23d{bottom:270.266667pt;}
.y22{bottom:271.386667pt;}
.y165{bottom:273.306667pt;}
.y1fb{bottom:273.466667pt;}
.y74{bottom:276.666667pt;}
.y210{bottom:277.946667pt;}
.y52{bottom:279.706667pt;}
.y1a0{bottom:280.506667pt;}
.y1e0{bottom:283.066667pt;}
.y186{bottom:284.026667pt;}
.yfa{bottom:285.466667pt;}
.yd1{bottom:285.786667pt;}
.y23c{bottom:287.066667pt;}
.y1c6{bottom:294.746667pt;}
.yea{bottom:296.506667pt;}
.y21{bottom:296.666667pt;}
.y8e{bottom:297.466667pt;}
.y12f{bottom:299.266667pt;}
.y164{bottom:301.026667pt;}
.y1fa{bottom:301.186667pt;}
.y107{bottom:304.066667pt;}
.y73{bottom:304.226667pt;}
.y51{bottom:307.266667pt;}
.y1df{bottom:310.626667pt;}
.y185{bottom:311.586667pt;}
.y20{bottom:312.066667pt;}
.y8d{bottom:312.866667pt;}
.yf9{bottom:313.026667pt;}
.y19f{bottom:314.306667pt;}
.y106{bottom:320.866667pt;}
.y1c5{bottom:322.306667pt;}
.ye9{bottom:324.066667pt;}
.y50{bottom:325.026667pt;}
.y12e{bottom:326.946667pt;}
.y1f{bottom:327.426667pt;}
.y8c{bottom:328.066667pt;}
.y163{bottom:328.546667pt;}
.y1f9{bottom:328.706667pt;}
.y72{bottom:331.906667pt;}
.y105{bottom:337.666667pt;}
.y1de{bottom:338.306667pt;}
.y184{bottom:339.266667pt;}
.y4f{bottom:340.386667pt;}
.y19e{bottom:340.546667pt;}
.yf8{bottom:340.706667pt;}
.y1e{bottom:342.786667pt;}
.y8b{bottom:343.426667pt;}
.y20f{bottom:345.346667pt;}
.yce{bottom:347.746667pt;}
.y1c4{bottom:349.986667pt;}
.ye8{bottom:351.746667pt;}
.y12d{bottom:354.466667pt;}
.y104{bottom:354.626667pt;}
.y4e{bottom:355.746667pt;}
.y1dd{bottom:356.066667pt;}
.y162{bottom:356.226667pt;}
.y1f8{bottom:356.386667pt;}
.yaf{bottom:357.986667pt;}
.y1d{bottom:358.146667pt;}
.y8a{bottom:358.786667pt;}
.y71{bottom:359.426667pt;}
.y20e{bottom:362.306667pt;}
.y183{bottom:366.786667pt;}
.yf7{bottom:368.226667pt;}
.y4d{bottom:371.106667pt;}
.y103{bottom:371.426667pt;}
.y1c{bottom:373.506667pt;}
.y89{bottom:374.146667pt;}
.y1c3{bottom:377.506667pt;}
.y20d{bottom:379.106667pt;}
.ye7{bottom:379.266667pt;}
.y12c{bottom:382.146667pt;}
.y161{bottom:383.746667pt;}
.y1f7{bottom:383.906667pt;}
.y1d8{bottom:384.546667pt;}
.y4c{bottom:386.466667pt;}
.y70{bottom:387.106667pt;}
.y102{bottom:388.386667pt;}
.y1b{bottom:388.706667pt;}
.y182{bottom:394.466667pt;}
.y1c2{bottom:395.266667pt;}
.y19d{bottom:395.746667pt;}
.yf6{bottom:395.906667pt;}
.y88{bottom:399.266667pt;}
.y4b{bottom:401.666667pt;}
.y1a{bottom:404.066667pt;}
.y1dc{bottom:404.546667pt;}
.yad{bottom:404.706667pt;}
.y23b{bottom:405.186667pt;}
.ye6{bottom:406.946667pt;}
.y12b{bottom:409.666667pt;}
.y1c1{bottom:410.626667pt;}
.y160{bottom:411.426667pt;}
.y1f6{bottom:411.586667pt;}
.y20c{bottom:412.866667pt;}
.y6f{bottom:414.626667pt;}
.y4a{bottom:417.026667pt;}
.y19{bottom:419.426667pt;}
.yde{bottom:419.586667pt;}
.y181{bottom:421.986667pt;}
.ycd{bottom:422.466667pt;}
.yf5{bottom:423.426667pt;}
.y1bb{bottom:423.746667pt;}
.y1db{bottom:424.546667pt;}
.ye5{bottom:424.706667pt;}
.y87{bottom:426.946667pt;}
.y20b{bottom:429.666667pt;}
.y49{bottom:432.386667pt;}
.y18{bottom:434.786667pt;}
.y12a{bottom:437.346667pt;}
.y15f{bottom:438.946667pt;}
.y1f5{bottom:439.106667pt;}
.ye4{bottom:440.066667pt;}
.y6e{bottom:442.306667pt;}
.y1c0{bottom:443.746667pt;}
.y1da{bottom:444.546667pt;}
.y20a{bottom:446.626667pt;}
.y48{bottom:447.746667pt;}
.y180{bottom:449.666667pt;}
.y17{bottom:450.146667pt;}
.y19c{bottom:450.946667pt;}
.yf4{bottom:451.106667pt;}
.y86{bottom:454.466667pt;}
.ye3{bottom:455.266667pt;}
.y23a{bottom:455.746667pt;}
.y144{bottom:460.386667pt;}
.y47{bottom:463.106667pt;}
.y209{bottom:463.426667pt;}
.y1bf{bottom:463.746667pt;}
.y1d9{bottom:464.546667pt;}
.y129{bottom:464.866667pt;}
.y16{bottom:465.506667pt;}
.y15e{bottom:466.626667pt;}
.y1f4{bottom:466.786667pt;}
.ydd{bottom:468.386667pt;}
.yf3{bottom:468.866667pt;}
.y6d{bottom:469.826667pt;}
.y239{bottom:472.706667pt;}
.y143{bottom:477.186667pt;}
.ycc{bottom:477.666667pt;}
.y19b{bottom:478.626667pt;}
.y208{bottom:480.386667pt;}
.y15{bottom:480.706667pt;}
.y85{bottom:482.146667pt;}
.y1be{bottom:483.746667pt;}
.yf2{bottom:484.226667pt;}
.y1d4{bottom:484.546667pt;}
.y46{bottom:488.226667pt;}
.y238{bottom:489.506667pt;}
.y128{bottom:492.546667pt;}
.y142{bottom:494.146667pt;}
.y1f3{bottom:494.306667pt;}
.y14{bottom:496.066667pt;}
.y207{bottom:497.186667pt;}
.y6c{bottom:497.506667pt;}
.y84{bottom:500.546667pt;}
.y1d7{bottom:502.626667pt;}
.y1bd{bottom:503.746667pt;}
.y17f{bottom:504.866667pt;}
.ycb{bottom:505.346667pt;}
.y19a{bottom:506.146667pt;}
.y237{bottom:506.306667pt;}
.y141{bottom:510.946667pt;}
.ya7{bottom:512.706667pt;}
.y206{bottom:513.986667pt;}
.y45{bottom:515.906667pt;}
.y83{bottom:518.626667pt;}
.y127{bottom:520.066667pt;}
.y1d6{bottom:520.866667pt;}
.y15d{bottom:521.826667pt;}
.y1f2{bottom:521.986667pt;}
.y17e{bottom:522.626667pt;}
.y236{bottom:523.266667pt;}
.y1b6{bottom:523.746667pt;}
.y6b{bottom:525.026667pt;}
.y140{bottom:527.906667pt;}
.y13{bottom:530.466667pt;}
.y205{bottom:530.946667pt;}
.yca{bottom:532.866667pt;}
.y199{bottom:533.826667pt;}
.y82{bottom:535.426667pt;}
.y17d{bottom:537.853333pt;}
.y1d5{bottom:539.133333pt;}
.y235{bottom:540.093333pt;}
.y1ba{bottom:542.013333pt;}
.y44{bottom:543.453333pt;}
.y13f{bottom:544.733333pt;}
.y126{bottom:547.773333pt;}
.y15c{bottom:549.373333pt;}
.y1f1{bottom:549.533333pt;}
.y17c{bottom:550.333333pt;}
.y198{bottom:551.613333pt;}
.y81{bottom:552.413333pt;}
.y6a{bottom:552.573333pt;}
.y234{bottom:557.053333pt;}
.y1d3{bottom:557.373333pt;}
.y12{bottom:558.013333pt;}
.y1b9{bottom:560.253333pt;}
.yc9{bottom:560.573333pt;}
.y13e{bottom:561.533333pt;}
.y204{bottom:564.733333pt;}
.y197{bottom:566.973333pt;}
.y80{bottom:569.213333pt;}
.y43{bottom:570.973333pt;}
.y233{bottom:573.853333pt;}
.y125{bottom:575.293333pt;}
.y15b{bottom:576.893333pt;}
.y1f0{bottom:577.213333pt;}
.y1b8{bottom:578.333333pt;}
.y13d{bottom:578.493333pt;}
.y196{bottom:579.453333pt;}
.y69{bottom:580.253333pt;}
.y203{bottom:581.533333pt;}
.y11{bottom:584.253333pt;}
.y7f{bottom:586.173333pt;}
.yc8{bottom:588.093333pt;}
.y232{bottom:590.653333pt;}
.y13c{bottom:595.293333pt;}
.y1b5{bottom:596.573333pt;}
.y42{bottom:598.653333pt;}
.y7e{bottom:602.973333pt;}
.y15a{bottom:604.573333pt;}
.y1ef{bottom:604.733333pt;}
.y231{bottom:607.613333pt;}
.y68{bottom:607.773333pt;}
.y13b{bottom:612.253333pt;}
.y10{bottom:613.053333pt;}
.yc7{bottom:615.773333pt;}
.y7d{bottom:619.933333pt;}
.ya2{bottom:620.733333pt;}
.y1d2{bottom:622.813333pt;}
.y230{bottom:624.413333pt;}
.y41{bottom:626.173333pt;}
.y13a{bottom:629.053333pt;}
.y124{bottom:630.493333pt;}
.y159{bottom:632.093333pt;}
.y1ee{bottom:632.413333pt;}
.y67{bottom:635.453333pt;}
.y7c{bottom:636.733333pt;}
.yf{bottom:639.133333pt;}
.y22f{bottom:641.373333pt;}
.yc6{bottom:643.293333pt;}
.y139{bottom:645.853333pt;}
.y1d1{bottom:650.493333pt;}
.y40{bottom:653.853333pt;}
.y123{bottom:658.173333pt;}
.y158{bottom:659.773333pt;}
.y1ed{bottom:659.933333pt;}
.y1b4{bottom:662.173333pt;}
.y138{bottom:662.813333pt;}
.y66{bottom:662.973333pt;}
.ye{bottom:667.933333pt;}
.yc5{bottom:670.973333pt;}
.y22e{bottom:675.133333pt;}
.y122{bottom:675.933333pt;}
.y1d0{bottom:678.013333pt;}
.y137{bottom:679.613333pt;}
.y3f{bottom:681.373333pt;}
.y157{bottom:687.293333pt;}
.y1ec{bottom:687.613333pt;}
.y1b3{bottom:689.693333pt;}
.y65{bottom:690.653333pt;}
.y121{bottom:691.133333pt;}
.y22d{bottom:691.933333pt;}
.yd{bottom:694.173333pt;}
.y136{bottom:696.573333pt;}
.yc4{bottom:698.493333pt;}
.ye0{bottom:700.413333pt;}
.y119{bottom:704.253333pt;}
.y156{bottom:705.053333pt;}
.y1cf{bottom:705.693333pt;}
.y22c{bottom:708.733333pt;}
.y3e{bottom:709.053333pt;}
.y135{bottom:713.373333pt;}
.y1eb{bottom:715.133333pt;}
.y1b2{bottom:717.373333pt;}
.y64{bottom:718.173333pt;}
.y155{bottom:720.413333pt;}
.yc{bottom:722.813333pt;}
.y11f{bottom:724.253333pt;}
.y22b{bottom:725.693333pt;}
.yc3{bottom:726.173333pt;}
.y9a{bottom:728.733333pt;}
.y134{bottom:730.173333pt;}
.y1ce{bottom:733.213333pt;}
.y14d{bottom:733.533333pt;}
.y3d{bottom:736.573333pt;}
.y17b{bottom:737.373333pt;}
.y22a{bottom:742.493333pt;}
.y1ea{bottom:742.813333pt;}
.y11e{bottom:744.253333pt;}
.y1b1{bottom:744.893333pt;}
.y63{bottom:745.853333pt;}
.y133{bottom:747.133333pt;}
.yb{bottom:752.413333pt;}
.y154{bottom:753.533333pt;}
.yc2{bottom:753.693333pt;}
.y229{bottom:759.453333pt;}
.y1cd{bottom:760.893333pt;}
.y195{bottom:761.853333pt;}
.y3c{bottom:764.253333pt;}
.y17a{bottom:764.893333pt;}
.y1e9{bottom:770.333333pt;}
.y249{bottom:771.933333pt;}
.y1b0{bottom:772.413333pt;}
.y62{bottom:773.373333pt;}
.y152{bottom:773.533333pt;}
.y228{bottom:776.293333pt;}
.yc1{bottom:781.413333pt;}
.y11d{bottom:781.893333pt;}
.y3b{bottom:782.053333pt;}
.ya{bottom:784.773333pt;}
.y1cc{bottom:788.453333pt;}
.y194{bottom:789.413333pt;}
.y179{bottom:792.453333pt;}
.y227{bottom:793.093333pt;}
.y151{bottom:793.573333pt;}
.y3a{bottom:797.413333pt;}
.y1e8{bottom:798.053333pt;}
.y1af{bottom:800.133333pt;}
.y61{bottom:801.093333pt;}
.y11b{bottom:801.893333pt;}
.y1cb{bottom:806.213333pt;}
.y248{bottom:808.773333pt;}
.yc0{bottom:808.933333pt;}
.y226{bottom:810.053333pt;}
.y39{bottom:812.773333pt;}
.y14f{bottom:813.573333pt;}
.y9{bottom:816.933333pt;}
.y193{bottom:817.093333pt;}
.y178{bottom:820.133333pt;}
.y1ca{bottom:821.573333pt;}
.y114{bottom:821.893333pt;}
.ydf{bottom:823.813333pt;}
.y1e7{bottom:825.573333pt;}
.ybf{bottom:826.693333pt;}
.y225{bottom:826.853333pt;}
.y1ae{bottom:827.653333pt;}
.y38{bottom:827.973333pt;}
.y60{bottom:828.613333pt;}
.y146{bottom:833.573333pt;}
.y1c9{bottom:834.053333pt;}
.ybe{bottom:842.053333pt;}
.y37{bottom:843.333333pt;}
.y224{bottom:843.813333pt;}
.y192{bottom:844.613333pt;}
.y177{bottom:847.653333pt;}
.y8{bottom:849.093333pt;}
.y96{bottom:852.133333pt;}
.y1e6{bottom:853.253333pt;}
.y1ad{bottom:855.333333pt;}
.y5f{bottom:856.293333pt;}
.ybd{bottom:857.413333pt;}
.y36{bottom:858.693333pt;}
.y118{bottom:859.333333pt;}
.y223{bottom:860.613333pt;}
.y14c{bottom:864.933333pt;}
.y191{bottom:872.293333pt;}
.ybc{bottom:872.613333pt;}
.y35{bottom:874.053333pt;}
.y176{bottom:875.333333pt;}
.y222{bottom:877.413333pt;}
.y117{bottom:878.373333pt;}
.y1e5{bottom:880.773333pt;}
.y7{bottom:881.253333pt;}
.y1ac{bottom:882.853333pt;}
.y14a{bottom:883.173333pt;}
.y5e{bottom:883.813333pt;}
.yb8{bottom:885.733333pt;}
.y34{bottom:889.413333pt;}
.y221{bottom:894.373333pt;}
.y116{bottom:897.413333pt;}
.y190{bottom:899.813333pt;}
.y1ab{bottom:900.613333pt;}
.ydc{bottom:901.093333pt;}
.y148{bottom:901.413333pt;}
.y175{bottom:902.853333pt;}
.y33{bottom:904.613333pt;}
.y1e4{bottom:908.453333pt;}
.y220{bottom:911.173333pt;}
.y5d{bottom:911.493333pt;}
.y6{bottom:915.653333pt;}
.y1aa{bottom:915.973333pt;}
.y10f{bottom:916.453333pt;}
.y18f{bottom:918.213333pt;}
.y145{bottom:919.493333pt;}
.y32{bottom:919.973333pt;}
.y174{bottom:920.613333pt;}
.y21f{bottom:928.133333pt;}
.y1a9{bottom:929.093333pt;}
.y31{bottom:935.333333pt;}
.y173{bottom:935.973333pt;}
.y5c{bottom:939.013333pt;}
.y21e{bottom:944.933333pt;}
.y172{bottom:949.093333pt;}
.y30{bottom:950.693333pt;}
.y5{bottom:952.453333pt;}
.y21d{bottom:961.733333pt;}
.y1e3{bottom:963.653333pt;}
.y2f{bottom:966.053333pt;}
.y5b{bottom:966.693333pt;}
.y171{bottom:969.093333pt;}
.y21c{bottom:978.693333pt;}
.y2e{bottom:981.413333pt;}
.y170{bottom:989.093333pt;}
.y4{bottom:989.253333pt;}
.y5a{bottom:994.213333pt;}
.y21b{bottom:995.493333pt;}
.y2d{bottom:996.613333pt;}
.y2{bottom:1032.160000pt;}
.y1{bottom:1062.880000pt;}
.h2e{height:17.440000pt;}
.h2f{height:17.600000pt;}
.h39{height:17.632000pt;}
.h27{height:18.400000pt;}
.h2a{height:19.200000pt;}
.h2c{height:19.360000pt;}
.h32{height:19.392000pt;}
.h34{height:30.560000pt;}
.h30{height:30.720000pt;}
.hc{height:31.406250pt;}
.hd{height:33.918750pt;}
.h28{height:36.640000pt;}
.h2b{height:36.832000pt;}
.h1f{height:37.920000pt;}
.h35{height:39.200000pt;}
.h13{height:45.920000pt;}
.h18{height:46.080000pt;}
.he{height:47.621250pt;}
.h10{height:48.530000pt;}
.h36{height:50.720000pt;}
.h3{height:52.108438pt;}
.h2{height:52.134375pt;}
.h9{height:52.785000pt;}
.hb{height:53.535000pt;}
.hf{height:57.375000pt;}
.h11{height:57.758750pt;}
.h1c{height:57.787500pt;}
.h14{height:59.340000pt;}
.h33{height:61.280000pt;}
.h1e{height:61.312000pt;}
.h1b{height:61.440000pt;}
.h8{height:62.812500pt;}
.ha{height:64.500000pt;}
.h12{height:65.781915pt;}
.h7{height:66.507188pt;}
.h3b{height:72.032000pt;}
.h37{height:72.160000pt;}
.h38{height:72.192000pt;}
.h25{height:73.600000pt;}
.h6{height:75.465000pt;}
.h4{height:75.602187pt;}
.h21{height:76.640000pt;}
.h24{height:76.672000pt;}
.h2d{height:85.280000pt;}
.h5{height:85.785000pt;}
.h23{height:92.000000pt;}
.h26{height:93.920000pt;}
.h3c{height:99.200000pt;}
.h3a{height:99.360000pt;}
.h31{height:99.392000pt;}
.h16{height:107.360000pt;}
.h17{height:107.392000pt;}
.h29{height:116.832000pt;}
.h15{height:122.592000pt;}
.h1a{height:122.720000pt;}
.h22{height:122.752000pt;}
.h19{height:153.306667pt;}
.h1d{height:269.946667pt;}
.h20{height:432.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:20.160000pt;}
.w1f{width:35.040000pt;}
.w1a{width:35.520000pt;}
.w28{width:35.680000pt;}
.w14{width:36.000000pt;}
.w2d{width:39.040000pt;}
.w9{width:43.360000pt;}
.w7{width:47.872000pt;}
.w8{width:52.640000pt;}
.w6{width:84.320000pt;}
.w1e{width:84.800000pt;}
.w11{width:84.960000pt;}
.w25{width:85.120000pt;}
.w19{width:88.160000pt;}
.w17{width:89.952000pt;}
.w3{width:93.920000pt;}
.w13{width:94.080000pt;}
.w22{width:94.240000pt;}
.w21{width:94.432000pt;}
.w12{width:94.592000pt;}
.w2c{width:99.840000pt;}
.w18{width:102.912000pt;}
.w2a{width:103.552000pt;}
.w1d{width:103.872000pt;}
.w2b{width:106.432000pt;}
.w5{width:127.232000pt;}
.wc{width:143.520000pt;}
.wd{width:145.786667pt;}
.wb{width:151.866667pt;}
.wf{width:154.426667pt;}
.w4{width:164.986667pt;}
.wa{width:175.226667pt;}
.w26{width:227.866667pt;}
.w23{width:228.186667pt;}
.w20{width:229.146667pt;}
.w1b{width:229.946667pt;}
.w2e{width:232.506667pt;}
.w15{width:237.826667pt;}
.w24{width:263.866667pt;}
.w1c{width:264.186667pt;}
.w16{width:265.466667pt;}
.w29{width:271.546667pt;}
.w27{width:273.506667pt;}
.w10{width:273.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:6.880000pt;}
.x20{left:55.834667pt;}
.x16{left:106.592000pt;}
.x3{left:113.471988pt;}
.x8{left:114.591988pt;}
.x21{left:116.954667pt;}
.x4{left:122.591988pt;}
.x1e{left:125.151988pt;}
.x5{left:126.751988pt;}
.x32{left:137.000000pt;}
.x9{left:138.426655pt;}
.x27{left:142.106667pt;}
.x3b{left:146.120000pt;}
.x14{left:160.666655pt;}
.x3f{left:164.186667pt;}
.x25{left:170.266655pt;}
.x35{left:177.146667pt;}
.x2b{left:178.106667pt;}
.x18{left:201.306667pt;}
.x1{left:213.466655pt;}
.x31{left:215.880000pt;}
.x28{left:217.160000pt;}
.x3a{left:225.480000pt;}
.x15{left:264.706655pt;}
.x22{left:282.466667pt;}
.x37{left:285.026655pt;}
.x26{left:287.586655pt;}
.x24{left:304.066655pt;}
.x30{left:308.706655pt;}
.x36{left:322.786655pt;}
.x3d{left:332.866655pt;}
.x6{left:334.306655pt;}
.x2d{left:339.266655pt;}
.x1f{left:344.386655pt;}
.x39{left:345.506655pt;}
.x13{left:362.306655pt;}
.x19{left:366.946667pt;}
.xa{left:377.026655pt;}
.x11{left:384.386655pt;}
.x12{left:386.146655pt;}
.x3e{left:396.706667pt;}
.x33{left:406.306667pt;}
.x2e{left:408.066667pt;}
.x7{left:415.933322pt;}
.x2{left:433.373322pt;}
.x23{left:434.973333pt;}
.x40{left:462.493322pt;}
.x1a{left:494.973333pt;}
.x2f{left:498.013333pt;}
.x29{left:500.893333pt;}
.x38{left:509.053322pt;}
.x2c{left:511.133322pt;}
.xf{left:530.173322pt;}
.xc{left:532.893322pt;}
.xd{left:564.093322pt;}
.x1b{left:579.933333pt;}
.x2a{left:595.493333pt;}
.xb{left:600.933322pt;}
.x34{left:604.773333pt;}
.xe{left:605.893322pt;}
.x3c{left:607.333322pt;}
.x1c{left:628.453333pt;}
.x1d{left:681.733333pt;}
.x10{left:718.373322pt;}
}




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