
    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_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.690918;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_7e4b5008d9adc1f493bbc197.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.271494;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_b4817319c6a64d52d0151038.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.271494;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_eec69e4e433a2b0b12b9bb8a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.271494;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_d754a54011a73ee297829b07.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.271494;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_1a92a24dbcec8c6bc95284af.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0f1d94b59ffcbf20efb82f84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.va{vertical-align:-127.860000px;}
.v9{vertical-align:-106.560000px;}
.v8{vertical-align:-85.260000px;}
.v1{vertical-align:-79.200000px;}
.v6{vertical-align:-63.960000px;}
.v5{vertical-align:-42.600000px;}
.vb{vertical-align:-23.760000px;}
.v7{vertical-align:-21.300000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v4{vertical-align:23.760000px;}
.ls32{letter-spacing:-4.176000px;}
.ls2d{letter-spacing:-1.656000px;}
.ls24{letter-spacing:-1.296000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-1.008000px;}
.ls36{letter-spacing:-0.648000px;}
.ls28{letter-spacing:-0.576000px;}
.ls8{letter-spacing:-0.539400px;}
.ls5{letter-spacing:-0.522000px;}
.ls12{letter-spacing:-0.519000px;}
.ls10{letter-spacing:-0.517200px;}
.ls34{letter-spacing:-0.504000px;}
.ls1f{letter-spacing:-0.432000px;}
.ls25{letter-spacing:-0.382800px;}
.ls15{letter-spacing:-0.328200px;}
.ls3f{letter-spacing:-0.324000px;}
.ls29{letter-spacing:-0.299400px;}
.ls2c{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.190200px;}
.lsa{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.162000px;}
.ls26{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.132600px;}
.ls1c{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.070800px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.025920px;}
.ls13{letter-spacing:0.037440px;}
.ls17{letter-spacing:0.063360px;}
.ls18{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.198000px;}
.ls11{letter-spacing:0.202800px;}
.ls23{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.232800px;}
.ls9{letter-spacing:0.246000px;}
.ls7{letter-spacing:0.248400px;}
.ls2e{letter-spacing:0.273000px;}
.ls1a{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.302400px;}
.ls1d{letter-spacing:0.312480px;}
.ls30{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.336960px;}
.ls33{letter-spacing:0.337200px;}
.ls14{letter-spacing:0.341400px;}
.ls20{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.396000px;}
.ls27{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.482400px;}
.lse{letter-spacing:0.648000px;}
.ls0{letter-spacing:1.335600px;}
.ls2f{letter-spacing:1.465920px;}
.ls3b{letter-spacing:8.064000px;}
.ls31{letter-spacing:10.825920px;}
.ls3e{letter-spacing:10.944000px;}
.ls3d{letter-spacing:12.384000px;}
.ls3c{letter-spacing:23.184000px;}
.ls39{letter-spacing:36.144000px;}
.ls38{letter-spacing:37.584000px;}
.ls37{letter-spacing:38.304000px;}
.ls3a{letter-spacing:40.464000px;}
.ls35{letter-spacing:49.104000px;}
.ls1{letter-spacing:987.793920px;}
.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;}
}
.ws1a{word-spacing:-72.000000px;}
.ws23{word-spacing:-17.712000px;}
.ws1d{word-spacing:-17.424000px;}
.ws34{word-spacing:-17.208000px;}
.ws2f{word-spacing:-17.136000px;}
.ws16{word-spacing:-16.468977px;}
.ws20{word-spacing:-16.056000px;}
.ws12{word-spacing:-16.030080px;}
.ws3a{word-spacing:-15.912000px;}
.ws38{word-spacing:-15.840000px;}
.ws24{word-spacing:-15.655248px;}
.ws14{word-spacing:-15.624000px;}
.ws19{word-spacing:-15.480000px;}
.ws1f{word-spacing:-15.408000px;}
.ws21{word-spacing:-15.336000px;}
.ws37{word-spacing:-15.120000px;}
.ws1e{word-spacing:-14.616000px;}
.ws9{word-spacing:-14.461920px;}
.ws1c{word-spacing:-14.162520px;}
.ws22{word-spacing:-13.968000px;}
.ws2{word-spacing:-13.216320px;}
.ws4{word-spacing:-13.213920px;}
.ws8{word-spacing:-13.200720px;}
.ws1{word-spacing:-12.967920px;}
.ws3{word-spacing:-12.428520px;}
.ws39{word-spacing:-12.114000px;}
.ws13{word-spacing:-11.916000px;}
.ws15{word-spacing:-11.862000px;}
.ws31{word-spacing:-11.749248px;}
.ws5{word-spacing:-11.718000px;}
.wsb{word-spacing:-11.674080px;}
.ws6{word-spacing:-11.556000px;}
.ws35{word-spacing:-11.448000px;}
.ws3b{word-spacing:-11.394000px;}
.ws0{word-spacing:-11.196000px;}
.ws1b{word-spacing:-11.142000px;}
.wsd{word-spacing:-10.670880px;}
.wsa{word-spacing:-10.468080px;}
.ws17{word-spacing:-10.422000px;}
.wsc{word-spacing:-9.950880px;}
.wse{word-spacing:-9.949080px;}
.wsf{word-spacing:-9.403320px;}
.ws36{word-spacing:-9.399120px;}
.ws10{word-spacing:-9.061920px;}
.ws18{word-spacing:-8.679120px;}
.ws7{word-spacing:-7.187040px;}
.ws11{word-spacing:0.000000px;}
.ws25{word-spacing:24.632352px;}
.ws30{word-spacing:24.822000px;}
.ws2c{word-spacing:28.908000px;}
.ws29{word-spacing:37.800000px;}
.ws27{word-spacing:38.376000px;}
.ws2b{word-spacing:38.496000px;}
.ws2a{word-spacing:43.410000px;}
.ws26{word-spacing:44.256000px;}
.ws28{word-spacing:44.316000px;}
.ws2e{word-spacing:125.701704px;}
.ws33{word-spacing:125.712000px;}
.ws2d{word-spacing:131.817312px;}
.ws32{word-spacing:131.922000px;}
._5{margin-left:-7.219440px;}
._1d{margin-left:-6.019200px;}
._4{margin-left:-4.988880px;}
._1{margin-left:-3.807360px;}
._2{margin-left:-2.782080px;}
._0{margin-left:-1.722240px;}
._3{width:1.033680px;}
._6{width:2.261760px;}
._d{width:3.466560px;}
._e{width:4.752720px;}
._f{width:6.442800px;}
._11{width:7.762320px;}
._a{width:8.844480px;}
._b{width:9.891600px;}
._c{width:11.640480px;}
._1c{width:13.530960px;}
._8{width:14.853840px;}
._9{width:16.434000px;}
._7{width:17.566320px;}
._10{width:18.609840px;}
._14{width:19.822080px;}
._15{width:21.569760px;}
._16{width:23.369760px;}
._12{width:25.218720px;}
._13{width:26.318640px;}
._25{width:27.655440px;}
._2a{width:29.736000px;}
._2c{width:33.585120px;}
._18{width:35.289120px;}
._17{width:36.504000px;}
._1b{width:41.832000px;}
._19{width:43.560000px;}
._1a{width:45.288480px;}
._29{width:60.336000px;}
._23{width:153.506112px;}
._22{width:155.045568px;}
._24{width:156.107232px;}
._20{width:157.436928px;}
._21{width:159.153024px;}
._28{width:221.652000px;}
._26{width:358.050240px;}
._1e{width:508.800000px;}
._1f{width:511.068000px;}
._27{width:816.408000px;}
._2b{width:826.174320px;}
.fc6{color:rgb(24,23,23);}
.fc5{color:transparent;}
.fc3{color:rgb(56,86,35);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:33.120000px;}
.fs9{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fsd{font-size:54.144000px;}
.fs2{font-size:59.760000px;}
.fse{font-size:59.904000px;}
.fs6{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:66.384000px;}
.fsa{font-size:72.000000px;}
.fsc{font-size:72.144000px;}
.fsb{font-size:75.893905px;}
.fs3{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y49{bottom:4.320000px;}
.yb1{bottom:5.220000px;}
.ybc{bottom:5.250000px;}
.yf8{bottom:5.265000px;}
.yf4{bottom:5.400000px;}
.y13f{bottom:5.580000px;}
.y13d{bottom:5.625000px;}
.y130{bottom:5.760000px;}
.y13c{bottom:5.805000px;}
.yfa{bottom:5.940000px;}
.y12d{bottom:6.120000px;}
.yb4{bottom:6.480000px;}
.yc8{bottom:6.525000px;}
.y154{bottom:6.555000px;}
.ycb{bottom:6.660000px;}
.y15a{bottom:7.020000px;}
.y137{bottom:11.880000px;}
.y12e{bottom:12.600000px;}
.y44{bottom:16.920000px;}
.yf2{bottom:17.640000px;}
.y48{bottom:18.000000px;}
.y12b{bottom:18.180000px;}
.y10a{bottom:18.570000px;}
.y17d{bottom:18.900000px;}
.y17f{bottom:18.945000px;}
.y181{bottom:19.080000px;}
.y131{bottom:23.940000px;}
.y135{bottom:24.480000px;}
.y13b{bottom:24.525000px;}
.y164{bottom:28.440000px;}
.y172{bottom:28.485000px;}
.y12c{bottom:28.620000px;}
.y118{bottom:28.980000px;}
.y152{bottom:29.010000px;}
.y160{bottom:29.340000px;}
.y134{bottom:29.700000px;}
.y13a{bottom:29.745000px;}
.y129{bottom:29.880000px;}
.y47{bottom:31.680000px;}
.y43{bottom:32.580000px;}
.y17b{bottom:37.980000px;}
.y161{bottom:41.040000px;}
.y12a{bottom:41.580000px;}
.y165{bottom:46.620000px;}
.y173{bottom:46.665000px;}
.y169{bottom:46.800000px;}
.y110{bottom:47.850000px;}
.y14a{bottom:47.880000px;}
.y42{bottom:48.240000px;}
.y158{bottom:54.540000px;}
.y4{bottom:57.420000px;}
.y108{bottom:62.025000px;}
.y41{bottom:63.720000px;}
.y46{bottom:72.756000px;}
.y3{bottom:76.356000px;}
.y40{bottom:79.380000px;}
.y111{bottom:79.770000px;}
.y14b{bottom:79.845000px;}
.y10e{bottom:83.670000px;}
.y148{bottom:83.700000px;}
.y100{bottom:87.150000px;}
.y10f{bottom:88.995000px;}
.y149{bottom:89.025000px;}
.y10d{bottom:94.320000px;}
.y147{bottom:94.350000px;}
.y3f{bottom:94.860000px;}
.yf0{bottom:97.596000px;}
.y109{bottom:102.960000px;}
.y8f{bottom:104.436000px;}
.y36{bottom:107.136000px;}
.yae{bottom:107.316000px;}
.y3e{bottom:110.520000px;}
.y101{bottom:111.315000px;}
.y112{bottom:111.750000px;}
.y14c{bottom:111.810000px;}
.yd1{bottom:116.316000px;}
.y119{bottom:123.630000px;}
.y153{bottom:124.170000px;}
.y3d{bottom:126.225000px;}
.y35{bottom:128.556000px;}
.yef{bottom:131.256000px;}
.y193{bottom:135.036000px;}
.y102{bottom:135.435000px;}
.y8e{bottom:136.476000px;}
.yab{bottom:137.916000px;}
.yad{bottom:139.356000px;}
.y3c{bottom:141.705000px;}
.y144{bottom:142.236000px;}
.y113{bottom:143.715000px;}
.y14d{bottom:143.745000px;}
.y1ab{bottom:143.856000px;}
.y71{bottom:145.836000px;}
.y179{bottom:146.196000px;}
.yff{bottom:148.500000px;}
.y34{bottom:149.976000px;}
.yd0{bottom:151.410000px;}
.y3b{bottom:157.365000px;}
.y103{bottom:159.555000px;}
.yfd{bottom:160.560000px;}
.yee{bottom:166.350000px;}
.y178{bottom:169.590000px;}
.y8d{bottom:170.130000px;}
.y33{bottom:171.030000px;}
.yac{bottom:171.570000px;}
.y3a{bottom:172.845000px;}
.yaa{bottom:173.010000px;}
.y114{bottom:175.680000px;}
.y14e{bottom:175.710000px;}
.y143{bottom:177.330000px;}
.y1aa{bottom:178.950000px;}
.y70{bottom:180.930000px;}
.y104{bottom:183.675000px;}
.ycf{bottom:186.510000px;}
.y177{bottom:188.490000px;}
.y39{bottom:188.505000px;}
.y32{bottom:190.650000px;}
.yed{bottom:201.270000px;}
.y38{bottom:203.985000px;}
.y8c{bottom:205.230000px;}
.y115{bottom:207.645000px;}
.y14f{bottom:207.690000px;}
.y105{bottom:207.795000px;}
.ya9{bottom:208.110000px;}
.y31{bottom:210.090000px;}
.y142{bottom:212.430000px;}
.y37{bottom:213.870000px;}
.y1a9{bottom:214.050000px;}
.y6f{bottom:215.850000px;}
.yce{bottom:221.430000px;}
.y30{bottom:229.530000px;}
.y106{bottom:231.945000px;}
.yec{bottom:234.930000px;}
.y176{bottom:236.370000px;}
.yfc{bottom:237.060000px;}
.y116{bottom:239.610000px;}
.y150{bottom:239.655000px;}
.y8b{bottom:240.330000px;}
.ycd{bottom:240.510000px;}
.ya8{bottom:243.210000px;}
.y141{bottom:244.650000px;}
.yfe{bottom:245.010000px;}
.y2f{bottom:248.970000px;}
.y6e{bottom:250.950000px;}
.y10c{bottom:254.130000px;}
.y146{bottom:254.160000px;}
.y107{bottom:256.065000px;}
.y192{bottom:256.530000px;}
.y140{bottom:260.490000px;}
.ycc{bottom:263.730000px;}
.yeb{bottom:267.150000px;}
.y2e{bottom:268.590000px;}
.y117{bottom:271.545000px;}
.y151{bottom:271.620000px;}
.y8a{bottom:275.250000px;}
.ya7{bottom:278.310000px;}
.yfb{bottom:282.090000px;}
.y1a8{bottom:282.630000px;}
.y175{bottom:283.890000px;}
.y13e{bottom:284.430000px;}
.y6d{bottom:286.050000px;}
.yca{bottom:287.130000px;}
.y2d{bottom:288.030000px;}
.y191{bottom:291.630000px;}
.yea{bottom:299.190000px;}
.y2c{bottom:307.470000px;}
.y174{bottom:307.830000px;}
.yf9{bottom:308.370000px;}
.y89{bottom:310.350000px;}
.yc9{bottom:311.790000px;}
.ya6{bottom:313.410000px;}
.y1a7{bottom:316.290000px;}
.y6c{bottom:321.150000px;}
.y190{bottom:326.730000px;}
.y2b{bottom:326.910000px;}
.ye9{bottom:331.410000px;}
.y171{bottom:331.770000px;}
.y139{bottom:333.030000px;}
.yf7{bottom:333.210000px;}
.yc7{bottom:335.190000px;}
.y88{bottom:345.495000px;}
.y2a{bottom:346.575000px;}
.ya5{bottom:348.375000px;}
.y1a6{bottom:351.435000px;}
.y6b{bottom:356.295000px;}
.yf6{bottom:356.835000px;}
.y138{bottom:357.015000px;}
.yc6{bottom:359.895000px;}
.y18f{bottom:361.875000px;}
.ye8{bottom:363.495000px;}
.y29{bottom:366.015000px;}
.y170{bottom:379.155000px;}
.yf5{bottom:380.415000px;}
.y87{bottom:380.595000px;}
.y136{bottom:380.955000px;}
.yc5{bottom:383.295000px;}
.ya4{bottom:383.475000px;}
.y28{bottom:385.455000px;}
.y1a5{bottom:386.355000px;}
.y6a{bottom:391.215000px;}
.ye7{bottom:395.715000px;}
.y18e{bottom:396.795000px;}
.y16f{bottom:403.095000px;}
.yf3{bottom:403.995000px;}
.y27{bottom:404.895000px;}
.y133{bottom:405.615000px;}
.yc4{bottom:407.955000px;}
.y86{bottom:415.695000px;}
.ya3{bottom:418.575000px;}
.y1a4{bottom:421.455000px;}
.y26{bottom:424.335000px;}
.y69{bottom:426.315000px;}
.y16e{bottom:427.035000px;}
.ye6{bottom:427.935000px;}
.yf1{bottom:429.195000px;}
.y132{bottom:429.555000px;}
.yc3{bottom:431.355000px;}
.y18d{bottom:431.895000px;}
.y25{bottom:443.955000px;}
.y85{bottom:450.795000px;}
.y12f{bottom:453.495000px;}
.ya2{bottom:453.675000px;}
.yc2{bottom:456.015000px;}
.y1a3{bottom:456.555000px;}
.y68{bottom:461.415000px;}
.y24{bottom:463.395000px;}
.y18c{bottom:466.995000px;}
.ye5{bottom:473.475000px;}
.y16d{bottom:474.555000px;}
.y128{bottom:478.155000px;}
.yc1{bottom:479.415000px;}
.y23{bottom:482.835000px;}
.y84{bottom:485.715000px;}
.ya1{bottom:488.775000px;}
.y1a2{bottom:491.655000px;}
.y67{bottom:496.515000px;}
.y16c{bottom:498.495000px;}
.y18b{bottom:502.095000px;}
.y22{bottom:502.275000px;}
.yc0{bottom:504.075000px;}
.ye4{bottom:508.575000px;}
.y83{bottom:520.815000px;}
.y21{bottom:521.895000px;}
.y16b{bottom:522.435000px;}
.ya0{bottom:523.695000px;}
.y1a1{bottom:526.755000px;}
.ybf{bottom:527.475000px;}
.y66{bottom:531.615000px;}
.y18a{bottom:537.195000px;}
.y20{bottom:541.335000px;}
.ye3{bottom:543.135000px;}
.ybe{bottom:552.135000px;}
.y82{bottom:555.915000px;}
.y9f{bottom:558.795000px;}
.y1f{bottom:560.775000px;}
.y1a0{bottom:561.855000px;}
.ye2{bottom:562.575000px;}
.y65{bottom:566.715000px;}
.y127{bottom:567.795000px;}
.y16a{bottom:569.955000px;}
.y189{bottom:572.295000px;}
.ybd{bottom:575.535000px;}
.y1e{bottom:580.215000px;}
.y126{bottom:587.415000px;}
.y81{bottom:591.015000px;}
.y9e{bottom:593.895000px;}
.ye1{bottom:594.615000px;}
.y19f{bottom:596.775000px;}
.y1d{bottom:599.835000px;}
.y64{bottom:600.195000px;}
.y188{bottom:607.245000px;}
.y168{bottom:617.865000px;}
.y1c{bottom:619.305000px;}
.ybb{bottom:623.625000px;}
.y80{bottom:626.145000px;}
.y9d{bottom:629.025000px;}
.ye0{bottom:629.745000px;}
.y63{bottom:631.185000px;}
.y125{bottom:631.365000px;}
.y19e{bottom:631.905000px;}
.y1b{bottom:638.745000px;}
.y187{bottom:642.345000px;}
.yba{bottom:647.025000px;}
.y62{bottom:650.625000px;}
.y1a{bottom:658.185000px;}
.y7f{bottom:661.245000px;}
.y9c{bottom:664.125000px;}
.ydf{bottom:664.665000px;}
.y167{bottom:665.385000px;}
.y124{bottom:666.465000px;}
.y19d{bottom:667.005000px;}
.y61{bottom:670.065000px;}
.yb9{bottom:671.685000px;}
.y186{bottom:677.445000px;}
.y19{bottom:677.805000px;}
.y166{bottom:689.325000px;}
.y60{bottom:689.505000px;}
.yb8{bottom:695.085000px;}
.y7e{bottom:696.165000px;}
.y18{bottom:697.605000px;}
.y9b{bottom:699.225000px;}
.yde{bottom:699.765000px;}
.y123{bottom:701.565000px;}
.y19c{bottom:702.105000px;}
.y5f{bottom:708.945000px;}
.y185{bottom:712.545000px;}
.y163{bottom:713.265000px;}
.y17{bottom:718.125000px;}
.yb7{bottom:719.745000px;}
.y5e{bottom:728.565000px;}
.y7d{bottom:731.265000px;}
.y9a{bottom:734.145000px;}
.ydd{bottom:734.865000px;}
.y16{bottom:735.585000px;}
.y122{bottom:736.665000px;}
.y19b{bottom:737.205000px;}
.yb6{bottom:743.145000px;}
.y184{bottom:746.025000px;}
.y5d{bottom:748.005000px;}
.y15{bottom:753.225000px;}
.y15f{bottom:760.785000px;}
.y7c{bottom:766.365000px;}
.y5c{bottom:767.445000px;}
.yb5{bottom:767.805000px;}
.y99{bottom:769.245000px;}
.ydc{bottom:769.965000px;}
.y19a{bottom:772.125000px;}
.y14{bottom:775.185000px;}
.y183{bottom:778.245000px;}
.y121{bottom:783.645000px;}
.y145{bottom:783.720000px;}
.y162{bottom:784.545000px;}
.y5b{bottom:786.885000px;}
.y13{bottom:788.325000px;}
.y10b{bottom:790.740000px;}
.yb3{bottom:791.205000px;}
.y7b{bottom:801.465000px;}
.y98{bottom:804.345000px;}
.ydb{bottom:805.065000px;}
.y5a{bottom:806.505000px;}
.y199{bottom:807.225000px;}
.y15e{bottom:808.485000px;}
.y12{bottom:810.285000px;}
.y182{bottom:810.465000px;}
.yb2{bottom:815.865000px;}
.y59{bottom:825.945000px;}
.y11{bottom:827.745000px;}
.y180{bottom:827.925000px;}
.y120{bottom:830.805000px;}
.y15d{bottom:833.145000px;}
.y7a{bottom:836.565000px;}
.y97{bottom:839.445000px;}
.yb0{bottom:839.985000px;}
.yda{bottom:840.165000px;}
.y10{bottom:840.885000px;}
.y198{bottom:842.325000px;}
.y58{bottom:845.385000px;}
.y15c{bottom:857.085000px;}
.yf{bottom:858.345000px;}
.y57{bottom:864.825000px;}
.y17e{bottom:865.185000px;}
.y79{bottom:871.530000px;}
.y96{bottom:874.590000px;}
.yd9{bottom:875.130000px;}
.ye{bottom:876.030000px;}
.y197{bottom:877.470000px;}
.y11f{bottom:877.830000px;}
.yaf{bottom:880.530000px;}
.y15b{bottom:881.070000px;}
.y56{bottom:884.490000px;}
.y1b0{bottom:890.070000px;}
.yd{bottom:893.490000px;}
.y17a{bottom:903.210000px;}
.y55{bottom:903.930000px;}
.y157{bottom:905.730000px;}
.y78{bottom:906.630000px;}
.y95{bottom:909.690000px;}
.yd8{bottom:910.230000px;}
.yc{bottom:911.130000px;}
.y196{bottom:912.570000px;}
.y54{bottom:923.370000px;}
.y1af{bottom:923.730000px;}
.y11e{bottom:924.990000px;}
.yb{bottom:928.590000px;}
.y159{bottom:931.650000px;}
.y17c{bottom:941.190000px;}
.y77{bottom:941.730000px;}
.y53{bottom:942.810000px;}
.y94{bottom:944.610000px;}
.yd7{bottom:945.330000px;}
.y195{bottom:946.050000px;}
.y1ae{bottom:958.830000px;}
.y52{bottom:962.430000px;}
.y11d{bottom:971.970000px;}
.ya{bottom:974.670000px;}
.y76{bottom:976.830000px;}
.y194{bottom:978.270000px;}
.y93{bottom:979.710000px;}
.yd6{bottom:980.430000px;}
.y51{bottom:981.870000px;}
.y1ad{bottom:993.750000px;}
.y156{bottom:995.550000px;}
.y50{bottom:1001.310000px;}
.y9{bottom:1002.030000px;}
.y75{bottom:1011.930000px;}
.y92{bottom:1014.810000px;}
.y155{bottom:1014.990000px;}
.yd5{bottom:1015.530000px;}
.y11c{bottom:1019.130000px;}
.y4f{bottom:1020.750000px;}
.y1ac{bottom:1027.410000px;}
.y8{bottom:1029.210000px;}
.y4e{bottom:1040.190000px;}
.y74{bottom:1047.030000px;}
.y91{bottom:1049.910000px;}
.yd4{bottom:1050.630000px;}
.y7{bottom:1056.570000px;}
.y4d{bottom:1059.810000px;}
.y11b{bottom:1066.110000px;}
.y4c{bottom:1079.250000px;}
.y73{bottom:1081.950000px;}
.y6{bottom:1083.750000px;}
.y90{bottom:1085.010000px;}
.yd3{bottom:1085.550000px;}
.y4b{bottom:1098.690000px;}
.y11a{bottom:1100.670000px;}
.y5{bottom:1112.370000px;}
.y72{bottom:1117.050000px;}
.y4a{bottom:1118.490000px;}
.yd2{bottom:1120.110000px;}
.y45{bottom:1153.800000px;}
.y2{bottom:1173.960000px;}
.y1{bottom:1194.480000px;}
.h16{height:23.220000px;}
.h12{height:23.400000px;}
.h14{height:23.436000px;}
.h19{height:23.580000px;}
.h1a{height:23.616000px;}
.h18{height:23.760000px;}
.h22{height:23.940000px;}
.h25{height:23.976000px;}
.h13{height:24.660000px;}
.h15{height:24.696000px;}
.h1b{height:24.840000px;}
.h21{height:25.020000px;}
.h28{height:25.200000px;}
.h2d{height:37.080000px;}
.h2e{height:37.116000px;}
.h2f{height:37.260000px;}
.h8{height:38.373047px;}
.hd{height:43.560000px;}
.he{height:43.595156px;}
.h2{height:44.860781px;}
.h20{height:46.620000px;}
.h2b{height:46.656000px;}
.h2a{height:46.800000px;}
.h23{height:47.880000px;}
.h24{height:47.916000px;}
.h17{height:48.420000px;}
.hb{height:50.359922px;}
.h4{height:56.373047px;}
.h1e{height:56.523375px;}
.h5{height:62.386172px;}
.h27{height:62.536500px;}
.h9{height:65.760142px;}
.hf{height:65.884219px;}
.h3{height:69.150937px;}
.hc{height:69.301266px;}
.h29{height:71.640000px;}
.h1f{height:72.540000px;}
.h2c{height:75.060000px;}
.h10{height:75.164062px;}
.h1d{height:75.314391px;}
.h11{height:79.229086px;}
.h6{height:81.177188px;}
.h7{height:87.941953px;}
.ha{height:229.890000px;}
.h1c{height:297.540000px;}
.h26{height:297.720000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:49.140000px;}
.w15{width:62.460000px;}
.w10{width:62.496000px;}
.w14{width:73.116000px;}
.wf{width:73.980000px;}
.w1c{width:76.176000px;}
.w16{width:79.020000px;}
.wd{width:89.856000px;}
.w1e{width:94.320000px;}
.w1f{width:95.616000px;}
.w17{width:96.660000px;}
.w9{width:102.096000px;}
.w11{width:102.780000px;}
.w1a{width:105.120000px;}
.w20{width:111.960000px;}
.w6{width:112.500000px;}
.w18{width:115.956000px;}
.w12{width:116.136000px;}
.w13{width:116.820000px;}
.w23{width:121.500000px;}
.w7{width:135.036000px;}
.wc{width:151.920000px;}
.w24{width:154.290000px;}
.w19{width:162.750000px;}
.w1b{width:207.570000px;}
.we{width:212.610000px;}
.wa{width:216.930000px;}
.w3{width:241.635000px;}
.w8{width:255.090000px;}
.w22{width:275.790000px;}
.w5{width:326.235000px;}
.w21{width:396.975000px;}
.w4{width:654.765000px;}
.wb{width:680.220000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:5.220000px;}
.x10{left:8.100000px;}
.x8{left:10.800000px;}
.x4e{left:12.420000px;}
.x52{left:13.500000px;}
.x3a{left:14.580000px;}
.x46{left:16.020000px;}
.x48{left:17.280000px;}
.x57{left:18.360000px;}
.x3d{left:20.205000px;}
.x47{left:21.780000px;}
.x4b{left:23.400000px;}
.x34{left:24.405000px;}
.x39{left:25.425000px;}
.x38{left:26.685000px;}
.x49{left:27.930000px;}
.x2d{left:31.530000px;}
.x41{left:36.540000px;}
.x55{left:37.980000px;}
.x44{left:39.420000px;}
.x4c{left:40.755000px;}
.x21{left:41.790000px;}
.x23{left:42.870000px;}
.x1e{left:45.030000px;}
.x17{left:47.160000px;}
.x18{left:48.240000px;}
.x19{left:49.365000px;}
.x12{left:51.660000px;}
.x50{left:52.740000px;}
.x1a{left:53.865000px;}
.x15{left:56.160000px;}
.x4a{left:57.990000px;}
.x14{left:60.345000px;}
.x2b{left:63.390000px;}
.x2a{left:66.060000px;}
.x16{left:67.545000px;}
.x29{left:72.435000px;}
.x5b{left:77.085000px;}
.x25{left:82.620000px;}
.x22{left:87.480000px;}
.x24{left:92.160000px;}
.x20{left:101.160000px;}
.x2f{left:106.815000px;}
.x36{left:120.996000px;}
.x33{left:124.230000px;}
.x5{left:127.655987px;}
.x58{left:131.436000px;}
.x56{left:136.974000px;}
.x59{left:149.619000px;}
.x30{left:153.465000px;}
.xa{left:180.749987px;}
.x1b{left:191.549987px;}
.x26{left:198.360000px;}
.x2c{left:200.130000px;}
.x5d{left:207.749987px;}
.xe{left:210.449987px;}
.x2e{left:243.795000px;}
.x6{left:262.829987px;}
.x5c{left:271.649987px;}
.x37{left:272.910000px;}
.x4d{left:283.035000px;}
.x35{left:286.200000px;}
.xb{left:295.274987px;}
.x31{left:339.510000px;}
.x4{left:348.194987px;}
.x2{left:361.874987px;}
.x27{left:372.390000px;}
.x4f{left:388.155000px;}
.x32{left:430.305000px;}
.x1d{left:435.315000px;}
.x45{left:459.435000px;}
.x1{left:467.924987px;}
.x3f{left:478.905000px;}
.x54{left:483.765000px;}
.xd{left:504.644987px;}
.x11{left:507.165000px;}
.x5a{left:528.405000px;}
.x1f{left:537.405000px;}
.x28{left:548.205000px;}
.x3b{left:575.385000px;}
.x40{left:595.725000px;}
.x13{left:619.665000px;}
.x7{left:627.045000px;}
.x3c{left:649.365000px;}
.x9{left:666.329987px;}
.x42{left:668.850000px;}
.x51{left:671.910000px;}
.x3e{left:711.870000px;}
.x53{left:721.050000px;}
.x43{left:731.310000px;}
.xc{left:793.769987px;}
.x3{left:795.209987px;}
.xf{left:796.829987px;}
@media print{
.va{vertical-align:-113.653333pt;}
.v9{vertical-align:-94.720000pt;}
.v8{vertical-align:-75.786667pt;}
.v1{vertical-align:-70.400000pt;}
.v6{vertical-align:-56.853333pt;}
.v5{vertical-align:-37.866667pt;}
.vb{vertical-align:-21.120000pt;}
.v7{vertical-align:-18.933333pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v4{vertical-align:21.120000pt;}
.ls32{letter-spacing:-3.712000pt;}
.ls2d{letter-spacing:-1.472000pt;}
.ls24{letter-spacing:-1.152000pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.896000pt;}
.ls36{letter-spacing:-0.576000pt;}
.ls28{letter-spacing:-0.512000pt;}
.ls8{letter-spacing:-0.479467pt;}
.ls5{letter-spacing:-0.464000pt;}
.ls12{letter-spacing:-0.461333pt;}
.ls10{letter-spacing:-0.459733pt;}
.ls34{letter-spacing:-0.448000pt;}
.ls1f{letter-spacing:-0.384000pt;}
.ls25{letter-spacing:-0.340267pt;}
.ls15{letter-spacing:-0.291733pt;}
.ls3f{letter-spacing:-0.288000pt;}
.ls29{letter-spacing:-0.266133pt;}
.ls2c{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.169067pt;}
.lsa{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.144000pt;}
.ls26{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117867pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.062933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.023040pt;}
.ls13{letter-spacing:0.033280pt;}
.ls17{letter-spacing:0.056320pt;}
.ls18{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.176000pt;}
.ls11{letter-spacing:0.180267pt;}
.ls23{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.206933pt;}
.ls9{letter-spacing:0.218667pt;}
.ls7{letter-spacing:0.220800pt;}
.ls2e{letter-spacing:0.242667pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.268800pt;}
.ls1d{letter-spacing:0.277760pt;}
.ls30{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.299520pt;}
.ls33{letter-spacing:0.299733pt;}
.ls14{letter-spacing:0.303467pt;}
.ls20{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.352000pt;}
.ls27{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.428800pt;}
.lse{letter-spacing:0.576000pt;}
.ls0{letter-spacing:1.187200pt;}
.ls2f{letter-spacing:1.303040pt;}
.ls3b{letter-spacing:7.168000pt;}
.ls31{letter-spacing:9.623040pt;}
.ls3e{letter-spacing:9.728000pt;}
.ls3d{letter-spacing:11.008000pt;}
.ls3c{letter-spacing:20.608000pt;}
.ls39{letter-spacing:32.128000pt;}
.ls38{letter-spacing:33.408000pt;}
.ls37{letter-spacing:34.048000pt;}
.ls3a{letter-spacing:35.968000pt;}
.ls35{letter-spacing:43.648000pt;}
.ls1{letter-spacing:878.039040pt;}
.ws1a{word-spacing:-64.000000pt;}
.ws23{word-spacing:-15.744000pt;}
.ws1d{word-spacing:-15.488000pt;}
.ws34{word-spacing:-15.296000pt;}
.ws2f{word-spacing:-15.232000pt;}
.ws16{word-spacing:-14.639091pt;}
.ws20{word-spacing:-14.272000pt;}
.ws12{word-spacing:-14.248960pt;}
.ws3a{word-spacing:-14.144000pt;}
.ws38{word-spacing:-14.080000pt;}
.ws24{word-spacing:-13.915776pt;}
.ws14{word-spacing:-13.888000pt;}
.ws19{word-spacing:-13.760000pt;}
.ws1f{word-spacing:-13.696000pt;}
.ws21{word-spacing:-13.632000pt;}
.ws37{word-spacing:-13.440000pt;}
.ws1e{word-spacing:-12.992000pt;}
.ws9{word-spacing:-12.855040pt;}
.ws1c{word-spacing:-12.588907pt;}
.ws22{word-spacing:-12.416000pt;}
.ws2{word-spacing:-11.747840pt;}
.ws4{word-spacing:-11.745707pt;}
.ws8{word-spacing:-11.733973pt;}
.ws1{word-spacing:-11.527040pt;}
.ws3{word-spacing:-11.047573pt;}
.ws39{word-spacing:-10.768000pt;}
.ws13{word-spacing:-10.592000pt;}
.ws15{word-spacing:-10.544000pt;}
.ws31{word-spacing:-10.443776pt;}
.ws5{word-spacing:-10.416000pt;}
.wsb{word-spacing:-10.376960pt;}
.ws6{word-spacing:-10.272000pt;}
.ws35{word-spacing:-10.176000pt;}
.ws3b{word-spacing:-10.128000pt;}
.ws0{word-spacing:-9.952000pt;}
.ws1b{word-spacing:-9.904000pt;}
.wsd{word-spacing:-9.485227pt;}
.wsa{word-spacing:-9.304960pt;}
.ws17{word-spacing:-9.264000pt;}
.wsc{word-spacing:-8.845227pt;}
.wse{word-spacing:-8.843627pt;}
.wsf{word-spacing:-8.358507pt;}
.ws36{word-spacing:-8.354773pt;}
.ws10{word-spacing:-8.055040pt;}
.ws18{word-spacing:-7.714773pt;}
.ws7{word-spacing:-6.388480pt;}
.ws11{word-spacing:0.000000pt;}
.ws25{word-spacing:21.895424pt;}
.ws30{word-spacing:22.064000pt;}
.ws2c{word-spacing:25.696000pt;}
.ws29{word-spacing:33.600000pt;}
.ws27{word-spacing:34.112000pt;}
.ws2b{word-spacing:34.218667pt;}
.ws2a{word-spacing:38.586667pt;}
.ws26{word-spacing:39.338667pt;}
.ws28{word-spacing:39.392000pt;}
.ws2e{word-spacing:111.734848pt;}
.ws33{word-spacing:111.744000pt;}
.ws2d{word-spacing:117.170944pt;}
.ws32{word-spacing:117.264000pt;}
._5{margin-left:-6.417280pt;}
._1d{margin-left:-5.350400pt;}
._4{margin-left:-4.434560pt;}
._1{margin-left:-3.384320pt;}
._2{margin-left:-2.472960pt;}
._0{margin-left:-1.530880pt;}
._3{width:0.918827pt;}
._6{width:2.010453pt;}
._d{width:3.081387pt;}
._e{width:4.224640pt;}
._f{width:5.726933pt;}
._11{width:6.899840pt;}
._a{width:7.861760pt;}
._b{width:8.792533pt;}
._c{width:10.347093pt;}
._1c{width:12.027520pt;}
._8{width:13.203413pt;}
._9{width:14.608000pt;}
._7{width:15.614507pt;}
._10{width:16.542080pt;}
._14{width:17.619627pt;}
._15{width:19.173120pt;}
._16{width:20.773120pt;}
._12{width:22.416640pt;}
._13{width:23.394347pt;}
._25{width:24.582613pt;}
._2a{width:26.432000pt;}
._2c{width:29.853440pt;}
._18{width:31.368107pt;}
._17{width:32.448000pt;}
._1b{width:37.184000pt;}
._19{width:38.720000pt;}
._1a{width:40.256427pt;}
._29{width:53.632000pt;}
._23{width:136.449877pt;}
._22{width:137.818283pt;}
._24{width:138.761984pt;}
._20{width:139.943936pt;}
._21{width:141.469355pt;}
._28{width:197.024000pt;}
._26{width:318.266880pt;}
._1e{width:452.266667pt;}
._1f{width:454.282667pt;}
._27{width:725.696000pt;}
._2b{width:734.377173pt;}
.fs5{font-size:29.440000pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fsd{font-size:48.128000pt;}
.fs2{font-size:53.120000pt;}
.fse{font-size:53.248000pt;}
.fs6{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:59.008000pt;}
.fsa{font-size:64.000000pt;}
.fsc{font-size:64.128000pt;}
.fsb{font-size:67.461249pt;}
.fs3{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:3.840000pt;}
.yb1{bottom:4.640000pt;}
.ybc{bottom:4.666667pt;}
.yf8{bottom:4.680000pt;}
.yf4{bottom:4.800000pt;}
.y13f{bottom:4.960000pt;}
.y13d{bottom:5.000000pt;}
.y130{bottom:5.120000pt;}
.y13c{bottom:5.160000pt;}
.yfa{bottom:5.280000pt;}
.y12d{bottom:5.440000pt;}
.yb4{bottom:5.760000pt;}
.yc8{bottom:5.800000pt;}
.y154{bottom:5.826667pt;}
.ycb{bottom:5.920000pt;}
.y15a{bottom:6.240000pt;}
.y137{bottom:10.560000pt;}
.y12e{bottom:11.200000pt;}
.y44{bottom:15.040000pt;}
.yf2{bottom:15.680000pt;}
.y48{bottom:16.000000pt;}
.y12b{bottom:16.160000pt;}
.y10a{bottom:16.506667pt;}
.y17d{bottom:16.800000pt;}
.y17f{bottom:16.840000pt;}
.y181{bottom:16.960000pt;}
.y131{bottom:21.280000pt;}
.y135{bottom:21.760000pt;}
.y13b{bottom:21.800000pt;}
.y164{bottom:25.280000pt;}
.y172{bottom:25.320000pt;}
.y12c{bottom:25.440000pt;}
.y118{bottom:25.760000pt;}
.y152{bottom:25.786667pt;}
.y160{bottom:26.080000pt;}
.y134{bottom:26.400000pt;}
.y13a{bottom:26.440000pt;}
.y129{bottom:26.560000pt;}
.y47{bottom:28.160000pt;}
.y43{bottom:28.960000pt;}
.y17b{bottom:33.760000pt;}
.y161{bottom:36.480000pt;}
.y12a{bottom:36.960000pt;}
.y165{bottom:41.440000pt;}
.y173{bottom:41.480000pt;}
.y169{bottom:41.600000pt;}
.y110{bottom:42.533333pt;}
.y14a{bottom:42.560000pt;}
.y42{bottom:42.880000pt;}
.y158{bottom:48.480000pt;}
.y4{bottom:51.040000pt;}
.y108{bottom:55.133333pt;}
.y41{bottom:56.640000pt;}
.y46{bottom:64.672000pt;}
.y3{bottom:67.872000pt;}
.y40{bottom:70.560000pt;}
.y111{bottom:70.906667pt;}
.y14b{bottom:70.973333pt;}
.y10e{bottom:74.373333pt;}
.y148{bottom:74.400000pt;}
.y100{bottom:77.466667pt;}
.y10f{bottom:79.106667pt;}
.y149{bottom:79.133333pt;}
.y10d{bottom:83.840000pt;}
.y147{bottom:83.866667pt;}
.y3f{bottom:84.320000pt;}
.yf0{bottom:86.752000pt;}
.y109{bottom:91.520000pt;}
.y8f{bottom:92.832000pt;}
.y36{bottom:95.232000pt;}
.yae{bottom:95.392000pt;}
.y3e{bottom:98.240000pt;}
.y101{bottom:98.946667pt;}
.y112{bottom:99.333333pt;}
.y14c{bottom:99.386667pt;}
.yd1{bottom:103.392000pt;}
.y119{bottom:109.893333pt;}
.y153{bottom:110.373333pt;}
.y3d{bottom:112.200000pt;}
.y35{bottom:114.272000pt;}
.yef{bottom:116.672000pt;}
.y193{bottom:120.032000pt;}
.y102{bottom:120.386667pt;}
.y8e{bottom:121.312000pt;}
.yab{bottom:122.592000pt;}
.yad{bottom:123.872000pt;}
.y3c{bottom:125.960000pt;}
.y144{bottom:126.432000pt;}
.y113{bottom:127.746667pt;}
.y14d{bottom:127.773333pt;}
.y1ab{bottom:127.872000pt;}
.y71{bottom:129.632000pt;}
.y179{bottom:129.952000pt;}
.yff{bottom:132.000000pt;}
.y34{bottom:133.312000pt;}
.yd0{bottom:134.586667pt;}
.y3b{bottom:139.880000pt;}
.y103{bottom:141.826667pt;}
.yfd{bottom:142.720000pt;}
.yee{bottom:147.866667pt;}
.y178{bottom:150.746667pt;}
.y8d{bottom:151.226667pt;}
.y33{bottom:152.026667pt;}
.yac{bottom:152.506667pt;}
.y3a{bottom:153.640000pt;}
.yaa{bottom:153.786667pt;}
.y114{bottom:156.160000pt;}
.y14e{bottom:156.186667pt;}
.y143{bottom:157.626667pt;}
.y1aa{bottom:159.066667pt;}
.y70{bottom:160.826667pt;}
.y104{bottom:163.266667pt;}
.ycf{bottom:165.786667pt;}
.y177{bottom:167.546667pt;}
.y39{bottom:167.560000pt;}
.y32{bottom:169.466667pt;}
.yed{bottom:178.906667pt;}
.y38{bottom:181.320000pt;}
.y8c{bottom:182.426667pt;}
.y115{bottom:184.573333pt;}
.y14f{bottom:184.613333pt;}
.y105{bottom:184.706667pt;}
.ya9{bottom:184.986667pt;}
.y31{bottom:186.746667pt;}
.y142{bottom:188.826667pt;}
.y37{bottom:190.106667pt;}
.y1a9{bottom:190.266667pt;}
.y6f{bottom:191.866667pt;}
.yce{bottom:196.826667pt;}
.y30{bottom:204.026667pt;}
.y106{bottom:206.173333pt;}
.yec{bottom:208.826667pt;}
.y176{bottom:210.106667pt;}
.yfc{bottom:210.720000pt;}
.y116{bottom:212.986667pt;}
.y150{bottom:213.026667pt;}
.y8b{bottom:213.626667pt;}
.ycd{bottom:213.786667pt;}
.ya8{bottom:216.186667pt;}
.y141{bottom:217.466667pt;}
.yfe{bottom:217.786667pt;}
.y2f{bottom:221.306667pt;}
.y6e{bottom:223.066667pt;}
.y10c{bottom:225.893333pt;}
.y146{bottom:225.920000pt;}
.y107{bottom:227.613333pt;}
.y192{bottom:228.026667pt;}
.y140{bottom:231.546667pt;}
.ycc{bottom:234.426667pt;}
.yeb{bottom:237.466667pt;}
.y2e{bottom:238.746667pt;}
.y117{bottom:241.373333pt;}
.y151{bottom:241.440000pt;}
.y8a{bottom:244.666667pt;}
.ya7{bottom:247.386667pt;}
.yfb{bottom:250.746667pt;}
.y1a8{bottom:251.226667pt;}
.y175{bottom:252.346667pt;}
.y13e{bottom:252.826667pt;}
.y6d{bottom:254.266667pt;}
.yca{bottom:255.226667pt;}
.y2d{bottom:256.026667pt;}
.y191{bottom:259.226667pt;}
.yea{bottom:265.946667pt;}
.y2c{bottom:273.306667pt;}
.y174{bottom:273.626667pt;}
.yf9{bottom:274.106667pt;}
.y89{bottom:275.866667pt;}
.yc9{bottom:277.146667pt;}
.ya6{bottom:278.586667pt;}
.y1a7{bottom:281.146667pt;}
.y6c{bottom:285.466667pt;}
.y190{bottom:290.426667pt;}
.y2b{bottom:290.586667pt;}
.ye9{bottom:294.586667pt;}
.y171{bottom:294.906667pt;}
.y139{bottom:296.026667pt;}
.yf7{bottom:296.186667pt;}
.yc7{bottom:297.946667pt;}
.y88{bottom:307.106667pt;}
.y2a{bottom:308.066667pt;}
.ya5{bottom:309.666667pt;}
.y1a6{bottom:312.386667pt;}
.y6b{bottom:316.706667pt;}
.yf6{bottom:317.186667pt;}
.y138{bottom:317.346667pt;}
.yc6{bottom:319.906667pt;}
.y18f{bottom:321.666667pt;}
.ye8{bottom:323.106667pt;}
.y29{bottom:325.346667pt;}
.y170{bottom:337.026667pt;}
.yf5{bottom:338.146667pt;}
.y87{bottom:338.306667pt;}
.y136{bottom:338.626667pt;}
.yc5{bottom:340.706667pt;}
.ya4{bottom:340.866667pt;}
.y28{bottom:342.626667pt;}
.y1a5{bottom:343.426667pt;}
.y6a{bottom:347.746667pt;}
.ye7{bottom:351.746667pt;}
.y18e{bottom:352.706667pt;}
.y16f{bottom:358.306667pt;}
.yf3{bottom:359.106667pt;}
.y27{bottom:359.906667pt;}
.y133{bottom:360.546667pt;}
.yc4{bottom:362.626667pt;}
.y86{bottom:369.506667pt;}
.ya3{bottom:372.066667pt;}
.y1a4{bottom:374.626667pt;}
.y26{bottom:377.186667pt;}
.y69{bottom:378.946667pt;}
.y16e{bottom:379.586667pt;}
.ye6{bottom:380.386667pt;}
.yf1{bottom:381.506667pt;}
.y132{bottom:381.826667pt;}
.yc3{bottom:383.426667pt;}
.y18d{bottom:383.906667pt;}
.y25{bottom:394.626667pt;}
.y85{bottom:400.706667pt;}
.y12f{bottom:403.106667pt;}
.ya2{bottom:403.266667pt;}
.yc2{bottom:405.346667pt;}
.y1a3{bottom:405.826667pt;}
.y68{bottom:410.146667pt;}
.y24{bottom:411.906667pt;}
.y18c{bottom:415.106667pt;}
.ye5{bottom:420.866667pt;}
.y16d{bottom:421.826667pt;}
.y128{bottom:425.026667pt;}
.yc1{bottom:426.146667pt;}
.y23{bottom:429.186667pt;}
.y84{bottom:431.746667pt;}
.ya1{bottom:434.466667pt;}
.y1a2{bottom:437.026667pt;}
.y67{bottom:441.346667pt;}
.y16c{bottom:443.106667pt;}
.y18b{bottom:446.306667pt;}
.y22{bottom:446.466667pt;}
.yc0{bottom:448.066667pt;}
.ye4{bottom:452.066667pt;}
.y83{bottom:462.946667pt;}
.y21{bottom:463.906667pt;}
.y16b{bottom:464.386667pt;}
.ya0{bottom:465.506667pt;}
.y1a1{bottom:468.226667pt;}
.ybf{bottom:468.866667pt;}
.y66{bottom:472.546667pt;}
.y18a{bottom:477.506667pt;}
.y20{bottom:481.186667pt;}
.ye3{bottom:482.786667pt;}
.ybe{bottom:490.786667pt;}
.y82{bottom:494.146667pt;}
.y9f{bottom:496.706667pt;}
.y1f{bottom:498.466667pt;}
.y1a0{bottom:499.426667pt;}
.ye2{bottom:500.066667pt;}
.y65{bottom:503.746667pt;}
.y127{bottom:504.706667pt;}
.y16a{bottom:506.626667pt;}
.y189{bottom:508.706667pt;}
.ybd{bottom:511.586667pt;}
.y1e{bottom:515.746667pt;}
.y126{bottom:522.146667pt;}
.y81{bottom:525.346667pt;}
.y9e{bottom:527.906667pt;}
.ye1{bottom:528.546667pt;}
.y19f{bottom:530.466667pt;}
.y1d{bottom:533.186667pt;}
.y64{bottom:533.506667pt;}
.y188{bottom:539.773333pt;}
.y168{bottom:549.213333pt;}
.y1c{bottom:550.493333pt;}
.ybb{bottom:554.333333pt;}
.y80{bottom:556.573333pt;}
.y9d{bottom:559.133333pt;}
.ye0{bottom:559.773333pt;}
.y63{bottom:561.053333pt;}
.y125{bottom:561.213333pt;}
.y19e{bottom:561.693333pt;}
.y1b{bottom:567.773333pt;}
.y187{bottom:570.973333pt;}
.yba{bottom:575.133333pt;}
.y62{bottom:578.333333pt;}
.y1a{bottom:585.053333pt;}
.y7f{bottom:587.773333pt;}
.y9c{bottom:590.333333pt;}
.ydf{bottom:590.813333pt;}
.y167{bottom:591.453333pt;}
.y124{bottom:592.413333pt;}
.y19d{bottom:592.893333pt;}
.y61{bottom:595.613333pt;}
.yb9{bottom:597.053333pt;}
.y186{bottom:602.173333pt;}
.y19{bottom:602.493333pt;}
.y166{bottom:612.733333pt;}
.y60{bottom:612.893333pt;}
.yb8{bottom:617.853333pt;}
.y7e{bottom:618.813333pt;}
.y18{bottom:620.093333pt;}
.y9b{bottom:621.533333pt;}
.yde{bottom:622.013333pt;}
.y123{bottom:623.613333pt;}
.y19c{bottom:624.093333pt;}
.y5f{bottom:630.173333pt;}
.y185{bottom:633.373333pt;}
.y163{bottom:634.013333pt;}
.y17{bottom:638.333333pt;}
.yb7{bottom:639.773333pt;}
.y5e{bottom:647.613333pt;}
.y7d{bottom:650.013333pt;}
.y9a{bottom:652.573333pt;}
.ydd{bottom:653.213333pt;}
.y16{bottom:653.853333pt;}
.y122{bottom:654.813333pt;}
.y19b{bottom:655.293333pt;}
.yb6{bottom:660.573333pt;}
.y184{bottom:663.133333pt;}
.y5d{bottom:664.893333pt;}
.y15{bottom:669.533333pt;}
.y15f{bottom:676.253333pt;}
.y7c{bottom:681.213333pt;}
.y5c{bottom:682.173333pt;}
.yb5{bottom:682.493333pt;}
.y99{bottom:683.773333pt;}
.ydc{bottom:684.413333pt;}
.y19a{bottom:686.333333pt;}
.y14{bottom:689.053333pt;}
.y183{bottom:691.773333pt;}
.y121{bottom:696.573333pt;}
.y145{bottom:696.640000pt;}
.y162{bottom:697.373333pt;}
.y5b{bottom:699.453333pt;}
.y13{bottom:700.733333pt;}
.y10b{bottom:702.880000pt;}
.yb3{bottom:703.293333pt;}
.y7b{bottom:712.413333pt;}
.y98{bottom:714.973333pt;}
.ydb{bottom:715.613333pt;}
.y5a{bottom:716.893333pt;}
.y199{bottom:717.533333pt;}
.y15e{bottom:718.653333pt;}
.y12{bottom:720.253333pt;}
.y182{bottom:720.413333pt;}
.yb2{bottom:725.213333pt;}
.y59{bottom:734.173333pt;}
.y11{bottom:735.773333pt;}
.y180{bottom:735.933333pt;}
.y120{bottom:738.493333pt;}
.y15d{bottom:740.573333pt;}
.y7a{bottom:743.613333pt;}
.y97{bottom:746.173333pt;}
.yb0{bottom:746.653333pt;}
.yda{bottom:746.813333pt;}
.y10{bottom:747.453333pt;}
.y198{bottom:748.733333pt;}
.y58{bottom:751.453333pt;}
.y15c{bottom:761.853333pt;}
.yf{bottom:762.973333pt;}
.y57{bottom:768.733333pt;}
.y17e{bottom:769.053333pt;}
.y79{bottom:774.693333pt;}
.y96{bottom:777.413333pt;}
.yd9{bottom:777.893333pt;}
.ye{bottom:778.693333pt;}
.y197{bottom:779.973333pt;}
.y11f{bottom:780.293333pt;}
.yaf{bottom:782.693333pt;}
.y15b{bottom:783.173333pt;}
.y56{bottom:786.213333pt;}
.y1b0{bottom:791.173333pt;}
.yd{bottom:794.213333pt;}
.y17a{bottom:802.853333pt;}
.y55{bottom:803.493333pt;}
.y157{bottom:805.093333pt;}
.y78{bottom:805.893333pt;}
.y95{bottom:808.613333pt;}
.yd8{bottom:809.093333pt;}
.yc{bottom:809.893333pt;}
.y196{bottom:811.173333pt;}
.y54{bottom:820.773333pt;}
.y1af{bottom:821.093333pt;}
.y11e{bottom:822.213333pt;}
.yb{bottom:825.413333pt;}
.y159{bottom:828.133333pt;}
.y17c{bottom:836.613333pt;}
.y77{bottom:837.093333pt;}
.y53{bottom:838.053333pt;}
.y94{bottom:839.653333pt;}
.yd7{bottom:840.293333pt;}
.y195{bottom:840.933333pt;}
.y1ae{bottom:852.293333pt;}
.y52{bottom:855.493333pt;}
.y11d{bottom:863.973333pt;}
.ya{bottom:866.373333pt;}
.y76{bottom:868.293333pt;}
.y194{bottom:869.573333pt;}
.y93{bottom:870.853333pt;}
.yd6{bottom:871.493333pt;}
.y51{bottom:872.773333pt;}
.y1ad{bottom:883.333333pt;}
.y156{bottom:884.933333pt;}
.y50{bottom:890.053333pt;}
.y9{bottom:890.693333pt;}
.y75{bottom:899.493333pt;}
.y92{bottom:902.053333pt;}
.y155{bottom:902.213333pt;}
.yd5{bottom:902.693333pt;}
.y11c{bottom:905.893333pt;}
.y4f{bottom:907.333333pt;}
.y1ac{bottom:913.253333pt;}
.y8{bottom:914.853333pt;}
.y4e{bottom:924.613333pt;}
.y74{bottom:930.693333pt;}
.y91{bottom:933.253333pt;}
.yd4{bottom:933.893333pt;}
.y7{bottom:939.173333pt;}
.y4d{bottom:942.053333pt;}
.y11b{bottom:947.653333pt;}
.y4c{bottom:959.333333pt;}
.y73{bottom:961.733333pt;}
.y6{bottom:963.333333pt;}
.y90{bottom:964.453333pt;}
.yd3{bottom:964.933333pt;}
.y4b{bottom:976.613333pt;}
.y11a{bottom:978.373333pt;}
.y5{bottom:988.773333pt;}
.y72{bottom:992.933333pt;}
.y4a{bottom:994.213333pt;}
.yd2{bottom:995.653333pt;}
.y45{bottom:1025.600000pt;}
.y2{bottom:1043.520000pt;}
.y1{bottom:1061.760000pt;}
.h16{height:20.640000pt;}
.h12{height:20.800000pt;}
.h14{height:20.832000pt;}
.h19{height:20.960000pt;}
.h1a{height:20.992000pt;}
.h18{height:21.120000pt;}
.h22{height:21.280000pt;}
.h25{height:21.312000pt;}
.h13{height:21.920000pt;}
.h15{height:21.952000pt;}
.h1b{height:22.080000pt;}
.h21{height:22.240000pt;}
.h28{height:22.400000pt;}
.h2d{height:32.960000pt;}
.h2e{height:32.992000pt;}
.h2f{height:33.120000pt;}
.h8{height:34.109375pt;}
.hd{height:38.720000pt;}
.he{height:38.751250pt;}
.h2{height:39.876250pt;}
.h20{height:41.440000pt;}
.h2b{height:41.472000pt;}
.h2a{height:41.600000pt;}
.h23{height:42.560000pt;}
.h24{height:42.592000pt;}
.h17{height:43.040000pt;}
.hb{height:44.764375pt;}
.h4{height:50.109375pt;}
.h1e{height:50.243000pt;}
.h5{height:55.454375pt;}
.h27{height:55.588000pt;}
.h9{height:58.453459pt;}
.hf{height:58.563750pt;}
.h3{height:61.467500pt;}
.hc{height:61.601125pt;}
.h29{height:63.680000pt;}
.h1f{height:64.480000pt;}
.h2c{height:66.720000pt;}
.h10{height:66.812500pt;}
.h1d{height:66.946125pt;}
.h11{height:70.425854pt;}
.h6{height:72.157500pt;}
.h7{height:78.170625pt;}
.ha{height:204.346667pt;}
.h1c{height:264.480000pt;}
.h26{height:264.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:43.680000pt;}
.w15{width:55.520000pt;}
.w10{width:55.552000pt;}
.w14{width:64.992000pt;}
.wf{width:65.760000pt;}
.w1c{width:67.712000pt;}
.w16{width:70.240000pt;}
.wd{width:79.872000pt;}
.w1e{width:83.840000pt;}
.w1f{width:84.992000pt;}
.w17{width:85.920000pt;}
.w9{width:90.752000pt;}
.w11{width:91.360000pt;}
.w1a{width:93.440000pt;}
.w20{width:99.520000pt;}
.w6{width:100.000000pt;}
.w18{width:103.072000pt;}
.w12{width:103.232000pt;}
.w13{width:103.840000pt;}
.w23{width:108.000000pt;}
.w7{width:120.032000pt;}
.wc{width:135.040000pt;}
.w24{width:137.146667pt;}
.w19{width:144.666667pt;}
.w1b{width:184.506667pt;}
.we{width:188.986667pt;}
.wa{width:192.826667pt;}
.w3{width:214.786667pt;}
.w8{width:226.746667pt;}
.w22{width:245.146667pt;}
.w5{width:289.986667pt;}
.w21{width:352.866667pt;}
.w4{width:582.013333pt;}
.wb{width:604.640000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:4.640000pt;}
.x10{left:7.200000pt;}
.x8{left:9.600000pt;}
.x4e{left:11.040000pt;}
.x52{left:12.000000pt;}
.x3a{left:12.960000pt;}
.x46{left:14.240000pt;}
.x48{left:15.360000pt;}
.x57{left:16.320000pt;}
.x3d{left:17.960000pt;}
.x47{left:19.360000pt;}
.x4b{left:20.800000pt;}
.x34{left:21.693333pt;}
.x39{left:22.600000pt;}
.x38{left:23.720000pt;}
.x49{left:24.826667pt;}
.x2d{left:28.026667pt;}
.x41{left:32.480000pt;}
.x55{left:33.760000pt;}
.x44{left:35.040000pt;}
.x4c{left:36.226667pt;}
.x21{left:37.146667pt;}
.x23{left:38.106667pt;}
.x1e{left:40.026667pt;}
.x17{left:41.920000pt;}
.x18{left:42.880000pt;}
.x19{left:43.880000pt;}
.x12{left:45.920000pt;}
.x50{left:46.880000pt;}
.x1a{left:47.880000pt;}
.x15{left:49.920000pt;}
.x4a{left:51.546667pt;}
.x14{left:53.640000pt;}
.x2b{left:56.346667pt;}
.x2a{left:58.720000pt;}
.x16{left:60.040000pt;}
.x29{left:64.386667pt;}
.x5b{left:68.520000pt;}
.x25{left:73.440000pt;}
.x22{left:77.760000pt;}
.x24{left:81.920000pt;}
.x20{left:89.920000pt;}
.x2f{left:94.946667pt;}
.x36{left:107.552000pt;}
.x33{left:110.426667pt;}
.x5{left:113.471988pt;}
.x58{left:116.832000pt;}
.x56{left:121.754667pt;}
.x59{left:132.994667pt;}
.x30{left:136.413333pt;}
.xa{left:160.666655pt;}
.x1b{left:170.266655pt;}
.x26{left:176.320000pt;}
.x2c{left:177.893333pt;}
.x5d{left:184.666655pt;}
.xe{left:187.066655pt;}
.x2e{left:216.706667pt;}
.x6{left:233.626655pt;}
.x5c{left:241.466655pt;}
.x37{left:242.586667pt;}
.x4d{left:251.586667pt;}
.x35{left:254.400000pt;}
.xb{left:262.466655pt;}
.x31{left:301.786667pt;}
.x4{left:309.506655pt;}
.x2{left:321.666655pt;}
.x27{left:331.013333pt;}
.x4f{left:345.026667pt;}
.x32{left:382.493333pt;}
.x1d{left:386.946667pt;}
.x45{left:408.386667pt;}
.x1{left:415.933322pt;}
.x3f{left:425.693333pt;}
.x54{left:430.013333pt;}
.xd{left:448.573322pt;}
.x11{left:450.813333pt;}
.x5a{left:469.693333pt;}
.x1f{left:477.693333pt;}
.x28{left:487.293333pt;}
.x3b{left:511.453333pt;}
.x40{left:529.533333pt;}
.x13{left:550.813333pt;}
.x7{left:557.373333pt;}
.x3c{left:577.213333pt;}
.x9{left:592.293322pt;}
.x42{left:594.533333pt;}
.x51{left:597.253333pt;}
.x3e{left:632.773333pt;}
.x53{left:640.933333pt;}
.x43{left:650.053333pt;}
.xc{left:705.573322pt;}
.x3{left:706.853322pt;}
.xf{left:708.293322pt;}
}




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