
    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_b40b9883d0db6e83fe9a07ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_adac309f742925b9ac7a4319.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6847b084f553777ab18a321b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_800b7c4659d1946b26bdbaf0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_c39df0b242c1e270636344cc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ea27fe53af6dadc9089d5b86.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_3e41b6174fb8c6694bed1f48.woff2')format("woff");}.ff9{font-family:ff9;line-height:2.965820;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_59d1ce2b74949860b4f9a37d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bf27fd73207d68c838427c5d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4fcb4ea373ab823bf79df6f6.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_89e74652e7758b46277ba878.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.088867;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;}
.m2{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-55.440000px;}
.v10{vertical-align:-25.920000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-14.400000px;}
.vc{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:14.400000px;}
.ve{vertical-align:18.720000px;}
.vd{vertical-align:21.600000px;}
.v8{vertical-align:33.840000px;}
.v11{vertical-align:40.320000px;}
.v7{vertical-align:48.240000px;}
.v6{vertical-align:54.720000px;}
.va{vertical-align:56.880000px;}
.vb{vertical-align:62.640000px;}
.vf{vertical-align:90.120000px;}
.v9{vertical-align:92.160000px;}
.ls4{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.277200px;}
.ls17{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.056880px;}
.lsb{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.126000px;}
.ls3{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.720000px;}
.lsa{letter-spacing:3.322800px;}
.ls8{letter-spacing:4.104720px;}
.ls1b{letter-spacing:5.040000px;}
.ls7{letter-spacing:14.112000px;}
.ls11{letter-spacing:20.936880px;}
.ls6{letter-spacing:24.536880px;}
.lsf{letter-spacing:24.660000px;}
.ls9{letter-spacing:24.984720px;}
.ls12{letter-spacing:59.976000px;}
.ls10{letter-spacing:65.736000px;}
.lsc{letter-spacing:97.992000px;}
.lsd{letter-spacing:100.872000px;}
.ls1{letter-spacing:962.940000px;}
.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;}
}
.ws1e{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws1f{word-spacing:-17.856000px;}
.ws20{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.840000px;}
.ws10{word-spacing:-13.505760px;}
.wsb{word-spacing:-12.236544px;}
.ws6{word-spacing:-11.246400px;}
.wsa{word-spacing:-10.969200px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:1.136640px;}
.ws13{word-spacing:1.375200px;}
.wsf{word-spacing:76.494000px;}
.wsd{word-spacing:76.554000px;}
.wse{word-spacing:77.094000px;}
.wsc{word-spacing:77.214000px;}
.ws12{word-spacing:77.514000px;}
.ws14{word-spacing:81.714000px;}
.ws15{word-spacing:82.254000px;}
.ws16{word-spacing:82.434000px;}
.ws18{word-spacing:82.974000px;}
.ws17{word-spacing:83.574000px;}
.ws1a{word-spacing:84.594000px;}
.ws1d{word-spacing:84.714000px;}
.ws1b{word-spacing:84.894000px;}
.ws1c{word-spacing:85.314000px;}
.ws19{word-spacing:92.094000px;}
.ws4{word-spacing:98.235120px;}
.ws5{word-spacing:130.392000px;}
.ws8{word-spacing:430.935120px;}
.ws7{word-spacing:665.595120px;}
.ws9{word-spacing:1465.695120px;}
._18{margin-left:-8.654640px;}
._12{margin-left:-5.396160px;}
._11{margin-left:-4.346640px;}
._e{margin-left:-3.240000px;}
._2{margin-left:-2.036160px;}
._1{margin-left:-1.013040px;}
._4{width:1.128000px;}
._6{width:2.592000px;}
._7{width:4.272000px;}
._c{width:5.824320px;}
._b{width:7.056000px;}
._a{width:8.208000px;}
._d{width:9.432000px;}
._10{width:10.872000px;}
._8{width:12.024000px;}
._9{width:13.124160px;}
._3{width:14.256000px;}
._5{width:15.336000px;}
._f{width:16.752000px;}
._17{width:19.848000px;}
._15{width:21.096000px;}
._16{width:22.680000px;}
._1b{width:26.064000px;}
._1c{width:27.192000px;}
._19{width:29.102640px;}
._13{width:32.040000px;}
._14{width:33.972000px;}
._1d{width:119.136000px;}
._1e{width:120.172320px;}
._1a{width:846.300000px;}
._0{width:1314.168000px;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fsc{font-size:54.144000px;}
.fs8{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y96{bottom:3.960000px;}
.yc2{bottom:3.996000px;}
.y4e{bottom:5.220000px;}
.yb7{bottom:6.156000px;}
.y172{bottom:6.300000px;}
.y174{bottom:14.220000px;}
.y105{bottom:22.530000px;}
.y122{bottom:22.575000px;}
.y158{bottom:22.605000px;}
.y119{bottom:22.710000px;}
.y9b{bottom:24.660000px;}
.yc1{bottom:24.690000px;}
.yb6{bottom:26.850000px;}
.y102{bottom:44.925000px;}
.y160{bottom:44.970000px;}
.y25{bottom:45.000000px;}
.y156{bottom:45.030000px;}
.y116{bottom:45.150000px;}
.y9a{bottom:45.360000px;}
.yc0{bottom:45.390000px;}
.y50{bottom:46.440000px;}
.yb5{bottom:47.550000px;}
.y103{bottom:48.315000px;}
.y117{bottom:53.640000px;}
.y24{bottom:60.120000px;}
.yfb{bottom:62.490000px;}
.y11b{bottom:62.535000px;}
.y14c{bottom:62.610000px;}
.y10f{bottom:62.670000px;}
.y190{bottom:62.715000px;}
.y4d{bottom:64.260000px;}
.ybe{bottom:66.060000px;}
.y99{bottom:66.090000px;}
.y5{bottom:66.525004px;}
.y4f{bottom:67.140000px;}
.yb4{bottom:68.250000px;}
.ybd{bottom:86.760000px;}
.y98{bottom:86.790000px;}
.y4c{bottom:88.200000px;}
.yb3{bottom:88.950000px;}
.y14d{bottom:89.070000px;}
.y131{bottom:89.100000px;}
.y110{bottom:91.545000px;}
.y18e{bottom:92.340000px;}
.y15a{bottom:92.445000px;}
.yf9{bottom:92.880000px;}
.y133{bottom:92.955000px;}
.y72{bottom:95.400000px;}
.y11c{bottom:96.510000px;}
.y191{bottom:96.735000px;}
.y4{bottom:97.125005px;}
.y180{bottom:97.380000px;}
.yfc{bottom:97.665000px;}
.ye2{bottom:100.080000px;}
.y10d{bottom:102.240000px;}
.y157{bottom:107.355000px;}
.ybc{bottom:107.460000px;}
.y118{bottom:108.750000px;}
.yb2{bottom:109.650000px;}
.y4b{bottom:110.700000px;}
.y94{bottom:111.780000px;}
.y13a{bottom:112.215000px;}
.y14a{bottom:112.680000px;}
.y198{bottom:113.400000px;}
.y1a1{bottom:114.150000px;}
.y161{bottom:114.690000px;}
.y19a{bottom:115.350000px;}
.y14e{bottom:115.485000px;}
.yc3{bottom:115.740000px;}
.y18d{bottom:118.080000px;}
.yf8{bottom:118.620000px;}
.y121{bottom:119.910000px;}
.y130{bottom:120.060000px;}
.y111{bottom:120.420000px;}
.y15b{bottom:122.370000px;}
.y134{bottom:123.225000px;}
.y4a{bottom:123.300000px;}
.y71{bottom:126.540000px;}
.y11a{bottom:127.980000px;}
.ybb{bottom:128.160000px;}
.y17f{bottom:128.340000px;}
.yb1{bottom:130.350000px;}
.y11d{bottom:130.470000px;}
.y192{bottom:130.710000px;}
.ye1{bottom:131.040000px;}
.y9c{bottom:132.120000px;}
.yfd{bottom:132.870000px;}
.y149{bottom:137.016000px;}
.y159{bottom:137.340000px;}
.y20{bottom:139.264499px;}
.y19b{bottom:141.735000px;}
.y14f{bottom:141.945000px;}
.y18c{bottom:142.416000px;}
.y93{bottom:142.776000px;}
.yf7{bottom:142.956000px;}
.y199{bottom:143.280000px;}
.yfa{bottom:144.000000px;}
.y1a6{bottom:145.656000px;}
.y104{bottom:147.345000px;}
.y1d8{bottom:147.636000px;}
.yba{bottom:148.860000px;}
.y112{bottom:149.295000px;}
.yb0{bottom:151.050000px;}
.y12f{bottom:151.230000px;}
.y15c{bottom:152.280000px;}
.y135{bottom:153.510000px;}
.y70{bottom:157.530000px;}
.y17e{bottom:159.510000px;}
.ye0{bottom:159.690000px;}
.y11e{bottom:164.445000px;}
.y193{bottom:164.730000px;}
.y49{bottom:167.250000px;}
.yfe{bottom:168.045000px;}
.y19c{bottom:168.150000px;}
.y150{bottom:168.405000px;}
.yb9{bottom:169.560000px;}
.y1e6{bottom:169.950000px;}
.yaf{bottom:171.750000px;}
.y92{bottom:173.910000px;}
.ydf{bottom:174.450000px;}
.y1bf{bottom:176.070000px;}
.y1a5{bottom:176.610000px;}
.y113{bottom:178.170000px;}
.y1d7{bottom:178.770000px;}
.y12e{bottom:182.190000px;}
.y136{bottom:183.780000px;}
.y6f{bottom:188.670000px;}
.y17d{bottom:190.470000px;}
.yae{bottom:192.450000px;}
.y19d{bottom:194.550000px;}
.y151{bottom:194.865000px;}
.yde{bottom:195.150000px;}
.y17{bottom:196.933500px;}
.y48{bottom:198.390000px;}
.y194{bottom:198.750000px;}
.y1e5{bottom:201.090000px;}
.yff{bottom:203.220000px;}
.y91{bottom:204.870000px;}
.y114{bottom:207.030000px;}
.y1a4{bottom:207.750000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y15d{bottom:212.115000px;}
.yad{bottom:213.150000px;}
.y12d{bottom:213.330000px;}
.y137{bottom:214.050000px;}
.ybf{bottom:215.670000px;}
.ydd{bottom:215.850000px;}
.y6e{bottom:219.630000px;}
.y19e{bottom:220.965000px;}
.y152{bottom:221.325000px;}
.y17c{bottom:221.610000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y47{bottom:229.350000px;}
.y11f{bottom:232.380000px;}
.y195{bottom:232.770000px;}
.yac{bottom:233.850000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y115{bottom:235.875000px;}
.y90{bottom:236.010000px;}
.ydc{bottom:236.550000px;}
.y1be{bottom:238.170000px;}
.y100{bottom:238.395000px;}
.y15e{bottom:242.025000px;}
.y12c{bottom:244.290000px;}
.y138{bottom:244.335000px;}
.y1a3{bottom:244.830000px;}
.y1d6{bottom:246.810000px;}
.y19f{bottom:247.350000px;}
.y153{bottom:247.755000px;}
.y6d{bottom:250.770000px;}
.y17b{bottom:252.570000px;}
.yab{bottom:254.550000px;}
.ydb{bottom:257.970000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y46{bottom:260.490000px;}
.y120{bottom:266.325000px;}
.y196{bottom:266.760000px;}
.y8f{bottom:266.970000px;}
.y1e4{bottom:269.130000px;}
.y15f{bottom:271.950000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y101{bottom:273.570000px;}
.y1a0{bottom:273.780000px;}
.y154{bottom:274.215000px;}
.y139{bottom:274.605000px;}
.y1bd{bottom:275.070000px;}
.y12b{bottom:275.250000px;}
.yaa{bottom:275.295000px;}
.y1a2{bottom:275.790000px;}
.y1d5{bottom:277.950000px;}
.y6c{bottom:281.730000px;}
.y17a{bottom:283.710000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y45{bottom:291.450000px;}
.yda{bottom:293.790000px;}
.ya9{bottom:295.995000px;}
.y8e{bottom:298.110000px;}
.y155{bottom:300.675000px;}
.y197{bottom:300.780000px;}
.y1bc{bottom:306.210000px;}
.y12a{bottom:306.390000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y179{bottom:312.330000px;}
.y6b{bottom:312.870000px;}
.y1d4{bottom:314.850000px;}
.ya8{bottom:316.695000px;}
.y44{bottom:322.590000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.yd9{bottom:324.750000px;}
.y178{bottom:328.530000px;}
.y8d{bottom:329.070000px;}
.y1bb{bottom:337.170000px;}
.y129{bottom:337.350000px;}
.ya7{bottom:337.395000px;}
.y6a{bottom:343.830000px;}
.y1d3{bottom:345.990000px;}
.ye{bottom:348.133500px;}
.y43{bottom:353.550000px;}
.y177{bottom:353.910000px;}
.yd8{bottom:355.890000px;}
.ya6{bottom:358.095000px;}
.y8c{bottom:360.210000px;}
.y1ba{bottom:368.310000px;}
.y128{bottom:368.490000px;}
.y69{bottom:374.970000px;}
.ya5{bottom:378.795000px;}
.y1d2{bottom:383.070000px;}
.y42{bottom:384.690000px;}
.yd{bottom:386.785499px;}
.yd7{bottom:386.850000px;}
.y8b{bottom:391.215000px;}
.y176{bottom:397.515000px;}
.y1b9{bottom:399.315000px;}
.ya4{bottom:399.495000px;}
.yb8{bottom:402.735000px;}
.y1e3{bottom:405.435000px;}
.y68{bottom:405.975000px;}
.yc{bottom:408.044999px;}
.y1d1{bottom:414.075000px;}
.y41{bottom:415.695000px;}
.yd6{bottom:418.035000px;}
.ya3{bottom:420.195000px;}
.y8a{bottom:422.355000px;}
.y175{bottom:425.235000px;}
.y10c{bottom:429.015000px;}
.y127{bottom:430.635000px;}
.y148{bottom:433.515000px;}
.y1b8{bottom:436.395000px;}
.y67{bottom:437.115000px;}
.ya2{bottom:440.895000px;}
.y1d0{bottom:445.215000px;}
.y40{bottom:446.835000px;}
.yd5{bottom:448.995000px;}
.y173{bottom:450.615000px;}
.y18b{bottom:451.695000px;}
.yf6{bottom:452.235000px;}
.y89{bottom:453.315000px;}
.y147{bottom:454.215000px;}
.y10b{bottom:457.455000px;}
.ya1{bottom:461.595000px;}
.y1b7{bottom:467.535000px;}
.y66{bottom:468.075000px;}
.y1e2{bottom:473.475000px;}
.y3f{bottom:477.795000px;}
.yd4{bottom:480.135000px;}
.ya0{bottom:482.295000px;}
.y18a{bottom:482.655000px;}
.yf5{bottom:483.195000px;}
.y88{bottom:484.455000px;}
.y146{bottom:485.355000px;}
.y10a{bottom:485.895000px;}
.y126{bottom:492.735000px;}
.y1b6{bottom:498.495000px;}
.y65{bottom:499.215000px;}
.y9f{bottom:502.995000px;}
.y1e1{bottom:504.435000px;}
.y3e{bottom:508.935000px;}
.yd3{bottom:511.095000px;}
.y1cf{bottom:513.255000px;}
.y189{bottom:513.795000px;}
.yf4{bottom:514.335000px;}
.y87{bottom:515.415000px;}
.y145{bottom:516.315000px;}
.y109{bottom:516.855000px;}
.yb{bottom:520.864502px;}
.y125{bottom:523.695000px;}
.y9e{bottom:523.725000px;}
.y64{bottom:530.175000px;}
.y171{bottom:534.675000px;}
.y1b5{bottom:535.575000px;}
.ya{bottom:538.864499px;}
.y3d{bottom:539.895000px;}
.yd2{bottom:542.235000px;}
.y9d{bottom:544.425000px;}
.y188{bottom:544.755000px;}
.yf3{bottom:545.295000px;}
.y86{bottom:546.555000px;}
.y144{bottom:547.455000px;}
.y108{bottom:547.995000px;}
.y1ce{bottom:550.335000px;}
.y124{bottom:552.315000px;}
.y9{bottom:556.864499px;}
.y63{bottom:561.315000px;}
.y170{bottom:565.635000px;}
.y1b4{bottom:566.535000px;}
.y3c{bottom:571.035000px;}
.y1e0{bottom:572.655000px;}
.yd1{bottom:573.195000px;}
.y187{bottom:575.895000px;}
.yf2{bottom:576.435000px;}
.y123{bottom:576.795000px;}
.y85{bottom:577.515000px;}
.y143{bottom:578.415000px;}
.y132{bottom:578.880000px;}
.y107{bottom:578.955000px;}
.y1cd{bottom:581.295000px;}
.y97{bottom:589.755000px;}
.y3b{bottom:591.735000px;}
.y62{bottom:592.275000px;}
.y16f{bottom:594.255000px;}
.y1b3{bottom:597.675000px;}
.y1df{bottom:603.615000px;}
.yd0{bottom:604.335000px;}
.y186{bottom:606.855000px;}
.yf1{bottom:607.395000px;}
.y106{bottom:607.575000px;}
.y84{bottom:608.655000px;}
.y142{bottom:609.555000px;}
.y16e{bottom:610.455000px;}
.y3a{bottom:612.435000px;}
.y1cc{bottom:618.375000px;}
.y61{bottom:623.415000px;}
.y16d{bottom:631.155000px;}
.ycf{bottom:632.055000px;}
.y10e{bottom:632.340000px;}
.ycc{bottom:632.595000px;}
.y39{bottom:633.135000px;}
.y1b2{bottom:634.755000px;}
.yca{bottom:637.995000px;}
.yf0{bottom:638.535000px;}
.y83{bottom:639.615000px;}
.y141{bottom:640.545000px;}
.ycb{bottom:643.965000px;}
.ycd{bottom:644.145000px;}
.y8{bottom:645.510000px;}
.y1cb{bottom:649.545000px;}
.y16c{bottom:651.885000px;}
.y38{bottom:653.865000px;}
.y60{bottom:654.405000px;}
.yc9{bottom:655.125000px;}
.y1b1{bottom:665.745000px;}
.y7{bottom:666.771000px;}
.y185{bottom:668.985000px;}
.yef{bottom:669.525000px;}
.y82{bottom:670.785000px;}
.y140{bottom:671.685000px;}
.y1de{bottom:671.865000px;}
.y16b{bottom:672.585000px;}
.y37{bottom:674.565000px;}
.yce{bottom:681.765000px;}
.y5f{bottom:685.545000px;}
.y1ca{bottom:686.445000px;}
.y16a{bottom:693.285000px;}
.y36{bottom:695.265000px;}
.y95{bottom:695.625000px;}
.y1b0{bottom:696.885000px;}
.y184{bottom:700.125000px;}
.yee{bottom:700.665000px;}
.y81{bottom:701.745000px;}
.y13f{bottom:702.645000px;}
.y1dd{bottom:702.825000px;}
.yc8{bottom:706.785000px;}
.y169{bottom:713.985000px;}
.y35{bottom:715.965000px;}
.y5e{bottom:716.505000px;}
.y1c9{bottom:717.585000px;}
.y6{bottom:726.298500px;}
.y183{bottom:731.085000px;}
.yed{bottom:731.625000px;}
.y80{bottom:732.885000px;}
.y13e{bottom:733.785000px;}
.y168{bottom:734.685000px;}
.yc7{bottom:736.485000px;}
.y34{bottom:736.665000px;}
.yc5{bottom:747.465000px;}
.y5d{bottom:747.645000px;}
.y1c8{bottom:748.545000px;}
.y3{bottom:752.599495px;}
.y167{bottom:755.385000px;}
.y33{bottom:757.365000px;}
.yc4{bottom:759.525000px;}
.y182{bottom:759.705000px;}
.y13d{bottom:762.225000px;}
.yec{bottom:762.765000px;}
.y7f{bottom:763.845000px;}
.y1af{bottom:764.925000px;}
.y1dc{bottom:770.865000px;}
.y166{bottom:776.085000px;}
.y32{bottom:778.065000px;}
.y5c{bottom:778.605000px;}
.y181{bottom:784.005000px;}
.y18f{bottom:784.800000px;}
.y1c7{bottom:785.625000px;}
.yc6{bottom:786.345000px;}
.y13c{bottom:786.525000px;}
.y14b{bottom:787.500000px;}
.yeb{bottom:793.725000px;}
.y7e{bottom:794.985000px;}
.y165{bottom:796.785000px;}
.y31{bottom:798.585000px;}
.y1ae{bottom:802.005000px;}
.y5b{bottom:809.745000px;}
.y164{bottom:817.485000px;}
.y30{bottom:819.285000px;}
.y1c6{bottom:822.705000px;}
.yea{bottom:824.865000px;}
.y7d{bottom:825.945000px;}
.y1ad{bottom:832.965000px;}
.y163{bottom:838.185000px;}
.y1db{bottom:839.085000px;}
.y2f{bottom:839.985000px;}
.y5a{bottom:840.705000px;}
.y1c5{bottom:853.845000px;}
.ye9{bottom:855.825000px;}
.y7c{bottom:857.085000px;}
.y2e{bottom:860.685000px;}
.y162{bottom:861.225000px;}
.y1ac{bottom:870.045000px;}
.y59{bottom:871.845000px;}
.y2{bottom:879.369000px;}
.y2d{bottom:881.385000px;}
.ye8{bottom:886.965000px;}
.y7b{bottom:888.045000px;}
.y1c4{bottom:890.745000px;}
.y1ab{bottom:901.230000px;}
.y2c{bottom:902.130000px;}
.y58{bottom:902.850000px;}
.y1da{bottom:907.170000px;}
.y7a{bottom:919.230000px;}
.y1c3{bottom:921.930000px;}
.y2b{bottom:922.830000px;}
.ye7{bottom:925.530000px;}
.y57{bottom:933.990000px;}
.ye6{bottom:937.590000px;}
.y1aa{bottom:938.130000px;}
.y2a{bottom:943.530000px;}
.y79{bottom:950.190000px;}
.y1c2{bottom:959.010000px;}
.y29{bottom:964.230000px;}
.y56{bottom:964.950000px;}
.y1{bottom:966.726000px;}
.y1a9{bottom:969.270000px;}
.y1d9{bottom:975.210000px;}
.y78{bottom:981.330000px;}
.ye5{bottom:984.570000px;}
.y1c1{bottom:989.970000px;}
.y55{bottom:995.910000px;}
.y28{bottom:1005.630000px;}
.y1a8{bottom:1006.350000px;}
.y77{bottom:1012.290000px;}
.y1c0{bottom:1021.110000px;}
.ye4{bottom:1023.270000px;}
.y54{bottom:1027.050000px;}
.ye3{bottom:1035.330000px;}
.y1a7{bottom:1037.310000px;}
.y76{bottom:1043.430000px;}
.y27{bottom:1045.770000px;}
.y53{bottom:1058.010000px;}
.y26{bottom:1073.310000px;}
.y75{bottom:1074.390000px;}
.y52{bottom:1089.150000px;}
.y74{bottom:1105.350000px;}
.y23{bottom:1117.590000px;}
.y51{bottom:1120.110000px;}
.y13b{bottom:1121.370000px;}
.y22{bottom:1140.630000px;}
.y73{bottom:1142.250000px;}
.y21{bottom:1161.360000px;}
.hf{height:16.380000px;}
.h13{height:20.700000px;}
.h2d{height:20.736000px;}
.h2e{height:25.380000px;}
.h7{height:32.130000px;}
.hd{height:38.158594px;}
.h2f{height:41.400000px;}
.h2c{height:41.436000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h10{height:48.616875px;}
.h30{height:50.800781px;}
.h12{height:52.998047px;}
.h23{height:53.709961px;}
.h24{height:53.853187px;}
.h2{height:55.080000px;}
.he{height:58.651172px;}
.h25{height:59.439023px;}
.h11{height:64.546875px;}
.h29{height:66.757500px;}
.hc{height:70.628906px;}
.h9{height:70.664062px;}
.hb{height:72.562500px;}
.h5{height:78.030000px;}
.h18{height:82.836000px;}
.h1b{height:90.408516px;}
.ha{height:96.508125px;}
.h14{height:103.536000px;}
.h4{height:119.055004px;}
.h1e{height:127.335938px;}
.h1f{height:157.488516px;}
.h21{height:162.944062px;}
.h1a{height:175.575938px;}
.h19{height:182.055937px;}
.h16{height:186.300000px;}
.h17{height:186.330000px;}
.h1d{height:195.528516px;}
.h20{height:217.455938px;}
.h1c{height:219.495938px;}
.h26{height:256.320000px;}
.h27{height:286.740000px;}
.h2b{height:292.320000px;}
.h22{height:293.940000px;}
.h32{height:294.120000px;}
.h28{height:295.020000px;}
.h2a{height:320.940000px;}
.h31{height:321.120000px;}
.h15{height:561.165000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h8{height:1263.060000px;}
.w1a{width:88.236000px;}
.w19{width:88.380000px;}
.w18{width:88.416000px;}
.w16{width:102.060000px;}
.w7{width:128.376000px;}
.w14{width:150.330000px;}
.w13{width:156.630000px;}
.w15{width:161.850000px;}
.wa{width:162.930000px;}
.w17{width:180.210000px;}
.w9{width:183.990000px;}
.w8{width:247.890000px;}
.wc{width:272.550000px;}
.wb{width:450.645000px;}
.w2{width:637.794021px;}
.w12{width:713.160000px;}
.w1b{width:713.700000px;}
.wd{width:716.040000px;}
.we{width:717.120000px;}
.wf{width:720.000000px;}
.w11{width:721.620000px;}
.w1c{width:722.160000px;}
.w10{width:723.960000px;}
.w6{width:813.780000px;}
.w5{width:813.960000px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.136000px;}
.x13{left:10.650000px;}
.x3a{left:14.760000px;}
.x4b{left:19.440000px;}
.x3d{left:21.780000px;}
.x44{left:26.280000px;}
.xf{left:28.116000px;}
.x41{left:30.060000px;}
.x40{left:31.140000px;}
.x29{left:33.084000px;}
.x11{left:36.180000px;}
.xc{left:39.600000px;}
.xe{left:41.940000px;}
.x2e{left:48.528000px;}
.x42{left:50.400000px;}
.x2a{left:51.444000px;}
.x2d{left:55.368000px;}
.x38{left:58.176000px;}
.x27{left:59.976000px;}
.x3e{left:65.340000px;}
.x26{left:66.810000px;}
.x43{left:69.660000px;}
.x34{left:77.475000px;}
.x5{left:84.959987px;}
.x36{left:90.210000px;}
.x4d{left:97.170000px;}
.x1{left:102.045000px;}
.x2f{left:103.605000px;}
.x2{left:106.297500px;}
.x28{left:114.450000px;}
.x8{left:119.195987px;}
.xa{left:127.475987px;}
.x4f{left:138.095987px;}
.xd{left:163.650000px;}
.x50{left:170.129987px;}
.x7{left:189.749987px;}
.x21{left:200.925000px;}
.x4{left:203.484001px;}
.x10{left:213.330000px;}
.x22{left:214.425000px;}
.x1a{left:226.469987px;}
.x39{left:241.590000px;}
.x45{left:265.170000px;}
.x1f{left:268.229987px;}
.x1e{left:276.689987px;}
.xb{left:301.034987px;}
.x1b{left:307.334987px;}
.x9{left:311.294987px;}
.x1c{left:320.114987px;}
.x35{left:348.090000px;}
.x37{left:350.820000px;}
.x46{left:353.595000px;}
.x4e{left:358.740000px;}
.x30{left:361.050000px;}
.x23{left:362.954987px;}
.x2b{left:364.755000px;}
.x16{left:385.814987px;}
.x3b{left:391.935000px;}
.x17{left:424.694987px;}
.x24{left:435.494987px;}
.x19{left:438.374987px;}
.x47{left:441.975000px;}
.x18{left:446.114987px;}
.x3{left:454.959000px;}
.x12{left:461.235000px;}
.x1d{left:523.724987px;}
.x48{left:530.205000px;}
.x20{left:535.605000px;}
.x3c{left:542.265000px;}
.x49{left:618.585000px;}
.x14{left:645.225000px;}
.x3f{left:704.130000px;}
.x4a{left:707.010000px;}
.x6{left:789.989987px;}
.x33{left:798.269987px;}
.x4c{left:800.609987px;}
.x25{left:802.769987px;}
.x2c{left:805.109987px;}
.x32{left:807.269987px;}
.x31{left:809.609987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-49.280000pt;}
.v10{vertical-align:-23.040000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-12.800000pt;}
.vc{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.800000pt;}
.ve{vertical-align:16.640000pt;}
.vd{vertical-align:19.200000pt;}
.v8{vertical-align:30.080000pt;}
.v11{vertical-align:35.840000pt;}
.v7{vertical-align:42.880000pt;}
.v6{vertical-align:48.640000pt;}
.va{vertical-align:50.560000pt;}
.vb{vertical-align:55.680000pt;}
.vf{vertical-align:80.106667pt;}
.v9{vertical-align:81.920000pt;}
.ls4{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.246400pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.050560pt;}
.lsb{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.112000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.640000pt;}
.lsa{letter-spacing:2.953600pt;}
.ls8{letter-spacing:3.648640pt;}
.ls1b{letter-spacing:4.480000pt;}
.ls7{letter-spacing:12.544000pt;}
.ls11{letter-spacing:18.610560pt;}
.ls6{letter-spacing:21.810560pt;}
.lsf{letter-spacing:21.920000pt;}
.ls9{letter-spacing:22.208640pt;}
.ls12{letter-spacing:53.312000pt;}
.ls10{letter-spacing:58.432000pt;}
.lsc{letter-spacing:87.104000pt;}
.lsd{letter-spacing:89.664000pt;}
.ls1{letter-spacing:855.946667pt;}
.ws1e{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws1f{word-spacing:-15.872000pt;}
.ws20{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws10{word-spacing:-12.005120pt;}
.wsb{word-spacing:-10.876928pt;}
.ws6{word-spacing:-9.996800pt;}
.wsa{word-spacing:-9.750400pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:1.010347pt;}
.ws13{word-spacing:1.222400pt;}
.wsf{word-spacing:67.994667pt;}
.wsd{word-spacing:68.048000pt;}
.wse{word-spacing:68.528000pt;}
.wsc{word-spacing:68.634667pt;}
.ws12{word-spacing:68.901333pt;}
.ws14{word-spacing:72.634667pt;}
.ws15{word-spacing:73.114667pt;}
.ws16{word-spacing:73.274667pt;}
.ws18{word-spacing:73.754667pt;}
.ws17{word-spacing:74.288000pt;}
.ws1a{word-spacing:75.194667pt;}
.ws1d{word-spacing:75.301333pt;}
.ws1b{word-spacing:75.461333pt;}
.ws1c{word-spacing:75.834667pt;}
.ws19{word-spacing:81.861333pt;}
.ws4{word-spacing:87.320107pt;}
.ws5{word-spacing:115.904000pt;}
.ws8{word-spacing:383.053440pt;}
.ws7{word-spacing:591.640107pt;}
.ws9{word-spacing:1302.840107pt;}
._18{margin-left:-7.693013pt;}
._12{margin-left:-4.796587pt;}
._11{margin-left:-3.863680pt;}
._e{margin-left:-2.880000pt;}
._2{margin-left:-1.809920pt;}
._1{margin-left:-0.900480pt;}
._4{width:1.002667pt;}
._6{width:2.304000pt;}
._7{width:3.797333pt;}
._c{width:5.177173pt;}
._b{width:6.272000pt;}
._a{width:7.296000pt;}
._d{width:8.384000pt;}
._10{width:9.664000pt;}
._8{width:10.688000pt;}
._9{width:11.665920pt;}
._3{width:12.672000pt;}
._5{width:13.632000pt;}
._f{width:14.890667pt;}
._17{width:17.642667pt;}
._15{width:18.752000pt;}
._16{width:20.160000pt;}
._1b{width:23.168000pt;}
._1c{width:24.170667pt;}
._19{width:25.869013pt;}
._13{width:28.480000pt;}
._14{width:30.197333pt;}
._1d{width:105.898667pt;}
._1e{width:106.819840pt;}
._1a{width:752.266667pt;}
._0{width:1168.149333pt;}
.fs7{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fsc{font-size:48.128000pt;}
.fs8{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:3.520000pt;}
.yc2{bottom:3.552000pt;}
.y4e{bottom:4.640000pt;}
.yb7{bottom:5.472000pt;}
.y172{bottom:5.600000pt;}
.y174{bottom:12.640000pt;}
.y105{bottom:20.026667pt;}
.y122{bottom:20.066667pt;}
.y158{bottom:20.093333pt;}
.y119{bottom:20.186667pt;}
.y9b{bottom:21.920000pt;}
.yc1{bottom:21.946667pt;}
.yb6{bottom:23.866667pt;}
.y102{bottom:39.933333pt;}
.y160{bottom:39.973333pt;}
.y25{bottom:40.000000pt;}
.y156{bottom:40.026667pt;}
.y116{bottom:40.133333pt;}
.y9a{bottom:40.320000pt;}
.yc0{bottom:40.346667pt;}
.y50{bottom:41.280000pt;}
.yb5{bottom:42.266667pt;}
.y103{bottom:42.946667pt;}
.y117{bottom:47.680000pt;}
.y24{bottom:53.440000pt;}
.yfb{bottom:55.546667pt;}
.y11b{bottom:55.586667pt;}
.y14c{bottom:55.653333pt;}
.y10f{bottom:55.706667pt;}
.y190{bottom:55.746667pt;}
.y4d{bottom:57.120000pt;}
.ybe{bottom:58.720000pt;}
.y99{bottom:58.746667pt;}
.y5{bottom:59.133337pt;}
.y4f{bottom:59.680000pt;}
.yb4{bottom:60.666667pt;}
.ybd{bottom:77.120000pt;}
.y98{bottom:77.146667pt;}
.y4c{bottom:78.400000pt;}
.yb3{bottom:79.066667pt;}
.y14d{bottom:79.173333pt;}
.y131{bottom:79.200000pt;}
.y110{bottom:81.373333pt;}
.y18e{bottom:82.080000pt;}
.y15a{bottom:82.173333pt;}
.yf9{bottom:82.560000pt;}
.y133{bottom:82.626667pt;}
.y72{bottom:84.800000pt;}
.y11c{bottom:85.786667pt;}
.y191{bottom:85.986667pt;}
.y4{bottom:86.333337pt;}
.y180{bottom:86.560000pt;}
.yfc{bottom:86.813333pt;}
.ye2{bottom:88.960000pt;}
.y10d{bottom:90.880000pt;}
.y157{bottom:95.426667pt;}
.ybc{bottom:95.520000pt;}
.y118{bottom:96.666667pt;}
.yb2{bottom:97.466667pt;}
.y4b{bottom:98.400000pt;}
.y94{bottom:99.360000pt;}
.y13a{bottom:99.746667pt;}
.y14a{bottom:100.160000pt;}
.y198{bottom:100.800000pt;}
.y1a1{bottom:101.466667pt;}
.y161{bottom:101.946667pt;}
.y19a{bottom:102.533333pt;}
.y14e{bottom:102.653333pt;}
.yc3{bottom:102.880000pt;}
.y18d{bottom:104.960000pt;}
.yf8{bottom:105.440000pt;}
.y121{bottom:106.586667pt;}
.y130{bottom:106.720000pt;}
.y111{bottom:107.040000pt;}
.y15b{bottom:108.773333pt;}
.y134{bottom:109.533333pt;}
.y4a{bottom:109.600000pt;}
.y71{bottom:112.480000pt;}
.y11a{bottom:113.760000pt;}
.ybb{bottom:113.920000pt;}
.y17f{bottom:114.080000pt;}
.yb1{bottom:115.866667pt;}
.y11d{bottom:115.973333pt;}
.y192{bottom:116.186667pt;}
.ye1{bottom:116.480000pt;}
.y9c{bottom:117.440000pt;}
.yfd{bottom:118.106667pt;}
.y149{bottom:121.792000pt;}
.y159{bottom:122.080000pt;}
.y20{bottom:123.790666pt;}
.y19b{bottom:125.986667pt;}
.y14f{bottom:126.173333pt;}
.y18c{bottom:126.592000pt;}
.y93{bottom:126.912000pt;}
.yf7{bottom:127.072000pt;}
.y199{bottom:127.360000pt;}
.yfa{bottom:128.000000pt;}
.y1a6{bottom:129.472000pt;}
.y104{bottom:130.973333pt;}
.y1d8{bottom:131.232000pt;}
.yba{bottom:132.320000pt;}
.y112{bottom:132.706667pt;}
.yb0{bottom:134.266667pt;}
.y12f{bottom:134.426667pt;}
.y15c{bottom:135.360000pt;}
.y135{bottom:136.453333pt;}
.y70{bottom:140.026667pt;}
.y17e{bottom:141.786667pt;}
.ye0{bottom:141.946667pt;}
.y11e{bottom:146.173333pt;}
.y193{bottom:146.426667pt;}
.y49{bottom:148.666667pt;}
.yfe{bottom:149.373333pt;}
.y19c{bottom:149.466667pt;}
.y150{bottom:149.693333pt;}
.yb9{bottom:150.720000pt;}
.y1e6{bottom:151.066667pt;}
.yaf{bottom:152.666667pt;}
.y92{bottom:154.586667pt;}
.ydf{bottom:155.066667pt;}
.y1bf{bottom:156.506667pt;}
.y1a5{bottom:156.986667pt;}
.y113{bottom:158.373333pt;}
.y1d7{bottom:158.906667pt;}
.y12e{bottom:161.946667pt;}
.y136{bottom:163.360000pt;}
.y6f{bottom:167.706667pt;}
.y17d{bottom:169.306667pt;}
.yae{bottom:171.066667pt;}
.y19d{bottom:172.933333pt;}
.y151{bottom:173.213333pt;}
.yde{bottom:173.466667pt;}
.y17{bottom:175.052000pt;}
.y48{bottom:176.346667pt;}
.y194{bottom:176.666667pt;}
.y1e5{bottom:178.746667pt;}
.yff{bottom:180.640000pt;}
.y91{bottom:182.106667pt;}
.y114{bottom:184.026667pt;}
.y1a4{bottom:184.666667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y15d{bottom:188.546667pt;}
.yad{bottom:189.466667pt;}
.y12d{bottom:189.626667pt;}
.y137{bottom:190.266667pt;}
.ybf{bottom:191.706667pt;}
.ydd{bottom:191.866667pt;}
.y6e{bottom:195.226667pt;}
.y19e{bottom:196.413333pt;}
.y152{bottom:196.733333pt;}
.y17c{bottom:196.986667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y47{bottom:203.866667pt;}
.y11f{bottom:206.560000pt;}
.y195{bottom:206.906667pt;}
.yac{bottom:207.866667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y115{bottom:209.666667pt;}
.y90{bottom:209.786667pt;}
.ydc{bottom:210.266667pt;}
.y1be{bottom:211.706667pt;}
.y100{bottom:211.906667pt;}
.y15e{bottom:215.133333pt;}
.y12c{bottom:217.146667pt;}
.y138{bottom:217.186667pt;}
.y1a3{bottom:217.626667pt;}
.y1d6{bottom:219.386667pt;}
.y19f{bottom:219.866667pt;}
.y153{bottom:220.226667pt;}
.y6d{bottom:222.906667pt;}
.y17b{bottom:224.506667pt;}
.yab{bottom:226.266667pt;}
.ydb{bottom:229.306667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y46{bottom:231.546667pt;}
.y120{bottom:236.733333pt;}
.y196{bottom:237.120000pt;}
.y8f{bottom:237.306667pt;}
.y1e4{bottom:239.226667pt;}
.y15f{bottom:241.733333pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y101{bottom:243.173333pt;}
.y1a0{bottom:243.360000pt;}
.y154{bottom:243.746667pt;}
.y139{bottom:244.093333pt;}
.y1bd{bottom:244.506667pt;}
.y12b{bottom:244.666667pt;}
.yaa{bottom:244.706667pt;}
.y1a2{bottom:245.146667pt;}
.y1d5{bottom:247.066667pt;}
.y6c{bottom:250.426667pt;}
.y17a{bottom:252.186667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y45{bottom:259.066667pt;}
.yda{bottom:261.146667pt;}
.ya9{bottom:263.106667pt;}
.y8e{bottom:264.986667pt;}
.y155{bottom:267.266667pt;}
.y197{bottom:267.360000pt;}
.y1bc{bottom:272.186667pt;}
.y12a{bottom:272.346667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y179{bottom:277.626667pt;}
.y6b{bottom:278.106667pt;}
.y1d4{bottom:279.866667pt;}
.ya8{bottom:281.506667pt;}
.y44{bottom:286.746667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.yd9{bottom:288.666667pt;}
.y178{bottom:292.026667pt;}
.y8d{bottom:292.506667pt;}
.y1bb{bottom:299.706667pt;}
.y129{bottom:299.866667pt;}
.ya7{bottom:299.906667pt;}
.y6a{bottom:305.626667pt;}
.y1d3{bottom:307.546667pt;}
.ye{bottom:309.452000pt;}
.y43{bottom:314.266667pt;}
.y177{bottom:314.586667pt;}
.yd8{bottom:316.346667pt;}
.ya6{bottom:318.306667pt;}
.y8c{bottom:320.186667pt;}
.y1ba{bottom:327.386667pt;}
.y128{bottom:327.546667pt;}
.y69{bottom:333.306667pt;}
.ya5{bottom:336.706667pt;}
.y1d2{bottom:340.506667pt;}
.y42{bottom:341.946667pt;}
.yd{bottom:343.809333pt;}
.yd7{bottom:343.866667pt;}
.y8b{bottom:347.746667pt;}
.y176{bottom:353.346667pt;}
.y1b9{bottom:354.946667pt;}
.ya4{bottom:355.106667pt;}
.yb8{bottom:357.986667pt;}
.y1e3{bottom:360.386667pt;}
.y68{bottom:360.866667pt;}
.yc{bottom:362.706666pt;}
.y1d1{bottom:368.066667pt;}
.y41{bottom:369.506667pt;}
.yd6{bottom:371.586667pt;}
.ya3{bottom:373.506667pt;}
.y8a{bottom:375.426667pt;}
.y175{bottom:377.986667pt;}
.y10c{bottom:381.346667pt;}
.y127{bottom:382.786667pt;}
.y148{bottom:385.346667pt;}
.y1b8{bottom:387.906667pt;}
.y67{bottom:388.546667pt;}
.ya2{bottom:391.906667pt;}
.y1d0{bottom:395.746667pt;}
.y40{bottom:397.186667pt;}
.yd5{bottom:399.106667pt;}
.y173{bottom:400.546667pt;}
.y18b{bottom:401.506667pt;}
.yf6{bottom:401.986667pt;}
.y89{bottom:402.946667pt;}
.y147{bottom:403.746667pt;}
.y10b{bottom:406.626667pt;}
.ya1{bottom:410.306667pt;}
.y1b7{bottom:415.586667pt;}
.y66{bottom:416.066667pt;}
.y1e2{bottom:420.866667pt;}
.y3f{bottom:424.706667pt;}
.yd4{bottom:426.786667pt;}
.ya0{bottom:428.706667pt;}
.y18a{bottom:429.026667pt;}
.yf5{bottom:429.506667pt;}
.y88{bottom:430.626667pt;}
.y146{bottom:431.426667pt;}
.y10a{bottom:431.906667pt;}
.y126{bottom:437.986667pt;}
.y1b6{bottom:443.106667pt;}
.y65{bottom:443.746667pt;}
.y9f{bottom:447.106667pt;}
.y1e1{bottom:448.386667pt;}
.y3e{bottom:452.386667pt;}
.yd3{bottom:454.306667pt;}
.y1cf{bottom:456.226667pt;}
.y189{bottom:456.706667pt;}
.yf4{bottom:457.186667pt;}
.y87{bottom:458.146667pt;}
.y145{bottom:458.946667pt;}
.y109{bottom:459.426667pt;}
.yb{bottom:462.990669pt;}
.y125{bottom:465.506667pt;}
.y9e{bottom:465.533333pt;}
.y64{bottom:471.266667pt;}
.y171{bottom:475.266667pt;}
.y1b5{bottom:476.066667pt;}
.ya{bottom:478.990666pt;}
.y3d{bottom:479.906667pt;}
.yd2{bottom:481.986667pt;}
.y9d{bottom:483.933333pt;}
.y188{bottom:484.226667pt;}
.yf3{bottom:484.706667pt;}
.y86{bottom:485.826667pt;}
.y144{bottom:486.626667pt;}
.y108{bottom:487.106667pt;}
.y1ce{bottom:489.186667pt;}
.y124{bottom:490.946667pt;}
.y9{bottom:494.990666pt;}
.y63{bottom:498.946667pt;}
.y170{bottom:502.786667pt;}
.y1b4{bottom:503.586667pt;}
.y3c{bottom:507.586667pt;}
.y1e0{bottom:509.026667pt;}
.yd1{bottom:509.506667pt;}
.y187{bottom:511.906667pt;}
.yf2{bottom:512.386667pt;}
.y123{bottom:512.706667pt;}
.y85{bottom:513.346667pt;}
.y143{bottom:514.146667pt;}
.y132{bottom:514.560000pt;}
.y107{bottom:514.626667pt;}
.y1cd{bottom:516.706667pt;}
.y97{bottom:524.226667pt;}
.y3b{bottom:525.986667pt;}
.y62{bottom:526.466667pt;}
.y16f{bottom:528.226667pt;}
.y1b3{bottom:531.266667pt;}
.y1df{bottom:536.546667pt;}
.yd0{bottom:537.186667pt;}
.y186{bottom:539.426667pt;}
.yf1{bottom:539.906667pt;}
.y106{bottom:540.066667pt;}
.y84{bottom:541.026667pt;}
.y142{bottom:541.826667pt;}
.y16e{bottom:542.626667pt;}
.y3a{bottom:544.386667pt;}
.y1cc{bottom:549.666667pt;}
.y61{bottom:554.146667pt;}
.y16d{bottom:561.026667pt;}
.ycf{bottom:561.826667pt;}
.y10e{bottom:562.080000pt;}
.ycc{bottom:562.306667pt;}
.y39{bottom:562.786667pt;}
.y1b2{bottom:564.226667pt;}
.yca{bottom:567.106667pt;}
.yf0{bottom:567.586667pt;}
.y83{bottom:568.546667pt;}
.y141{bottom:569.373333pt;}
.ycb{bottom:572.413333pt;}
.ycd{bottom:572.573333pt;}
.y8{bottom:573.786667pt;}
.y1cb{bottom:577.373333pt;}
.y16c{bottom:579.453333pt;}
.y38{bottom:581.213333pt;}
.y60{bottom:581.693333pt;}
.yc9{bottom:582.333333pt;}
.y1b1{bottom:591.773333pt;}
.y7{bottom:592.685334pt;}
.y185{bottom:594.653333pt;}
.yef{bottom:595.133333pt;}
.y82{bottom:596.253333pt;}
.y140{bottom:597.053333pt;}
.y1de{bottom:597.213333pt;}
.y16b{bottom:597.853333pt;}
.y37{bottom:599.613333pt;}
.yce{bottom:606.013333pt;}
.y5f{bottom:609.373333pt;}
.y1ca{bottom:610.173333pt;}
.y16a{bottom:616.253333pt;}
.y36{bottom:618.013333pt;}
.y95{bottom:618.333333pt;}
.y1b0{bottom:619.453333pt;}
.y184{bottom:622.333333pt;}
.yee{bottom:622.813333pt;}
.y81{bottom:623.773333pt;}
.y13f{bottom:624.573333pt;}
.y1dd{bottom:624.733333pt;}
.yc8{bottom:628.253333pt;}
.y169{bottom:634.653333pt;}
.y35{bottom:636.413333pt;}
.y5e{bottom:636.893333pt;}
.y1c9{bottom:637.853333pt;}
.y6{bottom:645.598667pt;}
.y183{bottom:649.853333pt;}
.yed{bottom:650.333333pt;}
.y80{bottom:651.453333pt;}
.y13e{bottom:652.253333pt;}
.y168{bottom:653.053333pt;}
.yc7{bottom:654.653333pt;}
.y34{bottom:654.813333pt;}
.yc5{bottom:664.413333pt;}
.y5d{bottom:664.573333pt;}
.y1c8{bottom:665.373333pt;}
.y3{bottom:668.977329pt;}
.y167{bottom:671.453333pt;}
.y33{bottom:673.213333pt;}
.yc4{bottom:675.133333pt;}
.y182{bottom:675.293333pt;}
.y13d{bottom:677.533333pt;}
.yec{bottom:678.013333pt;}
.y7f{bottom:678.973333pt;}
.y1af{bottom:679.933333pt;}
.y1dc{bottom:685.213333pt;}
.y166{bottom:689.853333pt;}
.y32{bottom:691.613333pt;}
.y5c{bottom:692.093333pt;}
.y181{bottom:696.893333pt;}
.y18f{bottom:697.600000pt;}
.y1c7{bottom:698.333333pt;}
.yc6{bottom:698.973333pt;}
.y13c{bottom:699.133333pt;}
.y14b{bottom:700.000000pt;}
.yeb{bottom:705.533333pt;}
.y7e{bottom:706.653333pt;}
.y165{bottom:708.253333pt;}
.y31{bottom:709.853333pt;}
.y1ae{bottom:712.893333pt;}
.y5b{bottom:719.773333pt;}
.y164{bottom:726.653333pt;}
.y30{bottom:728.253333pt;}
.y1c6{bottom:731.293333pt;}
.yea{bottom:733.213333pt;}
.y7d{bottom:734.173333pt;}
.y1ad{bottom:740.413333pt;}
.y163{bottom:745.053333pt;}
.y1db{bottom:745.853333pt;}
.y2f{bottom:746.653333pt;}
.y5a{bottom:747.293333pt;}
.y1c5{bottom:758.973333pt;}
.ye9{bottom:760.733333pt;}
.y7c{bottom:761.853333pt;}
.y2e{bottom:765.053333pt;}
.y162{bottom:765.533333pt;}
.y1ac{bottom:773.373333pt;}
.y59{bottom:774.973333pt;}
.y2{bottom:781.661334pt;}
.y2d{bottom:783.453333pt;}
.ye8{bottom:788.413333pt;}
.y7b{bottom:789.373333pt;}
.y1c4{bottom:791.773333pt;}
.y1ab{bottom:801.093333pt;}
.y2c{bottom:801.893333pt;}
.y58{bottom:802.533333pt;}
.y1da{bottom:806.373333pt;}
.y7a{bottom:817.093333pt;}
.y1c3{bottom:819.493333pt;}
.y2b{bottom:820.293333pt;}
.ye7{bottom:822.693333pt;}
.y57{bottom:830.213333pt;}
.ye6{bottom:833.413333pt;}
.y1aa{bottom:833.893333pt;}
.y2a{bottom:838.693333pt;}
.y79{bottom:844.613333pt;}
.y1c2{bottom:852.453333pt;}
.y29{bottom:857.093333pt;}
.y56{bottom:857.733333pt;}
.y1{bottom:859.312000pt;}
.y1a9{bottom:861.573333pt;}
.y1d9{bottom:866.853333pt;}
.y78{bottom:872.293333pt;}
.ye5{bottom:875.173333pt;}
.y1c1{bottom:879.973333pt;}
.y55{bottom:885.253333pt;}
.y28{bottom:893.893333pt;}
.y1a8{bottom:894.533333pt;}
.y77{bottom:899.813333pt;}
.y1c0{bottom:907.653333pt;}
.ye4{bottom:909.573333pt;}
.y54{bottom:912.933333pt;}
.ye3{bottom:920.293333pt;}
.y1a7{bottom:922.053333pt;}
.y76{bottom:927.493333pt;}
.y27{bottom:929.573333pt;}
.y53{bottom:940.453333pt;}
.y26{bottom:954.053333pt;}
.y75{bottom:955.013333pt;}
.y52{bottom:968.133333pt;}
.y74{bottom:982.533333pt;}
.y23{bottom:993.413333pt;}
.y51{bottom:995.653333pt;}
.y13b{bottom:996.773333pt;}
.y22{bottom:1013.893333pt;}
.y73{bottom:1015.333333pt;}
.y21{bottom:1032.320000pt;}
.hf{height:14.560000pt;}
.h13{height:18.400000pt;}
.h2d{height:18.432000pt;}
.h2e{height:22.560000pt;}
.h7{height:28.560000pt;}
.hd{height:33.918750pt;}
.h2f{height:36.800000pt;}
.h2c{height:36.832000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h10{height:43.215000pt;}
.h30{height:45.156250pt;}
.h12{height:47.109375pt;}
.h23{height:47.742188pt;}
.h24{height:47.869500pt;}
.h2{height:48.960000pt;}
.he{height:52.134375pt;}
.h25{height:52.834688pt;}
.h11{height:57.375000pt;}
.h29{height:59.340000pt;}
.hc{height:62.781250pt;}
.h9{height:62.812500pt;}
.hb{height:64.500000pt;}
.h5{height:69.360000pt;}
.h18{height:73.632000pt;}
.h1b{height:80.363125pt;}
.ha{height:85.785000pt;}
.h14{height:92.032000pt;}
.h4{height:105.826671pt;}
.h1e{height:113.187500pt;}
.h1f{height:139.989792pt;}
.h21{height:144.839167pt;}
.h1a{height:156.067500pt;}
.h19{height:161.827500pt;}
.h16{height:165.600000pt;}
.h17{height:165.626667pt;}
.h1d{height:173.803125pt;}
.h20{height:193.294167pt;}
.h1c{height:195.107500pt;}
.h26{height:227.840000pt;}
.h27{height:254.880000pt;}
.h2b{height:259.840000pt;}
.h22{height:261.280000pt;}
.h32{height:261.440000pt;}
.h28{height:262.240000pt;}
.h2a{height:285.280000pt;}
.h31{height:285.440000pt;}
.h15{height:498.813333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h8{height:1122.720000pt;}
.w1a{width:78.432000pt;}
.w19{width:78.560000pt;}
.w18{width:78.592000pt;}
.w16{width:90.720000pt;}
.w7{width:114.112000pt;}
.w14{width:133.626667pt;}
.w13{width:139.226667pt;}
.w15{width:143.866667pt;}
.wa{width:144.826667pt;}
.w17{width:160.186667pt;}
.w9{width:163.546667pt;}
.w8{width:220.346667pt;}
.wc{width:242.266667pt;}
.wb{width:400.573333pt;}
.w2{width:566.928019pt;}
.w12{width:633.920000pt;}
.w1b{width:634.400000pt;}
.wd{width:636.480000pt;}
.we{width:637.440000pt;}
.wf{width:640.000000pt;}
.w11{width:641.440000pt;}
.w1c{width:641.920000pt;}
.w10{width:643.520000pt;}
.w6{width:723.360000pt;}
.w5{width:723.520000pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.232000pt;}
.x13{left:9.466667pt;}
.x3a{left:13.120000pt;}
.x4b{left:17.280000pt;}
.x3d{left:19.360000pt;}
.x44{left:23.360000pt;}
.xf{left:24.992000pt;}
.x41{left:26.720000pt;}
.x40{left:27.680000pt;}
.x29{left:29.408000pt;}
.x11{left:32.160000pt;}
.xc{left:35.200000pt;}
.xe{left:37.280000pt;}
.x2e{left:43.136000pt;}
.x42{left:44.800000pt;}
.x2a{left:45.728000pt;}
.x2d{left:49.216000pt;}
.x38{left:51.712000pt;}
.x27{left:53.312000pt;}
.x3e{left:58.080000pt;}
.x26{left:59.386667pt;}
.x43{left:61.920000pt;}
.x34{left:68.866667pt;}
.x5{left:75.519988pt;}
.x36{left:80.186667pt;}
.x4d{left:86.373333pt;}
.x1{left:90.706667pt;}
.x2f{left:92.093333pt;}
.x2{left:94.486667pt;}
.x28{left:101.733333pt;}
.x8{left:105.951988pt;}
.xa{left:113.311988pt;}
.x4f{left:122.751988pt;}
.xd{left:145.466667pt;}
.x50{left:151.226655pt;}
.x7{left:168.666655pt;}
.x21{left:178.600000pt;}
.x4{left:180.874667pt;}
.x10{left:189.626667pt;}
.x22{left:190.600000pt;}
.x1a{left:201.306655pt;}
.x39{left:214.746667pt;}
.x45{left:235.706667pt;}
.x1f{left:238.426655pt;}
.x1e{left:245.946655pt;}
.xb{left:267.586655pt;}
.x1b{left:273.186655pt;}
.x9{left:276.706655pt;}
.x1c{left:284.546655pt;}
.x35{left:309.413333pt;}
.x37{left:311.840000pt;}
.x46{left:314.306667pt;}
.x4e{left:318.880000pt;}
.x30{left:320.933333pt;}
.x23{left:322.626655pt;}
.x2b{left:324.226667pt;}
.x16{left:342.946655pt;}
.x3b{left:348.386667pt;}
.x17{left:377.506655pt;}
.x24{left:387.106655pt;}
.x19{left:389.666655pt;}
.x47{left:392.866667pt;}
.x18{left:396.546655pt;}
.x3{left:404.408000pt;}
.x12{left:409.986667pt;}
.x1d{left:465.533322pt;}
.x48{left:471.293333pt;}
.x20{left:476.093333pt;}
.x3c{left:482.013333pt;}
.x49{left:549.853333pt;}
.x14{left:573.533333pt;}
.x3f{left:625.893333pt;}
.x4a{left:628.453333pt;}
.x6{left:702.213322pt;}
.x33{left:709.573322pt;}
.x4c{left:711.653322pt;}
.x25{left:713.573322pt;}
.x2c{left:715.653322pt;}
.x32{left:717.573322pt;}
.x31{left:719.653322pt;}
}




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