
    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_b029988fdd7e3f3fe2f6225d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_84579331f25b05306ae10434.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_6fdc7115572e0e6125dabf94.woff')format("woff");}.ff3{font-family:ff3;line-height:1.105957;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_a9bb5b7a32eac0cb7bf3cf5e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_3a550dbe8357ae04713a43e8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_5a789c3f25e37ed5f001c935.woff')format("woff");}.ff6{font-family:ff6;line-height:1.193848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.972000px;}
.v8{vertical-align:-16.977000px;}
.v5{vertical-align:-11.982000px;}
.v9{vertical-align:-10.977600px;}
.vb{vertical-align:-8.883600px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:8.979000px;}
.v6{vertical-align:10.977600px;}
.v3{vertical-align:13.933200px;}
.vd{vertical-align:15.681000px;}
.v4{vertical-align:16.977000px;}
.v1{vertical-align:21.996000px;}
.v7{vertical-align:27.954600px;}
.va{vertical-align:36.000000px;}
.lsf{letter-spacing:-7.371000px;}
.ls9{letter-spacing:-6.480000px;}
.lsb{letter-spacing:-6.384000px;}
.ls16{letter-spacing:-2.277000px;}
.ls2d{letter-spacing:-2.079000px;}
.ls1d{letter-spacing:-1.794000px;}
.ls21{letter-spacing:-1.587000px;}
.ls1f{letter-spacing:-1.518000px;}
.lsc{letter-spacing:-1.428000px;}
.ls22{letter-spacing:-1.104000px;}
.ls1e{letter-spacing:-0.897000px;}
.ls12{letter-spacing:-0.855000px;}
.ls19{letter-spacing:-0.828000px;}
.ls20{letter-spacing:-0.690000px;}
.ls24{letter-spacing:-0.627000px;}
.ls1c{letter-spacing:-0.552000px;}
.ls2f{letter-spacing:-0.480000px;}
.ls18{letter-spacing:-0.276000px;}
.ls4{letter-spacing:-0.189000px;}
.ls1a{letter-spacing:-0.160908px;}
.ls26{letter-spacing:-0.138000px;}
.ls25{letter-spacing:-0.081000px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000300px;}
.ls14{letter-spacing:0.004200px;}
.ls17{letter-spacing:0.345000px;}
.ls29{letter-spacing:0.567000px;}
.ls13{letter-spacing:0.621000px;}
.ls8{letter-spacing:0.648000px;}
.ls7{letter-spacing:1.260000px;}
.lsa{letter-spacing:1.322244px;}
.ls11{letter-spacing:2.400000px;}
.ls1{letter-spacing:3.300000px;}
.ls27{letter-spacing:3.906000px;}
.ls15{letter-spacing:4.071000px;}
.ls0{letter-spacing:4.200000px;}
.ls2b{letter-spacing:4.397400px;}
.ls2c{letter-spacing:4.950000px;}
.ls23{letter-spacing:5.400000px;}
.lsd{letter-spacing:5.760000px;}
.lse{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls3{letter-spacing:6.300000px;}
.ls1b{letter-spacing:6.900000px;}
.ls2e{letter-spacing:7.326900px;}
.ls28{letter-spacing:8.316000px;}
.ls5{letter-spacing:8.400000px;}
.ls2a{letter-spacing:8.820000px;}
.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;}
}
.ws3{word-spacing:-30.996000px;}
.ws4{word-spacing:-26.676000px;}
.ws69{word-spacing:-26.523000px;}
.ws61{word-spacing:-26.475000px;}
.ws6c{word-spacing:-26.025000px;}
.ws65{word-spacing:-26.019000px;}
.ws0{word-spacing:-24.375000px;}
.ws38{word-spacing:-23.943000px;}
.ws5{word-spacing:-23.868000px;}
.ws6e{word-spacing:-22.860000px;}
.ws11{word-spacing:-22.740000px;}
.ws62{word-spacing:-22.680000px;}
.ws9{word-spacing:-22.620000px;}
.ws8{word-spacing:-22.176000px;}
.ws63{word-spacing:-21.609000px;}
.ws17{word-spacing:-20.010000px;}
.ws2c{word-spacing:-19.734000px;}
.ws19{word-spacing:-19.389000px;}
.ws2a{word-spacing:-19.113000px;}
.ws68{word-spacing:-18.270000px;}
.ws2{word-spacing:-18.120000px;}
.ws1{word-spacing:-18.102000px;}
.ws66{word-spacing:-17.703000px;}
.ws7{word-spacing:-17.220000px;}
.ws18{word-spacing:-17.043000px;}
.wsa{word-spacing:-16.860000px;}
.ws29{word-spacing:-16.767000px;}
.ws36{word-spacing:-16.491000px;}
.ws3a{word-spacing:-16.353000px;}
.ws2b{word-spacing:-16.215000px;}
.ws3c{word-spacing:-15.939000px;}
.ws6a{word-spacing:-15.561000px;}
.ws39{word-spacing:-15.525000px;}
.ws3b{word-spacing:-15.456000px;}
.ws13{word-spacing:-15.390000px;}
.ws37{word-spacing:-15.249000px;}
.ws6{word-spacing:-15.083376px;}
.ws6f{word-spacing:-14.820000px;}
.ws24{word-spacing:-14.766000px;}
.ws70{word-spacing:-14.340000px;}
.ws6d{word-spacing:-13.482000px;}
.ws14{word-spacing:-11.303787px;}
.ws67{word-spacing:-10.320849px;}
.ws12{word-spacing:-9.829380px;}
.wsd{word-spacing:-8.400000px;}
.ws50{word-spacing:-6.900000px;}
.ws1f{word-spacing:-6.762000px;}
.ws6b{word-spacing:-6.300000px;}
.wsb{word-spacing:-6.000000px;}
.ws56{word-spacing:-4.899000px;}
.ws58{word-spacing:-4.485000px;}
.wsf{word-spacing:-4.200000px;}
.ws15{word-spacing:-2.400000px;}
.ws46{word-spacing:-2.346000px;}
.ws3f{word-spacing:-2.070000px;}
.ws23{word-spacing:-1.725000px;}
.ws22{word-spacing:-1.518000px;}
.ws31{word-spacing:-0.828000px;}
.ws26{word-spacing:-0.621000px;}
.ws45{word-spacing:-0.345000px;}
.ws1c{word-spacing:-0.276000px;}
.ws30{word-spacing:-0.207000px;}
.ws10{word-spacing:-0.060000px;}
.wse{word-spacing:0.000000px;}
.ws28{word-spacing:0.138000px;}
.ws33{word-spacing:0.160908px;}
.wsc{word-spacing:0.189000px;}
.ws21{word-spacing:0.276000px;}
.ws3e{word-spacing:0.345000px;}
.ws5a{word-spacing:0.483000px;}
.ws64{word-spacing:0.627000px;}
.ws40{word-spacing:0.690000px;}
.ws32{word-spacing:0.828000px;}
.ws16{word-spacing:0.855000px;}
.ws3d{word-spacing:0.897000px;}
.ws55{word-spacing:1.242000px;}
.ws5e{word-spacing:2.001000px;}
.ws1a{word-spacing:2.070000px;}
.ws44{word-spacing:2.277000px;}
.ws2f{word-spacing:2.346000px;}
.ws34{word-spacing:2.622000px;}
.ws1e{word-spacing:2.967000px;}
.ws2e{word-spacing:3.588000px;}
.ws5d{word-spacing:3.864000px;}
.ws5b{word-spacing:4.347000px;}
.ws41{word-spacing:5.244000px;}
.ws25{word-spacing:5.589000px;}
.ws43{word-spacing:5.865000px;}
.ws1d{word-spacing:6.210000px;}
.ws35{word-spacing:6.279000px;}
.ws53{word-spacing:7.107000px;}
.ws47{word-spacing:7.590000px;}
.ws57{word-spacing:8.073000px;}
.ws27{word-spacing:8.487000px;}
.ws54{word-spacing:8.763000px;}
.ws42{word-spacing:8.901000px;}
.ws51{word-spacing:10.626000px;}
.ws1b{word-spacing:10.764000px;}
.ws60{word-spacing:13.110000px;}
.ws4b{word-spacing:13.524000px;}
.ws5f{word-spacing:13.938000px;}
.ws49{word-spacing:14.214000px;}
.ws4a{word-spacing:15.870000px;}
.ws4f{word-spacing:17.250000px;}
.ws48{word-spacing:18.699000px;}
.ws4d{word-spacing:18.837000px;}
.ws4e{word-spacing:20.562000px;}
.ws20{word-spacing:20.838000px;}
.ws59{word-spacing:21.114000px;}
.ws52{word-spacing:23.805000px;}
.ws5c{word-spacing:24.219000px;}
.ws4c{word-spacing:37.398000px;}
.ws2d{word-spacing:348.084000px;}
._20{margin-left:-16.761687px;}
._39{margin-left:-13.283100px;}
._c{margin-left:-9.471600px;}
._22{margin-left:-8.100600px;}
._f{margin-left:-6.721800px;}
._9{margin-left:-5.486700px;}
._8{margin-left:-4.168500px;}
._7{margin-left:-2.509500px;}
._5{margin-left:-1.316400px;}
._2{width:1.056000px;}
._4{width:2.106000px;}
._6{width:3.742800px;}
._0{width:5.092500px;}
._3{width:6.318000px;}
._a{width:7.831500px;}
._b{width:9.189000px;}
._d{width:11.113500px;}
._1f{width:12.195300px;}
._17{width:13.206000px;}
._15{width:14.283300px;}
._14{width:15.564300px;}
._13{width:17.022000px;}
._24{width:18.127500px;}
._1d{width:19.773300px;}
._21{width:21.063126px;}
._1e{width:22.425000px;}
._1b{width:23.763300px;}
._31{width:24.852513px;}
._38{width:26.676900px;}
._1a{width:29.511300px;}
._37{width:32.361300px;}
._2f{width:36.812700px;}
._30{width:38.409813px;}
._18{width:43.445160px;}
._35{width:73.896000px;}
._e{width:85.554000px;}
._32{width:89.670000px;}
._34{width:96.452400px;}
._2b{width:106.260000px;}
._29{width:111.360000px;}
._2a{width:112.380000px;}
._26{width:114.480000px;}
._33{width:170.834400px;}
._12{width:260.610000px;}
._25{width:278.400000px;}
._2d{width:374.580000px;}
._28{width:377.580000px;}
._27{width:444.684000px;}
._1{width:457.140000px;}
._1c{width:458.474700px;}
._36{width:460.239000px;}
._16{width:461.438400px;}
._10{width:578.400000px;}
._2c{width:927.673500px;}
._19{width:956.500200px;}
._23{width:959.125200px;}
._2e{width:963.175200px;}
._11{width:965.155200px;}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fsf{font-size:36.729000px;}
.fsb{font-size:40.227000px;}
.fs2{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs6{font-size:48.972000px;}
.fsd{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1a2{bottom:86.194350px;}
.y1e7{bottom:106.155450px;}
.y44{bottom:106.203750px;}
.y8f{bottom:106.245450px;}
.yb5{bottom:106.290300px;}
.y17f{bottom:106.290450px;}
.y123{bottom:106.290900px;}
.y1c5{bottom:106.294350px;}
.y15c{bottom:106.298400px;}
.y1a1{bottom:106.360350px;}
.y6b{bottom:109.294800px;}
.yff{bottom:113.078250px;}
.yb4{bottom:123.543300px;}
.y43{bottom:126.489750px;}
.y122{bottom:126.551250px;}
.y17e{bottom:126.610950px;}
.y8e{bottom:126.617700px;}
.y1c4{bottom:126.719850px;}
.y15b{bottom:127.256400px;}
.y1e6{bottom:127.512450px;}
.y6a{bottom:127.795200px;}
.y1a0{bottom:131.717850px;}
.yfe{bottom:135.803250px;}
.yb3{bottom:140.796300px;}
.y69{bottom:145.048200px;}
.y121{bottom:146.711550px;}
.y42{bottom:146.775750px;}
.y17d{bottom:146.931450px;}
.y8d{bottom:146.989950px;}
.y1c3{bottom:147.320850px;}
.y15a{bottom:148.214400px;}
.y19f{bottom:151.972350px;}
.yda{bottom:153.315300px;}
.y1e5{bottom:153.972450px;}
.yfd{bottom:158.528250px;}
.yb2{bottom:161.044800px;}
.y1d{bottom:165.143850px;}
.y68{bottom:165.296700px;}
.y120{bottom:166.980300px;}
.y41{bottom:167.061750px;}
.y17c{bottom:167.251950px;}
.y8c{bottom:167.362200px;}
.y159{bottom:169.172250px;}
.y1c2{bottom:173.024850px;}
.yd9{bottom:173.569050px;}
.y1e4{bottom:175.329450px;}
.y19e{bottom:177.329850px;}
.yfc{bottom:181.253250px;}
.y67{bottom:183.800250px;}
.y1c{bottom:186.143850px;}
.y11f{bottom:187.249050px;}
.y40{bottom:187.347750px;}
.y17b{bottom:187.569600px;}
.y8b{bottom:187.734450px;}
.y158{bottom:190.130250px;}
.y207{bottom:191.178900px;}
.y1c1{bottom:193.625850px;}
.yd8{bottom:193.822800px;}
.y19d{bottom:197.584350px;}
.y1e3{bottom:201.789450px;}
.yfb{bottom:203.978250px;}
.y66{bottom:204.048750px;}
.yb1{bottom:205.071600px;}
.y1b{bottom:207.149700px;}
.y11e{bottom:207.517800px;}
.y3f{bottom:207.633750px;}
.y8a{bottom:208.106700px;}
.y157{bottom:211.088250px;}
.y206{bottom:211.428900px;}
.yd7{bottom:214.076550px;}
.y1c0{bottom:219.329850px;}
.yfa{bottom:221.978250px;}
.y65{bottom:222.552150px;}
.y19c{bottom:222.941850px;}
.y1e2{bottom:223.146450px;}
.yb0{bottom:225.590250px;}
.y136{bottom:225.624450px;}
.y1a{bottom:226.649700px;}
.y11d{bottom:227.786550px;}
.y3e{bottom:227.919750px;}
.y89{bottom:228.478950px;}
.y205{bottom:231.678900px;}
.y156{bottom:232.046250px;}
.yd6{bottom:234.330300px;}
.y17a{bottom:238.350900px;}
.y1bf{bottom:239.930850px;}
.y64{bottom:242.800650px;}
.y19b{bottom:243.196350px;}
.yaf{bottom:246.109050px;}
.y135{bottom:246.134700px;}
.y19{bottom:246.149700px;}
.y11c{bottom:248.055300px;}
.y3d{bottom:248.205750px;}
.y88{bottom:248.851200px;}
.y1e1{bottom:249.606450px;}
.yf9{bottom:251.555700px;}
.y204{bottom:251.928900px;}
.y155{bottom:253.004100px;}
.yd5{bottom:254.597400px;}
.y179{bottom:258.671400px;}
.y1be{bottom:265.634850px;}
.y18{bottom:265.649700px;}
.yae{bottom:266.644950px;}
.y11b{bottom:268.324050px;}
.y3c{bottom:268.491750px;}
.y19a{bottom:268.553850px;}
.y203{bottom:272.178900px;}
.y154{bottom:273.962100px;}
.yd4{bottom:274.848900px;}
.y1e0{bottom:276.066450px;}
.y178{bottom:278.991900px;}
.y17{bottom:285.149700px;}
.y1bd{bottom:286.235850px;}
.y63{bottom:286.822800px;}
.yad{bottom:287.155200px;}
.y11a{bottom:288.592800px;}
.y3b{bottom:288.777750px;}
.y199{bottom:288.808350px;}
.y87{bottom:290.475750px;}
.yf8{bottom:292.435350px;}
.y153{bottom:294.919950px;}
.yd3{bottom:295.100400px;}
.y1df{bottom:297.423450px;}
.y177{bottom:299.312400px;}
.y16{bottom:304.649700px;}
.y202{bottom:305.178900px;}
.y62{bottom:307.350300px;}
.yac{bottom:307.665450px;}
.y119{bottom:308.861550px;}
.y3a{bottom:309.063750px;}
.y1bc{bottom:311.939850px;}
.yf7{bottom:312.773100px;}
.y198{bottom:314.165850px;}
.yd2{bottom:315.351900px;}
.y152{bottom:315.877950px;}
.y176{bottom:319.632900px;}
.y1de{bottom:323.883450px;}
.y15{bottom:324.149700px;}
.y61{bottom:327.893100px;}
.yab{bottom:328.184250px;}
.y118{bottom:329.130300px;}
.y39{bottom:329.349750px;}
.y1bb{bottom:332.540850px;}
.yf6{bottom:333.110850px;}
.y197{bottom:334.420350px;}
.yd1{bottom:335.603400px;}
.y151{bottom:336.835950px;}
.y175{bottom:339.953400px;}
.y14{bottom:343.649700px;}
.y1dd{bottom:345.240450px;}
.y201{bottom:346.683900px;}
.y60{bottom:348.420600px;}
.yaa{bottom:348.703050px;}
.y117{bottom:349.399050px;}
.y38{bottom:349.635750px;}
.y86{bottom:352.650600px;}
.yf5{bottom:353.448600px;}
.y196{bottom:354.674850px;}
.yd0{bottom:355.854900px;}
.y150{bottom:357.793800px;}
.y1ba{bottom:358.244850px;}
.y174{bottom:360.273900px;}
.y13{bottom:363.149700px;}
.y200{bottom:366.183900px;}
.y5f{bottom:368.948100px;}
.ya9{bottom:369.221850px;}
.y116{bottom:369.667800px;}
.y37{bottom:369.921750px;}
.y1dc{bottom:371.700450px;}
.y85{bottom:373.022850px;}
.yf4{bottom:373.786350px;}
.ycf{bottom:376.106400px;}
.y14f{bottom:378.752550px;}
.y1b9{bottom:378.845850px;}
.y195{bottom:380.032350px;}
.y173{bottom:380.594400px;}
.y12{bottom:382.649700px;}
.y1ff{bottom:385.683900px;}
.y5e{bottom:389.475600px;}
.ya8{bottom:389.740500px;}
.y115{bottom:389.936550px;}
.y36{bottom:390.207750px;}
.y1db{bottom:393.057450px;}
.y84{bottom:393.395100px;}
.yf3{bottom:394.129500px;}
.yce{bottom:396.360150px;}
.y1b8{bottom:399.446850px;}
.y14e{bottom:399.709800px;}
.y194{bottom:400.286850px;}
.y172{bottom:400.914900px;}
.y11{bottom:402.149700px;}
.y1fe{bottom:405.183900px;}
.y5d{bottom:410.003100px;}
.y114{bottom:410.196900px;}
.ya7{bottom:410.259300px;}
.y35{bottom:410.493750px;}
.y83{bottom:413.767350px;}
.yf2{bottom:414.472500px;}
.ycd{bottom:416.613900px;}
.y1da{bottom:419.517450px;}
.y14d{bottom:420.667650px;}
.y171{bottom:421.235400px;}
.y1fd{bottom:424.683900px;}
.y1b7{bottom:425.150850px;}
.y193{bottom:425.644350px;}
.y113{bottom:430.457400px;}
.y5c{bottom:430.530600px;}
.ya6{bottom:430.778100px;}
.y34{bottom:430.779750px;}
.y82{bottom:434.139600px;}
.y10{bottom:434.399700px;}
.yf1{bottom:434.815650px;}
.ycc{bottom:436.867650px;}
.y1d9{bottom:440.874450px;}
.y170{bottom:441.555900px;}
.y14c{bottom:441.625650px;}
.y1fc{bottom:444.183900px;}
.y1b6{bottom:445.751850px;}
.y192{bottom:445.898850px;}
.y112{bottom:450.717750px;}
.y5b{bottom:451.058100px;}
.y33{bottom:451.065750px;}
.ya5{bottom:451.296900px;}
.y81{bottom:454.511850px;}
.yf0{bottom:455.158800px;}
.ycb{bottom:457.121400px;}
.y16f{bottom:461.876400px;}
.y14b{bottom:462.583650px;}
.y1fb{bottom:463.683900px;}
.y1d8{bottom:467.334450px;}
.y111{bottom:470.894700px;}
.y191{bottom:471.256350px;}
.y32{bottom:471.351750px;}
.y1b5{bottom:471.455850px;}
.y5a{bottom:471.585600px;}
.ya4{bottom:471.815700px;}
.y134{bottom:471.926400px;}
.y80{bottom:474.884100px;}
.yef{bottom:475.501800px;}
.yca{bottom:477.375150px;}
.y16e{bottom:482.196900px;}
.y1fa{bottom:483.183900px;}
.y14a{bottom:483.541500px;}
.y1d7{bottom:488.691450px;}
.y110{bottom:491.163450px;}
.y190{bottom:491.510850px;}
.y31{bottom:491.637750px;}
.y1b4{bottom:492.056850px;}
.y59{bottom:492.118800px;}
.yf{bottom:492.161400px;}
.ya3{bottom:492.334350px;}
.y133{bottom:492.436650px;}
.y7f{bottom:495.256350px;}
.yee{bottom:495.844950px;}
.yc9{bottom:497.628750px;}
.y16d{bottom:502.517400px;}
.y1f9{bottom:502.683900px;}
.y149{bottom:504.499500px;}
.y1d6{bottom:510.048450px;}
.y10f{bottom:511.432200px;}
.y58{bottom:512.646300px;}
.y1b3{bottom:512.657850px;}
.ya2{bottom:512.853150px;}
.y132{bottom:512.946900px;}
.y7e{bottom:515.628600px;}
.yed{bottom:516.187950px;}
.y18f{bottom:516.868350px;}
.yc8{bottom:517.882500px;}
.ye{bottom:519.161400px;}
.y1f8{bottom:522.183900px;}
.y16c{bottom:522.837900px;}
.y148{bottom:525.457500px;}
.y10e{bottom:531.700950px;}
.y57{bottom:533.173800px;}
.y30{bottom:533.178450px;}
.ya1{bottom:533.371950px;}
.y131{bottom:533.457150px;}
.y7d{bottom:536.000850px;}
.y1d5{bottom:536.508450px;}
.yec{bottom:536.531100px;}
.yc7{bottom:538.136250px;}
.y1b2{bottom:538.361850px;}
.y1f7{bottom:541.683900px;}
.y16b{bottom:543.158400px;}
.yd{bottom:546.167400px;}
.y147{bottom:546.415500px;}
.y10d{bottom:551.969700px;}
.y56{bottom:553.733850px;}
.ya0{bottom:553.890750px;}
.y130{bottom:553.967400px;}
.y7c{bottom:556.373100px;}
.yeb{bottom:556.911600px;}
.y1d4{bottom:557.865450px;}
.yc6{bottom:558.390000px;}
.y1b1{bottom:558.962850px;}
.y18e{bottom:559.125600px;}
.y1f6{bottom:561.183900px;}
.y16a{bottom:563.478900px;}
.y146{bottom:567.373350px;}
.y10c{bottom:572.238450px;}
.y55{bottom:574.261350px;}
.y9f{bottom:574.409550px;}
.y12f{bottom:574.477650px;}
.y7b{bottom:576.745350px;}
.yea{bottom:577.249350px;}
.yc5{bottom:578.641500px;}
.y1d3{bottom:579.222450px;}
.y18d{bottom:579.365250px;}
.y1f5{bottom:580.683900px;}
.y169{bottom:583.799400px;}
.y1b0{bottom:584.666850px;}
.y145{bottom:588.331350px;}
.y10b{bottom:592.507200px;}
.yc{bottom:594.391350px;}
.y54{bottom:594.788850px;}
.y9e{bottom:594.936750px;}
.y12e{bottom:594.987900px;}
.y2f{bottom:595.478250px;}
.y7a{bottom:597.117600px;}
.ye9{bottom:597.587100px;}
.yc4{bottom:598.897500px;}
.y1f4{bottom:600.183900px;}
.y18c{bottom:604.722750px;}
.y1af{bottom:605.267850px;}
.y1d2{bottom:605.682450px;}
.y144{bottom:609.289200px;}
.y10a{bottom:612.775950px;}
.y53{bottom:615.316350px;}
.y9d{bottom:615.447000px;}
.y12d{bottom:615.498150px;}
.y2e{bottom:616.508250px;}
.y168{bottom:616.872900px;}
.y79{bottom:617.489850px;}
.ye8{bottom:617.924850px;}
.yc3{bottom:619.151250px;}
.y1f3{bottom:619.683900px;}
.y18b{bottom:624.977250px;}
.yb{bottom:625.900350px;}
.y1d1{bottom:627.039450px;}
.y143{bottom:630.247200px;}
.y1ae{bottom:630.971850px;}
.y109{bottom:633.044700px;}
.y52{bottom:635.843850px;}
.y9c{bottom:635.965800px;}
.y12c{bottom:636.008400px;}
.y2d{bottom:637.546050px;}
.y78{bottom:637.862100px;}
.ye7{bottom:638.262600px;}
.y1f2{bottom:639.183900px;}
.yc2{bottom:639.414000px;}
.y1d0{bottom:648.396450px;}
.y18a{bottom:650.329650px;}
.y142{bottom:651.205950px;}
.y1ad{bottom:651.572850px;}
.y108{bottom:653.313450px;}
.y51{bottom:656.371350px;}
.y9b{bottom:656.484600px;}
.y12b{bottom:656.518650px;}
.y2c{bottom:657.076050px;}
.ya{bottom:657.409350px;}
.y77{bottom:658.234350px;}
.ye6{bottom:658.600350px;}
.y1f1{bottom:658.683900px;}
.yc1{bottom:659.665500px;}
.y141{bottom:672.163050px;}
.y107{bottom:673.582200px;}
.y1cf{bottom:674.856450px;}
.y189{bottom:675.677400px;}
.y2b{bottom:676.606050px;}
.y50{bottom:676.898850px;}
.y9a{bottom:677.003400px;}
.y12a{bottom:677.028900px;}
.y1ac{bottom:677.276850px;}
.y1f0{bottom:678.183900px;}
.y76{bottom:678.606600px;}
.ye5{bottom:678.938100px;}
.y167{bottom:679.175850px;}
.yc0{bottom:679.917000px;}
.y9{bottom:688.918350px;}
.y140{bottom:693.121050px;}
.y106{bottom:693.850950px;}
.y2a{bottom:696.136050px;}
.y1ce{bottom:696.213450px;}
.y4f{bottom:697.426350px;}
.y99{bottom:697.522200px;}
.y129{bottom:697.539150px;}
.y1ef{bottom:697.683900px;}
.y1ab{bottom:697.877850px;}
.y75{bottom:698.978850px;}
.ye4{bottom:699.275850px;}
.y166{bottom:699.496350px;}
.ybf{bottom:700.168500px;}
.y188{bottom:701.034900px;}
.y13f{bottom:714.079050px;}
.y29{bottom:715.666050px;}
.y1ee{bottom:717.183900px;}
.y1cd{bottom:717.570450px;}
.y4e{bottom:717.953850px;}
.y98{bottom:718.040850px;}
.y128{bottom:718.049400px;}
.y74{bottom:719.351100px;}
.ye3{bottom:719.618850px;}
.y165{bottom:719.816850px;}
.ybe{bottom:720.420000px;}
.y8{bottom:720.427350px;}
.y187{bottom:721.284300px;}
.y1aa{bottom:723.581850px;}
.y13e{bottom:735.036900px;}
.y28{bottom:735.196050px;}
.y105{bottom:735.365100px;}
.y1ed{bottom:736.689750px;}
.y4d{bottom:738.481350px;}
.y97{bottom:738.559650px;}
.y73{bottom:739.723350px;}
.ye2{bottom:739.962000px;}
.y164{bottom:740.137350px;}
.ybd{bottom:740.673600px;}
.y1cc{bottom:743.993850px;}
.y1a9{bottom:744.182850px;}
.y186{bottom:746.632200px;}
.y27{bottom:754.726050px;}
.y13d{bottom:755.994900px;}
.y1ec{bottom:756.189750px;}
.y4c{bottom:759.008850px;}
.y96{bottom:759.078450px;}
.y127{bottom:759.104100px;}
.y104{bottom:759.381600px;}
.y72{bottom:760.095600px;}
.ye1{bottom:760.321050px;}
.y163{bottom:760.457850px;}
.ybc{bottom:760.927350px;}
.y1cb{bottom:765.350850px;}
.y1a8{bottom:769.886850px;}
.y185{bottom:771.989700px;}
.y26{bottom:774.267750px;}
.y13c{bottom:776.952750px;}
.y4b{bottom:779.536350px;}
.y95{bottom:779.597250px;}
.y126{bottom:779.614350px;}
.y71{bottom:780.467850px;}
.ye0{bottom:780.658800px;}
.y162{bottom:780.778350px;}
.ybb{bottom:781.183500px;}
.y7{bottom:781.688850px;}
.y1eb{bottom:788.439750px;}
.y1a7{bottom:790.487850px;}
.y1ca{bottom:791.810850px;}
.y184{bottom:792.220350px;}
.y25{bottom:793.797750px;}
.y13b{bottom:797.910750px;}
.y4a{bottom:800.063850px;}
.y94{bottom:800.107500px;}
.y125{bottom:800.124600px;}
.y70{bottom:800.840100px;}
.ydf{bottom:800.996550px;}
.y161{bottom:801.098850px;}
.yba{bottom:801.435000px;}
.y6{bottom:811.193850px;}
.y1c9{bottom:813.167850px;}
.y24{bottom:813.327750px;}
.y1a6{bottom:816.191850px;}
.y183{bottom:817.577850px;}
.y13a{bottom:818.868750px;}
.y49{bottom:820.591350px;}
.y93{bottom:820.634850px;}
.y6f{bottom:821.212350px;}
.yde{bottom:821.334300px;}
.y160{bottom:821.419350px;}
.y103{bottom:821.626350px;}
.yb9{bottom:821.688750px;}
.y5{bottom:832.193850px;}
.y23{bottom:832.857750px;}
.y1c8{bottom:834.524850px;}
.y1a5{bottom:836.792850px;}
.y182{bottom:837.832350px;}
.y139{bottom:839.826750px;}
.y48{bottom:841.118850px;}
.y92{bottom:841.153650px;}
.y6e{bottom:841.584600px;}
.ydd{bottom:841.677450px;}
.y15f{bottom:841.739850px;}
.y102{bottom:841.895100px;}
.yb8{bottom:841.942350px;}
.y1ea{bottom:846.201450px;}
.y22{bottom:852.387750px;}
.y1a4{bottom:857.393850px;}
.y181{bottom:858.086850px;}
.y138{bottom:860.784600px;}
.y1c7{bottom:860.984850px;}
.y47{bottom:861.646350px;}
.y124{bottom:861.672300px;}
.y91{bottom:861.680850px;}
.y4{bottom:861.698850px;}
.y6d{bottom:861.956850px;}
.ydc{bottom:862.020450px;}
.y15e{bottom:862.060350px;}
.y101{bottom:862.163850px;}
.yb7{bottom:862.196100px;}
.y21{bottom:871.917750px;}
.y1e9{bottom:873.201450px;}
.y180{bottom:878.341350px;}
.y137{bottom:881.742600px;}
.y46{bottom:882.173850px;}
.y90{bottom:882.191100px;}
.y6c{bottom:882.329100px;}
.y1c6{bottom:882.341850px;}
.ydb{bottom:882.363600px;}
.y15d{bottom:882.380850px;}
.y100{bottom:882.432600px;}
.yb6{bottom:882.449850px;}
.y3{bottom:882.698850px;}
.y1a3{bottom:883.097850px;}
.y1e8{bottom:900.207450px;}
.y45{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y1e{bottom:966.189000px;}
.hb{height:35.347102px;}
.ha{height:42.070312px;}
.h13{height:46.992188px;}
.hc{height:47.329102px;}
.h4{height:52.587891px;}
.h3{height:55.217285px;}
.h20{height:55.237685px;}
.h1f{height:55.255685px;}
.h21{height:55.256285px;}
.h22{height:55.276685px;}
.h1e{height:55.312685px;}
.h15{height:56.191406px;}
.h1d{height:59.000977px;}
.h25{height:59.147377px;}
.h23{height:59.354977px;}
.h24{height:59.702977px;}
.h9{height:60.476074px;}
.h19{height:64.143117px;}
.hf{height:64.552317px;}
.he{height:64.585917px;}
.h1a{height:64.586517px;}
.h11{height:64.598517px;}
.h12{height:64.599117px;}
.h10{height:64.611117px;}
.hd{height:64.620117px;}
.h1b{height:64.623117px;}
.h1c{height:64.623717px;}
.h17{height:64.653117px;}
.h16{height:64.653717px;}
.h18{height:65.053917px;}
.h2{height:65.734863px;}
.h8{height:70.993652px;}
.h6{height:73.623047px;}
.h7{height:73.647047px;}
.h14{height:88.587891px;}
.h5{height:94.658203px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:80.592900px;}
.x1{left:82.214250px;}
.x6{left:84.135600px;}
.x7{left:85.500600px;}
.x5{left:104.655600px;}
.x8{left:106.035600px;}
.xd{left:108.317100px;}
.xa{left:148.652100px;}
.x9{left:212.663850px;}
.x4{left:230.513700px;}
.x2{left:232.601400px;}
.x3{left:233.748450px;}
.xb{left:418.247100px;}
.xc{left:426.542100px;}
@media print{
.v2{vertical-align:-19.530667pt;}
.v8{vertical-align:-15.090667pt;}
.v5{vertical-align:-10.650667pt;}
.v9{vertical-align:-9.757867pt;}
.vb{vertical-align:-7.896533pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:7.981333pt;}
.v6{vertical-align:9.757867pt;}
.v3{vertical-align:12.385067pt;}
.vd{vertical-align:13.938667pt;}
.v4{vertical-align:15.090667pt;}
.v1{vertical-align:19.552000pt;}
.v7{vertical-align:24.848533pt;}
.va{vertical-align:32.000000pt;}
.lsf{letter-spacing:-6.552000pt;}
.ls9{letter-spacing:-5.760000pt;}
.lsb{letter-spacing:-5.674667pt;}
.ls16{letter-spacing:-2.024000pt;}
.ls2d{letter-spacing:-1.848000pt;}
.ls1d{letter-spacing:-1.594667pt;}
.ls21{letter-spacing:-1.410667pt;}
.ls1f{letter-spacing:-1.349333pt;}
.lsc{letter-spacing:-1.269333pt;}
.ls22{letter-spacing:-0.981333pt;}
.ls1e{letter-spacing:-0.797333pt;}
.ls12{letter-spacing:-0.760000pt;}
.ls19{letter-spacing:-0.736000pt;}
.ls20{letter-spacing:-0.613333pt;}
.ls24{letter-spacing:-0.557333pt;}
.ls1c{letter-spacing:-0.490667pt;}
.ls2f{letter-spacing:-0.426667pt;}
.ls18{letter-spacing:-0.245333pt;}
.ls4{letter-spacing:-0.168000pt;}
.ls1a{letter-spacing:-0.143029pt;}
.ls26{letter-spacing:-0.122667pt;}
.ls25{letter-spacing:-0.072000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000267pt;}
.ls14{letter-spacing:0.003733pt;}
.ls17{letter-spacing:0.306667pt;}
.ls29{letter-spacing:0.504000pt;}
.ls13{letter-spacing:0.552000pt;}
.ls8{letter-spacing:0.576000pt;}
.ls7{letter-spacing:1.120000pt;}
.lsa{letter-spacing:1.175328pt;}
.ls11{letter-spacing:2.133333pt;}
.ls1{letter-spacing:2.933333pt;}
.ls27{letter-spacing:3.472000pt;}
.ls15{letter-spacing:3.618667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls2b{letter-spacing:3.908800pt;}
.ls2c{letter-spacing:4.400000pt;}
.ls23{letter-spacing:4.800000pt;}
.lsd{letter-spacing:5.120000pt;}
.lse{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls3{letter-spacing:5.600000pt;}
.ls1b{letter-spacing:6.133333pt;}
.ls2e{letter-spacing:6.512800pt;}
.ls28{letter-spacing:7.392000pt;}
.ls5{letter-spacing:7.466667pt;}
.ls2a{letter-spacing:7.840000pt;}
.ws3{word-spacing:-27.552000pt;}
.ws4{word-spacing:-23.712000pt;}
.ws69{word-spacing:-23.576000pt;}
.ws61{word-spacing:-23.533333pt;}
.ws6c{word-spacing:-23.133333pt;}
.ws65{word-spacing:-23.128000pt;}
.ws0{word-spacing:-21.666667pt;}
.ws38{word-spacing:-21.282667pt;}
.ws5{word-spacing:-21.216000pt;}
.ws6e{word-spacing:-20.320000pt;}
.ws11{word-spacing:-20.213333pt;}
.ws62{word-spacing:-20.160000pt;}
.ws9{word-spacing:-20.106667pt;}
.ws8{word-spacing:-19.712000pt;}
.ws63{word-spacing:-19.208000pt;}
.ws17{word-spacing:-17.786667pt;}
.ws2c{word-spacing:-17.541333pt;}
.ws19{word-spacing:-17.234667pt;}
.ws2a{word-spacing:-16.989333pt;}
.ws68{word-spacing:-16.240000pt;}
.ws2{word-spacing:-16.106667pt;}
.ws1{word-spacing:-16.090667pt;}
.ws66{word-spacing:-15.736000pt;}
.ws7{word-spacing:-15.306667pt;}
.ws18{word-spacing:-15.149333pt;}
.wsa{word-spacing:-14.986667pt;}
.ws29{word-spacing:-14.904000pt;}
.ws36{word-spacing:-14.658667pt;}
.ws3a{word-spacing:-14.536000pt;}
.ws2b{word-spacing:-14.413333pt;}
.ws3c{word-spacing:-14.168000pt;}
.ws6a{word-spacing:-13.832000pt;}
.ws39{word-spacing:-13.800000pt;}
.ws3b{word-spacing:-13.738667pt;}
.ws13{word-spacing:-13.680000pt;}
.ws37{word-spacing:-13.554667pt;}
.ws6{word-spacing:-13.407445pt;}
.ws6f{word-spacing:-13.173333pt;}
.ws24{word-spacing:-13.125333pt;}
.ws70{word-spacing:-12.746667pt;}
.ws6d{word-spacing:-11.984000pt;}
.ws14{word-spacing:-10.047811pt;}
.ws67{word-spacing:-9.174088pt;}
.ws12{word-spacing:-8.737227pt;}
.wsd{word-spacing:-7.466667pt;}
.ws50{word-spacing:-6.133333pt;}
.ws1f{word-spacing:-6.010667pt;}
.ws6b{word-spacing:-5.600000pt;}
.wsb{word-spacing:-5.333333pt;}
.ws56{word-spacing:-4.354667pt;}
.ws58{word-spacing:-3.986667pt;}
.wsf{word-spacing:-3.733333pt;}
.ws15{word-spacing:-2.133333pt;}
.ws46{word-spacing:-2.085333pt;}
.ws3f{word-spacing:-1.840000pt;}
.ws23{word-spacing:-1.533333pt;}
.ws22{word-spacing:-1.349333pt;}
.ws31{word-spacing:-0.736000pt;}
.ws26{word-spacing:-0.552000pt;}
.ws45{word-spacing:-0.306667pt;}
.ws1c{word-spacing:-0.245333pt;}
.ws30{word-spacing:-0.184000pt;}
.ws10{word-spacing:-0.053333pt;}
.wse{word-spacing:0.000000pt;}
.ws28{word-spacing:0.122667pt;}
.ws33{word-spacing:0.143029pt;}
.wsc{word-spacing:0.168000pt;}
.ws21{word-spacing:0.245333pt;}
.ws3e{word-spacing:0.306667pt;}
.ws5a{word-spacing:0.429333pt;}
.ws64{word-spacing:0.557333pt;}
.ws40{word-spacing:0.613333pt;}
.ws32{word-spacing:0.736000pt;}
.ws16{word-spacing:0.760000pt;}
.ws3d{word-spacing:0.797333pt;}
.ws55{word-spacing:1.104000pt;}
.ws5e{word-spacing:1.778667pt;}
.ws1a{word-spacing:1.840000pt;}
.ws44{word-spacing:2.024000pt;}
.ws2f{word-spacing:2.085333pt;}
.ws34{word-spacing:2.330667pt;}
.ws1e{word-spacing:2.637333pt;}
.ws2e{word-spacing:3.189333pt;}
.ws5d{word-spacing:3.434667pt;}
.ws5b{word-spacing:3.864000pt;}
.ws41{word-spacing:4.661333pt;}
.ws25{word-spacing:4.968000pt;}
.ws43{word-spacing:5.213333pt;}
.ws1d{word-spacing:5.520000pt;}
.ws35{word-spacing:5.581333pt;}
.ws53{word-spacing:6.317333pt;}
.ws47{word-spacing:6.746667pt;}
.ws57{word-spacing:7.176000pt;}
.ws27{word-spacing:7.544000pt;}
.ws54{word-spacing:7.789333pt;}
.ws42{word-spacing:7.912000pt;}
.ws51{word-spacing:9.445333pt;}
.ws1b{word-spacing:9.568000pt;}
.ws60{word-spacing:11.653333pt;}
.ws4b{word-spacing:12.021333pt;}
.ws5f{word-spacing:12.389333pt;}
.ws49{word-spacing:12.634667pt;}
.ws4a{word-spacing:14.106667pt;}
.ws4f{word-spacing:15.333333pt;}
.ws48{word-spacing:16.621333pt;}
.ws4d{word-spacing:16.744000pt;}
.ws4e{word-spacing:18.277333pt;}
.ws20{word-spacing:18.522667pt;}
.ws59{word-spacing:18.768000pt;}
.ws52{word-spacing:21.160000pt;}
.ws5c{word-spacing:21.528000pt;}
.ws4c{word-spacing:33.242667pt;}
.ws2d{word-spacing:309.408000pt;}
._20{margin-left:-14.899277pt;}
._39{margin-left:-11.807200pt;}
._c{margin-left:-8.419200pt;}
._22{margin-left:-7.200533pt;}
._f{margin-left:-5.974933pt;}
._9{margin-left:-4.877067pt;}
._8{margin-left:-3.705333pt;}
._7{margin-left:-2.230667pt;}
._5{margin-left:-1.170133pt;}
._2{width:0.938667pt;}
._4{width:1.872000pt;}
._6{width:3.326933pt;}
._0{width:4.526667pt;}
._3{width:5.616000pt;}
._a{width:6.961333pt;}
._b{width:8.168000pt;}
._d{width:9.878667pt;}
._1f{width:10.840267pt;}
._17{width:11.738667pt;}
._15{width:12.696267pt;}
._14{width:13.834933pt;}
._13{width:15.130667pt;}
._24{width:16.113333pt;}
._1d{width:17.576267pt;}
._21{width:18.722779pt;}
._1e{width:19.933333pt;}
._1b{width:21.122933pt;}
._31{width:22.091123pt;}
._38{width:23.712800pt;}
._1a{width:26.232267pt;}
._37{width:28.765600pt;}
._2f{width:32.722400pt;}
._30{width:34.142056pt;}
._18{width:38.617920pt;}
._35{width:65.685333pt;}
._e{width:76.048000pt;}
._32{width:79.706667pt;}
._34{width:85.735467pt;}
._2b{width:94.453333pt;}
._29{width:98.986667pt;}
._2a{width:99.893333pt;}
._26{width:101.760000pt;}
._33{width:151.852800pt;}
._12{width:231.653333pt;}
._25{width:247.466667pt;}
._2d{width:332.960000pt;}
._28{width:335.626667pt;}
._27{width:395.274667pt;}
._1{width:406.346667pt;}
._1c{width:407.533067pt;}
._36{width:409.101333pt;}
._16{width:410.167467pt;}
._10{width:514.133333pt;}
._2c{width:824.598667pt;}
._19{width:850.222400pt;}
._23{width:852.555733pt;}
._2e{width:856.155733pt;}
._11{width:857.915733pt;}
.fsc{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fsf{font-size:32.648000pt;}
.fsb{font-size:35.757333pt;}
.fs2{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs6{font-size:43.530667pt;}
.fsd{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1a2{bottom:76.617200pt;}
.y1e7{bottom:94.360400pt;}
.y44{bottom:94.403333pt;}
.y8f{bottom:94.440400pt;}
.yb5{bottom:94.480267pt;}
.y17f{bottom:94.480400pt;}
.y123{bottom:94.480800pt;}
.y1c5{bottom:94.483867pt;}
.y15c{bottom:94.487467pt;}
.y1a1{bottom:94.542533pt;}
.y6b{bottom:97.150933pt;}
.yff{bottom:100.514000pt;}
.yb4{bottom:109.816267pt;}
.y43{bottom:112.435333pt;}
.y122{bottom:112.490000pt;}
.y17e{bottom:112.543067pt;}
.y8e{bottom:112.549067pt;}
.y1c4{bottom:112.639867pt;}
.y15b{bottom:113.116800pt;}
.y1e6{bottom:113.344400pt;}
.y6a{bottom:113.595733pt;}
.y1a0{bottom:117.082533pt;}
.yfe{bottom:120.714000pt;}
.yb3{bottom:125.152267pt;}
.y69{bottom:128.931733pt;}
.y121{bottom:130.410267pt;}
.y42{bottom:130.467333pt;}
.y17d{bottom:130.605733pt;}
.y8d{bottom:130.657733pt;}
.y1c3{bottom:130.951867pt;}
.y15a{bottom:131.746133pt;}
.y19f{bottom:135.086533pt;}
.yda{bottom:136.280267pt;}
.y1e5{bottom:136.864400pt;}
.yfd{bottom:140.914000pt;}
.yb2{bottom:143.150933pt;}
.y1d{bottom:146.794533pt;}
.y68{bottom:146.930400pt;}
.y120{bottom:148.426933pt;}
.y41{bottom:148.499333pt;}
.y17c{bottom:148.668400pt;}
.y8c{bottom:148.766400pt;}
.y159{bottom:150.375333pt;}
.y1c2{bottom:153.799867pt;}
.yd9{bottom:154.283600pt;}
.y1e4{bottom:155.848400pt;}
.y19e{bottom:157.626533pt;}
.yfc{bottom:161.114000pt;}
.y67{bottom:163.378000pt;}
.y1c{bottom:165.461200pt;}
.y11f{bottom:166.443600pt;}
.y40{bottom:166.531333pt;}
.y17b{bottom:166.728533pt;}
.y8b{bottom:166.875067pt;}
.y158{bottom:169.004667pt;}
.y207{bottom:169.936800pt;}
.y1c1{bottom:172.111867pt;}
.yd8{bottom:172.286933pt;}
.y19d{bottom:175.630533pt;}
.y1e3{bottom:179.368400pt;}
.yfb{bottom:181.314000pt;}
.y66{bottom:181.376667pt;}
.yb1{bottom:182.285867pt;}
.y1b{bottom:184.133067pt;}
.y11e{bottom:184.460267pt;}
.y3f{bottom:184.563333pt;}
.y8a{bottom:184.983733pt;}
.y157{bottom:187.634000pt;}
.y206{bottom:187.936800pt;}
.yd7{bottom:190.290267pt;}
.y1c0{bottom:194.959867pt;}
.yfa{bottom:197.314000pt;}
.y65{bottom:197.824133pt;}
.y19c{bottom:198.170533pt;}
.y1e2{bottom:198.352400pt;}
.yb0{bottom:200.524667pt;}
.y136{bottom:200.555067pt;}
.y1a{bottom:201.466400pt;}
.y11d{bottom:202.476933pt;}
.y3e{bottom:202.595333pt;}
.y89{bottom:203.092400pt;}
.y205{bottom:205.936800pt;}
.y156{bottom:206.263333pt;}
.yd6{bottom:208.293600pt;}
.y17a{bottom:211.867467pt;}
.y1bf{bottom:213.271867pt;}
.y64{bottom:215.822800pt;}
.y19b{bottom:216.174533pt;}
.yaf{bottom:218.763600pt;}
.y135{bottom:218.786400pt;}
.y19{bottom:218.799733pt;}
.y11c{bottom:220.493600pt;}
.y3d{bottom:220.627333pt;}
.y88{bottom:221.201067pt;}
.y1e1{bottom:221.872400pt;}
.yf9{bottom:223.605067pt;}
.y204{bottom:223.936800pt;}
.y155{bottom:224.892533pt;}
.yd5{bottom:226.308800pt;}
.y179{bottom:229.930133pt;}
.y1be{bottom:236.119867pt;}
.y18{bottom:236.133067pt;}
.yae{bottom:237.017733pt;}
.y11b{bottom:238.510267pt;}
.y3c{bottom:238.659333pt;}
.y19a{bottom:238.714533pt;}
.y203{bottom:241.936800pt;}
.y154{bottom:243.521867pt;}
.yd4{bottom:244.310133pt;}
.y1e0{bottom:245.392400pt;}
.y178{bottom:247.992800pt;}
.y17{bottom:253.466400pt;}
.y1bd{bottom:254.431867pt;}
.y63{bottom:254.953600pt;}
.yad{bottom:255.249067pt;}
.y11a{bottom:256.526933pt;}
.y3b{bottom:256.691333pt;}
.y199{bottom:256.718533pt;}
.y87{bottom:258.200667pt;}
.yf8{bottom:259.942533pt;}
.y153{bottom:262.151067pt;}
.yd3{bottom:262.311467pt;}
.y1df{bottom:264.376400pt;}
.y177{bottom:266.055467pt;}
.y16{bottom:270.799733pt;}
.y202{bottom:271.270133pt;}
.y62{bottom:273.200267pt;}
.yac{bottom:273.480400pt;}
.y119{bottom:274.543600pt;}
.y3a{bottom:274.723333pt;}
.y1bc{bottom:277.279867pt;}
.yf7{bottom:278.020533pt;}
.y198{bottom:279.258533pt;}
.yd2{bottom:280.312800pt;}
.y152{bottom:280.780400pt;}
.y176{bottom:284.118133pt;}
.y1de{bottom:287.896400pt;}
.y15{bottom:288.133067pt;}
.y61{bottom:291.460533pt;}
.yab{bottom:291.719333pt;}
.y118{bottom:292.560267pt;}
.y39{bottom:292.755333pt;}
.y1bb{bottom:295.591867pt;}
.yf6{bottom:296.098533pt;}
.y197{bottom:297.262533pt;}
.yd1{bottom:298.314133pt;}
.y151{bottom:299.409733pt;}
.y175{bottom:302.180800pt;}
.y14{bottom:305.466400pt;}
.y1dd{bottom:306.880400pt;}
.y201{bottom:308.163467pt;}
.y60{bottom:309.707200pt;}
.yaa{bottom:309.958267pt;}
.y117{bottom:310.576933pt;}
.y38{bottom:310.787333pt;}
.y86{bottom:313.467200pt;}
.yf5{bottom:314.176533pt;}
.y196{bottom:315.266533pt;}
.yd0{bottom:316.315467pt;}
.y150{bottom:318.038933pt;}
.y1ba{bottom:318.439867pt;}
.y174{bottom:320.243467pt;}
.y13{bottom:322.799733pt;}
.y200{bottom:325.496800pt;}
.y5f{bottom:327.953867pt;}
.ya9{bottom:328.197200pt;}
.y116{bottom:328.593600pt;}
.y37{bottom:328.819333pt;}
.y1dc{bottom:330.400400pt;}
.y85{bottom:331.575867pt;}
.yf4{bottom:332.254533pt;}
.ycf{bottom:334.316800pt;}
.y14f{bottom:336.668933pt;}
.y1b9{bottom:336.751867pt;}
.y195{bottom:337.806533pt;}
.y173{bottom:338.306133pt;}
.y12{bottom:340.133067pt;}
.y1ff{bottom:342.830133pt;}
.y5e{bottom:346.200533pt;}
.ya8{bottom:346.436000pt;}
.y115{bottom:346.610267pt;}
.y36{bottom:346.851333pt;}
.y1db{bottom:349.384400pt;}
.y84{bottom:349.684533pt;}
.yf3{bottom:350.337333pt;}
.yce{bottom:352.320133pt;}
.y1b8{bottom:355.063867pt;}
.y14e{bottom:355.297600pt;}
.y194{bottom:355.810533pt;}
.y172{bottom:356.368800pt;}
.y11{bottom:357.466400pt;}
.y1fe{bottom:360.163467pt;}
.y5d{bottom:364.447200pt;}
.y114{bottom:364.619467pt;}
.ya7{bottom:364.674933pt;}
.y35{bottom:364.883333pt;}
.y83{bottom:367.793200pt;}
.yf2{bottom:368.420000pt;}
.ycd{bottom:370.323467pt;}
.y1da{bottom:372.904400pt;}
.y14d{bottom:373.926800pt;}
.y171{bottom:374.431467pt;}
.y1fd{bottom:377.496800pt;}
.y1b7{bottom:377.911867pt;}
.y193{bottom:378.350533pt;}
.y113{bottom:382.628800pt;}
.y5c{bottom:382.693867pt;}
.ya6{bottom:382.913867pt;}
.y34{bottom:382.915333pt;}
.y82{bottom:385.901867pt;}
.y10{bottom:386.133067pt;}
.yf1{bottom:386.502800pt;}
.ycc{bottom:388.326800pt;}
.y1d9{bottom:391.888400pt;}
.y170{bottom:392.494133pt;}
.y14c{bottom:392.556133pt;}
.y1fc{bottom:394.830133pt;}
.y1b6{bottom:396.223867pt;}
.y192{bottom:396.354533pt;}
.y112{bottom:400.638000pt;}
.y5b{bottom:400.940533pt;}
.y33{bottom:400.947333pt;}
.ya5{bottom:401.152800pt;}
.y81{bottom:404.010533pt;}
.yf0{bottom:404.585600pt;}
.ycb{bottom:406.330133pt;}
.y16f{bottom:410.556800pt;}
.y14b{bottom:411.185467pt;}
.y1fb{bottom:412.163467pt;}
.y1d8{bottom:415.408400pt;}
.y111{bottom:418.573067pt;}
.y191{bottom:418.894533pt;}
.y32{bottom:418.979333pt;}
.y1b5{bottom:419.071867pt;}
.y5a{bottom:419.187200pt;}
.ya4{bottom:419.391733pt;}
.y134{bottom:419.490133pt;}
.y80{bottom:422.119200pt;}
.yef{bottom:422.668267pt;}
.yca{bottom:424.333467pt;}
.y16e{bottom:428.619467pt;}
.y1fa{bottom:429.496800pt;}
.y14a{bottom:429.814667pt;}
.y1d7{bottom:434.392400pt;}
.y110{bottom:436.589733pt;}
.y190{bottom:436.898533pt;}
.y31{bottom:437.011333pt;}
.y1b4{bottom:437.383867pt;}
.y59{bottom:437.438933pt;}
.yf{bottom:437.476800pt;}
.ya3{bottom:437.630533pt;}
.y133{bottom:437.721467pt;}
.y7f{bottom:440.227867pt;}
.yee{bottom:440.751067pt;}
.yc9{bottom:442.336667pt;}
.y16d{bottom:446.682133pt;}
.y1f9{bottom:446.830133pt;}
.y149{bottom:448.444000pt;}
.y1d6{bottom:453.376400pt;}
.y10f{bottom:454.606400pt;}
.y58{bottom:455.685600pt;}
.y1b3{bottom:455.695867pt;}
.ya2{bottom:455.869467pt;}
.y132{bottom:455.952800pt;}
.y7e{bottom:458.336533pt;}
.yed{bottom:458.833733pt;}
.y18f{bottom:459.438533pt;}
.yc8{bottom:460.340000pt;}
.ye{bottom:461.476800pt;}
.y1f8{bottom:464.163467pt;}
.y16c{bottom:464.744800pt;}
.y148{bottom:467.073333pt;}
.y10e{bottom:472.623067pt;}
.y57{bottom:473.932267pt;}
.y30{bottom:473.936400pt;}
.ya1{bottom:474.108400pt;}
.y131{bottom:474.184133pt;}
.y7d{bottom:476.445200pt;}
.y1d5{bottom:476.896400pt;}
.yec{bottom:476.916533pt;}
.yc7{bottom:478.343333pt;}
.y1b2{bottom:478.543867pt;}
.y1f7{bottom:481.496800pt;}
.y16b{bottom:482.807467pt;}
.yd{bottom:485.482133pt;}
.y147{bottom:485.702667pt;}
.y10d{bottom:490.639733pt;}
.y56{bottom:492.207867pt;}
.ya0{bottom:492.347333pt;}
.y130{bottom:492.415467pt;}
.y7c{bottom:494.553867pt;}
.yeb{bottom:495.032533pt;}
.y1d4{bottom:495.880400pt;}
.yc6{bottom:496.346667pt;}
.y1b1{bottom:496.855867pt;}
.y18e{bottom:497.000533pt;}
.y1f6{bottom:498.830133pt;}
.y16a{bottom:500.870133pt;}
.y146{bottom:504.331867pt;}
.y10c{bottom:508.656400pt;}
.y55{bottom:510.454533pt;}
.y9f{bottom:510.586267pt;}
.y12f{bottom:510.646800pt;}
.y7b{bottom:512.662533pt;}
.yea{bottom:513.110533pt;}
.yc5{bottom:514.348000pt;}
.y1d3{bottom:514.864400pt;}
.y18d{bottom:514.991333pt;}
.y1f5{bottom:516.163467pt;}
.y169{bottom:518.932800pt;}
.y1b0{bottom:519.703867pt;}
.y145{bottom:522.961200pt;}
.y10b{bottom:526.673067pt;}
.yc{bottom:528.347867pt;}
.y54{bottom:528.701200pt;}
.y9e{bottom:528.832667pt;}
.y12e{bottom:528.878133pt;}
.y2f{bottom:529.314000pt;}
.y7a{bottom:530.771200pt;}
.ye9{bottom:531.188533pt;}
.yc4{bottom:532.353333pt;}
.y1f4{bottom:533.496800pt;}
.y18c{bottom:537.531333pt;}
.y1af{bottom:538.015867pt;}
.y1d2{bottom:538.384400pt;}
.y144{bottom:541.590400pt;}
.y10a{bottom:544.689733pt;}
.y53{bottom:546.947867pt;}
.y9d{bottom:547.064000pt;}
.y12d{bottom:547.109467pt;}
.y2e{bottom:548.007333pt;}
.y168{bottom:548.331467pt;}
.y79{bottom:548.879867pt;}
.ye8{bottom:549.266533pt;}
.yc3{bottom:550.356667pt;}
.y1f3{bottom:550.830133pt;}
.y18b{bottom:555.535333pt;}
.yb{bottom:556.355867pt;}
.y1d1{bottom:557.368400pt;}
.y143{bottom:560.219733pt;}
.y1ae{bottom:560.863867pt;}
.y109{bottom:562.706400pt;}
.y52{bottom:565.194533pt;}
.y9c{bottom:565.302933pt;}
.y12c{bottom:565.340800pt;}
.y2d{bottom:566.707600pt;}
.y78{bottom:566.988533pt;}
.ye7{bottom:567.344533pt;}
.y1f2{bottom:568.163467pt;}
.yc2{bottom:568.368000pt;}
.y1d0{bottom:576.352400pt;}
.y18a{bottom:578.070800pt;}
.y142{bottom:578.849733pt;}
.y1ad{bottom:579.175867pt;}
.y108{bottom:580.723067pt;}
.y51{bottom:583.441200pt;}
.y9b{bottom:583.541867pt;}
.y12b{bottom:583.572133pt;}
.y2c{bottom:584.067600pt;}
.ya{bottom:584.363867pt;}
.y77{bottom:585.097200pt;}
.ye6{bottom:585.422533pt;}
.y1f1{bottom:585.496800pt;}
.yc1{bottom:586.369333pt;}
.y141{bottom:597.478267pt;}
.y107{bottom:598.739733pt;}
.y1cf{bottom:599.872400pt;}
.y189{bottom:600.602133pt;}
.y2b{bottom:601.427600pt;}
.y50{bottom:601.687867pt;}
.y9a{bottom:601.780800pt;}
.y12a{bottom:601.803467pt;}
.y1ac{bottom:602.023867pt;}
.y1f0{bottom:602.830133pt;}
.y76{bottom:603.205867pt;}
.ye5{bottom:603.500533pt;}
.y167{bottom:603.711867pt;}
.yc0{bottom:604.370667pt;}
.y9{bottom:612.371867pt;}
.y140{bottom:616.107600pt;}
.y106{bottom:616.756400pt;}
.y2a{bottom:618.787600pt;}
.y1ce{bottom:618.856400pt;}
.y4f{bottom:619.934533pt;}
.y99{bottom:620.019733pt;}
.y129{bottom:620.034800pt;}
.y1ef{bottom:620.163467pt;}
.y1ab{bottom:620.335867pt;}
.y75{bottom:621.314533pt;}
.ye4{bottom:621.578533pt;}
.y166{bottom:621.774533pt;}
.ybf{bottom:622.372000pt;}
.y188{bottom:623.142133pt;}
.y13f{bottom:634.736933pt;}
.y29{bottom:636.147600pt;}
.y1ee{bottom:637.496800pt;}
.y1cd{bottom:637.840400pt;}
.y4e{bottom:638.181200pt;}
.y98{bottom:638.258533pt;}
.y128{bottom:638.266133pt;}
.y74{bottom:639.423200pt;}
.ye3{bottom:639.661200pt;}
.y165{bottom:639.837200pt;}
.ybe{bottom:640.373333pt;}
.y8{bottom:640.379867pt;}
.y187{bottom:641.141600pt;}
.y1aa{bottom:643.183867pt;}
.y13e{bottom:653.366133pt;}
.y28{bottom:653.507600pt;}
.y105{bottom:653.657867pt;}
.y1ed{bottom:654.835333pt;}
.y4d{bottom:656.427867pt;}
.y97{bottom:656.497467pt;}
.y73{bottom:657.531867pt;}
.ye2{bottom:657.744000pt;}
.y164{bottom:657.899867pt;}
.ybd{bottom:658.376533pt;}
.y1cc{bottom:661.327867pt;}
.y1a9{bottom:661.495867pt;}
.y186{bottom:663.673067pt;}
.y27{bottom:670.867600pt;}
.y13d{bottom:671.995467pt;}
.y1ec{bottom:672.168667pt;}
.y4c{bottom:674.674533pt;}
.y96{bottom:674.736400pt;}
.y127{bottom:674.759200pt;}
.y104{bottom:675.005867pt;}
.y72{bottom:675.640533pt;}
.ye1{bottom:675.840933pt;}
.y163{bottom:675.962533pt;}
.ybc{bottom:676.379867pt;}
.y1cb{bottom:680.311867pt;}
.y1a8{bottom:684.343867pt;}
.y185{bottom:686.213067pt;}
.y26{bottom:688.238000pt;}
.y13c{bottom:690.624667pt;}
.y4b{bottom:692.921200pt;}
.y95{bottom:692.975333pt;}
.y126{bottom:692.990533pt;}
.y71{bottom:693.749200pt;}
.ye0{bottom:693.918933pt;}
.y162{bottom:694.025200pt;}
.ybb{bottom:694.385333pt;}
.y7{bottom:694.834533pt;}
.y1eb{bottom:700.835333pt;}
.y1a7{bottom:702.655867pt;}
.y1ca{bottom:703.831867pt;}
.y184{bottom:704.195867pt;}
.y25{bottom:705.598000pt;}
.y13b{bottom:709.254000pt;}
.y4a{bottom:711.167867pt;}
.y94{bottom:711.206667pt;}
.y125{bottom:711.221867pt;}
.y70{bottom:711.857867pt;}
.ydf{bottom:711.996933pt;}
.y161{bottom:712.087867pt;}
.yba{bottom:712.386667pt;}
.y6{bottom:721.061200pt;}
.y1c9{bottom:722.815867pt;}
.y24{bottom:722.958000pt;}
.y1a6{bottom:725.503867pt;}
.y183{bottom:726.735867pt;}
.y13a{bottom:727.883333pt;}
.y49{bottom:729.414533pt;}
.y93{bottom:729.453200pt;}
.y6f{bottom:729.966533pt;}
.yde{bottom:730.074933pt;}
.y160{bottom:730.150533pt;}
.y103{bottom:730.334533pt;}
.yb9{bottom:730.390000pt;}
.y5{bottom:739.727867pt;}
.y23{bottom:740.318000pt;}
.y1c8{bottom:741.799867pt;}
.y1a5{bottom:743.815867pt;}
.y182{bottom:744.739867pt;}
.y139{bottom:746.512667pt;}
.y48{bottom:747.661200pt;}
.y92{bottom:747.692133pt;}
.y6e{bottom:748.075200pt;}
.ydd{bottom:748.157733pt;}
.y15f{bottom:748.213200pt;}
.y102{bottom:748.351200pt;}
.yb8{bottom:748.393200pt;}
.y1ea{bottom:752.179067pt;}
.y22{bottom:757.678000pt;}
.y1a4{bottom:762.127867pt;}
.y181{bottom:762.743867pt;}
.y138{bottom:765.141867pt;}
.y1c7{bottom:765.319867pt;}
.y47{bottom:765.907867pt;}
.y124{bottom:765.930933pt;}
.y91{bottom:765.938533pt;}
.y4{bottom:765.954533pt;}
.y6d{bottom:766.183867pt;}
.ydc{bottom:766.240400pt;}
.y15e{bottom:766.275867pt;}
.y101{bottom:766.367867pt;}
.yb7{bottom:766.396533pt;}
.y21{bottom:775.038000pt;}
.y1e9{bottom:776.179067pt;}
.y180{bottom:780.747867pt;}
.y137{bottom:783.771200pt;}
.y46{bottom:784.154533pt;}
.y90{bottom:784.169867pt;}
.y6c{bottom:784.292533pt;}
.y1c6{bottom:784.303867pt;}
.ydb{bottom:784.323200pt;}
.y15d{bottom:784.338533pt;}
.y100{bottom:784.384533pt;}
.yb6{bottom:784.399867pt;}
.y3{bottom:784.621200pt;}
.y1a3{bottom:784.975867pt;}
.y1e8{bottom:800.184400pt;}
.y45{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y1e{bottom:858.834667pt;}
.hb{height:31.419646pt;}
.ha{height:37.395833pt;}
.h13{height:41.770833pt;}
.hc{height:42.070312pt;}
.h4{height:46.744792pt;}
.h3{height:49.082031pt;}
.h20{height:49.100165pt;}
.h1f{height:49.116165pt;}
.h21{height:49.116698pt;}
.h22{height:49.134831pt;}
.h1e{height:49.166831pt;}
.h15{height:49.947917pt;}
.h1d{height:52.445312pt;}
.h25{height:52.575446pt;}
.h23{height:52.759979pt;}
.h24{height:53.069312pt;}
.h9{height:53.756510pt;}
.h19{height:57.016104pt;}
.hf{height:57.379838pt;}
.he{height:57.409704pt;}
.h1a{height:57.410237pt;}
.h11{height:57.420904pt;}
.h12{height:57.421437pt;}
.h10{height:57.432104pt;}
.hd{height:57.440104pt;}
.h1b{height:57.442771pt;}
.h1c{height:57.443304pt;}
.h17{height:57.469437pt;}
.h16{height:57.469971pt;}
.h18{height:57.825704pt;}
.h2{height:58.430990pt;}
.h8{height:63.105469pt;}
.h6{height:65.442708pt;}
.h7{height:65.464042pt;}
.h14{height:78.744792pt;}
.h5{height:84.140625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:71.638133pt;}
.x1{left:73.079333pt;}
.x6{left:74.787200pt;}
.x7{left:76.000533pt;}
.x5{left:93.027200pt;}
.x8{left:94.253867pt;}
.xd{left:96.281867pt;}
.xa{left:132.135200pt;}
.x9{left:189.034533pt;}
.x4{left:204.901067pt;}
.x2{left:206.756800pt;}
.x3{left:207.776400pt;}
.xb{left:371.775200pt;}
.xc{left:379.148533pt;}
}




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