
    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_15e6ad603f1b037c4cf75d0b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_570a0b6fd212f27b92390b75.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_a0f7807111aa75dd201f6e46.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8d30b4cad1f0a80a9c3c7f0c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_90ff277184758e76b90baa46.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_882c304b016370f757ee1cc2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_565e961aafa77db3b9f8c297.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5b629495c27e0e43429ccfe4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_152dc35ff5abc1600339a8e6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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:ffd;src:url('chunks/assets/font_2868c5fff54547ccbe5e0229.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.820000px;}
.v1{vertical-align:18.000000px;}
.lsc{letter-spacing:-2.724000px;}
.ls1e{letter-spacing:-1.740000px;}
.ls1d{letter-spacing:-1.548000px;}
.ls19{letter-spacing:-1.482000px;}
.lsf{letter-spacing:-1.170000px;}
.ls1f{letter-spacing:-1.128000px;}
.ls1c{letter-spacing:-1.026000px;}
.lsd{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.378000px;}
.lsa{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.256200px;}
.ls6{letter-spacing:0.279000px;}
.ls7{letter-spacing:0.429000px;}
.lse{letter-spacing:0.690000px;}
.ls1a{letter-spacing:1.404000px;}
.ls0{letter-spacing:1.476000px;}
.ls23{letter-spacing:1.482000px;}
.ls4{letter-spacing:1.668000px;}
.ls3{letter-spacing:1.728000px;}
.ls10{letter-spacing:1.737000px;}
.ls5{letter-spacing:1.848000px;}
.ls21{letter-spacing:1.914000px;}
.ls2{letter-spacing:1.966500px;}
.ls1{letter-spacing:2.026500px;}
.ls1b{letter-spacing:2.164500px;}
.ls11{letter-spacing:2.190000px;}
.ls17{letter-spacing:2.238000px;}
.ls18{letter-spacing:2.244000px;}
.ls8{letter-spacing:2.250000px;}
.ls22{letter-spacing:2.310000px;}
.ls9{letter-spacing:2.322000px;}
.ls25{letter-spacing:2.370000px;}
.ls12{letter-spacing:2.400000px;}
.ls27{letter-spacing:2.430000px;}
.ls24{letter-spacing:2.760000px;}
.ls20{letter-spacing:3.378000px;}
.ls26{letter-spacing:15.387000px;}
.ls15{letter-spacing:46.887000px;}
.ls14{letter-spacing:64.887000px;}
.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;}
}
.ws10{word-spacing:-21.390900px;}
.ws13{word-spacing:-17.385000px;}
.ws8{word-spacing:-16.875000px;}
.ws15{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws14{word-spacing:-16.107000px;}
.ws2{word-spacing:-15.354000px;}
.wsc{word-spacing:-14.881200px;}
.ws7{word-spacing:-14.625000px;}
.wsd{word-spacing:-13.599000px;}
.wsf{word-spacing:-13.254900px;}
.ws6{word-spacing:-13.221000px;}
.ws11{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws12{word-spacing:-12.375000px;}
.wsb{word-spacing:-12.369000px;}
.wsa{word-spacing:-12.363000px;}
.ws0{word-spacing:-11.826000px;}
.wse{word-spacing:-11.673000px;}
.ws5{word-spacing:-11.034000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._9{margin-left:-10.929750px;}
._8{margin-left:-9.838050px;}
._6{margin-left:-6.246750px;}
._10{margin-left:-4.886100px;}
._7{margin-left:-3.391200px;}
._1{margin-left:-1.890000px;}
._2{width:1.530000px;}
._0{width:2.700000px;}
._5{width:3.778500px;}
._3{width:4.800000px;}
._c{width:6.309000px;}
._11{width:7.735200px;}
._a{width:8.833200px;}
._1a{width:9.882300px;}
._4{width:10.896000px;}
._e{width:12.246000px;}
._14{width:13.261500px;}
._12{width:14.616300px;}
._b{width:16.257000px;}
._d{width:17.742900px;}
._13{width:18.853500px;}
._19{width:20.429700px;}
._f{width:21.556200px;}
._15{width:25.336500px;}
._18{width:26.732700px;}
._16{width:29.904600px;}
._1b{width:38.866500px;}
._1c{width:40.216500px;}
._1d{width:41.344200px;}
._21{width:43.798500px;}
._20{width:47.625000px;}
._1f{width:48.745200px;}
._1e{width:52.794000px;}
._24{width:79.407000px;}
._23{width:80.617500px;}
._22{width:85.104900px;}
._28{width:142.560600px;}
._27{width:147.188700px;}
._25{width:148.311000px;}
._26{width:152.275500px;}
._17{width:337.165200px;}
.fc1{color:rgb(0,0,0);}
.fcd{color:rgb(89,89,89);}
.fc7{color:rgb(237,125,49);}
.fc8{color:rgb(165,165,165);}
.fc2{color:rgb(31,56,100);}
.fce{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(50,62,79);}
.fc5{color:rgb(227,108,10);}
.fca{color:rgb(91,155,213);}
.fc0{color:rgb(23,54,93);}
.fc6{color:rgb(68,114,196);}
.fc9{color:rgb(255,192,0);}
.fcb{color:rgb(112,173,71);}
.fcc{color:rgb(38,68,120);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs8{font-size:58.650000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.fs9{font-size:94.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y43{bottom:3.390000px;}
.yb7{bottom:3.405000px;}
.yd6{bottom:3.420000px;}
.ydb{bottom:4.485000px;}
.yfe{bottom:4.492500px;}
.y8a{bottom:4.500000px;}
.y109{bottom:4.515000px;}
.yde{bottom:4.530000px;}
.y1a{bottom:4.545000px;}
.yc4{bottom:5.625000px;}
.yae{bottom:7.920000px;}
.y41{bottom:11.265000px;}
.ye{bottom:11.280000px;}
.y1c{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y4{bottom:16.875000px;}
.y2{bottom:19.125000px;}
.y3e{bottom:21.375000px;}
.ycf{bottom:21.390000px;}
.yb3{bottom:21.405000px;}
.yb1{bottom:21.420000px;}
.yfc{bottom:22.492500px;}
.y42{bottom:22.500000px;}
.y12a{bottom:22.515000px;}
.y12b{bottom:22.530000px;}
.y108{bottom:22.545000px;}
.y40{bottom:25.920000px;}
.y19{bottom:29.295000px;}
.yb{bottom:30.405000px;}
.y2d{bottom:30.420000px;}
.y140{bottom:34.905000px;}
.yeb{bottom:34.920000px;}
.yfa{bottom:36.045000px;}
.y15d{bottom:39.405000px;}
.y3d{bottom:39.420000px;}
.y180{bottom:39.825000px;}
.y11e{bottom:40.545000px;}
.y2c{bottom:45.030000px;}
.y18{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.ybd{bottom:52.455000px;}
.y9a{bottom:52.905000px;}
.y3c{bottom:56.295000px;}
.y5{bottom:57.412500px;}
.yee{bottom:57.420000px;}
.y142{bottom:57.450000px;}
.y17f{bottom:57.825000px;}
.y17{bottom:61.950000px;}
.y2b{bottom:63.045000px;}
.ybc{bottom:65.505000px;}
.y9{bottom:73.200000px;}
.y112{bottom:76.575000px;}
.y16{bottom:78.825000px;}
.y1{bottom:81.075000px;}
.ybb{bottom:83.505000px;}
.y3b{bottom:91.200000px;}
.y15{bottom:91.245000px;}
.y8{bottom:93.450000px;}
.y2a{bottom:97.950000px;}
.y14{bottom:104.745000px;}
.y3a{bottom:108.075000px;}
.y7{bottom:110.355000px;}
.ybe{bottom:110.925000px;}
.y29{bottom:115.995000px;}
.y13{bottom:119.370000px;}
.yb8{bottom:122.737500px;}
.y39{bottom:124.995000px;}
.y91{bottom:126.112500px;}
.y12d{bottom:127.237500px;}
.y1c8{bottom:129.487500px;}
.yfb{bottom:130.612500px;}
.y19f{bottom:131.737500px;}
.y28{bottom:132.870000px;}
.y12{bottom:138.525000px;}
.yb9{bottom:140.737500px;}
.y38{bottom:142.995000px;}
.y54{bottom:144.112500px;}
.y12c{bottom:145.237500px;}
.y1c7{bottom:147.487500px;}
.yfd{bottom:148.612500px;}
.y19e{bottom:149.737500px;}
.y27{bottom:149.745000px;}
.yb6{bottom:158.745000px;}
.y37{bottom:159.900000px;}
.y53{bottom:162.150000px;}
.y11{bottom:164.400000px;}
.yf9{bottom:166.650000px;}
.y26{bottom:167.775000px;}
.y17d{bottom:171.150000px;}
.y36{bottom:176.775000px;}
.y181{bottom:178.425000px;}
.y52{bottom:179.025000px;}
.y90{bottom:180.150000px;}
.y153{bottom:181.275000px;}
.y19d{bottom:183.525000px;}
.y25{bottom:184.650000px;}
.y131{bottom:184.680000px;}
.y17c{bottom:188.025000px;}
.ybf{bottom:188.925000px;}
.y10{bottom:189.195000px;}
.y35{bottom:194.775000px;}
.y51{bottom:195.900000px;}
.y8f{bottom:198.150000px;}
.y154{bottom:199.275000px;}
.y130{bottom:201.555000px;}
.y19c{bottom:201.570000px;}
.y24{bottom:202.695000px;}
.y17b{bottom:206.070000px;}
.yf8{bottom:207.195000px;}
.y34{bottom:211.680000px;}
.yb5{bottom:212.820000px;}
.y50{bottom:213.945000px;}
.y8e{bottom:216.195000px;}
.y152{bottom:217.320000px;}
.y19b{bottom:218.445000px;}
.y23{bottom:219.570000px;}
.y17a{bottom:222.945000px;}
.yf7{bottom:224.070000px;}
.y33{bottom:228.555000px;}
.y4f{bottom:230.820000px;}
.y1c6{bottom:233.070000px;}
.y182{bottom:233.550000px;}
.y8d{bottom:234.195000px;}
.yc1{bottom:234.300000px;}
.y19a{bottom:235.320000px;}
.y22{bottom:237.600000px;}
.y151{bottom:238.695000px;}
.y179{bottom:239.820000px;}
.yf6{bottom:240.945000px;}
.y32{bottom:246.600000px;}
.y4e{bottom:247.725000px;}
.yb4{bottom:248.850000px;}
.y1c5{bottom:251.100000px;}
.y8c{bottom:252.225000px;}
.yc0{bottom:252.300000px;}
.y199{bottom:253.350000px;}
.y21{bottom:254.475000px;}
.yf5{bottom:255.600000px;}
.y150{bottom:256.725000px;}
.y178{bottom:257.850000px;}
.y31{bottom:263.475000px;}
.y4d{bottom:265.725000px;}
.yb0{bottom:266.850000px;}
.y1c4{bottom:267.975000px;}
.y8b{bottom:270.225000px;}
.y20{bottom:272.475000px;}
.yf4{bottom:273.600000px;}
.y177{bottom:274.725000px;}
.y30{bottom:280.380000px;}
.y4c{bottom:282.600000px;}
.yb2{bottom:284.880000px;}
.y1c3{bottom:284.895000px;}
.y198{bottom:287.130000px;}
.y89{bottom:288.255000px;}
.yc2{bottom:288.975000px;}
.y176{bottom:291.645000px;}
.yf3{bottom:295.020000px;}
.y2f{bottom:298.380000px;}
.y1f{bottom:299.505000px;}
.yaf{bottom:302.880000px;}
.y197{bottom:305.145000px;}
.yf2{bottom:309.630000px;}
.y88{bottom:310.755000px;}
.y2e{bottom:315.255000px;}
.y1e{bottom:317.505000px;}
.y1c2{bottom:319.755000px;}
.yad{bottom:320.880000px;}
.y196{bottom:322.020000px;}
.y175{bottom:326.550000px;}
.y87{bottom:327.675000px;}
.y4b{bottom:334.425000px;}
.y1c1{bottom:336.675000px;}
.y129{bottom:338.925000px;}
.yac{bottom:342.300000px;}
.y174{bottom:343.425000px;}
.y86{bottom:344.550000px;}
.yed{bottom:345.675000px;}
.y4a{bottom:351.300000px;}
.y1c0{bottom:354.675000px;}
.y195{bottom:356.925000px;}
.yab{bottom:359.175000px;}
.y14f{bottom:360.300000px;}
.y128{bottom:361.425000px;}
.y85{bottom:362.550000px;}
.yf1{bottom:363.675000px;}
.y49{bottom:369.345000px;}
.y1bf{bottom:371.580000px;}
.y194{bottom:373.830000px;}
.yaa{bottom:377.205000px;}
.y127{bottom:378.330000px;}
.y84{bottom:379.470000px;}
.yef{bottom:381.705000px;}
.y48{bottom:386.220000px;}
.y1be{bottom:388.455000px;}
.y193{bottom:390.705000px;}
.ya9{bottom:394.080000px;}
.y126{bottom:395.205000px;}
.y14e{bottom:396.330000px;}
.y83{bottom:396.345000px;}
.yf0{bottom:399.705000px;}
.y47{bottom:403.095000px;}
.y1bd{bottom:406.470000px;}
.y192{bottom:408.705000px;}
.y125{bottom:409.875000px;}
.ya8{bottom:411.000000px;}
.y173{bottom:413.250000px;}
.y82{bottom:414.375000px;}
.yea{bottom:417.750000px;}
.y46{bottom:421.125000px;}
.y1bc{bottom:423.375000px;}
.y191{bottom:425.625000px;}
.y124{bottom:427.875000px;}
.ya7{bottom:429.000000px;}
.y172{bottom:430.125000px;}
.y81{bottom:432.375000px;}
.yec{bottom:435.750000px;}
.y45{bottom:438.000000px;}
.y1bb{bottom:440.250000px;}
.ya6{bottom:442.500000px;}
.y171{bottom:447.000000px;}
.y80{bottom:449.250000px;}
.y14c{bottom:450.375000px;}
.y44{bottom:454.905000px;}
.ye9{bottom:457.170000px;}
.y1ba{bottom:458.280000px;}
.ya5{bottom:460.530000px;}
.y190{bottom:460.545000px;}
.y122{bottom:463.905000px;}
.y170{bottom:465.030000px;}
.y7f{bottom:466.170000px;}
.y14d{bottom:468.405000px;}
.y3f{bottom:469.530000px;}
.ye8{bottom:475.155000px;}
.y18f{bottom:477.420000px;}
.y123{bottom:481.905000px;}
.ya4{bottom:483.045000px;}
.y7e{bottom:485.280000px;}
.y14a{bottom:486.405000px;}
.ye7{bottom:492.030000px;}
.y18e{bottom:494.325000px;}
.ya3{bottom:496.575000px;}
.y16f{bottom:498.825000px;}
.y11d{bottom:499.950000px;}
.y7d{bottom:503.325000px;}
.y14b{bottom:504.450000px;}
.y1d{bottom:506.700000px;}
.y1b9{bottom:510.075000px;}
.y18d{bottom:512.325000px;}
.ya2{bottom:514.575000px;}
.y16e{bottom:516.825000px;}
.y121{bottom:517.950000px;}
.y7c{bottom:521.325000px;}
.y102{bottom:524.700000px;}
.y149{bottom:525.825000px;}
.y1b8{bottom:526.950000px;}
.y18c{bottom:529.200000px;}
.ya1{bottom:532.575000px;}
.y16d{bottom:533.700000px;}
.y11f{bottom:535.980000px;}
.y7b{bottom:540.495000px;}
.y148{bottom:543.870000px;}
.y18b{bottom:546.120000px;}
.y16c{bottom:550.620000px;}
.y120{bottom:553.980000px;}
.ya0{bottom:555.105000px;}
.ye6{bottom:556.245000px;}
.y7a{bottom:557.370000px;}
.y147{bottom:560.745000px;}
.y1b7{bottom:561.855000px;}
.y18a{bottom:564.120000px;}
.y16b{bottom:568.605000px;}
.y101{bottom:570.855000px;}
.y9f{bottom:571.980000px;}
.y79{bottom:575.355000px;}
.y146{bottom:577.650000px;}
.y1b6{bottom:578.775000px;}
.y189{bottom:581.025000px;}
.y16a{bottom:585.525000px;}
.y9e{bottom:588.900000px;}
.y11c{bottom:590.025000px;}
.y156{bottom:592.275000px;}
.y78{bottom:594.525000px;}
.y1b5{bottom:595.650000px;}
.y188{bottom:597.900000px;}
.y169{bottom:602.400000px;}
.yc5{bottom:603.525000px;}
.y100{bottom:606.900000px;}
.y155{bottom:610.275000px;}
.y11b{bottom:611.400000px;}
.y77{bottom:612.525000px;}
.y1b4{bottom:613.650000px;}
.y187{bottom:615.900000px;}
.y168{bottom:620.445000px;}
.yc3{bottom:623.820000px;}
.yff{bottom:624.945000px;}
.y76{bottom:629.445000px;}
.y1b3{bottom:630.570000px;}
.y186{bottom:632.820000px;}
.y167{bottom:637.320000px;}
.y145{bottom:645.195000px;}
.y75{bottom:646.320000px;}
.ye5{bottom:647.445000px;}
.y185{bottom:649.695000px;}
.y166{bottom:654.195000px;}
.y144{bottom:659.820000px;}
.y11a{bottom:660.975000px;}
.y9d{bottom:663.225000px;}
.ye4{bottom:664.350000px;}
.y74{bottom:665.475000px;}
.y184{bottom:667.725000px;}
.y165{bottom:672.225000px;}
.y99{bottom:677.850000px;}
.y119{bottom:678.975000px;}
.ye3{bottom:681.225000px;}
.y1b2{bottom:682.350000px;}
.y73{bottom:683.475000px;}
.y183{bottom:684.600000px;}
.y164{bottom:689.100000px;}
.y9c{bottom:695.850000px;}
.ye2{bottom:699.225000px;}
.y118{bottom:700.350000px;}
.y72{bottom:701.475000px;}
.y163{bottom:706.020000px;}
.ye1{bottom:712.755000px;}
.y9b{bottom:713.880000px;}
.y116{bottom:715.005000px;}
.y1b1{bottom:717.255000px;}
.y71{bottom:719.520000px;}
.y162{bottom:724.005000px;}
.ye0{bottom:730.755000px;}
.y98{bottom:731.880000px;}
.y117{bottom:733.005000px;}
.y1b0{bottom:734.130000px;}
.y70{bottom:736.395000px;}
.y161{bottom:740.880000px;}
.y143{bottom:749.925000px;}
.y111{bottom:751.050000px;}
.y6f{bottom:753.300000px;}
.y160{bottom:757.800000px;}
.ydf{bottom:766.800000px;}
.y13f{bottom:767.925000px;}
.y115{bottom:769.050000px;}
.y6e{bottom:771.300000px;}
.y15f{bottom:775.800000px;}
.ydd{bottom:784.800000px;}
.y141{bottom:785.955000px;}
.y114{bottom:787.080000px;}
.y6d{bottom:788.205000px;}
.y15e{bottom:792.705000px;}
.y97{bottom:801.705000px;}
.ydc{bottom:802.830000px;}
.yba{bottom:803.250000px;}
.y6c{bottom:805.080000px;}
.y13e{bottom:807.330000px;}
.y15c{bottom:807.345000px;}
.y1af{bottom:820.830000px;}
.yda{bottom:820.845000px;}
.y6b{bottom:823.080000px;}
.y13d{bottom:825.330000px;}
.y1b{bottom:835.500000px;}
.y1ae{bottom:837.750000px;}
.y6a{bottom:840.000000px;}
.y113{bottom:841.125000px;}
.y13c{bottom:842.250000px;}
.yd9{bottom:843.375000px;}
.y1ad{bottom:854.625000px;}
.y69{bottom:856.875000px;}
.y110{bottom:859.125000px;}
.yd8{bottom:860.250000px;}
.y15b{bottom:861.375000px;}
.yf{bottom:864.750000px;}
.y1ac{bottom:872.670000px;}
.y68{bottom:874.920000px;}
.yd7{bottom:877.170000px;}
.y15a{bottom:882.795000px;}
.y1ab{bottom:889.545000px;}
.yd4{bottom:891.780000px;}
.y67{bottom:891.795000px;}
.y13b{bottom:896.295000px;}
.y10f{bottom:898.545000px;}
.y159{bottom:899.670000px;}
.y1aa{bottom:906.420000px;}
.y66{bottom:908.670000px;}
.yd5{bottom:909.780000px;}
.y139{bottom:910.950000px;}
.y10e{bottom:915.450000px;}
.y158{bottom:917.700000px;}
.y1a9{bottom:924.450000px;}
.y65{bottom:926.700000px;}
.yd2{bottom:927.825000px;}
.y13a{bottom:928.950000px;}
.y157{bottom:931.200000px;}
.y17e{bottom:931.500000px;}
.y10d{bottom:933.450000px;}
.y1a8{bottom:941.325000px;}
.y64{bottom:943.575000px;}
.yd3{bottom:945.825000px;}
.y10b{bottom:946.950000px;}
.y1a7{bottom:958.245000px;}
.y63{bottom:960.495000px;}
.yce{bottom:963.855000px;}
.yd1{bottom:963.870000px;}
.y10c{bottom:964.995000px;}
.y1a6{bottom:976.245000px;}
.y62{bottom:978.495000px;}
.yd0{bottom:981.855000px;}
.y107{bottom:982.980000px;}
.y1a5{bottom:993.120000px;}
.y61{bottom:995.400000px;}
.ycc{bottom:999.900000px;}
.y10a{bottom:1001.025000px;}
.y1a4{bottom:1010.025000px;}
.y60{bottom:1012.275000px;}
.ycd{bottom:1017.900000px;}
.y106{bottom:1019.025000px;}
.y1a3{bottom:1028.025000px;}
.y5f{bottom:1030.275000px;}
.yca{bottom:1035.945000px;}
.y138{bottom:1037.070000px;}
.y105{bottom:1041.570000px;}
.y1a2{bottom:1044.945000px;}
.y5e{bottom:1047.195000px;}
.ycb{bottom:1053.945000px;}
.y136{bottom:1055.070000px;}
.y104{bottom:1058.445000px;}
.y1a1{bottom:1062.945000px;}
.y5d{bottom:1064.070000px;}
.yd{bottom:1068.570000px;}
.yc8{bottom:1071.945000px;}
.y137{bottom:1073.070000px;}
.y103{bottom:1075.320000px;}
.y1a0{bottom:1080.975000px;}
.y5c{bottom:1082.100000px;}
.yc9{bottom:1089.975000px;}
.y134{bottom:1091.100000px;}
.y6{bottom:1094.475000px;}
.y5b{bottom:1098.975000px;}
.yc6{bottom:1107.975000px;}
.y135{bottom:1109.100000px;}
.y5a{bottom:1115.850000px;}
.yc7{bottom:1126.005000px;}
.y132{bottom:1127.130000px;}
.y96{bottom:1129.380000px;}
.y59{bottom:1133.880000px;}
.y95{bottom:1144.005000px;}
.y133{bottom:1145.130000px;}
.y58{bottom:1150.755000px;}
.y94{bottom:1162.050000px;}
.y12e{bottom:1163.175000px;}
.y57{bottom:1167.675000px;}
.y93{bottom:1180.050000px;}
.y12f{bottom:1181.175000px;}
.y56{bottom:1185.675000px;}
.y92{bottom:1198.050000px;}
.y55{bottom:1202.580000px;}
.h2d{height:16.860000px;}
.h22{height:16.875000px;}
.h21{height:16.912500px;}
.h31{height:17.985000px;}
.h1f{height:18.000000px;}
.h2e{height:18.022500px;}
.h20{height:18.037500px;}
.h2a{height:19.117500px;}
.h2b{height:19.162500px;}
.hb{height:25.912500px;}
.h13{height:29.250000px;}
.h2{height:32.625000px;}
.h25{height:34.875000px;}
.h2c{height:34.897500px;}
.h24{height:34.912500px;}
.h30{height:36.037500px;}
.h8{height:37.125000px;}
.h1c{height:37.162500px;}
.h19{height:39.832031px;}
.h1b{height:40.847168px;}
.h1a{height:41.275635px;}
.h18{height:41.389893px;}
.h1e{height:42.589600px;}
.hd{height:43.075195px;}
.h4{height:43.453125px;}
.ha{height:43.875000px;}
.h3a{height:46.218809px;}
.h1d{height:46.278809px;}
.h39{height:46.338809px;}
.h37{height:46.398809px;}
.h38{height:46.458809px;}
.h17{height:47.074219px;}
.h16{height:49.234131px;}
.h35{height:52.897500px;}
.h23{height:52.912500px;}
.h11{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h12{height:58.113281px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.h27{height:60.053247px;}
.he{height:64.237500px;}
.h28{height:65.719658px;}
.h5{height:69.114990px;}
.h33{height:70.912500px;}
.h2f{height:70.950000px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h29{height:96.914575px;}
.h32{height:106.950000px;}
.h7{height:121.612500px;}
.hc{height:203.820000px;}
.h34{height:215.100000px;}
.h36{height:267.750000px;}
.h26{height:322.875000px;}
.h15{height:328.800000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w39{width:81.112500px;}
.w4b{width:84.487500px;}
.w52{width:88.987500px;}
.w18{width:90.112500px;}
.w1c{width:93.487500px;}
.w5c{width:94.612500px;}
.w3d{width:94.650000px;}
.w43{width:95.737500px;}
.we{width:96.862500px;}
.w2c{width:99.150000px;}
.w56{width:100.237500px;}
.w37{width:101.362500px;}
.w28{width:101.400000px;}
.w48{width:102.487500px;}
.w47{width:102.525000px;}
.w46{width:103.650000px;}
.w40{width:107.025000px;}
.w26{width:110.400000px;}
.w25{width:111.487500px;}
.w24{width:111.525000px;}
.w1a{width:112.650000px;}
.w57{width:113.775000px;}
.w3f{width:120.525000px;}
.w20{width:123.900000px;}
.w42{width:127.312500px;}
.w19{width:129.562500px;}
.w16{width:130.650000px;}
.w41{width:134.025000px;}
.w50{width:135.150000px;}
.w4f{width:135.187500px;}
.w51{width:138.525000px;}
.w55{width:139.687500px;}
.w3c{width:147.562500px;}
.w5a{width:148.687500px;}
.w5b{width:149.812500px;}
.w4{width:152.055000px;}
.w2b{width:154.305000px;}
.w2a{width:159.930000px;}
.w49{width:167.805000px;}
.w3b{width:170.055000px;}
.wa{width:172.350000px;}
.w4a{width:181.350000px;}
.w1b{width:186.975000px;}
.w27{width:188.100000px;}
.wf{width:191.475000px;}
.w5d{width:193.725000px;}
.wd{width:198.270000px;}
.w36{width:202.725000px;}
.w45{width:206.130000px;}
.w38{width:207.255000px;}
.w58{width:214.020000px;}
.w21{width:220.800000px;}
.w23{width:221.880000px;}
.w7{width:223.020000px;}
.w34{width:228.645000px;}
.w11{width:243.330000px;}
.w2f{width:245.550000px;}
.w12{width:246.675000px;}
.w2e{width:248.955000px;}
.w2d{width:251.175000px;}
.w10{width:255.675000px;}
.wc{width:259.080000px;}
.w4e{width:271.470000px;}
.w54{width:278.220000px;}
.w17{width:281.595000px;}
.wb{width:289.470000px;}
.w59{width:298.500000px;}
.w29{width:312.000000px;}
.w32{width:315.375000px;}
.w3e{width:318.750000px;}
.w53{width:328.905000px;}
.w4d{width:340.155000px;}
.w4c{width:350.280000px;}
.w9{width:351.405000px;}
.w30{width:351.420000px;}
.w3a{width:360.450000px;}
.w14{width:372.870000px;}
.w13{width:373.950000px;}
.w1e{width:373.995000px;}
.w31{width:395.370000px;}
.w1f{width:400.980000px;}
.w33{width:402.105000px;}
.w22{width:414.525000px;}
.w44{width:435.900000px;}
.w35{width:441.570000px;}
.w5e{width:514.125000px;}
.w8{width:524.925000px;}
.w1d{width:529.875000px;}
.w5{width:595.875000px;}
.w15{width:617.280000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:6.750000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x14{left:12.420000px;}
.x28{left:44.505000px;}
.x29{left:59.700000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x10{left:101.362500px;}
.xf{left:108.112500px;}
.x5b{left:112.649987px;}
.x11{left:114.862500px;}
.x59{left:129.375000px;}
.x15{left:135.187487px;}
.x2a{left:136.275000px;}
.x5c{left:139.687487px;}
.x2b{left:142.575000px;}
.x2c{left:144.870000px;}
.x56{left:168.975000px;}
.x1b{left:171.225000px;}
.x50{left:174.600000px;}
.x25{left:181.125000px;}
.x57{left:189.000000px;}
.x32{left:197.145000px;}
.x5a{left:206.505000px;}
.x2d{left:210.405000px;}
.x4b{left:212.895000px;}
.x12{left:214.012500px;}
.x7{left:225.300000px;}
.x3c{left:226.425000px;}
.x34{left:234.300000px;}
.x46{left:242.175000px;}
.x3e{left:244.425000px;}
.x24{left:261.345000px;}
.x51{left:288.375000px;}
.xb{left:290.625000px;}
.x13{left:296.250000px;}
.x4c{left:301.875000px;}
.x38{left:303.000000px;}
.x36{left:325.545000px;}
.xe{left:327.787500px;}
.x1d{left:330.045000px;}
.x9{left:345.780000px;}
.x21{left:355.950000px;}
.x19{left:363.825000px;}
.xa{left:364.950000px;}
.x52{left:372.870000px;}
.xd{left:373.957500px;}
.x58{left:378.450000px;}
.x33{left:386.370000px;}
.x35{left:388.620000px;}
.x3f{left:393.120000px;}
.x4d{left:403.275000px;}
.x48{left:413.400000px;}
.x47{left:424.650000px;}
.x16{left:425.820000px;}
.x26{left:430.995000px;}
.x3d{left:433.695000px;}
.x22{left:447.195000px;}
.x1f{left:448.320000px;}
.xc{left:453.945000px;}
.x40{left:462.975000px;}
.x27{left:476.070000px;}
.x2f{left:487.770000px;}
.x43{left:510.270000px;}
.x39{left:515.925000px;}
.x53{left:522.675000px;}
.x4f{left:541.800000px;}
.x4a{left:549.720000px;}
.x1e{left:574.500000px;}
.x37{left:575.625000px;}
.x23{left:577.875000px;}
.x41{left:597.000000px;}
.x31{left:599.250000px;}
.x2e{left:600.375000px;}
.x45{left:613.905000px;}
.x3b{left:617.280000px;}
.x1a{left:622.905000px;}
.x17{left:648.825000px;}
.x54{left:671.370000px;}
.x4e{left:681.495000px;}
.x49{left:685.995000px;}
.x20{left:690.525000px;}
.x55{left:704.024987px;}
.x30{left:709.650000px;}
.x18{left:711.899987px;}
.x44{left:717.525000px;}
.x3a{left:719.820000px;}
.x42{left:725.445000px;}
.x3{left:746.820000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.173333pt;}
.v1{vertical-align:16.000000pt;}
.lsc{letter-spacing:-2.421333pt;}
.ls1e{letter-spacing:-1.546667pt;}
.ls1d{letter-spacing:-1.376000pt;}
.ls19{letter-spacing:-1.317333pt;}
.lsf{letter-spacing:-1.040000pt;}
.ls1f{letter-spacing:-1.002667pt;}
.ls1c{letter-spacing:-0.912000pt;}
.lsd{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.227733pt;}
.ls6{letter-spacing:0.248000pt;}
.ls7{letter-spacing:0.381333pt;}
.lse{letter-spacing:0.613333pt;}
.ls1a{letter-spacing:1.248000pt;}
.ls0{letter-spacing:1.312000pt;}
.ls23{letter-spacing:1.317333pt;}
.ls4{letter-spacing:1.482667pt;}
.ls3{letter-spacing:1.536000pt;}
.ls10{letter-spacing:1.544000pt;}
.ls5{letter-spacing:1.642667pt;}
.ls21{letter-spacing:1.701333pt;}
.ls2{letter-spacing:1.748000pt;}
.ls1{letter-spacing:1.801333pt;}
.ls1b{letter-spacing:1.924000pt;}
.ls11{letter-spacing:1.946667pt;}
.ls17{letter-spacing:1.989333pt;}
.ls18{letter-spacing:1.994667pt;}
.ls8{letter-spacing:2.000000pt;}
.ls22{letter-spacing:2.053333pt;}
.ls9{letter-spacing:2.064000pt;}
.ls25{letter-spacing:2.106667pt;}
.ls12{letter-spacing:2.133333pt;}
.ls27{letter-spacing:2.160000pt;}
.ls24{letter-spacing:2.453333pt;}
.ls20{letter-spacing:3.002667pt;}
.ls26{letter-spacing:13.677333pt;}
.ls15{letter-spacing:41.677333pt;}
.ls14{letter-spacing:57.677333pt;}
.ws10{word-spacing:-19.014133pt;}
.ws13{word-spacing:-15.453333pt;}
.ws8{word-spacing:-15.000000pt;}
.ws15{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws14{word-spacing:-14.317333pt;}
.ws2{word-spacing:-13.648000pt;}
.wsc{word-spacing:-13.227733pt;}
.ws7{word-spacing:-13.000000pt;}
.wsd{word-spacing:-12.088000pt;}
.wsf{word-spacing:-11.782133pt;}
.ws6{word-spacing:-11.752000pt;}
.ws11{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws12{word-spacing:-11.000000pt;}
.wsb{word-spacing:-10.994667pt;}
.wsa{word-spacing:-10.989333pt;}
.ws0{word-spacing:-10.512000pt;}
.wse{word-spacing:-10.376000pt;}
.ws5{word-spacing:-9.808000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._9{margin-left:-9.715333pt;}
._8{margin-left:-8.744933pt;}
._6{margin-left:-5.552667pt;}
._10{margin-left:-4.343200pt;}
._7{margin-left:-3.014400pt;}
._1{margin-left:-1.680000pt;}
._2{width:1.360000pt;}
._0{width:2.400000pt;}
._5{width:3.358667pt;}
._3{width:4.266667pt;}
._c{width:5.608000pt;}
._11{width:6.875733pt;}
._a{width:7.851733pt;}
._1a{width:8.784267pt;}
._4{width:9.685333pt;}
._e{width:10.885333pt;}
._14{width:11.788000pt;}
._12{width:12.992267pt;}
._b{width:14.450667pt;}
._d{width:15.771467pt;}
._13{width:16.758667pt;}
._19{width:18.159733pt;}
._f{width:19.161067pt;}
._15{width:22.521333pt;}
._18{width:23.762400pt;}
._16{width:26.581867pt;}
._1b{width:34.548000pt;}
._1c{width:35.748000pt;}
._1d{width:36.750400pt;}
._21{width:38.932000pt;}
._20{width:42.333333pt;}
._1f{width:43.329067pt;}
._1e{width:46.928000pt;}
._24{width:70.584000pt;}
._23{width:71.660000pt;}
._22{width:75.648800pt;}
._28{width:126.720533pt;}
._27{width:130.834400pt;}
._25{width:131.832000pt;}
._26{width:135.356000pt;}
._17{width:299.702400pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs8{font-size:52.133333pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.fs9{font-size:84.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y43{bottom:3.013333pt;}
.yb7{bottom:3.026667pt;}
.yd6{bottom:3.040000pt;}
.ydb{bottom:3.986667pt;}
.yfe{bottom:3.993333pt;}
.y8a{bottom:4.000000pt;}
.y109{bottom:4.013333pt;}
.yde{bottom:4.026667pt;}
.y1a{bottom:4.040000pt;}
.yc4{bottom:5.000000pt;}
.yae{bottom:7.040000pt;}
.y41{bottom:10.013333pt;}
.ye{bottom:10.026667pt;}
.y1c{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:17.000000pt;}
.y3e{bottom:19.000000pt;}
.ycf{bottom:19.013333pt;}
.yb3{bottom:19.026667pt;}
.yb1{bottom:19.040000pt;}
.yfc{bottom:19.993333pt;}
.y42{bottom:20.000000pt;}
.y12a{bottom:20.013333pt;}
.y12b{bottom:20.026667pt;}
.y108{bottom:20.040000pt;}
.y40{bottom:23.040000pt;}
.y19{bottom:26.040000pt;}
.yb{bottom:27.026667pt;}
.y2d{bottom:27.040000pt;}
.y140{bottom:31.026667pt;}
.yeb{bottom:31.040000pt;}
.yfa{bottom:32.040000pt;}
.y15d{bottom:35.026667pt;}
.y3d{bottom:35.040000pt;}
.y180{bottom:35.400000pt;}
.y11e{bottom:36.040000pt;}
.y2c{bottom:40.026667pt;}
.y18{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.ybd{bottom:46.626667pt;}
.y9a{bottom:47.026667pt;}
.y3c{bottom:50.040000pt;}
.y5{bottom:51.033333pt;}
.yee{bottom:51.040000pt;}
.y142{bottom:51.066667pt;}
.y17f{bottom:51.400000pt;}
.y17{bottom:55.066667pt;}
.y2b{bottom:56.040000pt;}
.ybc{bottom:58.226667pt;}
.y9{bottom:65.066667pt;}
.y112{bottom:68.066667pt;}
.y16{bottom:70.066667pt;}
.y1{bottom:72.066667pt;}
.ybb{bottom:74.226667pt;}
.y3b{bottom:81.066667pt;}
.y15{bottom:81.106667pt;}
.y8{bottom:83.066667pt;}
.y2a{bottom:87.066667pt;}
.y14{bottom:93.106667pt;}
.y3a{bottom:96.066667pt;}
.y7{bottom:98.093333pt;}
.ybe{bottom:98.600000pt;}
.y29{bottom:103.106667pt;}
.y13{bottom:106.106667pt;}
.yb8{bottom:109.100000pt;}
.y39{bottom:111.106667pt;}
.y91{bottom:112.100000pt;}
.y12d{bottom:113.100000pt;}
.y1c8{bottom:115.100000pt;}
.yfb{bottom:116.100000pt;}
.y19f{bottom:117.100000pt;}
.y28{bottom:118.106667pt;}
.y12{bottom:123.133333pt;}
.yb9{bottom:125.100000pt;}
.y38{bottom:127.106667pt;}
.y54{bottom:128.100000pt;}
.y12c{bottom:129.100000pt;}
.y1c7{bottom:131.100000pt;}
.yfd{bottom:132.100000pt;}
.y19e{bottom:133.100000pt;}
.y27{bottom:133.106667pt;}
.yb6{bottom:141.106667pt;}
.y37{bottom:142.133333pt;}
.y53{bottom:144.133333pt;}
.y11{bottom:146.133333pt;}
.yf9{bottom:148.133333pt;}
.y26{bottom:149.133333pt;}
.y17d{bottom:152.133333pt;}
.y36{bottom:157.133333pt;}
.y181{bottom:158.600000pt;}
.y52{bottom:159.133333pt;}
.y90{bottom:160.133333pt;}
.y153{bottom:161.133333pt;}
.y19d{bottom:163.133333pt;}
.y25{bottom:164.133333pt;}
.y131{bottom:164.160000pt;}
.y17c{bottom:167.133333pt;}
.ybf{bottom:167.933333pt;}
.y10{bottom:168.173333pt;}
.y35{bottom:173.133333pt;}
.y51{bottom:174.133333pt;}
.y8f{bottom:176.133333pt;}
.y154{bottom:177.133333pt;}
.y130{bottom:179.160000pt;}
.y19c{bottom:179.173333pt;}
.y24{bottom:180.173333pt;}
.y17b{bottom:183.173333pt;}
.yf8{bottom:184.173333pt;}
.y34{bottom:188.160000pt;}
.yb5{bottom:189.173333pt;}
.y50{bottom:190.173333pt;}
.y8e{bottom:192.173333pt;}
.y152{bottom:193.173333pt;}
.y19b{bottom:194.173333pt;}
.y23{bottom:195.173333pt;}
.y17a{bottom:198.173333pt;}
.yf7{bottom:199.173333pt;}
.y33{bottom:203.160000pt;}
.y4f{bottom:205.173333pt;}
.y1c6{bottom:207.173333pt;}
.y182{bottom:207.600000pt;}
.y8d{bottom:208.173333pt;}
.yc1{bottom:208.266667pt;}
.y19a{bottom:209.173333pt;}
.y22{bottom:211.200000pt;}
.y151{bottom:212.173333pt;}
.y179{bottom:213.173333pt;}
.yf6{bottom:214.173333pt;}
.y32{bottom:219.200000pt;}
.y4e{bottom:220.200000pt;}
.yb4{bottom:221.200000pt;}
.y1c5{bottom:223.200000pt;}
.y8c{bottom:224.200000pt;}
.yc0{bottom:224.266667pt;}
.y199{bottom:225.200000pt;}
.y21{bottom:226.200000pt;}
.yf5{bottom:227.200000pt;}
.y150{bottom:228.200000pt;}
.y178{bottom:229.200000pt;}
.y31{bottom:234.200000pt;}
.y4d{bottom:236.200000pt;}
.yb0{bottom:237.200000pt;}
.y1c4{bottom:238.200000pt;}
.y8b{bottom:240.200000pt;}
.y20{bottom:242.200000pt;}
.yf4{bottom:243.200000pt;}
.y177{bottom:244.200000pt;}
.y30{bottom:249.226667pt;}
.y4c{bottom:251.200000pt;}
.yb2{bottom:253.226667pt;}
.y1c3{bottom:253.240000pt;}
.y198{bottom:255.226667pt;}
.y89{bottom:256.226667pt;}
.yc2{bottom:256.866667pt;}
.y176{bottom:259.240000pt;}
.yf3{bottom:262.240000pt;}
.y2f{bottom:265.226667pt;}
.y1f{bottom:266.226667pt;}
.yaf{bottom:269.226667pt;}
.y197{bottom:271.240000pt;}
.yf2{bottom:275.226667pt;}
.y88{bottom:276.226667pt;}
.y2e{bottom:280.226667pt;}
.y1e{bottom:282.226667pt;}
.y1c2{bottom:284.226667pt;}
.yad{bottom:285.226667pt;}
.y196{bottom:286.240000pt;}
.y175{bottom:290.266667pt;}
.y87{bottom:291.266667pt;}
.y4b{bottom:297.266667pt;}
.y1c1{bottom:299.266667pt;}
.y129{bottom:301.266667pt;}
.yac{bottom:304.266667pt;}
.y174{bottom:305.266667pt;}
.y86{bottom:306.266667pt;}
.yed{bottom:307.266667pt;}
.y4a{bottom:312.266667pt;}
.y1c0{bottom:315.266667pt;}
.y195{bottom:317.266667pt;}
.yab{bottom:319.266667pt;}
.y14f{bottom:320.266667pt;}
.y128{bottom:321.266667pt;}
.y85{bottom:322.266667pt;}
.yf1{bottom:323.266667pt;}
.y49{bottom:328.306667pt;}
.y1bf{bottom:330.293333pt;}
.y194{bottom:332.293333pt;}
.yaa{bottom:335.293333pt;}
.y127{bottom:336.293333pt;}
.y84{bottom:337.306667pt;}
.yef{bottom:339.293333pt;}
.y48{bottom:343.306667pt;}
.y1be{bottom:345.293333pt;}
.y193{bottom:347.293333pt;}
.ya9{bottom:350.293333pt;}
.y126{bottom:351.293333pt;}
.y14e{bottom:352.293333pt;}
.y83{bottom:352.306667pt;}
.yf0{bottom:355.293333pt;}
.y47{bottom:358.306667pt;}
.y1bd{bottom:361.306667pt;}
.y192{bottom:363.293333pt;}
.y125{bottom:364.333333pt;}
.ya8{bottom:365.333333pt;}
.y173{bottom:367.333333pt;}
.y82{bottom:368.333333pt;}
.yea{bottom:371.333333pt;}
.y46{bottom:374.333333pt;}
.y1bc{bottom:376.333333pt;}
.y191{bottom:378.333333pt;}
.y124{bottom:380.333333pt;}
.ya7{bottom:381.333333pt;}
.y172{bottom:382.333333pt;}
.y81{bottom:384.333333pt;}
.yec{bottom:387.333333pt;}
.y45{bottom:389.333333pt;}
.y1bb{bottom:391.333333pt;}
.ya6{bottom:393.333333pt;}
.y171{bottom:397.333333pt;}
.y80{bottom:399.333333pt;}
.y14c{bottom:400.333333pt;}
.y44{bottom:404.360000pt;}
.ye9{bottom:406.373333pt;}
.y1ba{bottom:407.360000pt;}
.ya5{bottom:409.360000pt;}
.y190{bottom:409.373333pt;}
.y122{bottom:412.360000pt;}
.y170{bottom:413.360000pt;}
.y7f{bottom:414.373333pt;}
.y14d{bottom:416.360000pt;}
.y3f{bottom:417.360000pt;}
.ye8{bottom:422.360000pt;}
.y18f{bottom:424.373333pt;}
.y123{bottom:428.360000pt;}
.ya4{bottom:429.373333pt;}
.y7e{bottom:431.360000pt;}
.y14a{bottom:432.360000pt;}
.ye7{bottom:437.360000pt;}
.y18e{bottom:439.400000pt;}
.ya3{bottom:441.400000pt;}
.y16f{bottom:443.400000pt;}
.y11d{bottom:444.400000pt;}
.y7d{bottom:447.400000pt;}
.y14b{bottom:448.400000pt;}
.y1d{bottom:450.400000pt;}
.y1b9{bottom:453.400000pt;}
.y18d{bottom:455.400000pt;}
.ya2{bottom:457.400000pt;}
.y16e{bottom:459.400000pt;}
.y121{bottom:460.400000pt;}
.y7c{bottom:463.400000pt;}
.y102{bottom:466.400000pt;}
.y149{bottom:467.400000pt;}
.y1b8{bottom:468.400000pt;}
.y18c{bottom:470.400000pt;}
.ya1{bottom:473.400000pt;}
.y16d{bottom:474.400000pt;}
.y11f{bottom:476.426667pt;}
.y7b{bottom:480.440000pt;}
.y148{bottom:483.440000pt;}
.y18b{bottom:485.440000pt;}
.y16c{bottom:489.440000pt;}
.y120{bottom:492.426667pt;}
.ya0{bottom:493.426667pt;}
.ye6{bottom:494.440000pt;}
.y7a{bottom:495.440000pt;}
.y147{bottom:498.440000pt;}
.y1b7{bottom:499.426667pt;}
.y18a{bottom:501.440000pt;}
.y16b{bottom:505.426667pt;}
.y101{bottom:507.426667pt;}
.y9f{bottom:508.426667pt;}
.y79{bottom:511.426667pt;}
.y146{bottom:513.466667pt;}
.y1b6{bottom:514.466667pt;}
.y189{bottom:516.466667pt;}
.y16a{bottom:520.466667pt;}
.y9e{bottom:523.466667pt;}
.y11c{bottom:524.466667pt;}
.y156{bottom:526.466667pt;}
.y78{bottom:528.466667pt;}
.y1b5{bottom:529.466667pt;}
.y188{bottom:531.466667pt;}
.y169{bottom:535.466667pt;}
.yc5{bottom:536.466667pt;}
.y100{bottom:539.466667pt;}
.y155{bottom:542.466667pt;}
.y11b{bottom:543.466667pt;}
.y77{bottom:544.466667pt;}
.y1b4{bottom:545.466667pt;}
.y187{bottom:547.466667pt;}
.y168{bottom:551.506667pt;}
.yc3{bottom:554.506667pt;}
.yff{bottom:555.506667pt;}
.y76{bottom:559.506667pt;}
.y1b3{bottom:560.506667pt;}
.y186{bottom:562.506667pt;}
.y167{bottom:566.506667pt;}
.y145{bottom:573.506667pt;}
.y75{bottom:574.506667pt;}
.ye5{bottom:575.506667pt;}
.y185{bottom:577.506667pt;}
.y166{bottom:581.506667pt;}
.y144{bottom:586.506667pt;}
.y11a{bottom:587.533333pt;}
.y9d{bottom:589.533333pt;}
.ye4{bottom:590.533333pt;}
.y74{bottom:591.533333pt;}
.y184{bottom:593.533333pt;}
.y165{bottom:597.533333pt;}
.y99{bottom:602.533333pt;}
.y119{bottom:603.533333pt;}
.ye3{bottom:605.533333pt;}
.y1b2{bottom:606.533333pt;}
.y73{bottom:607.533333pt;}
.y183{bottom:608.533333pt;}
.y164{bottom:612.533333pt;}
.y9c{bottom:618.533333pt;}
.ye2{bottom:621.533333pt;}
.y118{bottom:622.533333pt;}
.y72{bottom:623.533333pt;}
.y163{bottom:627.573333pt;}
.ye1{bottom:633.560000pt;}
.y9b{bottom:634.560000pt;}
.y116{bottom:635.560000pt;}
.y1b1{bottom:637.560000pt;}
.y71{bottom:639.573333pt;}
.y162{bottom:643.560000pt;}
.ye0{bottom:649.560000pt;}
.y98{bottom:650.560000pt;}
.y117{bottom:651.560000pt;}
.y1b0{bottom:652.560000pt;}
.y70{bottom:654.573333pt;}
.y161{bottom:658.560000pt;}
.y143{bottom:666.600000pt;}
.y111{bottom:667.600000pt;}
.y6f{bottom:669.600000pt;}
.y160{bottom:673.600000pt;}
.ydf{bottom:681.600000pt;}
.y13f{bottom:682.600000pt;}
.y115{bottom:683.600000pt;}
.y6e{bottom:685.600000pt;}
.y15f{bottom:689.600000pt;}
.ydd{bottom:697.600000pt;}
.y141{bottom:698.626667pt;}
.y114{bottom:699.626667pt;}
.y6d{bottom:700.626667pt;}
.y15e{bottom:704.626667pt;}
.y97{bottom:712.626667pt;}
.ydc{bottom:713.626667pt;}
.yba{bottom:714.000000pt;}
.y6c{bottom:715.626667pt;}
.y13e{bottom:717.626667pt;}
.y15c{bottom:717.640000pt;}
.y1af{bottom:729.626667pt;}
.yda{bottom:729.640000pt;}
.y6b{bottom:731.626667pt;}
.y13d{bottom:733.626667pt;}
.y1b{bottom:742.666667pt;}
.y1ae{bottom:744.666667pt;}
.y6a{bottom:746.666667pt;}
.y113{bottom:747.666667pt;}
.y13c{bottom:748.666667pt;}
.yd9{bottom:749.666667pt;}
.y1ad{bottom:759.666667pt;}
.y69{bottom:761.666667pt;}
.y110{bottom:763.666667pt;}
.yd8{bottom:764.666667pt;}
.y15b{bottom:765.666667pt;}
.yf{bottom:768.666667pt;}
.y1ac{bottom:775.706667pt;}
.y68{bottom:777.706667pt;}
.yd7{bottom:779.706667pt;}
.y15a{bottom:784.706667pt;}
.y1ab{bottom:790.706667pt;}
.yd4{bottom:792.693333pt;}
.y67{bottom:792.706667pt;}
.y13b{bottom:796.706667pt;}
.y10f{bottom:798.706667pt;}
.y159{bottom:799.706667pt;}
.y1aa{bottom:805.706667pt;}
.y66{bottom:807.706667pt;}
.yd5{bottom:808.693333pt;}
.y139{bottom:809.733333pt;}
.y10e{bottom:813.733333pt;}
.y158{bottom:815.733333pt;}
.y1a9{bottom:821.733333pt;}
.y65{bottom:823.733333pt;}
.yd2{bottom:824.733333pt;}
.y13a{bottom:825.733333pt;}
.y157{bottom:827.733333pt;}
.y17e{bottom:828.000000pt;}
.y10d{bottom:829.733333pt;}
.y1a8{bottom:836.733333pt;}
.y64{bottom:838.733333pt;}
.yd3{bottom:840.733333pt;}
.y10b{bottom:841.733333pt;}
.y1a7{bottom:851.773333pt;}
.y63{bottom:853.773333pt;}
.yce{bottom:856.760000pt;}
.yd1{bottom:856.773333pt;}
.y10c{bottom:857.773333pt;}
.y1a6{bottom:867.773333pt;}
.y62{bottom:869.773333pt;}
.yd0{bottom:872.760000pt;}
.y107{bottom:873.760000pt;}
.y1a5{bottom:882.773333pt;}
.y61{bottom:884.800000pt;}
.ycc{bottom:888.800000pt;}
.y10a{bottom:889.800000pt;}
.y1a4{bottom:897.800000pt;}
.y60{bottom:899.800000pt;}
.ycd{bottom:904.800000pt;}
.y106{bottom:905.800000pt;}
.y1a3{bottom:913.800000pt;}
.y5f{bottom:915.800000pt;}
.yca{bottom:920.840000pt;}
.y138{bottom:921.840000pt;}
.y105{bottom:925.840000pt;}
.y1a2{bottom:928.840000pt;}
.y5e{bottom:930.840000pt;}
.ycb{bottom:936.840000pt;}
.y136{bottom:937.840000pt;}
.y104{bottom:940.840000pt;}
.y1a1{bottom:944.840000pt;}
.y5d{bottom:945.840000pt;}
.yd{bottom:949.840000pt;}
.yc8{bottom:952.840000pt;}
.y137{bottom:953.840000pt;}
.y103{bottom:955.840000pt;}
.y1a0{bottom:960.866667pt;}
.y5c{bottom:961.866667pt;}
.yc9{bottom:968.866667pt;}
.y134{bottom:969.866667pt;}
.y6{bottom:972.866667pt;}
.y5b{bottom:976.866667pt;}
.yc6{bottom:984.866667pt;}
.y135{bottom:985.866667pt;}
.y5a{bottom:991.866667pt;}
.yc7{bottom:1000.893333pt;}
.y132{bottom:1001.893333pt;}
.y96{bottom:1003.893333pt;}
.y59{bottom:1007.893333pt;}
.y95{bottom:1016.893333pt;}
.y133{bottom:1017.893333pt;}
.y58{bottom:1022.893333pt;}
.y94{bottom:1032.933333pt;}
.y12e{bottom:1033.933333pt;}
.y57{bottom:1037.933333pt;}
.y93{bottom:1048.933333pt;}
.y12f{bottom:1049.933333pt;}
.y56{bottom:1053.933333pt;}
.y92{bottom:1064.933333pt;}
.y55{bottom:1068.960000pt;}
.h2d{height:14.986667pt;}
.h22{height:15.000000pt;}
.h21{height:15.033333pt;}
.h31{height:15.986667pt;}
.h1f{height:16.000000pt;}
.h2e{height:16.020000pt;}
.h20{height:16.033333pt;}
.h2a{height:16.993333pt;}
.h2b{height:17.033333pt;}
.hb{height:23.033333pt;}
.h13{height:26.000000pt;}
.h2{height:29.000000pt;}
.h25{height:31.000000pt;}
.h2c{height:31.020000pt;}
.h24{height:31.033333pt;}
.h30{height:32.033333pt;}
.h8{height:33.000000pt;}
.h1c{height:33.033333pt;}
.h19{height:35.406250pt;}
.h1b{height:36.308594pt;}
.h1a{height:36.689453pt;}
.h18{height:36.791016pt;}
.h1e{height:37.857422pt;}
.hd{height:38.289062pt;}
.h4{height:38.625000pt;}
.ha{height:39.000000pt;}
.h3a{height:41.083385pt;}
.h1d{height:41.136719pt;}
.h39{height:41.190052pt;}
.h37{height:41.243385pt;}
.h38{height:41.296719pt;}
.h17{height:41.843750pt;}
.h16{height:43.763672pt;}
.h35{height:47.020000pt;}
.h23{height:47.033333pt;}
.h11{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h12{height:51.656250pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.h27{height:53.380664pt;}
.he{height:57.100000pt;}
.h28{height:58.417474pt;}
.h5{height:61.435547pt;}
.h33{height:63.033333pt;}
.h2f{height:63.066667pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h29{height:86.146289pt;}
.h32{height:95.066667pt;}
.h7{height:108.100000pt;}
.hc{height:181.173333pt;}
.h34{height:191.200000pt;}
.h36{height:238.000000pt;}
.h26{height:287.000000pt;}
.h15{height:292.266667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w39{width:72.100000pt;}
.w4b{width:75.100000pt;}
.w52{width:79.100000pt;}
.w18{width:80.100000pt;}
.w1c{width:83.100000pt;}
.w5c{width:84.100000pt;}
.w3d{width:84.133333pt;}
.w43{width:85.100000pt;}
.we{width:86.100000pt;}
.w2c{width:88.133333pt;}
.w56{width:89.100000pt;}
.w37{width:90.100000pt;}
.w28{width:90.133333pt;}
.w48{width:91.100000pt;}
.w47{width:91.133333pt;}
.w46{width:92.133333pt;}
.w40{width:95.133333pt;}
.w26{width:98.133333pt;}
.w25{width:99.100000pt;}
.w24{width:99.133333pt;}
.w1a{width:100.133333pt;}
.w57{width:101.133333pt;}
.w3f{width:107.133333pt;}
.w20{width:110.133333pt;}
.w42{width:113.166667pt;}
.w19{width:115.166667pt;}
.w16{width:116.133333pt;}
.w41{width:119.133333pt;}
.w50{width:120.133333pt;}
.w4f{width:120.166667pt;}
.w51{width:123.133333pt;}
.w55{width:124.166667pt;}
.w3c{width:131.166667pt;}
.w5a{width:132.166667pt;}
.w5b{width:133.166667pt;}
.w4{width:135.160000pt;}
.w2b{width:137.160000pt;}
.w2a{width:142.160000pt;}
.w49{width:149.160000pt;}
.w3b{width:151.160000pt;}
.wa{width:153.200000pt;}
.w4a{width:161.200000pt;}
.w1b{width:166.200000pt;}
.w27{width:167.200000pt;}
.wf{width:170.200000pt;}
.w5d{width:172.200000pt;}
.wd{width:176.240000pt;}
.w36{width:180.200000pt;}
.w45{width:183.226667pt;}
.w38{width:184.226667pt;}
.w58{width:190.240000pt;}
.w21{width:196.266667pt;}
.w23{width:197.226667pt;}
.w7{width:198.240000pt;}
.w34{width:203.240000pt;}
.w11{width:216.293333pt;}
.w2f{width:218.266667pt;}
.w12{width:219.266667pt;}
.w2e{width:221.293333pt;}
.w2d{width:223.266667pt;}
.w10{width:227.266667pt;}
.wc{width:230.293333pt;}
.w4e{width:241.306667pt;}
.w54{width:247.306667pt;}
.w17{width:250.306667pt;}
.wb{width:257.306667pt;}
.w59{width:265.333333pt;}
.w29{width:277.333333pt;}
.w32{width:280.333333pt;}
.w3e{width:283.333333pt;}
.w53{width:292.360000pt;}
.w4d{width:302.360000pt;}
.w4c{width:311.360000pt;}
.w9{width:312.360000pt;}
.w30{width:312.373333pt;}
.w3a{width:320.400000pt;}
.w14{width:331.440000pt;}
.w13{width:332.400000pt;}
.w1e{width:332.440000pt;}
.w31{width:351.440000pt;}
.w1f{width:356.426667pt;}
.w33{width:357.426667pt;}
.w22{width:368.466667pt;}
.w44{width:387.466667pt;}
.w35{width:392.506667pt;}
.w5e{width:457.000000pt;}
.w8{width:466.600000pt;}
.w1d{width:471.000000pt;}
.w5{width:529.666667pt;}
.w15{width:548.693333pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x14{left:11.040000pt;}
.x28{left:39.560000pt;}
.x29{left:53.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x10{left:90.100000pt;}
.xf{left:96.100000pt;}
.x5b{left:100.133322pt;}
.x11{left:102.100000pt;}
.x59{left:115.000000pt;}
.x15{left:120.166655pt;}
.x2a{left:121.133333pt;}
.x5c{left:124.166655pt;}
.x2b{left:126.733333pt;}
.x2c{left:128.773333pt;}
.x56{left:150.200000pt;}
.x1b{left:152.200000pt;}
.x50{left:155.200000pt;}
.x25{left:161.000000pt;}
.x57{left:168.000000pt;}
.x32{left:175.240000pt;}
.x5a{left:183.560000pt;}
.x2d{left:187.026667pt;}
.x4b{left:189.240000pt;}
.x12{left:190.233333pt;}
.x7{left:200.266667pt;}
.x3c{left:201.266667pt;}
.x34{left:208.266667pt;}
.x46{left:215.266667pt;}
.x3e{left:217.266667pt;}
.x24{left:232.306667pt;}
.x51{left:256.333333pt;}
.xb{left:258.333333pt;}
.x13{left:263.333333pt;}
.x4c{left:268.333333pt;}
.x38{left:269.333333pt;}
.x36{left:289.373333pt;}
.xe{left:291.366667pt;}
.x1d{left:293.373333pt;}
.x9{left:307.360000pt;}
.x21{left:316.400000pt;}
.x19{left:323.400000pt;}
.xa{left:324.400000pt;}
.x52{left:331.440000pt;}
.xd{left:332.406667pt;}
.x58{left:336.400000pt;}
.x33{left:343.440000pt;}
.x35{left:345.440000pt;}
.x3f{left:349.440000pt;}
.x4d{left:358.466667pt;}
.x48{left:367.466667pt;}
.x47{left:377.466667pt;}
.x16{left:378.506667pt;}
.x26{left:383.106667pt;}
.x3d{left:385.506667pt;}
.x22{left:397.506667pt;}
.x1f{left:398.506667pt;}
.xc{left:403.506667pt;}
.x40{left:411.533333pt;}
.x27{left:423.173333pt;}
.x2f{left:433.573333pt;}
.x43{left:453.573333pt;}
.x39{left:458.600000pt;}
.x53{left:464.600000pt;}
.x4f{left:481.600000pt;}
.x4a{left:488.640000pt;}
.x1e{left:510.666667pt;}
.x37{left:511.666667pt;}
.x23{left:513.666667pt;}
.x41{left:530.666667pt;}
.x31{left:532.666667pt;}
.x2e{left:533.666667pt;}
.x45{left:545.693333pt;}
.x3b{left:548.693333pt;}
.x1a{left:553.693333pt;}
.x17{left:576.733333pt;}
.x54{left:596.773333pt;}
.x4e{left:605.773333pt;}
.x49{left:609.773333pt;}
.x20{left:613.800000pt;}
.x55{left:625.799988pt;}
.x30{left:630.800000pt;}
.x18{left:632.799988pt;}
.x44{left:637.800000pt;}
.x3a{left:639.840000pt;}
.x42{left:644.840000pt;}
.x3{left:663.840000pt;}
}




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