
    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_de95c10806d782c7db5bd4fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.071777;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_596144bd436c14e662500be0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.773926;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_1b9d7120bd5f7f811162b68e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937012;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_cf694f1abb58cd1b462798aa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5aeed9b31fd5b79ab720f503.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_85e5d695ca18e82b58a410e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c5d90250d17be26cf7fc4742.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_46c53bd8d33ad45f1c0047a4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_de282e18b818cb3fb9388521.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937988;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_bacaabceeb06833bdc688700.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937988;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_cdd61e0cb7ab187c6f4914fb.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_86664cf181036811490d755a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_40c49a63c490ff73debce1c1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.759766;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_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.fff{font-family:fff;line-height:0.773926;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_c6762596012128aab1db5200.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.880000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-4.320000px;}
.lsd{letter-spacing:-2.880000px;}
.ls16{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.457800px;}
.ls2{letter-spacing:-0.351600px;}
.ls14{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.345600px;}
.ls10{letter-spacing:0.423360px;}
.ls6{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.535680px;}
.ls4{letter-spacing:0.708000px;}
.ls7{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.840000px;}
.ls13{letter-spacing:0.900000px;}
.ls12{letter-spacing:10.317600px;}
.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;}
}
.ws9{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.496000px;}
.ws7{word-spacing:-17.424000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.473600px;}
.wsd{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.122000px;}
.wsf{word-spacing:-16.102200px;}
.wsc{word-spacing:-15.140160px;}
.wsa{word-spacing:-15.120000px;}
.ws2{word-spacing:-13.074720px;}
.wse{word-spacing:-12.240000px;}
.ws4{word-spacing:0.000000px;}
._30{margin-left:-10.762560px;}
._28{margin-left:-8.805120px;}
._18{margin-left:-7.200000px;}
._16{margin-left:-6.048000px;}
._f{margin-left:-4.413120px;}
._2{margin-left:-2.728320px;}
._1{margin-left:-1.584000px;}
._0{width:1.152000px;}
._5{width:2.189760px;}
._b{width:3.869280px;}
._10{width:5.060160px;}
._a{width:6.380160px;}
._9{width:7.501920px;}
._8{width:8.539680px;}
._1c{width:9.561360px;}
._7{width:10.598640px;}
._19{width:12.600000px;}
._1b{width:13.827360px;}
._c{width:14.832960px;}
._1a{width:16.344000px;}
._2c{width:17.884800px;}
._1d{width:19.357440px;}
._d{width:20.666880px;}
._e{width:21.756480px;}
._11{width:22.990080px;}
._1f{width:24.035520px;}
._1e{width:25.056000px;}
._26{width:26.856000px;}
._15{width:28.656000px;}
._14{width:30.168000px;}
._17{width:31.176000px;}
._27{width:32.418240px;}
._22{width:33.480000px;}
._21{width:35.064000px;}
._23{width:36.088320px;}
._29{width:37.279680px;}
._20{width:38.448000px;}
._25{width:40.248000px;}
._24{width:41.256000px;}
._33{width:42.454080px;}
._39{width:48.288960px;}
._3c{width:56.436480px;}
._3b{width:57.682560px;}
._37{width:62.193600px;}
._38{width:64.619520px;}
._34{width:70.611840px;}
._35{width:71.726400px;}
._32{width:77.832000px;}
._31{width:79.156800px;}
._3a{width:84.606720px;}
._2d{width:86.494560px;}
._2f{width:88.954560px;}
._2e{width:90.279360px;}
._36{width:91.802880px;}
._2a{width:183.412800px;}
._2b{width:184.631520px;}
._3d{width:306.805920px;}
._3e{width:315.720480px;}
._13{width:395.333280px;}
._3{width:588.569760px;}
._4{width:1101.485760px;}
._6{width:1647.336000px;}
._12{width:2208.989280px;}
.fc8{color:rgb(5,99,193);}
.fc7{color:rgb(0,112,192);}
.fc9{color:rgb(0,102,33);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fcb{color:rgb(51,51,51);}
.fca{color:rgb(35,31,32);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(64,64,64);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(255,0,0);}
.fs6{font-size:2.880000px;}
.fs2{font-size:54.720000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:119.520000px;}
.ya{bottom:-4.680000px;}
.y35{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.880000px;}
.y16f{bottom:3.240000px;}
.y161{bottom:3.600000px;}
.y6b{bottom:3.960000px;}
.y6d{bottom:4.320000px;}
.y182{bottom:5.760000px;}
.y158{bottom:8.280000px;}
.y188{bottom:11.160000px;}
.y15c{bottom:12.240000px;}
.y174{bottom:12.270000px;}
.y178{bottom:12.600000px;}
.y17f{bottom:13.350000px;}
.yc6{bottom:14.400000px;}
.yf9{bottom:14.445000px;}
.y186{bottom:15.840000px;}
.y18f{bottom:16.965000px;}
.y18c{bottom:18.765000px;}
.y170{bottom:20.160000px;}
.y16e{bottom:20.520000px;}
.y15a{bottom:20.880000px;}
.y172{bottom:20.910000px;}
.y165{bottom:20.925000px;}
.y15e{bottom:21.240000px;}
.y169{bottom:21.285000px;}
.y17d{bottom:21.990000px;}
.y17b{bottom:22.320000px;}
.y181{bottom:23.070000px;}
.y184{bottom:24.480000px;}
.y118{bottom:24.834000px;}
.y6a{bottom:24.840000px;}
.y10d{bottom:24.870000px;}
.yf7{bottom:24.885000px;}
.y18a{bottom:27.405000px;}
.y187{bottom:28.440000px;}
.y16b{bottom:29.160000px;}
.y15b{bottom:29.520000px;}
.y173{bottom:29.550000px;}
.y167{bottom:29.565000px;}
.y176{bottom:29.880000px;}
.yd{bottom:30.600000px;}
.y17e{bottom:30.630000px;}
.y185{bottom:33.120000px;}
.y18e{bottom:34.245000px;}
.yf8{bottom:34.965000px;}
.y117{bottom:35.274000px;}
.yfe{bottom:35.280000px;}
.y10b{bottom:35.310000px;}
.y18b{bottom:36.045000px;}
.y16d{bottom:37.440000px;}
.y160{bottom:38.190000px;}
.y166{bottom:38.205000px;}
.y15d{bottom:38.520000px;}
.y162{bottom:38.550000px;}
.y168{bottom:38.565000px;}
.y17a{bottom:39.600000px;}
.y180{bottom:40.350000px;}
.y6f{bottom:45.360000px;}
.yfa{bottom:45.405000px;}
.y73{bottom:45.714000px;}
.y7a{bottom:45.720000px;}
.y10c{bottom:45.750000px;}
.y177{bottom:47.160000px;}
.y18d{bottom:51.525000px;}
.y16c{bottom:54.720000px;}
.yfd{bottom:55.800000px;}
.y113{bottom:55.830000px;}
.y115{bottom:56.160000px;}
.y106{bottom:56.190000px;}
.y104{bottom:56.205000px;}
.y179{bottom:56.880000px;}
.yb{bottom:57.240000px;}
.y72{bottom:66.234000px;}
.y79{bottom:66.240000px;}
.y109{bottom:66.270000px;}
.y103{bottom:66.285000px;}
.yff{bottom:76.680000px;}
.y112{bottom:76.710000px;}
.y9{bottom:83.556000px;}
.yfc{bottom:86.760000px;}
.y78{bottom:87.120000px;}
.y108{bottom:87.150000px;}
.y102{bottom:87.165000px;}
.y107{bottom:107.670000px;}
.y135{bottom:111.276000px;}
.yf5{bottom:113.076000px;}
.y71{bottom:114.156000px;}
.yc4{bottom:115.236000px;}
.y19d{bottom:117.756000px;}
.y1dc{bottom:120.276000px;}
.y68{bottom:122.076000px;}
.y155{bottom:127.476000px;}
.y111{bottom:128.550000px;}
.y1ab{bottom:129.276000px;}
.y116{bottom:130.356000px;}
.y134{bottom:132.156000px;}
.yf4{bottom:133.956000px;}
.yc3{bottom:136.116000px;}
.y19c{bottom:138.636000px;}
.y1af{bottom:138.996000px;}
.y32{bottom:139.356000px;}
.y67{bottom:142.956000px;}
.y154{bottom:148.356000px;}
.y1aa{bottom:150.150000px;}
.y20a{bottom:150.870000px;}
.y1a0{bottom:151.590000px;}
.y133{bottom:152.670000px;}
.yf3{bottom:154.470000px;}
.yc2{bottom:156.630000px;}
.y1db{bottom:158.070000px;}
.y19b{bottom:159.150000px;}
.y20b{bottom:160.950000px;}
.y66{bottom:163.470000px;}
.y31{bottom:167.790000px;}
.y153{bottom:168.870000px;}
.y209{bottom:169.950000px;}
.y1a9{bottom:170.670000px;}
.y19f{bottom:172.110000px;}
.y132{bottom:173.550000px;}
.yf2{bottom:175.350000px;}
.y1da{bottom:177.150000px;}
.yc1{bottom:177.510000px;}
.y1ae{bottom:178.950000px;}
.y19a{bottom:180.030000px;}
.ya0{bottom:180.390000px;}
.y65{bottom:184.350000px;}
.y208{bottom:189.030000px;}
.y152{bottom:189.750000px;}
.y1a8{bottom:191.550000px;}
.y19e{bottom:192.990000px;}
.y131{bottom:194.070000px;}
.yf1{bottom:195.870000px;}
.y30{bottom:196.230000px;}
.y70{bottom:197.715000px;}
.yc0{bottom:198.075000px;}
.y199{bottom:200.595000px;}
.y9f{bottom:201.315000px;}
.y64{bottom:204.915000px;}
.y207{bottom:207.795000px;}
.y151{bottom:210.315000px;}
.y1a7{bottom:212.115000px;}
.y114{bottom:213.915000px;}
.y130{bottom:214.995000px;}
.yf0{bottom:216.795000px;}
.ybf{bottom:218.955000px;}
.y2f{bottom:220.395000px;}
.y198{bottom:221.475000px;}
.y9e{bottom:221.835000px;}
.y63{bottom:225.795000px;}
.y206{bottom:226.875000px;}
.y150{bottom:231.195000px;}
.y1a6{bottom:232.995000px;}
.y1d9{bottom:234.075000px;}
.y12f{bottom:235.515000px;}
.yef{bottom:237.315000px;}
.ybe{bottom:239.475000px;}
.y6e{bottom:240.195000px;}
.y197{bottom:241.995000px;}
.y2e{bottom:242.355000px;}
.y9d{bottom:242.715000px;}
.y205{bottom:245.955000px;}
.y62{bottom:246.315000px;}
.y14f{bottom:251.715000px;}
.y1d8{bottom:253.155000px;}
.y1a5{bottom:253.515000px;}
.y12e{bottom:256.395000px;}
.yee{bottom:258.195000px;}
.y1ad{bottom:259.275000px;}
.ybd{bottom:260.355000px;}
.y196{bottom:262.875000px;}
.y9c{bottom:263.235000px;}
.y2d{bottom:264.315000px;}
.y204{bottom:265.035000px;}
.y61{bottom:267.195000px;}
.y1d7{bottom:271.875000px;}
.y14e{bottom:272.595000px;}
.y1a4{bottom:274.395000px;}
.y12d{bottom:276.915000px;}
.yed{bottom:278.715000px;}
.ybc{bottom:280.875000px;}
.y195{bottom:283.395000px;}
.y203{bottom:283.755000px;}
.y9b{bottom:284.115000px;}
.y2c{bottom:285.915000px;}
.y60{bottom:287.715000px;}
.y1d6{bottom:290.955000px;}
.y14d{bottom:293.115000px;}
.y12c{bottom:297.795000px;}
.y1ac{bottom:299.235000px;}
.yec{bottom:299.595000px;}
.ybb{bottom:301.755000px;}
.y6c{bottom:302.835000px;}
.y194{bottom:304.275000px;}
.y9a{bottom:304.635000px;}
.y1a3{bottom:306.795000px;}
.y2b{bottom:307.875000px;}
.y5f{bottom:308.595000px;}
.y1d5{bottom:310.035000px;}
.y14c{bottom:313.995000px;}
.y110{bottom:318.315000px;}
.yeb{bottom:320.115000px;}
.y202{bottom:321.915000px;}
.yba{bottom:322.275000px;}
.y69{bottom:324.465000px;}
.y193{bottom:324.825000px;}
.y99{bottom:325.545000px;}
.y1d4{bottom:328.785000px;}
.y5e{bottom:329.145000px;}
.y2a{bottom:329.505000px;}
.y14b{bottom:334.545000px;}
.y1a2{bottom:336.705000px;}
.y12b{bottom:339.225000px;}
.y201{bottom:340.665000px;}
.yea{bottom:341.025000px;}
.yb9{bottom:343.185000px;}
.y192{bottom:345.705000px;}
.y98{bottom:346.065000px;}
.y1d3{bottom:347.865000px;}
.y5d{bottom:350.025000px;}
.y29{bottom:351.465000px;}
.y1a1{bottom:353.625000px;}
.y14a{bottom:355.425000px;}
.y12a{bottom:359.745000px;}
.ye9{bottom:361.545000px;}
.yb8{bottom:363.705000px;}
.y191{bottom:366.225000px;}
.y97{bottom:366.945000px;}
.y5c{bottom:370.545000px;}
.y28{bottom:373.425000px;}
.y149{bottom:375.945000px;}
.y200{bottom:378.825000px;}
.y129{bottom:380.625000px;}
.ye8{bottom:382.425000px;}
.y190{bottom:383.505000px;}
.yb7{bottom:384.585000px;}
.y1d2{bottom:386.025000px;}
.y96{bottom:387.465000px;}
.y5b{bottom:391.425000px;}
.y27{bottom:395.025000px;}
.y148{bottom:396.825000px;}
.y1ff{bottom:397.545000px;}
.y128{bottom:401.145000px;}
.ye7{bottom:402.945000px;}
.y1d1{bottom:404.745000px;}
.yb6{bottom:405.105000px;}
.y95{bottom:408.345000px;}
.y5a{bottom:411.945000px;}
.y1fe{bottom:416.625000px;}
.y26{bottom:416.985000px;}
.y147{bottom:417.345000px;}
.y127{bottom:422.025000px;}
.ye6{bottom:423.825000px;}
.yb5{bottom:425.985000px;}
.y94{bottom:428.865000px;}
.y59{bottom:432.825000px;}
.y1fd{bottom:435.705000px;}
.y189{bottom:436.785000px;}
.y146{bottom:438.225000px;}
.y25{bottom:438.585000px;}
.y126{bottom:442.545000px;}
.y1d0{bottom:442.905000px;}
.ye5{bottom:444.345000px;}
.yb4{bottom:446.505000px;}
.y93{bottom:449.790000px;}
.y58{bottom:453.390000px;}
.y1fc{bottom:454.830000px;}
.y145{bottom:458.790000px;}
.y24{bottom:460.590000px;}
.y1cf{bottom:461.670000px;}
.y125{bottom:463.470000px;}
.y10f{bottom:464.190000px;}
.ye4{bottom:465.270000px;}
.yb3{bottom:467.430000px;}
.y92{bottom:470.310000px;}
.y1fb{bottom:473.550000px;}
.y57{bottom:474.270000px;}
.y144{bottom:479.670000px;}
.y1ce{bottom:480.750000px;}
.y23{bottom:482.550000px;}
.y124{bottom:483.990000px;}
.ye3{bottom:485.790000px;}
.yb2{bottom:487.950000px;}
.y91{bottom:491.190000px;}
.y1fa{bottom:492.630000px;}
.y56{bottom:494.790000px;}
.y1cd{bottom:499.830000px;}
.y143{bottom:500.190000px;}
.y183{bottom:503.070000px;}
.y22{bottom:504.150000px;}
.y123{bottom:504.870000px;}
.ye2{bottom:506.670000px;}
.yb1{bottom:508.830000px;}
.y90{bottom:511.710000px;}
.y55{bottom:515.670000px;}
.y1cc{bottom:518.550000px;}
.y142{bottom:521.070000px;}
.y122{bottom:525.390000px;}
.y21{bottom:526.110000px;}
.y10e{bottom:526.830000px;}
.ye1{bottom:527.190000px;}
.yb0{bottom:529.350000px;}
.y1f9{bottom:530.430000px;}
.y8f{bottom:532.590000px;}
.y54{bottom:536.190000px;}
.y1cb{bottom:537.630000px;}
.y141{bottom:541.590000px;}
.y121{bottom:546.270000px;}
.y20{bottom:547.710000px;}
.ye0{bottom:548.070000px;}
.y1f8{bottom:549.510000px;}
.yaf{bottom:550.230000px;}
.y8e{bottom:553.110000px;}
.y1ca{bottom:556.710000px;}
.y53{bottom:557.070000px;}
.y140{bottom:562.470000px;}
.y17c{bottom:563.550000px;}
.y120{bottom:566.790000px;}
.ydf{bottom:568.590000px;}
.y10a{bottom:568.950000px;}
.y1f{bottom:569.670000px;}
.yae{bottom:570.750000px;}
.y8d{bottom:573.990000px;}
.y1c9{bottom:575.820000px;}
.y52{bottom:577.620000px;}
.y13f{bottom:583.020000px;}
.y1f7{bottom:587.340000px;}
.y11f{bottom:587.700000px;}
.yde{bottom:589.500000px;}
.y1e{bottom:591.660000px;}
.y8c{bottom:594.540000px;}
.y51{bottom:598.500000px;}
.y13e{bottom:603.900000px;}
.y1f6{bottom:606.420000px;}
.y11e{bottom:608.220000px;}
.ydd{bottom:610.020000px;}
.yad{bottom:612.180000px;}
.y1d{bottom:613.260000px;}
.y1c8{bottom:613.620000px;}
.y8b{bottom:615.420000px;}
.y175{bottom:618.660000px;}
.y50{bottom:619.020000px;}
.y13d{bottom:624.420000px;}
.y1f5{bottom:625.500000px;}
.y11d{bottom:629.100000px;}
.ydc{bottom:630.900000px;}
.y1c7{bottom:632.700000px;}
.yac{bottom:633.060000px;}
.y1c{bottom:635.220000px;}
.y8a{bottom:635.940000px;}
.y4f{bottom:639.900000px;}
.y1f4{bottom:644.580000px;}
.y13c{bottom:645.300000px;}
.y11c{bottom:649.620000px;}
.ydb{bottom:651.420000px;}
.y105{bottom:652.500000px;}
.yab{bottom:653.580000px;}
.y89{bottom:656.820000px;}
.y1b{bottom:657.180000px;}
.y4e{bottom:660.420000px;}
.y1f3{bottom:663.300000px;}
.y13b{bottom:665.820000px;}
.y11b{bottom:670.500000px;}
.yda{bottom:672.300000px;}
.y1a{bottom:674.460000px;}
.y88{bottom:677.340000px;}
.y4d{bottom:681.300000px;}
.y1f2{bottom:682.380000px;}
.y13a{bottom:686.700000px;}
.y1c6{bottom:689.580000px;}
.y171{bottom:690.300000px;}
.y11a{bottom:691.020000px;}
.yd9{bottom:692.820000px;}
.y19{bottom:693.900000px;}
.yaa{bottom:694.980000px;}
.y87{bottom:698.220000px;}
.y1f1{bottom:701.490000px;}
.y4c{bottom:701.850000px;}
.y139{bottom:707.250000px;}
.y119{bottom:707.610000px;}
.y1c5{bottom:708.690000px;}
.yd8{bottom:713.730000px;}
.y18{bottom:715.530000px;}
.ya9{bottom:715.890000px;}
.y86{bottom:718.770000px;}
.y1f0{bottom:720.210000px;}
.y4b{bottom:722.730000px;}
.y1c4{bottom:727.410000px;}
.y138{bottom:728.130000px;}
.yd7{bottom:734.250000px;}
.ya8{bottom:736.410000px;}
.y17{bottom:737.490000px;}
.y1ef{bottom:739.290000px;}
.y85{bottom:739.650000px;}
.y4a{bottom:743.250000px;}
.y16a{bottom:743.610000px;}
.y1c3{bottom:746.490000px;}
.y137{bottom:748.650000px;}
.yd6{bottom:755.130000px;}
.ya7{bottom:757.290000px;}
.y1ee{bottom:758.370000px;}
.y16{bottom:759.450000px;}
.y84{bottom:760.170000px;}
.y49{bottom:764.130000px;}
.y136{bottom:765.210000px;}
.y1c2{bottom:765.570000px;}
.yd5{bottom:775.650000px;}
.y101{bottom:777.450000px;}
.ya6{bottom:777.810000px;}
.y15{bottom:781.050000px;}
.y1c1{bottom:784.290000px;}
.y48{bottom:784.650000px;}
.y1ed{bottom:796.170000px;}
.yd4{bottom:796.530000px;}
.ya5{bottom:798.690000px;}
.y83{bottom:801.570000px;}
.y14{bottom:803.010000px;}
.y1c0{bottom:803.370000px;}
.y47{bottom:805.530000px;}
.y164{bottom:813.090000px;}
.y1ec{bottom:815.250000px;}
.yd3{bottom:817.050000px;}
.ya4{bottom:819.210000px;}
.y82{bottom:822.450000px;}
.y13{bottom:824.970000px;}
.y46{bottom:826.050000px;}
.y1eb{bottom:834.375000px;}
.yd2{bottom:837.975000px;}
.ya3{bottom:840.135000px;}
.y1bf{bottom:841.215000px;}
.y81{bottom:843.015000px;}
.y12{bottom:846.615000px;}
.y45{bottom:846.975000px;}
.y1ea{bottom:853.095000px;}
.yd1{bottom:858.495000px;}
.y1be{bottom:860.295000px;}
.ya2{bottom:860.655000px;}
.y80{bottom:863.895000px;}
.y163{bottom:866.415000px;}
.y44{bottom:867.495000px;}
.y11{bottom:868.935000px;}
.y1e9{bottom:872.175000px;}
.yd0{bottom:875.775000px;}
.y1bd{bottom:879.375000px;}
.y100{bottom:881.895000px;}
.y7f{bottom:884.415000px;}
.y43{bottom:888.375000px;}
.ya1{bottom:889.455000px;}
.y1e8{bottom:891.255000px;}
.ycf{bottom:897.375000px;}
.y1bc{bottom:898.455000px;}
.y10{bottom:901.335000px;}
.y7e{bottom:905.295000px;}
.y42{bottom:908.895000px;}
.y1e7{bottom:909.975000px;}
.y1bb{bottom:917.175000px;}
.yce{bottom:918.615000px;}
.y15f{bottom:919.695000px;}
.y7d{bottom:925.815000px;}
.y1e6{bottom:929.055000px;}
.y41{bottom:929.775000px;}
.y1ba{bottom:936.255000px;}
.ycd{bottom:940.215000px;}
.yf{bottom:944.895000px;}
.y7c{bottom:946.695000px;}
.y1e5{bottom:948.135000px;}
.y40{bottom:950.295000px;}
.y1b9{bottom:955.365000px;}
.ycc{bottom:961.845000px;}
.yfb{bottom:965.445000px;}
.y7b{bottom:967.245000px;}
.y3f{bottom:971.205000px;}
.y159{bottom:973.005000px;}
.y1b8{bottom:974.085000px;}
.ye{bottom:979.845000px;}
.ycb{bottom:983.085000px;}
.y77{bottom:984.525000px;}
.y1e4{bottom:985.965000px;}
.y3e{bottom:991.725000px;}
.y1b7{bottom:993.165000px;}
.y8{bottom:1001.085000px;}
.yca{bottom:1004.685000px;}
.y1e3{bottom:1005.045000px;}
.y1b6{bottom:1012.245000px;}
.y3d{bottom:1012.605000px;}
.y7{bottom:1021.245000px;}
.y1e2{bottom:1024.125000px;}
.yc9{bottom:1025.925000px;}
.y157{bottom:1026.285000px;}
.y1b5{bottom:1030.965000px;}
.y3c{bottom:1033.125000px;}
.y1e1{bottom:1042.845000px;}
.yc8{bottom:1047.525000px;}
.y1b4{bottom:1050.045000px;}
.y6{bottom:1051.485000px;}
.y3b{bottom:1054.005000px;}
.y1e0{bottom:1061.925000px;}
.y156{bottom:1065.165000px;}
.yc7{bottom:1068.765000px;}
.y1b3{bottom:1069.125000px;}
.yf6{bottom:1069.845000px;}
.y3a{bottom:1074.525000px;}
.y5{bottom:1075.245000px;}
.y1df{bottom:1081.050000px;}
.y1b2{bottom:1088.250000px;}
.y76{bottom:1088.970000px;}
.yc5{bottom:1090.410000px;}
.y39{bottom:1095.450000px;}
.y1de{bottom:1099.770000px;}
.y1b1{bottom:1106.970000px;}
.y75{bottom:1110.210000px;}
.y38{bottom:1115.970000px;}
.y1dd{bottom:1118.850000px;}
.y4{bottom:1129.290000px;}
.y74{bottom:1131.810000px;}
.y37{bottom:1136.850000px;}
.y1b0{bottom:1137.930000px;}
.y3{bottom:1146.930000px;}
.y36{bottom:1157.730000px;}
.y2{bottom:1168.530000px;}
.y34{bottom:1173.570000px;}
.y1{bottom:1190.490000px;}
.y33{bottom:1193.730000px;}
.h6{height:7.920000px;}
.hf{height:8.640000px;}
.h8{height:15.516000px;}
.h18{height:20.520000px;}
.h1b{height:20.556000px;}
.h17{height:20.880000px;}
.h14{height:20.916000px;}
.h22{height:22.320000px;}
.hd{height:38.608594px;}
.h13{height:41.400000px;}
.h4{height:41.547656px;}
.h23{height:42.672656px;}
.hb{height:46.736719px;}
.h7{height:49.055625px;}
.h9{height:50.800781px;}
.h12{height:51.996094px;}
.h24{height:52.560000px;}
.h26{height:52.596000px;}
.h3{height:52.686563px;}
.h25{height:54.219375px;}
.h29{height:54.396000px;}
.h10{height:54.426094px;}
.h1a{height:59.343750px;}
.hc{height:59.383125px;}
.h2a{height:59.760000px;}
.h2{height:59.871094px;}
.h15{height:61.920000px;}
.h1c{height:61.956000px;}
.h11{height:64.546875px;}
.h2b{height:65.556000px;}
.h5{height:65.884219px;}
.he{height:67.824844px;}
.h27{height:68.760000px;}
.h28{height:70.920000px;}
.h16{height:82.800000px;}
.h1e{height:82.836000px;}
.ha{height:84.329297px;}
.h1d{height:103.320000px;}
.h21{height:103.680000px;}
.h19{height:103.716000px;}
.h1f{height:124.236000px;}
.h20{height:145.152000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:48.276000px;}
.we{width:57.636000px;}
.w19{width:63.396000px;}
.w9{width:75.636000px;}
.w14{width:82.476000px;}
.w13{width:85.356000px;}
.w10{width:98.316000px;}
.w16{width:99.396000px;}
.w12{width:101.556000px;}
.w11{width:107.676000px;}
.w6{width:118.836000px;}
.wb{width:122.796000px;}
.wc{width:127.116000px;}
.wd{width:127.476000px;}
.wf{width:131.796000px;}
.w18{width:148.752000px;}
.wa{width:177.555000px;}
.w7{width:198.435000px;}
.w17{width:307.905000px;}
.w4{width:338.910000px;}
.w3{width:341.790000px;}
.w8{width:434.340000px;}
.w5{width:618.735000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x11{left:7.605000px;}
.x4{left:8.640000px;}
.x2d{left:11.520000px;}
.x2f{left:13.320000px;}
.x27{left:14.760000px;}
.x15{left:16.560000px;}
.x32{left:17.640000px;}
.x1f{left:20.520000px;}
.x34{left:21.960000px;}
.x1c{left:23.040000px;}
.x22{left:25.200000px;}
.x31{left:27.045000px;}
.x25{left:28.836000px;}
.x1d{left:30.240000px;}
.x1a{left:31.680000px;}
.x1e{left:33.156000px;}
.x33{left:34.200000px;}
.x18{left:37.470000px;}
.x30{left:41.400000px;}
.x2e{left:43.200000px;}
.x24{left:45.360000px;}
.x20{left:49.680000px;}
.x23{left:54.390000px;}
.x21{left:59.070000px;}
.xd{left:77.796000px;}
.x1{left:106.235987px;}
.x8{left:137.231987px;}
.xf{left:148.751987px;}
.x7{left:152.354987px;}
.x39{left:155.595000px;}
.x26{left:164.955000px;}
.x16{left:183.315000px;}
.x14{left:184.394987px;}
.xc{left:194.834987px;}
.xa{left:226.544987px;}
.x2{left:228.344987px;}
.x3a{left:255.345000px;}
.x37{left:287.024987px;}
.x28{left:297.465000px;}
.x6{left:303.270000px;}
.x10{left:306.105000px;}
.x42{left:309.029987px;}
.x40{left:310.109987px;}
.x3e{left:324.509987px;}
.x36{left:330.989987px;}
.xb{left:359.069987px;}
.x17{left:361.590000px;}
.x9{left:395.429987px;}
.x29{left:396.540000px;}
.x12{left:426.059987px;}
.x3{left:446.579987px;}
.x5{left:448.020000px;}
.x19{left:485.130000px;}
.x2a{left:504.930000px;}
.x3b{left:563.610000px;}
.x2b{left:607.215000px;}
.x1b{left:612.975000px;}
.x2c{left:693.285000px;}
.xe{left:696.525000px;}
.x3d{left:711.644987px;}
.x3c{left:712.725000px;}
.x3f{left:724.964987px;}
.x35{left:740.804987px;}
.x41{left:741.884987px;}
.x38{left:786.929987px;}
.x13{left:808.529987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-3.840000pt;}
.lsd{letter-spacing:-2.560000pt;}
.ls16{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.406933pt;}
.ls2{letter-spacing:-0.312533pt;}
.ls14{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.307200pt;}
.ls10{letter-spacing:0.376320pt;}
.ls6{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.476160pt;}
.ls4{letter-spacing:0.629333pt;}
.ls7{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.746667pt;}
.ls13{letter-spacing:0.800000pt;}
.ls12{letter-spacing:9.171200pt;}
.ws9{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.552000pt;}
.ws7{word-spacing:-15.488000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.643200pt;}
.wsd{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.330667pt;}
.wsf{word-spacing:-14.313067pt;}
.wsc{word-spacing:-13.457920pt;}
.wsa{word-spacing:-13.440000pt;}
.ws2{word-spacing:-11.621973pt;}
.wse{word-spacing:-10.880000pt;}
.ws4{word-spacing:0.000000pt;}
._30{margin-left:-9.566720pt;}
._28{margin-left:-7.826773pt;}
._18{margin-left:-6.400000pt;}
._16{margin-left:-5.376000pt;}
._f{margin-left:-3.922773pt;}
._2{margin-left:-2.425173pt;}
._1{margin-left:-1.408000pt;}
._0{width:1.024000pt;}
._5{width:1.946453pt;}
._b{width:3.439360pt;}
._10{width:4.497920pt;}
._a{width:5.671253pt;}
._9{width:6.668373pt;}
._8{width:7.590827pt;}
._1c{width:8.498987pt;}
._7{width:9.421013pt;}
._19{width:11.200000pt;}
._1b{width:12.290987pt;}
._c{width:13.184853pt;}
._1a{width:14.528000pt;}
._2c{width:15.897600pt;}
._1d{width:17.206613pt;}
._d{width:18.370560pt;}
._e{width:19.339093pt;}
._11{width:20.435627pt;}
._1f{width:21.364907pt;}
._1e{width:22.272000pt;}
._26{width:23.872000pt;}
._15{width:25.472000pt;}
._14{width:26.816000pt;}
._17{width:27.712000pt;}
._27{width:28.816213pt;}
._22{width:29.760000pt;}
._21{width:31.168000pt;}
._23{width:32.078507pt;}
._29{width:33.137493pt;}
._20{width:34.176000pt;}
._25{width:35.776000pt;}
._24{width:36.672000pt;}
._33{width:37.736960pt;}
._39{width:42.923520pt;}
._3c{width:50.165760pt;}
._3b{width:51.273387pt;}
._37{width:55.283200pt;}
._38{width:57.439573pt;}
._34{width:62.766080pt;}
._35{width:63.756800pt;}
._32{width:69.184000pt;}
._31{width:70.361600pt;}
._3a{width:75.205973pt;}
._2d{width:76.884053pt;}
._2f{width:79.070720pt;}
._2e{width:80.248320pt;}
._36{width:81.602560pt;}
._2a{width:163.033600pt;}
._2b{width:164.116907pt;}
._3d{width:272.716373pt;}
._3e{width:280.640427pt;}
._13{width:351.407360pt;}
._3{width:523.173120pt;}
._4{width:979.098453pt;}
._6{width:1464.298667pt;}
._12{width:1963.546027pt;}
.fs6{font-size:2.560000pt;}
.fs2{font-size:48.640000pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:106.240000pt;}
.ya{bottom:-4.160000pt;}
.y35{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.560000pt;}
.y16f{bottom:2.880000pt;}
.y161{bottom:3.200000pt;}
.y6b{bottom:3.520000pt;}
.y6d{bottom:3.840000pt;}
.y182{bottom:5.120000pt;}
.y158{bottom:7.360000pt;}
.y188{bottom:9.920000pt;}
.y15c{bottom:10.880000pt;}
.y174{bottom:10.906667pt;}
.y178{bottom:11.200000pt;}
.y17f{bottom:11.866667pt;}
.yc6{bottom:12.800000pt;}
.yf9{bottom:12.840000pt;}
.y186{bottom:14.080000pt;}
.y18f{bottom:15.080000pt;}
.y18c{bottom:16.680000pt;}
.y170{bottom:17.920000pt;}
.y16e{bottom:18.240000pt;}
.y15a{bottom:18.560000pt;}
.y172{bottom:18.586667pt;}
.y165{bottom:18.600000pt;}
.y15e{bottom:18.880000pt;}
.y169{bottom:18.920000pt;}
.y17d{bottom:19.546667pt;}
.y17b{bottom:19.840000pt;}
.y181{bottom:20.506667pt;}
.y184{bottom:21.760000pt;}
.y118{bottom:22.074667pt;}
.y6a{bottom:22.080000pt;}
.y10d{bottom:22.106667pt;}
.yf7{bottom:22.120000pt;}
.y18a{bottom:24.360000pt;}
.y187{bottom:25.280000pt;}
.y16b{bottom:25.920000pt;}
.y15b{bottom:26.240000pt;}
.y173{bottom:26.266667pt;}
.y167{bottom:26.280000pt;}
.y176{bottom:26.560000pt;}
.yd{bottom:27.200000pt;}
.y17e{bottom:27.226667pt;}
.y185{bottom:29.440000pt;}
.y18e{bottom:30.440000pt;}
.yf8{bottom:31.080000pt;}
.y117{bottom:31.354667pt;}
.yfe{bottom:31.360000pt;}
.y10b{bottom:31.386667pt;}
.y18b{bottom:32.040000pt;}
.y16d{bottom:33.280000pt;}
.y160{bottom:33.946667pt;}
.y166{bottom:33.960000pt;}
.y15d{bottom:34.240000pt;}
.y162{bottom:34.266667pt;}
.y168{bottom:34.280000pt;}
.y17a{bottom:35.200000pt;}
.y180{bottom:35.866667pt;}
.y6f{bottom:40.320000pt;}
.yfa{bottom:40.360000pt;}
.y73{bottom:40.634667pt;}
.y7a{bottom:40.640000pt;}
.y10c{bottom:40.666667pt;}
.y177{bottom:41.920000pt;}
.y18d{bottom:45.800000pt;}
.y16c{bottom:48.640000pt;}
.yfd{bottom:49.600000pt;}
.y113{bottom:49.626667pt;}
.y115{bottom:49.920000pt;}
.y106{bottom:49.946667pt;}
.y104{bottom:49.960000pt;}
.y179{bottom:50.560000pt;}
.yb{bottom:50.880000pt;}
.y72{bottom:58.874667pt;}
.y79{bottom:58.880000pt;}
.y109{bottom:58.906667pt;}
.y103{bottom:58.920000pt;}
.yff{bottom:68.160000pt;}
.y112{bottom:68.186667pt;}
.y9{bottom:74.272000pt;}
.yfc{bottom:77.120000pt;}
.y78{bottom:77.440000pt;}
.y108{bottom:77.466667pt;}
.y102{bottom:77.480000pt;}
.y107{bottom:95.706667pt;}
.y135{bottom:98.912000pt;}
.yf5{bottom:100.512000pt;}
.y71{bottom:101.472000pt;}
.yc4{bottom:102.432000pt;}
.y19d{bottom:104.672000pt;}
.y1dc{bottom:106.912000pt;}
.y68{bottom:108.512000pt;}
.y155{bottom:113.312000pt;}
.y111{bottom:114.266667pt;}
.y1ab{bottom:114.912000pt;}
.y116{bottom:115.872000pt;}
.y134{bottom:117.472000pt;}
.yf4{bottom:119.072000pt;}
.yc3{bottom:120.992000pt;}
.y19c{bottom:123.232000pt;}
.y1af{bottom:123.552000pt;}
.y32{bottom:123.872000pt;}
.y67{bottom:127.072000pt;}
.y154{bottom:131.872000pt;}
.y1aa{bottom:133.466667pt;}
.y20a{bottom:134.106667pt;}
.y1a0{bottom:134.746667pt;}
.y133{bottom:135.706667pt;}
.yf3{bottom:137.306667pt;}
.yc2{bottom:139.226667pt;}
.y1db{bottom:140.506667pt;}
.y19b{bottom:141.466667pt;}
.y20b{bottom:143.066667pt;}
.y66{bottom:145.306667pt;}
.y31{bottom:149.146667pt;}
.y153{bottom:150.106667pt;}
.y209{bottom:151.066667pt;}
.y1a9{bottom:151.706667pt;}
.y19f{bottom:152.986667pt;}
.y132{bottom:154.266667pt;}
.yf2{bottom:155.866667pt;}
.y1da{bottom:157.466667pt;}
.yc1{bottom:157.786667pt;}
.y1ae{bottom:159.066667pt;}
.y19a{bottom:160.026667pt;}
.ya0{bottom:160.346667pt;}
.y65{bottom:163.866667pt;}
.y208{bottom:168.026667pt;}
.y152{bottom:168.666667pt;}
.y1a8{bottom:170.266667pt;}
.y19e{bottom:171.546667pt;}
.y131{bottom:172.506667pt;}
.yf1{bottom:174.106667pt;}
.y30{bottom:174.426667pt;}
.y70{bottom:175.746667pt;}
.yc0{bottom:176.066667pt;}
.y199{bottom:178.306667pt;}
.y9f{bottom:178.946667pt;}
.y64{bottom:182.146667pt;}
.y207{bottom:184.706667pt;}
.y151{bottom:186.946667pt;}
.y1a7{bottom:188.546667pt;}
.y114{bottom:190.146667pt;}
.y130{bottom:191.106667pt;}
.yf0{bottom:192.706667pt;}
.ybf{bottom:194.626667pt;}
.y2f{bottom:195.906667pt;}
.y198{bottom:196.866667pt;}
.y9e{bottom:197.186667pt;}
.y63{bottom:200.706667pt;}
.y206{bottom:201.666667pt;}
.y150{bottom:205.506667pt;}
.y1a6{bottom:207.106667pt;}
.y1d9{bottom:208.066667pt;}
.y12f{bottom:209.346667pt;}
.yef{bottom:210.946667pt;}
.ybe{bottom:212.866667pt;}
.y6e{bottom:213.506667pt;}
.y197{bottom:215.106667pt;}
.y2e{bottom:215.426667pt;}
.y9d{bottom:215.746667pt;}
.y205{bottom:218.626667pt;}
.y62{bottom:218.946667pt;}
.y14f{bottom:223.746667pt;}
.y1d8{bottom:225.026667pt;}
.y1a5{bottom:225.346667pt;}
.y12e{bottom:227.906667pt;}
.yee{bottom:229.506667pt;}
.y1ad{bottom:230.466667pt;}
.ybd{bottom:231.426667pt;}
.y196{bottom:233.666667pt;}
.y9c{bottom:233.986667pt;}
.y2d{bottom:234.946667pt;}
.y204{bottom:235.586667pt;}
.y61{bottom:237.506667pt;}
.y1d7{bottom:241.666667pt;}
.y14e{bottom:242.306667pt;}
.y1a4{bottom:243.906667pt;}
.y12d{bottom:246.146667pt;}
.yed{bottom:247.746667pt;}
.ybc{bottom:249.666667pt;}
.y195{bottom:251.906667pt;}
.y203{bottom:252.226667pt;}
.y9b{bottom:252.546667pt;}
.y2c{bottom:254.146667pt;}
.y60{bottom:255.746667pt;}
.y1d6{bottom:258.626667pt;}
.y14d{bottom:260.546667pt;}
.y12c{bottom:264.706667pt;}
.y1ac{bottom:265.986667pt;}
.yec{bottom:266.306667pt;}
.ybb{bottom:268.226667pt;}
.y6c{bottom:269.186667pt;}
.y194{bottom:270.466667pt;}
.y9a{bottom:270.786667pt;}
.y1a3{bottom:272.706667pt;}
.y2b{bottom:273.666667pt;}
.y5f{bottom:274.306667pt;}
.y1d5{bottom:275.586667pt;}
.y14c{bottom:279.106667pt;}
.y110{bottom:282.946667pt;}
.yeb{bottom:284.546667pt;}
.y202{bottom:286.146667pt;}
.yba{bottom:286.466667pt;}
.y69{bottom:288.413333pt;}
.y193{bottom:288.733333pt;}
.y99{bottom:289.373333pt;}
.y1d4{bottom:292.253333pt;}
.y5e{bottom:292.573333pt;}
.y2a{bottom:292.893333pt;}
.y14b{bottom:297.373333pt;}
.y1a2{bottom:299.293333pt;}
.y12b{bottom:301.533333pt;}
.y201{bottom:302.813333pt;}
.yea{bottom:303.133333pt;}
.yb9{bottom:305.053333pt;}
.y192{bottom:307.293333pt;}
.y98{bottom:307.613333pt;}
.y1d3{bottom:309.213333pt;}
.y5d{bottom:311.133333pt;}
.y29{bottom:312.413333pt;}
.y1a1{bottom:314.333333pt;}
.y14a{bottom:315.933333pt;}
.y12a{bottom:319.773333pt;}
.ye9{bottom:321.373333pt;}
.yb8{bottom:323.293333pt;}
.y191{bottom:325.533333pt;}
.y97{bottom:326.173333pt;}
.y5c{bottom:329.373333pt;}
.y28{bottom:331.933333pt;}
.y149{bottom:334.173333pt;}
.y200{bottom:336.733333pt;}
.y129{bottom:338.333333pt;}
.ye8{bottom:339.933333pt;}
.y190{bottom:340.893333pt;}
.yb7{bottom:341.853333pt;}
.y1d2{bottom:343.133333pt;}
.y96{bottom:344.413333pt;}
.y5b{bottom:347.933333pt;}
.y27{bottom:351.133333pt;}
.y148{bottom:352.733333pt;}
.y1ff{bottom:353.373333pt;}
.y128{bottom:356.573333pt;}
.ye7{bottom:358.173333pt;}
.y1d1{bottom:359.773333pt;}
.yb6{bottom:360.093333pt;}
.y95{bottom:362.973333pt;}
.y5a{bottom:366.173333pt;}
.y1fe{bottom:370.333333pt;}
.y26{bottom:370.653333pt;}
.y147{bottom:370.973333pt;}
.y127{bottom:375.133333pt;}
.ye6{bottom:376.733333pt;}
.yb5{bottom:378.653333pt;}
.y94{bottom:381.213333pt;}
.y59{bottom:384.733333pt;}
.y1fd{bottom:387.293333pt;}
.y189{bottom:388.253333pt;}
.y146{bottom:389.533333pt;}
.y25{bottom:389.853333pt;}
.y126{bottom:393.373333pt;}
.y1d0{bottom:393.693333pt;}
.ye5{bottom:394.973333pt;}
.yb4{bottom:396.893333pt;}
.y93{bottom:399.813333pt;}
.y58{bottom:403.013333pt;}
.y1fc{bottom:404.293333pt;}
.y145{bottom:407.813333pt;}
.y24{bottom:409.413333pt;}
.y1cf{bottom:410.373333pt;}
.y125{bottom:411.973333pt;}
.y10f{bottom:412.613333pt;}
.ye4{bottom:413.573333pt;}
.yb3{bottom:415.493333pt;}
.y92{bottom:418.053333pt;}
.y1fb{bottom:420.933333pt;}
.y57{bottom:421.573333pt;}
.y144{bottom:426.373333pt;}
.y1ce{bottom:427.333333pt;}
.y23{bottom:428.933333pt;}
.y124{bottom:430.213333pt;}
.ye3{bottom:431.813333pt;}
.yb2{bottom:433.733333pt;}
.y91{bottom:436.613333pt;}
.y1fa{bottom:437.893333pt;}
.y56{bottom:439.813333pt;}
.y1cd{bottom:444.293333pt;}
.y143{bottom:444.613333pt;}
.y183{bottom:447.173333pt;}
.y22{bottom:448.133333pt;}
.y123{bottom:448.773333pt;}
.ye2{bottom:450.373333pt;}
.yb1{bottom:452.293333pt;}
.y90{bottom:454.853333pt;}
.y55{bottom:458.373333pt;}
.y1cc{bottom:460.933333pt;}
.y142{bottom:463.173333pt;}
.y122{bottom:467.013333pt;}
.y21{bottom:467.653333pt;}
.y10e{bottom:468.293333pt;}
.ye1{bottom:468.613333pt;}
.yb0{bottom:470.533333pt;}
.y1f9{bottom:471.493333pt;}
.y8f{bottom:473.413333pt;}
.y54{bottom:476.613333pt;}
.y1cb{bottom:477.893333pt;}
.y141{bottom:481.413333pt;}
.y121{bottom:485.573333pt;}
.y20{bottom:486.853333pt;}
.ye0{bottom:487.173333pt;}
.y1f8{bottom:488.453333pt;}
.yaf{bottom:489.093333pt;}
.y8e{bottom:491.653333pt;}
.y1ca{bottom:494.853333pt;}
.y53{bottom:495.173333pt;}
.y140{bottom:499.973333pt;}
.y17c{bottom:500.933333pt;}
.y120{bottom:503.813333pt;}
.ydf{bottom:505.413333pt;}
.y10a{bottom:505.733333pt;}
.y1f{bottom:506.373333pt;}
.yae{bottom:507.333333pt;}
.y8d{bottom:510.213333pt;}
.y1c9{bottom:511.840000pt;}
.y52{bottom:513.440000pt;}
.y13f{bottom:518.240000pt;}
.y1f7{bottom:522.080000pt;}
.y11f{bottom:522.400000pt;}
.yde{bottom:524.000000pt;}
.y1e{bottom:525.920000pt;}
.y8c{bottom:528.480000pt;}
.y51{bottom:532.000000pt;}
.y13e{bottom:536.800000pt;}
.y1f6{bottom:539.040000pt;}
.y11e{bottom:540.640000pt;}
.ydd{bottom:542.240000pt;}
.yad{bottom:544.160000pt;}
.y1d{bottom:545.120000pt;}
.y1c8{bottom:545.440000pt;}
.y8b{bottom:547.040000pt;}
.y175{bottom:549.920000pt;}
.y50{bottom:550.240000pt;}
.y13d{bottom:555.040000pt;}
.y1f5{bottom:556.000000pt;}
.y11d{bottom:559.200000pt;}
.ydc{bottom:560.800000pt;}
.y1c7{bottom:562.400000pt;}
.yac{bottom:562.720000pt;}
.y1c{bottom:564.640000pt;}
.y8a{bottom:565.280000pt;}
.y4f{bottom:568.800000pt;}
.y1f4{bottom:572.960000pt;}
.y13c{bottom:573.600000pt;}
.y11c{bottom:577.440000pt;}
.ydb{bottom:579.040000pt;}
.y105{bottom:580.000000pt;}
.yab{bottom:580.960000pt;}
.y89{bottom:583.840000pt;}
.y1b{bottom:584.160000pt;}
.y4e{bottom:587.040000pt;}
.y1f3{bottom:589.600000pt;}
.y13b{bottom:591.840000pt;}
.y11b{bottom:596.000000pt;}
.yda{bottom:597.600000pt;}
.y1a{bottom:599.520000pt;}
.y88{bottom:602.080000pt;}
.y4d{bottom:605.600000pt;}
.y1f2{bottom:606.560000pt;}
.y13a{bottom:610.400000pt;}
.y1c6{bottom:612.960000pt;}
.y171{bottom:613.600000pt;}
.y11a{bottom:614.240000pt;}
.yd9{bottom:615.840000pt;}
.y19{bottom:616.800000pt;}
.yaa{bottom:617.760000pt;}
.y87{bottom:620.640000pt;}
.y1f1{bottom:623.546667pt;}
.y4c{bottom:623.866667pt;}
.y139{bottom:628.666667pt;}
.y119{bottom:628.986667pt;}
.y1c5{bottom:629.946667pt;}
.yd8{bottom:634.426667pt;}
.y18{bottom:636.026667pt;}
.ya9{bottom:636.346667pt;}
.y86{bottom:638.906667pt;}
.y1f0{bottom:640.186667pt;}
.y4b{bottom:642.426667pt;}
.y1c4{bottom:646.586667pt;}
.y138{bottom:647.226667pt;}
.yd7{bottom:652.666667pt;}
.ya8{bottom:654.586667pt;}
.y17{bottom:655.546667pt;}
.y1ef{bottom:657.146667pt;}
.y85{bottom:657.466667pt;}
.y4a{bottom:660.666667pt;}
.y16a{bottom:660.986667pt;}
.y1c3{bottom:663.546667pt;}
.y137{bottom:665.466667pt;}
.yd6{bottom:671.226667pt;}
.ya7{bottom:673.146667pt;}
.y1ee{bottom:674.106667pt;}
.y16{bottom:675.066667pt;}
.y84{bottom:675.706667pt;}
.y49{bottom:679.226667pt;}
.y136{bottom:680.186667pt;}
.y1c2{bottom:680.506667pt;}
.yd5{bottom:689.466667pt;}
.y101{bottom:691.066667pt;}
.ya6{bottom:691.386667pt;}
.y15{bottom:694.266667pt;}
.y1c1{bottom:697.146667pt;}
.y48{bottom:697.466667pt;}
.y1ed{bottom:707.706667pt;}
.yd4{bottom:708.026667pt;}
.ya5{bottom:709.946667pt;}
.y83{bottom:712.506667pt;}
.y14{bottom:713.786667pt;}
.y1c0{bottom:714.106667pt;}
.y47{bottom:716.026667pt;}
.y164{bottom:722.746667pt;}
.y1ec{bottom:724.666667pt;}
.yd3{bottom:726.266667pt;}
.ya4{bottom:728.186667pt;}
.y82{bottom:731.066667pt;}
.y13{bottom:733.306667pt;}
.y46{bottom:734.266667pt;}
.y1eb{bottom:741.666667pt;}
.yd2{bottom:744.866667pt;}
.ya3{bottom:746.786667pt;}
.y1bf{bottom:747.746667pt;}
.y81{bottom:749.346667pt;}
.y12{bottom:752.546667pt;}
.y45{bottom:752.866667pt;}
.y1ea{bottom:758.306667pt;}
.yd1{bottom:763.106667pt;}
.y1be{bottom:764.706667pt;}
.ya2{bottom:765.026667pt;}
.y80{bottom:767.906667pt;}
.y163{bottom:770.146667pt;}
.y44{bottom:771.106667pt;}
.y11{bottom:772.386667pt;}
.y1e9{bottom:775.266667pt;}
.yd0{bottom:778.466667pt;}
.y1bd{bottom:781.666667pt;}
.y100{bottom:783.906667pt;}
.y7f{bottom:786.146667pt;}
.y43{bottom:789.666667pt;}
.ya1{bottom:790.626667pt;}
.y1e8{bottom:792.226667pt;}
.ycf{bottom:797.666667pt;}
.y1bc{bottom:798.626667pt;}
.y10{bottom:801.186667pt;}
.y7e{bottom:804.706667pt;}
.y42{bottom:807.906667pt;}
.y1e7{bottom:808.866667pt;}
.y1bb{bottom:815.266667pt;}
.yce{bottom:816.546667pt;}
.y15f{bottom:817.506667pt;}
.y7d{bottom:822.946667pt;}
.y1e6{bottom:825.826667pt;}
.y41{bottom:826.466667pt;}
.y1ba{bottom:832.226667pt;}
.ycd{bottom:835.746667pt;}
.yf{bottom:839.906667pt;}
.y7c{bottom:841.506667pt;}
.y1e5{bottom:842.786667pt;}
.y40{bottom:844.706667pt;}
.y1b9{bottom:849.213333pt;}
.ycc{bottom:854.973333pt;}
.yfb{bottom:858.173333pt;}
.y7b{bottom:859.773333pt;}
.y3f{bottom:863.293333pt;}
.y159{bottom:864.893333pt;}
.y1b8{bottom:865.853333pt;}
.ye{bottom:870.973333pt;}
.ycb{bottom:873.853333pt;}
.y77{bottom:875.133333pt;}
.y1e4{bottom:876.413333pt;}
.y3e{bottom:881.533333pt;}
.y1b7{bottom:882.813333pt;}
.y8{bottom:889.853333pt;}
.yca{bottom:893.053333pt;}
.y1e3{bottom:893.373333pt;}
.y1b6{bottom:899.773333pt;}
.y3d{bottom:900.093333pt;}
.y7{bottom:907.773333pt;}
.y1e2{bottom:910.333333pt;}
.yc9{bottom:911.933333pt;}
.y157{bottom:912.253333pt;}
.y1b5{bottom:916.413333pt;}
.y3c{bottom:918.333333pt;}
.y1e1{bottom:926.973333pt;}
.yc8{bottom:931.133333pt;}
.y1b4{bottom:933.373333pt;}
.y6{bottom:934.653333pt;}
.y3b{bottom:936.893333pt;}
.y1e0{bottom:943.933333pt;}
.y156{bottom:946.813333pt;}
.yc7{bottom:950.013333pt;}
.y1b3{bottom:950.333333pt;}
.yf6{bottom:950.973333pt;}
.y3a{bottom:955.133333pt;}
.y5{bottom:955.773333pt;}
.y1df{bottom:960.933333pt;}
.y1b2{bottom:967.333333pt;}
.y76{bottom:967.973333pt;}
.yc5{bottom:969.253333pt;}
.y39{bottom:973.733333pt;}
.y1de{bottom:977.573333pt;}
.y1b1{bottom:983.973333pt;}
.y75{bottom:986.853333pt;}
.y38{bottom:991.973333pt;}
.y1dd{bottom:994.533333pt;}
.y4{bottom:1003.813333pt;}
.y74{bottom:1006.053333pt;}
.y37{bottom:1010.533333pt;}
.y1b0{bottom:1011.493333pt;}
.y3{bottom:1019.493333pt;}
.y36{bottom:1029.093333pt;}
.y2{bottom:1038.693333pt;}
.y34{bottom:1043.173333pt;}
.y1{bottom:1058.213333pt;}
.y33{bottom:1061.093333pt;}
.h6{height:7.040000pt;}
.hf{height:7.680000pt;}
.h8{height:13.792000pt;}
.h18{height:18.240000pt;}
.h1b{height:18.272000pt;}
.h17{height:18.560000pt;}
.h14{height:18.592000pt;}
.h22{height:19.840000pt;}
.hd{height:34.318750pt;}
.h13{height:36.800000pt;}
.h4{height:36.931250pt;}
.h23{height:37.931250pt;}
.hb{height:41.543750pt;}
.h7{height:43.605000pt;}
.h9{height:45.156250pt;}
.h12{height:46.218750pt;}
.h24{height:46.720000pt;}
.h26{height:46.752000pt;}
.h3{height:46.832500pt;}
.h25{height:48.195000pt;}
.h29{height:48.352000pt;}
.h10{height:48.378750pt;}
.h1a{height:52.750000pt;}
.hc{height:52.785000pt;}
.h2a{height:53.120000pt;}
.h2{height:53.218750pt;}
.h15{height:55.040000pt;}
.h1c{height:55.072000pt;}
.h11{height:57.375000pt;}
.h2b{height:58.272000pt;}
.h5{height:58.563750pt;}
.he{height:60.288750pt;}
.h27{height:61.120000pt;}
.h28{height:63.040000pt;}
.h16{height:73.600000pt;}
.h1e{height:73.632000pt;}
.ha{height:74.959375pt;}
.h1d{height:91.840000pt;}
.h21{height:92.160000pt;}
.h19{height:92.192000pt;}
.h1f{height:110.432000pt;}
.h20{height:129.024000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:42.912000pt;}
.we{width:51.232000pt;}
.w19{width:56.352000pt;}
.w9{width:67.232000pt;}
.w14{width:73.312000pt;}
.w13{width:75.872000pt;}
.w10{width:87.392000pt;}
.w16{width:88.352000pt;}
.w12{width:90.272000pt;}
.w11{width:95.712000pt;}
.w6{width:105.632000pt;}
.wb{width:109.152000pt;}
.wc{width:112.992000pt;}
.wd{width:113.312000pt;}
.wf{width:117.152000pt;}
.w18{width:132.224000pt;}
.wa{width:157.826667pt;}
.w7{width:176.386667pt;}
.w17{width:273.693333pt;}
.w4{width:301.253333pt;}
.w3{width:303.813333pt;}
.w8{width:386.080000pt;}
.w5{width:549.986667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x11{left:6.760000pt;}
.x4{left:7.680000pt;}
.x2d{left:10.240000pt;}
.x2f{left:11.840000pt;}
.x27{left:13.120000pt;}
.x15{left:14.720000pt;}
.x32{left:15.680000pt;}
.x1f{left:18.240000pt;}
.x34{left:19.520000pt;}
.x1c{left:20.480000pt;}
.x22{left:22.400000pt;}
.x31{left:24.040000pt;}
.x25{left:25.632000pt;}
.x1d{left:26.880000pt;}
.x1a{left:28.160000pt;}
.x1e{left:29.472000pt;}
.x33{left:30.400000pt;}
.x18{left:33.306667pt;}
.x30{left:36.800000pt;}
.x2e{left:38.400000pt;}
.x24{left:40.320000pt;}
.x20{left:44.160000pt;}
.x23{left:48.346667pt;}
.x21{left:52.506667pt;}
.xd{left:69.152000pt;}
.x1{left:94.431988pt;}
.x8{left:121.983988pt;}
.xf{left:132.223988pt;}
.x7{left:135.426655pt;}
.x39{left:138.306667pt;}
.x26{left:146.626667pt;}
.x16{left:162.946667pt;}
.x14{left:163.906655pt;}
.xc{left:173.186655pt;}
.xa{left:201.373322pt;}
.x2{left:202.973322pt;}
.x3a{left:226.973333pt;}
.x37{left:255.133322pt;}
.x28{left:264.413333pt;}
.x6{left:269.573333pt;}
.x10{left:272.093333pt;}
.x42{left:274.693322pt;}
.x40{left:275.653322pt;}
.x3e{left:288.453322pt;}
.x36{left:294.213322pt;}
.xb{left:319.173322pt;}
.x17{left:321.413333pt;}
.x9{left:351.493322pt;}
.x29{left:352.480000pt;}
.x12{left:378.719988pt;}
.x3{left:396.959988pt;}
.x5{left:398.240000pt;}
.x19{left:431.226667pt;}
.x2a{left:448.826667pt;}
.x3b{left:500.986667pt;}
.x2b{left:539.746667pt;}
.x1b{left:544.866667pt;}
.x2c{left:616.253333pt;}
.xe{left:619.133333pt;}
.x3d{left:632.573322pt;}
.x3c{left:633.533333pt;}
.x3f{left:644.413322pt;}
.x35{left:658.493322pt;}
.x41{left:659.453322pt;}
.x38{left:699.493322pt;}
.x13{left:718.693322pt;}
}




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