
    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_15178e3f7d25641ee63be07c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a8382e910690053f91bd95e1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c1af0b002c88f46e338cd630.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9fcb4bf2f4e0d577d3ec4311.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5166bf776c34d7fde592ca09.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e5c51f78508c04c778d07052.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_282ba1868910786a324daaca.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2dd4c9e3a767aba1dae13ad8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727539;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_b6c153a3e5d8301c2398eb98.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls15{letter-spacing:-1.800000px;}
.ls33{letter-spacing:-1.392000px;}
.ls21{letter-spacing:-0.612000px;}
.ls24{letter-spacing:-0.583800px;}
.lsa{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.538800px;}
.ls1e{letter-spacing:-0.413400px;}
.lsf{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.342600px;}
.lsc{letter-spacing:-0.259800px;}
.ls19{letter-spacing:-0.256800px;}
.ls28{letter-spacing:-0.226200px;}
.ls1b{letter-spacing:-0.223800px;}
.ls34{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.206400px;}
.ls1f{letter-spacing:-0.181200px;}
.ls2e{letter-spacing:-0.171600px;}
.ls37{letter-spacing:-0.108000px;}
.ls23{letter-spacing:-0.089400px;}
.ls5{letter-spacing:-0.053280px;}
.ls36{letter-spacing:-0.018000px;}
.ls3{letter-spacing:-0.017280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls7{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.129600px;}
.ls17{letter-spacing:0.150000px;}
.ls1c{letter-spacing:0.178800px;}
.ls1{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.181200px;}
.ls14{letter-spacing:0.206400px;}
.ls20{letter-spacing:0.206640px;}
.ls30{letter-spacing:0.256800px;}
.lsd{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.269400px;}
.ls35{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.460200px;}
.ls26{letter-spacing:0.493800px;}
.ls22{letter-spacing:0.612000px;}
.lse{letter-spacing:0.666000px;}
.ls1d{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.828000px;}
.ls27{letter-spacing:0.900000px;}
.ls2c{letter-spacing:0.978000px;}
.ls9{letter-spacing:1.080000px;}
.ls16{letter-spacing:1.620000px;}
.ls18{letter-spacing:2.340000px;}
.ls25{letter-spacing:3.240000px;}
.ls11{letter-spacing:5.940000px;}
.ls32{letter-spacing:6.749280px;}
.ls2d{letter-spacing:13.229280px;}
.ls29{letter-spacing:540.360000px;}
.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;}
}
.ws17{word-spacing:-15.552000px;}
.wse{word-spacing:-15.400200px;}
.ws5{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.680200px;}
.wsd{word-spacing:-14.580000px;}
.ws1a{word-spacing:-13.860000px;}
.ws1e{word-spacing:-13.824000px;}
.ws9{word-spacing:-13.608000px;}
.ws3{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.500000px;}
.ws1f{word-spacing:-13.482000px;}
.ws20{word-spacing:-13.392000px;}
.ws1c{word-spacing:-13.140000px;}
.ws1b{word-spacing:-12.608400px;}
.ws11{word-spacing:-12.523200px;}
.ws16{word-spacing:-12.420000px;}
.ws14{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.878800px;}
.ws13{word-spacing:-11.160000px;}
.ws18{word-spacing:-10.933800px;}
.ws1d{word-spacing:-10.668000px;}
.ws12{word-spacing:-10.618800px;}
.ws19{word-spacing:-10.213800px;}
.ws0{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.000000px;}
.ws8{word-spacing:0.000000px;}
._13{margin-left:-6.701280px;}
._18{margin-left:-2.137680px;}
._0{margin-left:-1.080000px;}
._1{width:1.026000px;}
._6{width:2.518560px;}
._9{width:3.774960px;}
._c{width:4.987440px;}
._7{width:6.012000px;}
._f{width:7.068240px;}
._e{width:8.127360px;}
._d{width:9.442080px;}
._10{width:10.637280px;}
._8{width:11.880000px;}
._a{width:13.089600px;}
._4{width:14.852160px;}
._3{width:15.863040px;}
._5{width:16.880160px;}
._11{width:19.601280px;}
._12{width:20.894400px;}
._1b{width:22.302000px;}
._15{width:27.775440px;}
._20{width:39.721680px;}
._1f{width:40.770000px;}
._21{width:42.420000px;}
._16{width:64.080000px;}
._1a{width:77.490000px;}
._19{width:79.164000px;}
._b{width:98.216400px;}
._1e{width:121.104000px;}
._1d{width:122.310000px;}
._14{width:156.876480px;}
._1c{width:210.006000px;}
._17{width:540.894000px;}
._2{width:567.534000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:2.685000px;}
.ya8{bottom:2.700000px;}
.yb5{bottom:2.865000px;}
.ya4{bottom:2.880000px;}
.yab{bottom:3.045000px;}
.ya1{bottom:3.060000px;}
.yfe{bottom:5.565000px;}
.ye3{bottom:5.580000px;}
.yfb{bottom:5.745000px;}
.y67{bottom:5.760000px;}
.y68{bottom:5.940000px;}
.y6a{bottom:6.120000px;}
.y135{bottom:7.200000px;}
.yd1{bottom:7.380000px;}
.y17c{bottom:7.560000px;}
.ya6{bottom:9.720000px;}
.yb2{bottom:9.885000px;}
.yac{bottom:9.930000px;}
.y178{bottom:10.080000px;}
.y146{bottom:10.965000px;}
.y13d{bottom:11.520000px;}
.y134{bottom:11.700000px;}
.y137{bottom:12.060000px;}
.y13f{bottom:12.780000px;}
.y6d{bottom:12.960000px;}
.y13b{bottom:13.500000px;}
.y101{bottom:13.845000px;}
.ye0{bottom:13.860000px;}
.yf8{bottom:13.890000px;}
.y9c{bottom:14.580000px;}
.y18e{bottom:14.625000px;}
.y9b{bottom:14.760000px;}
.yb7{bottom:16.545000px;}
.ya7{bottom:16.560000px;}
.yb4{bottom:16.725000px;}
.ya3{bottom:16.740000px;}
.yaa{bottom:16.770000px;}
.yb1{bottom:16.905000px;}
.y13e{bottom:17.460000px;}
.y138{bottom:18.180000px;}
.y156{bottom:18.720000px;}
.y70{bottom:19.440000px;}
.y71{bottom:19.620000px;}
.y6e{bottom:19.800000px;}
.y139{bottom:20.340000px;}
.y17b{bottom:21.240000px;}
.y17e{bottom:21.420000px;}
.yfd{bottom:22.125000px;}
.yea{bottom:22.140000px;}
.yff{bottom:22.305000px;}
.yed{bottom:22.320000px;}
.yfa{bottom:22.350000px;}
.ye1{bottom:22.365000px;}
.y160{bottom:22.860000px;}
.yba{bottom:23.745000px;}
.y19b{bottom:23.940000px;}
.y15c{bottom:25.560000px;}
.y163{bottom:25.590000px;}
.y75{bottom:26.460000px;}
.y13a{bottom:27.180000px;}
.yf1{bottom:30.420000px;}
.yf7{bottom:30.450000px;}
.yb9{bottom:30.585000px;}
.y155{bottom:32.580000px;}
.y78{bottom:33.660000px;}
.y17a{bottom:35.100000px;}
.y15f{bottom:36.540000px;}
.y159{bottom:36.720000px;}
.y19a{bottom:37.620000px;}
.ye9{bottom:38.700000px;}
.y143{bottom:38.730000px;}
.yec{bottom:38.880000px;}
.yf9{bottom:38.910000px;}
.y15b{bottom:39.420000px;}
.y162{bottom:39.450000px;}
.y165{bottom:39.630000px;}
.y74{bottom:40.320000px;}
.y1a6{bottom:40.500000px;}
.y154{bottom:46.440000px;}
.yf0{bottom:46.980000px;}
.y77{bottom:47.340000px;}
.y158{bottom:50.400000px;}
.y15a{bottom:53.280000px;}
.y15e{bottom:53.460000px;}
.y164{bottom:53.490000px;}
.y1a5{bottom:54.180000px;}
.y142{bottom:55.290000px;}
.yeb{bottom:55.440000px;}
.yf3{bottom:55.470000px;}
.y199{bottom:56.880000px;}
.y153{bottom:60.120000px;}
.y76{bottom:61.200000px;}
.yaf{bottom:62.985000px;}
.yef{bottom:63.570000px;}
.y9f{bottom:65.550000px;}
.y15d{bottom:67.140000px;}
.y157{bottom:67.320000px;}
.y1a4{bottom:68.040000px;}
.y198{bottom:70.740000px;}
.yf2{bottom:72.030000px;}
.yae{bottom:79.545000px;}
.y9e{bottom:82.110000px;}
.y197{bottom:84.420000px;}
.y1a3{bottom:87.120000px;}
.y144{bottom:88.590000px;}
.y196{bottom:98.280000px;}
.y1a2{bottom:100.980000px;}
.y1a1{bottom:114.660000px;}
.y195{bottom:117.540000px;}
.y194{bottom:131.220000px;}
.y1a0{bottom:133.920000px;}
.y193{bottom:145.080000px;}
.y19f{bottom:147.780000px;}
.y6{bottom:148.680000px;}
.y25{bottom:153.180000px;}
.y19e{bottom:161.460000px;}
.y192{bottom:164.160000px;}
.y191{bottom:178.020000px;}
.y19d{bottom:180.720000px;}
.y190{bottom:191.700000px;}
.y19c{bottom:194.400000px;}
.y86{bottom:233.130000px;}
.y107{bottom:235.650000px;}
.ydc{bottom:241.410000px;}
.y4a{bottom:247.530000px;}
.y63{bottom:248.070000px;}
.y14e{bottom:253.830000px;}
.ydb{bottom:256.890000px;}
.y23{bottom:260.490000px;}
.y85{bottom:262.110000px;}
.yda{bottom:263.730000px;}
.y106{bottom:265.350000px;}
.y49{bottom:268.230000px;}
.y62{bottom:268.770000px;}
.y18b{bottom:269.310000px;}
.y1b3{bottom:272.190000px;}
.y14d{bottom:274.530000px;}
.y173{bottom:275.250000px;}
.y84{bottom:276.510000px;}
.y22{bottom:281.190000px;}
.yd9{bottom:284.430000px;}
.y105{bottom:286.050000px;}
.ybb{bottom:286.590000px;}
.y48{bottom:288.930000px;}
.y61{bottom:289.470000px;}
.y18a{bottom:290.010000px;}
.y1b2{bottom:290.190000px;}
.y83{bottom:291.090000px;}
.y14c{bottom:295.230000px;}
.y12a{bottom:299.010000px;}
.yd8{bottom:300.090000px;}
.y21{bottom:301.890000px;}
.yad{bottom:302.985000px;}
.y82{bottom:306.570000px;}
.yd7{bottom:306.930000px;}
.y189{bottom:310.530000px;}
.y81{bottom:313.410000px;}
.y97{bottom:314.490000px;}
.y104{bottom:315.390000px;}
.y14b{bottom:315.930000px;}
.y1b1{bottom:317.190000px;}
.yd6{bottom:318.270000px;}
.y47{bottom:318.630000px;}
.y60{bottom:319.170000px;}
.y172{bottom:319.350000px;}
.y80{bottom:324.930000px;}
.y129{bottom:329.070000px;}
.y103{bottom:329.985000px;}
.y188{bottom:331.230000px;}
.y20{bottom:331.770000px;}
.y96{bottom:335.190000px;}
.y128{bottom:335.910000px;}
.y14a{bottom:336.630000px;}
.y46{bottom:339.330000px;}
.y5f{bottom:339.870000px;}
.y127{bottom:347.250000px;}
.y102{bottom:347.265000px;}
.y171{bottom:349.050000px;}
.yb6{bottom:349.425000px;}
.yd5{bottom:351.030000px;}
.y187{bottom:351.930000px;}
.y1b0{bottom:353.190000px;}
.y95{bottom:355.890000px;}
.y7f{bottom:356.610000px;}
.y149{bottom:357.330000px;}
.y45{bottom:360.030000px;}
.y5e{bottom:360.570000px;}
.y1f{bottom:363.630000px;}
.y126{bottom:367.770000px;}
.y170{bottom:369.750000px;}
.y186{bottom:372.630000px;}
.y7e{bottom:377.310000px;}
.y148{bottom:378.030000px;}
.y1af{bottom:380.190000px;}
.y44{bottom:380.730000px;}
.y100{bottom:381.105000px;}
.y5d{bottom:381.270000px;}
.yb3{bottom:382.005000px;}
.y94{bottom:385.590000px;}
.yd4{bottom:387.570000px;}
.y125{bottom:388.470000px;}
.y185{bottom:393.330000px;}
.y16f{bottom:394.590000px;}
.y1e{bottom:395.130000px;}
.y7d{bottom:398.010000px;}
.y1ae{bottom:398.190000px;}
.y43{bottom:401.430000px;}
.y5c{bottom:401.970000px;}
.y93{bottom:406.290000px;}
.y147{bottom:407.730000px;}
.y124{bottom:409.170000px;}
.y184{bottom:414.030000px;}
.yb0{bottom:414.405000px;}
.yfc{bottom:414.945000px;}
.y7b{bottom:418.710000px;}
.y145{bottom:421.965000px;}
.y42{bottom:422.130000px;}
.y5b{bottom:422.670000px;}
.y1d{bottom:424.830000px;}
.y1ad{bottom:425.190000px;}
.y7c{bottom:425.550000px;}
.y92{bottom:426.990000px;}
.y16e{bottom:433.650000px;}
.y183{bottom:434.730000px;}
.y123{bottom:438.870000px;}
.y7a{bottom:439.410000px;}
.y41{bottom:442.830000px;}
.y1ac{bottom:443.190000px;}
.y5a{bottom:443.370000px;}
.y1c{bottom:445.530000px;}
.y9d{bottom:446.985000px;}
.y91{bottom:447.690000px;}
.yf6{bottom:448.965000px;}
.y141{bottom:450.225000px;}
.y16d{bottom:454.350000px;}
.y122{bottom:459.615000px;}
.y1ab{bottom:461.235000px;}
.y40{bottom:463.575000px;}
.y182{bottom:464.835000px;}
.y1b{bottom:466.275000px;}
.y90{bottom:468.435000px;}
.y79{bottom:469.155000px;}
.y59{bottom:473.115000px;}
.y16c{bottom:479.235000px;}
.ya9{bottom:479.595000px;}
.y121{bottom:480.315000px;}
.y73{bottom:483.375000px;}
.yd3{bottom:484.275000px;}
.y1a{bottom:486.975000px;}
.y8f{bottom:489.135000px;}
.y1aa{bottom:492.195000px;}
.y3f{bottom:493.275000px;}
.y58{bottom:493.815000px;}
.y181{bottom:496.335000px;}
.y120{bottom:501.015000px;}
.y19{bottom:507.675000px;}
.y8e{bottom:509.835000px;}
.y180{bottom:510.555000px;}
.ya5{bottom:512.175000px;}
.y3e{bottom:513.975000px;}
.yf5{bottom:514.335000px;}
.y57{bottom:514.515000px;}
.y16b{bottom:518.295000px;}
.y11f{bottom:521.715000px;}
.y1a9{bottom:523.875000px;}
.yd2{bottom:528.195000px;}
.y18{bottom:528.375000px;}
.y8d{bottom:530.535000px;}
.y3d{bottom:534.675000px;}
.y56{bottom:535.215000px;}
.y16a{bottom:538.995000px;}
.y11e{bottom:542.415000px;}
.yd0{bottom:542.775000px;}
.y17f{bottom:543.495000px;}
.ya2{bottom:544.755000px;}
.y1cb{bottom:546.375000px;}
.y17{bottom:549.075000px;}
.y8c{bottom:551.235000px;}
.y3c{bottom:555.375000px;}
.y55{bottom:555.915000px;}
.y72{bottom:559.155000px;}
.y169{bottom:559.695000px;}
.y17d{bottom:562.395000px;}
.y11d{bottom:563.115000px;}
.y140{bottom:565.275000px;}
.ycf{bottom:565.995000px;}
.y16{bottom:570.135000px;}
.y8b{bottom:571.935000px;}
.y1ca{bottom:573.375000px;}
.y3b{bottom:576.075000px;}
.y54{bottom:576.615000px;}
.ya0{bottom:577.155000px;}
.y168{bottom:580.395000px;}
.y11c{bottom:587.955000px;}
.y1c9{bottom:591.375000px;}
.y8a{bottom:592.635000px;}
.y6f{bottom:593.535000px;}
.y179{bottom:595.335000px;}
.yce{bottom:595.515000px;}
.y9a{bottom:596.055000px;}
.y3a{bottom:596.775000px;}
.y53{bottom:597.315000px;}
.y13c{bottom:597.855000px;}
.y167{bottom:601.095000px;}
.y15{bottom:603.795000px;}
.y1c8{bottom:609.375000px;}
.y89{bottom:613.335000px;}
.y39{bottom:617.475000px;}
.y52{bottom:618.015000px;}
.yf4{bottom:621.795000px;}
.y11b{bottom:627.015000px;}
.y6c{bottom:627.735000px;}
.ycd{bottom:632.415000px;}
.y14{bottom:633.495000px;}
.y1c7{bottom:636.375000px;}
.yee{bottom:636.555000px;}
.y38{bottom:638.175000px;}
.y99{bottom:639.255000px;}
.y88{bottom:641.595000px;}
.y177{bottom:641.955000px;}
.y11a{bottom:647.715000px;}
.y51{bottom:647.895000px;}
.y136{bottom:649.875000px;}
.y166{bottom:651.495000px;}
.ycc{bottom:653.115000px;}
.y13{bottom:654.195000px;}
.y1c6{bottom:654.375000px;}
.y37{bottom:658.695000px;}
.y6b{bottom:662.115000px;}
.y161{bottom:665.715000px;}
.y1a8{bottom:668.235000px;}
.y119{bottom:668.415000px;}
.y1c5{bottom:672.375000px;}
.y87{bottom:674.715000px;}
.y12{bottom:674.895000px;}
.ycb{bottom:677.955000px;}
.y176{bottom:678.675000px;}
.y36{bottom:679.395000px;}
.y69{bottom:682.635000px;}
.y118{bottom:689.115000px;}
.y11{bottom:695.625000px;}
.y1c4{bottom:699.405000px;}
.y1a7{bottom:699.765000px;}
.y50{bottom:700.125000px;}
.y66{bottom:703.365000px;}
.y98{bottom:708.045000px;}
.y35{bottom:709.125000px;}
.y117{bottom:709.845000px;}
.y18f{bottom:713.985000px;}
.y175{bottom:714.345000px;}
.y10{bottom:716.325000px;}
.yca{bottom:717.045000px;}
.y1c3{bottom:717.405000px;}
.ye8{bottom:720.105000px;}
.y4f{bottom:720.825000px;}
.y34{bottom:729.825000px;}
.y133{bottom:730.725000px;}
.y1c2{bottom:735.405000px;}
.yf{bottom:736.845000px;}
.yc9{bottom:737.745000px;}
.y65{bottom:738.645000px;}
.y115{bottom:739.545000px;}
.y4e{bottom:741.525000px;}
.y116{bottom:746.385000px;}
.y174{bottom:747.465000px;}
.y33{bottom:750.525000px;}
.ye{bottom:757.905000px;}
.yc8{bottom:758.445000px;}
.y114{bottom:760.245000px;}
.y4d{bottom:762.225000px;}
.y1c1{bottom:762.405000px;}
.y32{bottom:771.225000px;}
.y64{bottom:774.285000px;}
.y1c0{bottom:780.405000px;}
.y113{bottom:780.945000px;}
.y4c{bottom:782.925000px;}
.yc7{bottom:788.145000px;}
.y31{bottom:791.925000px;}
.y1bf{bottom:798.405000px;}
.y132{bottom:799.125000px;}
.yd{bottom:799.845000px;}
.y112{bottom:801.645000px;}
.ye7{bottom:802.005000px;}
.yc5{bottom:808.845000px;}
.y152{bottom:809.385000px;}
.y30{bottom:812.625000px;}
.yc6{bottom:815.685000px;}
.yc{bottom:818.385000px;}
.y131{bottom:819.825000px;}
.y111{bottom:822.345000px;}
.y1be{bottom:828.105000px;}
.yc4{bottom:829.545000px;}
.ye6{bottom:832.425000px;}
.y2f{bottom:833.325000px;}
.y130{bottom:840.525000px;}
.yb{bottom:843.045000px;}
.y1bd{bottom:846.825000px;}
.ye5{bottom:849.705000px;}
.yc3{bottom:850.245000px;}
.y110{bottom:852.045000px;}
.y2e{bottom:854.025000px;}
.ya{bottom:856.185000px;}
.y12f{bottom:861.225000px;}
.y1bc{bottom:865.365000px;}
.ye4{bottom:866.985000px;}
.yc2{bottom:870.945000px;}
.y10f{bottom:872.745000px;}
.y2d{bottom:874.725000px;}
.y9{bottom:876.885000px;}
.ye2{bottom:884.265000px;}
.y12e{bottom:886.065000px;}
.y1bb{bottom:893.085000px;}
.y10d{bottom:893.445000px;}
.y2c{bottom:895.425000px;}
.y10e{bottom:900.285000px;}
.yc1{bottom:900.645000px;}
.ydf{bottom:901.545000px;}
.y151{bottom:903.165000px;}
.y8{bottom:908.385000px;}
.y1ba{bottom:911.625000px;}
.y10c{bottom:914.145000px;}
.y2b{bottom:916.125000px;}
.y150{bottom:920.625000px;}
.y18d{bottom:920.805000px;}
.yc0{bottom:921.345000px;}
.y12d{bottom:925.170000px;}
.y1b9{bottom:930.390000px;}
.y10b{bottom:934.890000px;}
.y7{bottom:935.430000px;}
.y2a{bottom:936.870000px;}
.ybf{bottom:942.090000px;}
.y12c{bottom:945.870000px;}
.y1b8{bottom:948.930000px;}
.yde{bottom:950.370000px;}
.y10a{bottom:955.590000px;}
.y5{bottom:956.670000px;}
.y29{bottom:957.570000px;}
.ybe{bottom:962.790000px;}
.y12b{bottom:966.570000px;}
.y4{bottom:970.350000px;}
.y18c{bottom:971.070000px;}
.y1b7{bottom:973.770000px;}
.y109{bottom:976.290000px;}
.y28{bottom:978.270000px;}
.y3{bottom:984.210000px;}
.ydd{bottom:987.270000px;}
.ybd{bottom:987.630000px;}
.y1b6{bottom:991.770000px;}
.y108{bottom:996.990000px;}
.y2{bottom:998.070000px;}
.y27{bottom:1007.970000px;}
.y1{bottom:1008.870000px;}
.y1b5{bottom:1009.770000px;}
.ybc{bottom:1026.870000px;}
.y1b4{bottom:1027.770000px;}
.y26{bottom:1028.670000px;}
.y14f{bottom:1035.510000px;}
.y4b{bottom:1062.330000px;}
.y24{bottom:1076.370000px;}
.h1b{height:13.845000px;}
.h2a{height:13.860000px;}
.h28{height:16.545000px;}
.h23{height:16.560000px;}
.h36{height:18.165000px;}
.he{height:19.620000px;}
.h11{height:19.785000px;}
.h10{height:19.830000px;}
.h33{height:21.045000px;}
.h21{height:22.485000px;}
.h2b{height:22.500000px;}
.h19{height:25.545000px;}
.h1c{height:27.525000px;}
.h1d{height:27.561000px;}
.h1f{height:27.705000px;}
.h37{height:32.025000px;}
.h35{height:32.205000px;}
.h27{height:33.105000px;}
.h22{height:33.142500px;}
.h13{height:33.465000px;}
.h12{height:33.645000px;}
.h38{height:34.582500px;}
.h7{height:35.332031px;}
.h29{height:37.437188px;}
.h16{height:38.158594px;}
.h18{height:40.985156px;}
.h20{height:41.385000px;}
.h17{height:45.184219px;}
.h34{height:45.885000px;}
.h2d{height:47.145000px;}
.h2{height:47.344922px;}
.h2c{height:48.450000px;}
.hf{height:48.616875px;}
.h30{height:49.583118px;}
.h26{height:49.701000px;}
.hd{height:51.519375px;}
.hc{height:52.971680px;}
.h3{height:52.998047px;}
.h9{height:58.621992px;}
.hb{height:58.651172px;}
.h5{height:60.226875px;}
.h32{height:64.290000px;}
.h8{height:64.978594px;}
.h24{height:66.240000px;}
.h6{height:66.543750px;}
.ha{height:66.757500px;}
.h14{height:75.045000px;}
.h31{height:77.940000px;}
.h2f{height:78.120000px;}
.h4{height:78.367500px;}
.h25{height:82.830000px;}
.h2e{height:99.381000px;}
.h1e{height:139.125000px;}
.h1a{height:144.021000px;}
.h39{height:206.100000px;}
.h1{height:1263.000000px;}
.h15{height:1263.057990px;}
.h0{height:1263.060000px;}
.w17{width:33.289500px;}
.w12{width:52.185000px;}
.w21{width:52.365000px;}
.wc{width:52.401000px;}
.w1d{width:61.200000px;}
.w1c{width:63.021000px;}
.wd{width:63.180000px;}
.w1b{width:64.965000px;}
.wb{width:73.245000px;}
.w1f{width:73.605000px;}
.we{width:73.620000px;}
.wf{width:73.656000px;}
.w10{width:73.785000px;}
.w20{width:73.821000px;}
.w1e{width:75.600000px;}
.w5{width:78.105000px;}
.w11{width:84.441000px;}
.w24{width:113.781000px;}
.w2{width:124.365000px;}
.w8{width:126.381000px;}
.w1a{width:126.921000px;}
.w18{width:128.721000px;}
.wa{width:137.541000px;}
.w7{width:169.395000px;}
.w15{width:205.575000px;}
.w13{width:248.235000px;}
.w27{width:252.015000px;}
.w22{width:269.295000px;}
.w23{width:273.135000px;}
.w19{width:286.230000px;}
.w9{width:286.410000px;}
.w14{width:294.375000px;}
.w6{width:302.820000px;}
.w28{width:310.035000px;}
.w16{width:337.035000px;}
.w3{width:443.250000px;}
.w25{width:453.855000px;}
.w26{width:562.590000px;}
.w4{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:2.505000px;}
.x16{left:3.945000px;}
.x24{left:5.400000px;}
.x43{left:6.660000px;}
.xa{left:7.725000px;}
.x22{left:8.805000px;}
.xb{left:10.290000px;}
.x1d{left:11.505000px;}
.x3d{left:12.765000px;}
.x27{left:14.565000px;}
.x3c{left:16.723500px;}
.x21{left:17.805000px;}
.x2a{left:20.145000px;}
.x47{left:22.860000px;}
.x2b{left:25.560000px;}
.x3f{left:27.720000px;}
.x48{left:29.145000px;}
.x29{left:30.405000px;}
.x2c{left:39.225000px;}
.x1f{left:55.620000px;}
.x3b{left:149.446500px;}
.x9{left:153.945000px;}
.x15{left:157.725000px;}
.x5{left:161.670000px;}
.xf{left:166.530000px;}
.x4c{left:170.865000px;}
.x1c{left:176.985000px;}
.x3{left:178.590000px;}
.x30{left:183.450000px;}
.x33{left:195.690000px;}
.x52{left:199.830000px;}
.x4{left:221.070000px;}
.x7{left:222.330000px;}
.x49{left:227.010000px;}
.x13{left:232.950000px;}
.x17{left:236.565000px;}
.x31{left:238.710000px;}
.x14{left:248.430000px;}
.x23{left:250.965000px;}
.x4f{left:254.370000px;}
.x6{left:273.810000px;}
.x8{left:279.975000px;}
.x4d{left:285.375000px;}
.x1e{left:304.095000px;}
.x3e{left:312.915000px;}
.x3a{left:327.675000px;}
.x50{left:330.015000px;}
.x35{left:340.815000px;}
.x11{left:357.735000px;}
.x34{left:364.035000px;}
.x1b{left:368.175000px;}
.x42{left:374.835000px;}
.xe{left:377.715000px;}
.x51{left:392.115000px;}
.x2f{left:394.635000px;}
.x32{left:406.695000px;}
.xc{left:412.093125px;}
.x4b{left:414.615000px;}
.xd{left:416.955000px;}
.x38{left:423.253125px;}
.x39{left:428.115000px;}
.x25{left:442.335000px;}
.x44{left:451.155000px;}
.x26{left:516.720000px;}
.x2d{left:524.443125px;}
.x45{left:525.540000px;}
.x2e{left:529.305000px;}
.x18{left:540.120000px;}
.x20{left:591.240000px;}
.x40{left:599.880000px;}
.x36{left:618.043125px;}
.x37{left:622.905000px;}
.x46{left:674.430000px;}
.x28{left:676.410000px;}
.x4a{left:679.110000px;}
.x12{left:689.010000px;}
.x19{left:708.988125px;}
.x1a{left:713.850000px;}
.x10{left:719.790000px;}
.x4e{left:728.070000px;}
.x2{left:731.490000px;}
.x1{left:768.390000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls15{letter-spacing:-1.600000pt;}
.ls33{letter-spacing:-1.237333pt;}
.ls21{letter-spacing:-0.544000pt;}
.ls24{letter-spacing:-0.518933pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.478933pt;}
.ls1e{letter-spacing:-0.367467pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.304533pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls19{letter-spacing:-0.228267pt;}
.ls28{letter-spacing:-0.201067pt;}
.ls1b{letter-spacing:-0.198933pt;}
.ls34{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls1f{letter-spacing:-0.161067pt;}
.ls2e{letter-spacing:-0.152533pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls23{letter-spacing:-0.079467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls36{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:-0.015360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.115200pt;}
.ls17{letter-spacing:0.133333pt;}
.ls1c{letter-spacing:0.158933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.161067pt;}
.ls14{letter-spacing:0.183467pt;}
.ls20{letter-spacing:0.183680pt;}
.ls30{letter-spacing:0.228267pt;}
.lsd{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.239467pt;}
.ls35{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.409067pt;}
.ls26{letter-spacing:0.438933pt;}
.ls22{letter-spacing:0.544000pt;}
.lse{letter-spacing:0.592000pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.736000pt;}
.ls27{letter-spacing:0.800000pt;}
.ls2c{letter-spacing:0.869333pt;}
.ls9{letter-spacing:0.960000pt;}
.ls16{letter-spacing:1.440000pt;}
.ls18{letter-spacing:2.080000pt;}
.ls25{letter-spacing:2.880000pt;}
.ls11{letter-spacing:5.280000pt;}
.ls32{letter-spacing:5.999360pt;}
.ls2d{letter-spacing:11.759360pt;}
.ls29{letter-spacing:480.320000pt;}
.ws17{word-spacing:-13.824000pt;}
.wse{word-spacing:-13.689067pt;}
.ws5{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.wsb{word-spacing:-13.049067pt;}
.wsd{word-spacing:-12.960000pt;}
.ws1a{word-spacing:-12.320000pt;}
.ws1e{word-spacing:-12.288000pt;}
.ws9{word-spacing:-12.096000pt;}
.ws3{word-spacing:-12.016000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.984000pt;}
.ws20{word-spacing:-11.904000pt;}
.ws1c{word-spacing:-11.680000pt;}
.ws1b{word-spacing:-11.207467pt;}
.ws11{word-spacing:-11.131733pt;}
.ws16{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.558933pt;}
.ws13{word-spacing:-9.920000pt;}
.ws18{word-spacing:-9.718933pt;}
.ws1d{word-spacing:-9.482667pt;}
.ws12{word-spacing:-9.438933pt;}
.ws19{word-spacing:-9.078933pt;}
.ws0{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws8{word-spacing:0.000000pt;}
._13{margin-left:-5.956693pt;}
._18{margin-left:-1.900160pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.912000pt;}
._6{width:2.238720pt;}
._9{width:3.355520pt;}
._c{width:4.433280pt;}
._7{width:5.344000pt;}
._f{width:6.282880pt;}
._e{width:7.224320pt;}
._d{width:8.392960pt;}
._10{width:9.455360pt;}
._8{width:10.560000pt;}
._a{width:11.635200pt;}
._4{width:13.201920pt;}
._3{width:14.100480pt;}
._5{width:15.004587pt;}
._11{width:17.423360pt;}
._12{width:18.572800pt;}
._1b{width:19.824000pt;}
._15{width:24.689280pt;}
._20{width:35.308160pt;}
._1f{width:36.240000pt;}
._21{width:37.706667pt;}
._16{width:56.960000pt;}
._1a{width:68.880000pt;}
._19{width:70.368000pt;}
._b{width:87.303467pt;}
._1e{width:107.648000pt;}
._1d{width:108.720000pt;}
._14{width:139.445760pt;}
._1c{width:186.672000pt;}
._17{width:480.794667pt;}
._2{width:504.474667pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:2.386667pt;}
.ya8{bottom:2.400000pt;}
.yb5{bottom:2.546667pt;}
.ya4{bottom:2.560000pt;}
.yab{bottom:2.706667pt;}
.ya1{bottom:2.720000pt;}
.yfe{bottom:4.946667pt;}
.ye3{bottom:4.960000pt;}
.yfb{bottom:5.106667pt;}
.y67{bottom:5.120000pt;}
.y68{bottom:5.280000pt;}
.y6a{bottom:5.440000pt;}
.y135{bottom:6.400000pt;}
.yd1{bottom:6.560000pt;}
.y17c{bottom:6.720000pt;}
.ya6{bottom:8.640000pt;}
.yb2{bottom:8.786667pt;}
.yac{bottom:8.826667pt;}
.y178{bottom:8.960000pt;}
.y146{bottom:9.746667pt;}
.y13d{bottom:10.240000pt;}
.y134{bottom:10.400000pt;}
.y137{bottom:10.720000pt;}
.y13f{bottom:11.360000pt;}
.y6d{bottom:11.520000pt;}
.y13b{bottom:12.000000pt;}
.y101{bottom:12.306667pt;}
.ye0{bottom:12.320000pt;}
.yf8{bottom:12.346667pt;}
.y9c{bottom:12.960000pt;}
.y18e{bottom:13.000000pt;}
.y9b{bottom:13.120000pt;}
.yb7{bottom:14.706667pt;}
.ya7{bottom:14.720000pt;}
.yb4{bottom:14.866667pt;}
.ya3{bottom:14.880000pt;}
.yaa{bottom:14.906667pt;}
.yb1{bottom:15.026667pt;}
.y13e{bottom:15.520000pt;}
.y138{bottom:16.160000pt;}
.y156{bottom:16.640000pt;}
.y70{bottom:17.280000pt;}
.y71{bottom:17.440000pt;}
.y6e{bottom:17.600000pt;}
.y139{bottom:18.080000pt;}
.y17b{bottom:18.880000pt;}
.y17e{bottom:19.040000pt;}
.yfd{bottom:19.666667pt;}
.yea{bottom:19.680000pt;}
.yff{bottom:19.826667pt;}
.yed{bottom:19.840000pt;}
.yfa{bottom:19.866667pt;}
.ye1{bottom:19.880000pt;}
.y160{bottom:20.320000pt;}
.yba{bottom:21.106667pt;}
.y19b{bottom:21.280000pt;}
.y15c{bottom:22.720000pt;}
.y163{bottom:22.746667pt;}
.y75{bottom:23.520000pt;}
.y13a{bottom:24.160000pt;}
.yf1{bottom:27.040000pt;}
.yf7{bottom:27.066667pt;}
.yb9{bottom:27.186667pt;}
.y155{bottom:28.960000pt;}
.y78{bottom:29.920000pt;}
.y17a{bottom:31.200000pt;}
.y15f{bottom:32.480000pt;}
.y159{bottom:32.640000pt;}
.y19a{bottom:33.440000pt;}
.ye9{bottom:34.400000pt;}
.y143{bottom:34.426667pt;}
.yec{bottom:34.560000pt;}
.yf9{bottom:34.586667pt;}
.y15b{bottom:35.040000pt;}
.y162{bottom:35.066667pt;}
.y165{bottom:35.226667pt;}
.y74{bottom:35.840000pt;}
.y1a6{bottom:36.000000pt;}
.y154{bottom:41.280000pt;}
.yf0{bottom:41.760000pt;}
.y77{bottom:42.080000pt;}
.y158{bottom:44.800000pt;}
.y15a{bottom:47.360000pt;}
.y15e{bottom:47.520000pt;}
.y164{bottom:47.546667pt;}
.y1a5{bottom:48.160000pt;}
.y142{bottom:49.146667pt;}
.yeb{bottom:49.280000pt;}
.yf3{bottom:49.306667pt;}
.y199{bottom:50.560000pt;}
.y153{bottom:53.440000pt;}
.y76{bottom:54.400000pt;}
.yaf{bottom:55.986667pt;}
.yef{bottom:56.506667pt;}
.y9f{bottom:58.266667pt;}
.y15d{bottom:59.680000pt;}
.y157{bottom:59.840000pt;}
.y1a4{bottom:60.480000pt;}
.y198{bottom:62.880000pt;}
.yf2{bottom:64.026667pt;}
.yae{bottom:70.706667pt;}
.y9e{bottom:72.986667pt;}
.y197{bottom:75.040000pt;}
.y1a3{bottom:77.440000pt;}
.y144{bottom:78.746667pt;}
.y196{bottom:87.360000pt;}
.y1a2{bottom:89.760000pt;}
.y1a1{bottom:101.920000pt;}
.y195{bottom:104.480000pt;}
.y194{bottom:116.640000pt;}
.y1a0{bottom:119.040000pt;}
.y193{bottom:128.960000pt;}
.y19f{bottom:131.360000pt;}
.y6{bottom:132.160000pt;}
.y25{bottom:136.160000pt;}
.y19e{bottom:143.520000pt;}
.y192{bottom:145.920000pt;}
.y191{bottom:158.240000pt;}
.y19d{bottom:160.640000pt;}
.y190{bottom:170.400000pt;}
.y19c{bottom:172.800000pt;}
.y86{bottom:207.226667pt;}
.y107{bottom:209.466667pt;}
.ydc{bottom:214.586667pt;}
.y4a{bottom:220.026667pt;}
.y63{bottom:220.506667pt;}
.y14e{bottom:225.626667pt;}
.ydb{bottom:228.346667pt;}
.y23{bottom:231.546667pt;}
.y85{bottom:232.986667pt;}
.yda{bottom:234.426667pt;}
.y106{bottom:235.866667pt;}
.y49{bottom:238.426667pt;}
.y62{bottom:238.906667pt;}
.y18b{bottom:239.386667pt;}
.y1b3{bottom:241.946667pt;}
.y14d{bottom:244.026667pt;}
.y173{bottom:244.666667pt;}
.y84{bottom:245.786667pt;}
.y22{bottom:249.946667pt;}
.yd9{bottom:252.826667pt;}
.y105{bottom:254.266667pt;}
.ybb{bottom:254.746667pt;}
.y48{bottom:256.826667pt;}
.y61{bottom:257.306667pt;}
.y18a{bottom:257.786667pt;}
.y1b2{bottom:257.946667pt;}
.y83{bottom:258.746667pt;}
.y14c{bottom:262.426667pt;}
.y12a{bottom:265.786667pt;}
.yd8{bottom:266.746667pt;}
.y21{bottom:268.346667pt;}
.yad{bottom:269.320000pt;}
.y82{bottom:272.506667pt;}
.yd7{bottom:272.826667pt;}
.y189{bottom:276.026667pt;}
.y81{bottom:278.586667pt;}
.y97{bottom:279.546667pt;}
.y104{bottom:280.346667pt;}
.y14b{bottom:280.826667pt;}
.y1b1{bottom:281.946667pt;}
.yd6{bottom:282.906667pt;}
.y47{bottom:283.226667pt;}
.y60{bottom:283.706667pt;}
.y172{bottom:283.866667pt;}
.y80{bottom:288.826667pt;}
.y129{bottom:292.506667pt;}
.y103{bottom:293.320000pt;}
.y188{bottom:294.426667pt;}
.y20{bottom:294.906667pt;}
.y96{bottom:297.946667pt;}
.y128{bottom:298.586667pt;}
.y14a{bottom:299.226667pt;}
.y46{bottom:301.626667pt;}
.y5f{bottom:302.106667pt;}
.y127{bottom:308.666667pt;}
.y102{bottom:308.680000pt;}
.y171{bottom:310.266667pt;}
.yb6{bottom:310.600000pt;}
.yd5{bottom:312.026667pt;}
.y187{bottom:312.826667pt;}
.y1b0{bottom:313.946667pt;}
.y95{bottom:316.346667pt;}
.y7f{bottom:316.986667pt;}
.y149{bottom:317.626667pt;}
.y45{bottom:320.026667pt;}
.y5e{bottom:320.506667pt;}
.y1f{bottom:323.226667pt;}
.y126{bottom:326.906667pt;}
.y170{bottom:328.666667pt;}
.y186{bottom:331.226667pt;}
.y7e{bottom:335.386667pt;}
.y148{bottom:336.026667pt;}
.y1af{bottom:337.946667pt;}
.y44{bottom:338.426667pt;}
.y100{bottom:338.760000pt;}
.y5d{bottom:338.906667pt;}
.yb3{bottom:339.560000pt;}
.y94{bottom:342.746667pt;}
.yd4{bottom:344.506667pt;}
.y125{bottom:345.306667pt;}
.y185{bottom:349.626667pt;}
.y16f{bottom:350.746667pt;}
.y1e{bottom:351.226667pt;}
.y7d{bottom:353.786667pt;}
.y1ae{bottom:353.946667pt;}
.y43{bottom:356.826667pt;}
.y5c{bottom:357.306667pt;}
.y93{bottom:361.146667pt;}
.y147{bottom:362.426667pt;}
.y124{bottom:363.706667pt;}
.y184{bottom:368.026667pt;}
.yb0{bottom:368.360000pt;}
.yfc{bottom:368.840000pt;}
.y7b{bottom:372.186667pt;}
.y145{bottom:375.080000pt;}
.y42{bottom:375.226667pt;}
.y5b{bottom:375.706667pt;}
.y1d{bottom:377.626667pt;}
.y1ad{bottom:377.946667pt;}
.y7c{bottom:378.266667pt;}
.y92{bottom:379.546667pt;}
.y16e{bottom:385.466667pt;}
.y183{bottom:386.426667pt;}
.y123{bottom:390.106667pt;}
.y7a{bottom:390.586667pt;}
.y41{bottom:393.626667pt;}
.y1ac{bottom:393.946667pt;}
.y5a{bottom:394.106667pt;}
.y1c{bottom:396.026667pt;}
.y9d{bottom:397.320000pt;}
.y91{bottom:397.946667pt;}
.yf6{bottom:399.080000pt;}
.y141{bottom:400.200000pt;}
.y16d{bottom:403.866667pt;}
.y122{bottom:408.546667pt;}
.y1ab{bottom:409.986667pt;}
.y40{bottom:412.066667pt;}
.y182{bottom:413.186667pt;}
.y1b{bottom:414.466667pt;}
.y90{bottom:416.386667pt;}
.y79{bottom:417.026667pt;}
.y59{bottom:420.546667pt;}
.y16c{bottom:425.986667pt;}
.ya9{bottom:426.306667pt;}
.y121{bottom:426.946667pt;}
.y73{bottom:429.666667pt;}
.yd3{bottom:430.466667pt;}
.y1a{bottom:432.866667pt;}
.y8f{bottom:434.786667pt;}
.y1aa{bottom:437.506667pt;}
.y3f{bottom:438.466667pt;}
.y58{bottom:438.946667pt;}
.y181{bottom:441.186667pt;}
.y120{bottom:445.346667pt;}
.y19{bottom:451.266667pt;}
.y8e{bottom:453.186667pt;}
.y180{bottom:453.826667pt;}
.ya5{bottom:455.266667pt;}
.y3e{bottom:456.866667pt;}
.yf5{bottom:457.186667pt;}
.y57{bottom:457.346667pt;}
.y16b{bottom:460.706667pt;}
.y11f{bottom:463.746667pt;}
.y1a9{bottom:465.666667pt;}
.yd2{bottom:469.506667pt;}
.y18{bottom:469.666667pt;}
.y8d{bottom:471.586667pt;}
.y3d{bottom:475.266667pt;}
.y56{bottom:475.746667pt;}
.y16a{bottom:479.106667pt;}
.y11e{bottom:482.146667pt;}
.yd0{bottom:482.466667pt;}
.y17f{bottom:483.106667pt;}
.ya2{bottom:484.226667pt;}
.y1cb{bottom:485.666667pt;}
.y17{bottom:488.066667pt;}
.y8c{bottom:489.986667pt;}
.y3c{bottom:493.666667pt;}
.y55{bottom:494.146667pt;}
.y72{bottom:497.026667pt;}
.y169{bottom:497.506667pt;}
.y17d{bottom:499.906667pt;}
.y11d{bottom:500.546667pt;}
.y140{bottom:502.466667pt;}
.ycf{bottom:503.106667pt;}
.y16{bottom:506.786667pt;}
.y8b{bottom:508.386667pt;}
.y1ca{bottom:509.666667pt;}
.y3b{bottom:512.066667pt;}
.y54{bottom:512.546667pt;}
.ya0{bottom:513.026667pt;}
.y168{bottom:515.906667pt;}
.y11c{bottom:522.626667pt;}
.y1c9{bottom:525.666667pt;}
.y8a{bottom:526.786667pt;}
.y6f{bottom:527.586667pt;}
.y179{bottom:529.186667pt;}
.yce{bottom:529.346667pt;}
.y9a{bottom:529.826667pt;}
.y3a{bottom:530.466667pt;}
.y53{bottom:530.946667pt;}
.y13c{bottom:531.426667pt;}
.y167{bottom:534.306667pt;}
.y15{bottom:536.706667pt;}
.y1c8{bottom:541.666667pt;}
.y89{bottom:545.186667pt;}
.y39{bottom:548.866667pt;}
.y52{bottom:549.346667pt;}
.yf4{bottom:552.706667pt;}
.y11b{bottom:557.346667pt;}
.y6c{bottom:557.986667pt;}
.ycd{bottom:562.146667pt;}
.y14{bottom:563.106667pt;}
.y1c7{bottom:565.666667pt;}
.yee{bottom:565.826667pt;}
.y38{bottom:567.266667pt;}
.y99{bottom:568.226667pt;}
.y88{bottom:570.306667pt;}
.y177{bottom:570.626667pt;}
.y11a{bottom:575.746667pt;}
.y51{bottom:575.906667pt;}
.y136{bottom:577.666667pt;}
.y166{bottom:579.106667pt;}
.ycc{bottom:580.546667pt;}
.y13{bottom:581.506667pt;}
.y1c6{bottom:581.666667pt;}
.y37{bottom:585.506667pt;}
.y6b{bottom:588.546667pt;}
.y161{bottom:591.746667pt;}
.y1a8{bottom:593.986667pt;}
.y119{bottom:594.146667pt;}
.y1c5{bottom:597.666667pt;}
.y87{bottom:599.746667pt;}
.y12{bottom:599.906667pt;}
.ycb{bottom:602.626667pt;}
.y176{bottom:603.266667pt;}
.y36{bottom:603.906667pt;}
.y69{bottom:606.786667pt;}
.y118{bottom:612.546667pt;}
.y11{bottom:618.333333pt;}
.y1c4{bottom:621.693333pt;}
.y1a7{bottom:622.013333pt;}
.y50{bottom:622.333333pt;}
.y66{bottom:625.213333pt;}
.y98{bottom:629.373333pt;}
.y35{bottom:630.333333pt;}
.y117{bottom:630.973333pt;}
.y18f{bottom:634.653333pt;}
.y175{bottom:634.973333pt;}
.y10{bottom:636.733333pt;}
.yca{bottom:637.373333pt;}
.y1c3{bottom:637.693333pt;}
.ye8{bottom:640.093333pt;}
.y4f{bottom:640.733333pt;}
.y34{bottom:648.733333pt;}
.y133{bottom:649.533333pt;}
.y1c2{bottom:653.693333pt;}
.yf{bottom:654.973333pt;}
.yc9{bottom:655.773333pt;}
.y65{bottom:656.573333pt;}
.y115{bottom:657.373333pt;}
.y4e{bottom:659.133333pt;}
.y116{bottom:663.453333pt;}
.y174{bottom:664.413333pt;}
.y33{bottom:667.133333pt;}
.ye{bottom:673.693333pt;}
.yc8{bottom:674.173333pt;}
.y114{bottom:675.773333pt;}
.y4d{bottom:677.533333pt;}
.y1c1{bottom:677.693333pt;}
.y32{bottom:685.533333pt;}
.y64{bottom:688.253333pt;}
.y1c0{bottom:693.693333pt;}
.y113{bottom:694.173333pt;}
.y4c{bottom:695.933333pt;}
.yc7{bottom:700.573333pt;}
.y31{bottom:703.933333pt;}
.y1bf{bottom:709.693333pt;}
.y132{bottom:710.333333pt;}
.yd{bottom:710.973333pt;}
.y112{bottom:712.573333pt;}
.ye7{bottom:712.893333pt;}
.yc5{bottom:718.973333pt;}
.y152{bottom:719.453333pt;}
.y30{bottom:722.333333pt;}
.yc6{bottom:725.053333pt;}
.yc{bottom:727.453333pt;}
.y131{bottom:728.733333pt;}
.y111{bottom:730.973333pt;}
.y1be{bottom:736.093333pt;}
.yc4{bottom:737.373333pt;}
.ye6{bottom:739.933333pt;}
.y2f{bottom:740.733333pt;}
.y130{bottom:747.133333pt;}
.yb{bottom:749.373333pt;}
.y1bd{bottom:752.733333pt;}
.ye5{bottom:755.293333pt;}
.yc3{bottom:755.773333pt;}
.y110{bottom:757.373333pt;}
.y2e{bottom:759.133333pt;}
.ya{bottom:761.053333pt;}
.y12f{bottom:765.533333pt;}
.y1bc{bottom:769.213333pt;}
.ye4{bottom:770.653333pt;}
.yc2{bottom:774.173333pt;}
.y10f{bottom:775.773333pt;}
.y2d{bottom:777.533333pt;}
.y9{bottom:779.453333pt;}
.ye2{bottom:786.013333pt;}
.y12e{bottom:787.613333pt;}
.y1bb{bottom:793.853333pt;}
.y10d{bottom:794.173333pt;}
.y2c{bottom:795.933333pt;}
.y10e{bottom:800.253333pt;}
.yc1{bottom:800.573333pt;}
.ydf{bottom:801.373333pt;}
.y151{bottom:802.813333pt;}
.y8{bottom:807.453333pt;}
.y1ba{bottom:810.333333pt;}
.y10c{bottom:812.573333pt;}
.y2b{bottom:814.333333pt;}
.y150{bottom:818.333333pt;}
.y18d{bottom:818.493333pt;}
.yc0{bottom:818.973333pt;}
.y12d{bottom:822.373333pt;}
.y1b9{bottom:827.013333pt;}
.y10b{bottom:831.013333pt;}
.y7{bottom:831.493333pt;}
.y2a{bottom:832.773333pt;}
.ybf{bottom:837.413333pt;}
.y12c{bottom:840.773333pt;}
.y1b8{bottom:843.493333pt;}
.yde{bottom:844.773333pt;}
.y10a{bottom:849.413333pt;}
.y5{bottom:850.373333pt;}
.y29{bottom:851.173333pt;}
.ybe{bottom:855.813333pt;}
.y12b{bottom:859.173333pt;}
.y4{bottom:862.533333pt;}
.y18c{bottom:863.173333pt;}
.y1b7{bottom:865.573333pt;}
.y109{bottom:867.813333pt;}
.y28{bottom:869.573333pt;}
.y3{bottom:874.853333pt;}
.ydd{bottom:877.573333pt;}
.ybd{bottom:877.893333pt;}
.y1b6{bottom:881.573333pt;}
.y108{bottom:886.213333pt;}
.y2{bottom:887.173333pt;}
.y27{bottom:895.973333pt;}
.y1{bottom:896.773333pt;}
.y1b5{bottom:897.573333pt;}
.ybc{bottom:912.773333pt;}
.y1b4{bottom:913.573333pt;}
.y26{bottom:914.373333pt;}
.y14f{bottom:920.453333pt;}
.y4b{bottom:944.293333pt;}
.y24{bottom:956.773333pt;}
.h1b{height:12.306667pt;}
.h2a{height:12.320000pt;}
.h28{height:14.706667pt;}
.h23{height:14.720000pt;}
.h36{height:16.146667pt;}
.he{height:17.440000pt;}
.h11{height:17.586667pt;}
.h10{height:17.626667pt;}
.h33{height:18.706667pt;}
.h21{height:19.986667pt;}
.h2b{height:20.000000pt;}
.h19{height:22.706667pt;}
.h1c{height:24.466667pt;}
.h1d{height:24.498667pt;}
.h1f{height:24.626667pt;}
.h37{height:28.466667pt;}
.h35{height:28.626667pt;}
.h27{height:29.426667pt;}
.h22{height:29.460000pt;}
.h13{height:29.746667pt;}
.h12{height:29.906667pt;}
.h38{height:30.740000pt;}
.h7{height:31.406250pt;}
.h29{height:33.277500pt;}
.h16{height:33.918750pt;}
.h18{height:36.431250pt;}
.h20{height:36.786667pt;}
.h17{height:40.163750pt;}
.h34{height:40.786667pt;}
.h2d{height:41.906667pt;}
.h2{height:42.084375pt;}
.h2c{height:43.066667pt;}
.hf{height:43.215000pt;}
.h30{height:44.073883pt;}
.h26{height:44.178667pt;}
.hd{height:45.795000pt;}
.hc{height:47.085938pt;}
.h3{height:47.109375pt;}
.h9{height:52.108438pt;}
.hb{height:52.134375pt;}
.h5{height:53.535000pt;}
.h32{height:57.146667pt;}
.h8{height:57.758750pt;}
.h24{height:58.880000pt;}
.h6{height:59.150000pt;}
.ha{height:59.340000pt;}
.h14{height:66.706667pt;}
.h31{height:69.280000pt;}
.h2f{height:69.440000pt;}
.h4{height:69.660000pt;}
.h25{height:73.626667pt;}
.h2e{height:88.338667pt;}
.h1e{height:123.666667pt;}
.h1a{height:128.018667pt;}
.h39{height:183.200000pt;}
.h1{height:1122.666667pt;}
.h15{height:1122.718213pt;}
.h0{height:1122.720000pt;}
.w17{width:29.590667pt;}
.w12{width:46.386667pt;}
.w21{width:46.546667pt;}
.wc{width:46.578667pt;}
.w1d{width:54.400000pt;}
.w1c{width:56.018667pt;}
.wd{width:56.160000pt;}
.w1b{width:57.746667pt;}
.wb{width:65.106667pt;}
.w1f{width:65.426667pt;}
.we{width:65.440000pt;}
.wf{width:65.472000pt;}
.w10{width:65.586667pt;}
.w20{width:65.618667pt;}
.w1e{width:67.200000pt;}
.w5{width:69.426667pt;}
.w11{width:75.058667pt;}
.w24{width:101.138667pt;}
.w2{width:110.546667pt;}
.w8{width:112.338667pt;}
.w1a{width:112.818667pt;}
.w18{width:114.418667pt;}
.wa{width:122.258667pt;}
.w7{width:150.573333pt;}
.w15{width:182.733333pt;}
.w13{width:220.653333pt;}
.w27{width:224.013333pt;}
.w22{width:239.373333pt;}
.w23{width:242.786667pt;}
.w19{width:254.426667pt;}
.w9{width:254.586667pt;}
.w14{width:261.666667pt;}
.w6{width:269.173333pt;}
.w28{width:275.586667pt;}
.w16{width:299.586667pt;}
.w3{width:394.000000pt;}
.w25{width:403.426667pt;}
.w26{width:500.080000pt;}
.w4{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:2.226667pt;}
.x16{left:3.506667pt;}
.x24{left:4.800000pt;}
.x43{left:5.920000pt;}
.xa{left:6.866667pt;}
.x22{left:7.826667pt;}
.xb{left:9.146667pt;}
.x1d{left:10.226667pt;}
.x3d{left:11.346667pt;}
.x27{left:12.946667pt;}
.x3c{left:14.865333pt;}
.x21{left:15.826667pt;}
.x2a{left:17.906667pt;}
.x47{left:20.320000pt;}
.x2b{left:22.720000pt;}
.x3f{left:24.640000pt;}
.x48{left:25.906667pt;}
.x29{left:27.026667pt;}
.x2c{left:34.866667pt;}
.x1f{left:49.440000pt;}
.x3b{left:132.841333pt;}
.x9{left:136.840000pt;}
.x15{left:140.200000pt;}
.x5{left:143.706667pt;}
.xf{left:148.026667pt;}
.x4c{left:151.880000pt;}
.x1c{left:157.320000pt;}
.x3{left:158.746667pt;}
.x30{left:163.066667pt;}
.x33{left:173.946667pt;}
.x52{left:177.626667pt;}
.x4{left:196.506667pt;}
.x7{left:197.626667pt;}
.x49{left:201.786667pt;}
.x13{left:207.066667pt;}
.x17{left:210.280000pt;}
.x31{left:212.186667pt;}
.x14{left:220.826667pt;}
.x23{left:223.080000pt;}
.x4f{left:226.106667pt;}
.x6{left:243.386667pt;}
.x8{left:248.866667pt;}
.x4d{left:253.666667pt;}
.x1e{left:270.306667pt;}
.x3e{left:278.146667pt;}
.x3a{left:291.266667pt;}
.x50{left:293.346667pt;}
.x35{left:302.946667pt;}
.x11{left:317.986667pt;}
.x34{left:323.586667pt;}
.x1b{left:327.266667pt;}
.x42{left:333.186667pt;}
.xe{left:335.746667pt;}
.x51{left:348.546667pt;}
.x2f{left:350.786667pt;}
.x32{left:361.506667pt;}
.xc{left:366.305000pt;}
.x4b{left:368.546667pt;}
.xd{left:370.626667pt;}
.x38{left:376.225000pt;}
.x39{left:380.546667pt;}
.x25{left:393.186667pt;}
.x44{left:401.026667pt;}
.x26{left:459.306667pt;}
.x2d{left:466.171667pt;}
.x45{left:467.146667pt;}
.x2e{left:470.493333pt;}
.x18{left:480.106667pt;}
.x20{left:525.546667pt;}
.x40{left:533.226667pt;}
.x36{left:549.371667pt;}
.x37{left:553.693333pt;}
.x46{left:599.493333pt;}
.x28{left:601.253333pt;}
.x4a{left:603.653333pt;}
.x12{left:612.453333pt;}
.x19{left:630.211667pt;}
.x1a{left:634.533333pt;}
.x10{left:639.813333pt;}
.x4e{left:647.173333pt;}
.x2{left:650.213333pt;}
.x1{left:683.013333pt;}
}




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