
    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_9b4d88584cdeaf2fd71fdf57.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_5795979bd93ed430c6891b9c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_c0e6c616e887bea2c48ec701.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_a9e2f1d1e476b33abafb3e2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_59f2101646f436fe43e2b23d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9d15a04cecdd7de48c14328f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_14f19fe79705efec6fc317ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_6a2e4b80fff0298f5709fe14.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.115234;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_aeb1608f28e2a05070edc439.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d2f176a4cfa821554cca9cab.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b54e7d33b1fc7a9287632679.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_dff4f4c0857845dc191b0144.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b367ef4c059b0a95f0a8bd1a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_989d34fdfbcd883ead08934a.woff2')format("woff");}.fff{font-family:fff;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2107a178c0e52254ed6f8b01.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-79.320000px;}
.v8{vertical-align:-63.360000px;}
.v3{vertical-align:-61.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:6.300000px;}
.v7{vertical-align:12.540000px;}
.v5{vertical-align:25.320000px;}
.v6{vertical-align:63.360000px;}
.v1{vertical-align:75.600000px;}
.ls27{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.460200px;}
.ls1e{letter-spacing:-0.414600px;}
.ls11{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.334200px;}
.ls28{letter-spacing:-0.305400px;}
.ls18{letter-spacing:-0.262200px;}
.ls13{letter-spacing:-0.259800px;}
.ls17{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls29{letter-spacing:-0.037440px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.051840px;}
.ls14{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.150000px;}
.lsa{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.262080px;}
.ls1b{letter-spacing:0.262200px;}
.ls1f{letter-spacing:0.305280px;}
.ls21{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.612000px;}
.lsf{letter-spacing:0.666720px;}
.ls1{letter-spacing:0.979920px;}
.ls1d{letter-spacing:3.185280px;}
.ls19{letter-spacing:3.905280px;}
.ls1a{letter-spacing:4.025280px;}
.ls1c{letter-spacing:4.625280px;}
.ls23{letter-spacing:10.385280px;}
.ls22{letter-spacing:13.265280px;}
.ls2a{letter-spacing:24.065280px;}
.ls15{letter-spacing:125.597280px;}
.ls25{letter-spacing:424.146720px;}
.ls24{letter-spacing:456.246720px;}
.ls26{letter-spacing:469.086720px;}
.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;}
}
.ws12{word-spacing:-21.420000px;}
.ws1e{word-spacing:-21.060000px;}
.ws1f{word-spacing:-21.022560px;}
.ws17{word-spacing:-18.720120px;}
.ws15{word-spacing:-18.676920px;}
.ws13{word-spacing:-18.414720px;}
.ws14{word-spacing:-18.305520px;}
.ws5{word-spacing:-18.216000px;}
.ws20{word-spacing:-18.152520px;}
.ws1d{word-spacing:-18.109320px;}
.ws11{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.614080px;}
.ws6{word-spacing:-17.496000px;}
.ws8{word-spacing:-17.279880px;}
.ws2{word-spacing:-17.225280px;}
.ws16{word-spacing:-16.732800px;}
.ws10{word-spacing:-16.666560px;}
.ws1{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.506480px;}
.wsf{word-spacing:-16.353480px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.479800px;}
.wsd{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.608000px;}
.wse{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.888000px;}
.ws9{word-spacing:0.000000px;}
.ws1c{word-spacing:23.874000px;}
.ws1b{word-spacing:78.266880px;}
.ws18{word-spacing:228.381120px;}
.ws1a{word-spacing:231.655200px;}
.ws19{word-spacing:261.268800px;}
._8{margin-left:-2.242560px;}
._1{margin-left:-1.001280px;}
._0{width:1.556880px;}
._2{width:2.876160px;}
._d{width:4.123440px;}
._4{width:5.139360px;}
._3{width:6.394320px;}
._5{width:7.571760px;}
._6{width:8.964240px;}
._a{width:10.956000px;}
._b{width:12.011760px;}
._e{width:13.027680px;}
._10{width:14.164320px;}
._f{width:15.179040px;}
._16{width:16.575840px;}
._12{width:17.629200px;}
._c{width:18.764640px;}
._15{width:20.203200px;}
._11{width:21.812400px;}
._19{width:23.191680px;}
._1a{width:24.294720px;}
._1f{width:25.321440px;}
._1b{width:26.420160px;}
._17{width:28.019520px;}
._18{width:29.022720px;}
._22{width:30.328320px;}
._20{width:31.464000px;}
._21{width:32.786880px;}
._25{width:33.852480px;}
._26{width:34.916160px;}
._1c{width:42.592320px;}
._13{width:44.688000px;}
._1e{width:47.373840px;}
._1d{width:49.008000px;}
._23{width:50.806080px;}
._24{width:51.988800px;}
._28{width:53.919360px;}
._29{width:56.370240px;}
._2a{width:57.720480px;}
._27{width:62.398080px;}
._9{width:72.282000px;}
._14{width:199.020000px;}
._7{width:1125.665760px;}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(17,17,17);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.685000px;}
.y1a1{bottom:4.890000px;}
.y145{bottom:12.600000px;}
.y149{bottom:12.780000px;}
.yd7{bottom:14.760000px;}
.yd3{bottom:15.120000px;}
.y81{bottom:15.480000px;}
.y7e{bottom:15.660000px;}
.y178{bottom:15.945000px;}
.y8{bottom:16.545000px;}
.y19b{bottom:20.595000px;}
.y7{bottom:30.225000px;}
.y14f{bottom:31.680000px;}
.yd6{bottom:34.560000px;}
.ydf{bottom:34.740000px;}
.y177{bottom:34.845000px;}
.y80{bottom:37.260000px;}
.y83{bottom:37.440000px;}
.y14a{bottom:40.680000px;}
.y152{bottom:41.040000px;}
.ydc{bottom:43.560000px;}
.y147{bottom:45.540000px;}
.y89{bottom:46.260000px;}
.y14e{bottom:50.625000px;}
.yd5{bottom:54.360000px;}
.yde{bottom:54.540000px;}
.y154{bottom:59.580000px;}
.y14c{bottom:64.485000px;}
.y88{bottom:68.040000px;}
.y151{bottom:68.940000px;}
.y32{bottom:71.136000px;}
.ydb{bottom:72.360000px;}
.y10{bottom:73.656000px;}
.ye2{bottom:74.340000px;}
.y19c{bottom:83.910000px;}
.y31{bottom:86.796000px;}
.ye6{bottom:92.340000px;}
.yf{bottom:93.456000px;}
.ye1{bottom:94.140000px;}
.y17f{bottom:99.720000px;}
.ye5{bottom:101.340000px;}
.y5d{bottom:102.276000px;}
.ye{bottom:113.436000px;}
.y185{bottom:115.995000px;}
.ye4{bottom:121.140000px;}
.y17b{bottom:122.790000px;}
.y17e{bottom:126.870000px;}
.y175{bottom:132.156000px;}
.y166{bottom:134.856000px;}
.y1af{bottom:138.636000px;}
.y1c1{bottom:140.076000px;}
.yd{bottom:142.416000px;}
.yb8{bottom:142.776000px;}
.y190{bottom:142.956000px;}
.y112{bottom:143.136000px;}
.y192{bottom:145.695000px;}
.y97{bottom:146.736000px;}
.y19d{bottom:147.240000px;}
.y182{bottom:148.110000px;}
.y101{bottom:148.536000px;}
.y1d8{bottom:150.150000px;}
.y124{bottom:156.270000px;}
.yc7{bottom:157.890000px;}
.y59{bottom:158.610000px;}
.yc{bottom:159.510000px;}
.y7b{bottom:160.410000px;}
.y174{bottom:160.590000px;}
.yee{bottom:162.210000px;}
.y165{bottom:163.290000px;}
.yd1{bottom:165.270000px;}
.y1ae{bottom:167.070000px;}
.y1c0{bottom:168.510000px;}
.yb7{bottom:171.210000px;}
.y18f{bottom:171.390000px;}
.y111{bottom:171.570000px;}
.y96{bottom:175.350000px;}
.y143{bottom:177.150000px;}
.yb{bottom:177.330000px;}
.y1d7{bottom:178.590000px;}
.y193{bottom:183.675000px;}
.y123{bottom:184.710000px;}
.yc6{bottom:186.330000px;}
.y7a{bottom:188.850000px;}
.y173{bottom:189.030000px;}
.yed{bottom:190.650000px;}
.y164{bottom:191.730000px;}
.y100{bottom:192.090000px;}
.ya{bottom:192.450000px;}
.yd0{bottom:193.710000px;}
.y1ad{bottom:195.510000px;}
.yb6{bottom:199.830000px;}
.y58{bottom:203.790000px;}
.y6{bottom:204.165000px;}
.y142{bottom:205.590000px;}
.y19a{bottom:209.010000px;}
.y19e{bottom:210.525000px;}
.y1bf{bottom:212.070000px;}
.y122{bottom:213.150000px;}
.yc5{bottom:214.770000px;}
.y110{bottom:215.130000px;}
.y79{bottom:217.290000px;}
.y172{bottom:217.470000px;}
.yec{bottom:219.090000px;}
.y163{bottom:220.170000px;}
.yff{bottom:220.530000px;}
.y1d6{bottom:221.970000px;}
.ycf{bottom:222.150000px;}
.y1ac{bottom:223.950000px;}
.yb5{bottom:228.270000px;}
.y18e{bottom:228.450000px;}
.y95{bottom:232.230000px;}
.y141{bottom:234.030000px;}
.y194{bottom:234.330000px;}
.y1be{bottom:240.510000px;}
.y121{bottom:241.590000px;}
.yc4{bottom:243.210000px;}
.y10f{bottom:243.570000px;}
.y184{bottom:245.550000px;}
.yeb{bottom:247.530000px;}
.y162{bottom:248.610000px;}
.y57{bottom:248.970000px;}
.y199{bottom:250.170000px;}
.yce{bottom:250.590000px;}
.y1ab{bottom:252.390000px;}
.y195{bottom:253.335000px;}
.y5{bottom:254.010000px;}
.yb4{bottom:256.710000px;}
.y18d{bottom:256.890000px;}
.y78{bottom:260.670000px;}
.y171{bottom:260.850000px;}
.y140{bottom:262.470000px;}
.y180{bottom:263.160000px;}
.y17a{bottom:266.370000px;}
.y120{bottom:270.210000px;}
.yc3{bottom:271.650000px;}
.y10e{bottom:272.010000px;}
.y19f{bottom:273.855000px;}
.y4{bottom:275.295000px;}
.yea{bottom:276.015000px;}
.y161{bottom:277.095000px;}
.yfe{bottom:277.455000px;}
.y17d{bottom:279.360000px;}
.y1aa{bottom:280.875000px;}
.y1bd{bottom:283.935000px;}
.y1b5{bottom:285.195000px;}
.y18c{bottom:285.375000px;}
.y77{bottom:289.335000px;}
.y181{bottom:290.190000px;}
.y13f{bottom:290.955000px;}
.y198{bottom:291.315000px;}
.y56{bottom:294.015000px;}
.y3{bottom:295.095000px;}
.ycd{bottom:297.255000px;}
.y11f{bottom:298.695000px;}
.yb3{bottom:300.135000px;}
.y10d{bottom:300.495000px;}
.y94{bottom:304.095000px;}
.ye9{bottom:304.455000px;}
.y17c{bottom:305.565000px;}
.y160{bottom:305.715000px;}
.yfd{bottom:305.895000px;}
.y1a9{bottom:309.315000px;}
.y1bc{bottom:312.375000px;}
.y197{bottom:313.485000px;}
.y2e{bottom:313.815000px;}
.y12e{bottom:315.255000px;}
.y76{bottom:317.775000px;}
.y170{bottom:317.955000px;}
.y13e{bottom:319.395000px;}
.y179{bottom:321.555000px;}
.y1d5{bottom:322.455000px;}
.y183{bottom:322.665000px;}
.ycc{bottom:325.695000px;}
.y11e{bottom:327.135000px;}
.yb2{bottom:328.575000px;}
.y10c{bottom:328.935000px;}
.y18b{bottom:331.095000px;}
.y196{bottom:332.460000px;}
.y93{bottom:332.535000px;}
.ye8{bottom:332.895000px;}
.y15f{bottom:334.155000px;}
.yfc{bottom:334.335000px;}
.y2d{bottom:334.515000px;}
.y1a0{bottom:337.140000px;}
.y1a8{bottom:337.755000px;}
.y55{bottom:339.195000px;}
.y12d{bottom:343.695000px;}
.y75{bottom:346.215000px;}
.y16f{bottom:346.395000px;}
.y13d{bottom:347.835000px;}
.y1d4{bottom:350.895000px;}
.y2c{bottom:352.515000px;}
.ycb{bottom:354.135000px;}
.y11d{bottom:355.575000px;}
.y1bb{bottom:355.935000px;}
.yb1{bottom:357.015000px;}
.y186{bottom:358.635000px;}
.y92{bottom:361.155000px;}
.y54{bottom:362.055000px;}
.y15e{bottom:362.595000px;}
.yfb{bottom:362.955000px;}
.y1a7{bottom:366.195000px;}
.y18a{bottom:369.435000px;}
.y191{bottom:369.540000px;}
.y12c{bottom:372.135000px;}
.y74{bottom:374.655000px;}
.y16e{bottom:374.835000px;}
.y13c{bottom:376.275000px;}
.ye7{bottom:381.135000px;}
.yca{bottom:382.575000px;}
.y2b{bottom:382.935000px;}
.y1ba{bottom:384.375000px;}
.yb0{bottom:385.635000px;}
.y53{bottom:387.975000px;}
.y91{bottom:389.595000px;}
.y2a{bottom:389.775000px;}
.y15d{bottom:391.035000px;}
.yfa{bottom:391.395000px;}
.y1d3{bottom:394.455000px;}
.y1a6{bottom:394.815000px;}
.y10b{bottom:398.775000px;}
.y11c{bottom:398.955000px;}
.y12b{bottom:400.575000px;}
.y73{bottom:403.095000px;}
.y16d{bottom:403.275000px;}
.y29{bottom:405.615000px;}
.yc9{bottom:411.015000px;}
.ye3{bottom:413.895000px;}
.yaf{bottom:414.075000px;}
.y90{bottom:418.035000px;}
.yf9{bottom:419.835000px;}
.y52{bottom:422.715000px;}
.y1d2{bottom:422.895000px;}
.y1a5{bottom:423.255000px;}
.y11b{bottom:427.395000px;}
.y1b9{bottom:427.755000px;}
.y12a{bottom:429.015000px;}
.y72{bottom:431.535000px;}
.y16c{bottom:431.715000px;}
.y15c{bottom:434.415000px;}
.y28{bottom:436.215000px;}
.yc8{bottom:439.635000px;}
.yae{bottom:442.515000px;}
.y8f{bottom:446.475000px;}
.yf8{bottom:448.275000px;}
.y51{bottom:448.455000px;}
.y1a4{bottom:451.695000px;}
.y11a{bottom:456.015000px;}
.y1b8{bottom:456.195000px;}
.yc2{bottom:457.455000px;}
.y71{bottom:459.975000px;}
.y15b{bottom:462.855000px;}
.y50{bottom:465.915000px;}
.y1d1{bottom:466.275000px;}
.yad{bottom:470.955000px;}
.y27{bottom:471.495000px;}
.y8e{bottom:474.915000px;}
.y13b{bottom:476.715000px;}
.y16b{bottom:477.435000px;}
.y1a3{bottom:480.135000px;}
.y4f{bottom:483.195000px;}
.y119{bottom:484.455000px;}
.yc1{bottom:485.895000px;}
.y70{bottom:488.415000px;}
.y15a{bottom:491.475000px;}
.yf7{bottom:491.655000px;}
.y1d0{bottom:494.715000px;}
.yac{bottom:499.395000px;}
.y8d{bottom:503.355000px;}
.y13a{bottom:505.155000px;}
.y26{bottom:506.775000px;}
.y1b7{bottom:509.475000px;}
.y118{bottom:512.895000px;}
.yc0{bottom:514.335000px;}
.y176{bottom:515.880000px;}
.y16a{bottom:515.955000px;}
.y6f{bottom:516.855000px;}
.y159{bottom:519.915000px;}
.yf6{bottom:520.095000px;}
.y4e{bottom:520.815000px;}
.y1cf{bottom:523.155000px;}
.yab{bottom:527.835000px;}
.y8c{bottom:531.795000px;}
.y1a2{bottom:533.415000px;}
.y139{bottom:533.595000px;}
.y4d{bottom:540.615000px;}
.y117{bottom:541.335000px;}
.y25{bottom:541.515000px;}
.ybf{bottom:542.775000px;}
.y158{bottom:548.355000px;}
.yf5{bottom:548.715000px;}
.y1b6{bottom:553.395000px;}
.y1b4{bottom:556.305000px;}
.ye0{bottom:558.825000px;}
.y8b{bottom:560.265000px;}
.y4c{bottom:560.445000px;}
.y138{bottom:562.065000px;}
.y6e{bottom:564.045000px;}
.y1ce{bottom:566.745000px;}
.y24{bottom:567.645000px;}
.yaa{bottom:571.425000px;}
.y157{bottom:576.825000px;}
.yf4{bottom:577.185000px;}
.y4b{bottom:580.425000px;}
.y116{bottom:584.745000px;}
.y129{bottom:586.365000px;}
.y137{bottom:590.505000px;}
.y23{bottom:594.285000px;}
.y1cd{bottom:595.185000px;}
.y6d{bottom:596.625000px;}
.ya9{bottom:599.865000px;}
.y4a{bottom:600.225000px;}
.y156{bottom:605.265000px;}
.yf3{bottom:605.625000px;}
.y8a{bottom:608.505000px;}
.y115{bottom:613.185000px;}
.y128{bottom:614.805000px;}
.y136{bottom:619.125000px;}
.y49{bottom:620.025000px;}
.y22{bottom:621.465000px;}
.ya8{bottom:628.305000px;}
.yf2{bottom:634.065000px;}
.y1cc{bottom:638.565000px;}
.y48{bottom:639.825000px;}
.y6c{bottom:640.005000px;}
.y87{bottom:641.265000px;}
.y114{bottom:641.805000px;}
.y127{bottom:643.245000px;}
.y135{bottom:647.565000px;}
.y21{bottom:648.465000px;}
.y155{bottom:650.985000px;}
.ya7{bottom:656.745000px;}
.y47{bottom:659.625000px;}
.yf1{bottom:662.505000px;}
.y150{bottom:665.565000px;}
.y1cb{bottom:667.185000px;}
.y6b{bottom:668.445000px;}
.y113{bottom:670.245000px;}
.y126{bottom:671.685000px;}
.y134{bottom:676.005000px;}
.ydd{bottom:676.725000px;}
.y1dd{bottom:677.985000px;}
.y20{bottom:678.525000px;}
.y46{bottom:679.605000px;}
.ya6{bottom:685.185000px;}
.yf0{bottom:690.945000px;}
.y1ca{bottom:695.625000px;}
.y6a{bottom:696.885000px;}
.y1b3{bottom:698.685000px;}
.y45{bottom:699.405000px;}
.y125{bottom:700.125000px;}
.y133{bottom:704.445000px;}
.y1e{bottom:712.185000px;}
.ya5{bottom:713.625000px;}
.y44{bottom:719.205000px;}
.y1f{bottom:721.185000px;}
.y69{bottom:725.505000px;}
.y1b2{bottom:727.125000px;}
.ybe{bottom:728.565000px;}
.y132{bottom:732.885000px;}
.y86{bottom:734.325000px;}
.yef{bottom:737.925000px;}
.y189{bottom:738.105000px;}
.y1c9{bottom:739.005000px;}
.y1d{bottom:739.905000px;}
.ya4{bottom:742.065000px;}
.y153{bottom:750.165000px;}
.y68{bottom:753.945000px;}
.y43{bottom:754.665000px;}
.yda{bottom:755.025000px;}
.y1b1{bottom:755.565000px;}
.ybd{bottom:757.185000px;}
.y131{bottom:761.325000px;}
.y1c8{bottom:767.445000px;}
.y1c{bottom:768.885000px;}
.ya3{bottom:770.505000px;}
.y42{bottom:771.765000px;}
.y188{bottom:775.545000px;}
.y10a{bottom:776.265000px;}
.y67{bottom:782.385000px;}
.y1b0{bottom:784.005000px;}
.ybc{bottom:785.625000px;}
.y14b{bottom:787.965000px;}
.y41{bottom:789.045000px;}
.y1c7{bottom:795.885000px;}
.y85{bottom:796.785000px;}
.y1dc{bottom:797.505000px;}
.ya2{bottom:798.945000px;}
.y1b{bottom:802.545000px;}
.y109{bottom:808.305000px;}
.y66{bottom:810.825000px;}
.y187{bottom:812.445000px;}
.ybb{bottom:814.065000px;}
.y1db{bottom:825.945000px;}
.y40{bottom:826.665000px;}
.ya1{bottom:827.565000px;}
.y1a{bottom:833.505000px;}
.y65{bottom:839.310000px;}
.y1c6{bottom:839.490000px;}
.y108{bottom:840.930000px;}
.yba{bottom:842.550000px;}
.y3f{bottom:846.510000px;}
.yd9{bottom:851.370000px;}
.y1da{bottom:854.430000px;}
.ya0{bottom:856.050000px;}
.y84{bottom:859.290000px;}
.y14d{bottom:863.610000px;}
.y19{bottom:864.690000px;}
.y3e{bottom:866.310000px;}
.y107{bottom:869.370000px;}
.yb9{bottom:870.990000px;}
.y64{bottom:882.690000px;}
.y1c5{bottom:882.870000px;}
.y130{bottom:884.490000px;}
.y3d{bottom:886.110000px;}
.yd8{bottom:889.890000px;}
.y18{bottom:895.650000px;}
.y106{bottom:897.990000px;}
.y9f{bottom:899.430000px;}
.y82{bottom:899.790000px;}
.y3c{bottom:905.910000px;}
.y63{bottom:911.310000px;}
.y12f{bottom:912.930000px;}
.y169{bottom:914.910000px;}
.y3b{bottom:925.890000px;}
.y1d9{bottom:926.430000px;}
.y17{bottom:926.790000px;}
.y9e{bottom:927.870000px;}
.y146{bottom:929.310000px;}
.y62{bottom:939.750000px;}
.y105{bottom:941.370000px;}
.y3a{bottom:945.690000px;}
.yd4{bottom:948.390000px;}
.y1c4{bottom:954.870000px;}
.y9d{bottom:956.310000px;}
.y16{bottom:957.750000px;}
.y168{bottom:961.350000px;}
.y7f{bottom:962.250000px;}
.y39{bottom:965.490000px;}
.y61{bottom:968.190000px;}
.y104{bottom:969.810000px;}
.y1c3{bottom:983.310000px;}
.y9c{bottom:984.750000px;}
.y38{bottom:985.290000px;}
.y15{bottom:988.890000px;}
.y167{bottom:989.790000px;}
.y148{bottom:995.010000px;}
.y60{bottom:996.630000px;}
.y103{bottom:998.250000px;}
.y37{bottom:1005.090000px;}
.y9b{bottom:1013.370000px;}
.y14{bottom:1019.850000px;}
.y7d{bottom:1024.530000px;}
.y36{bottom:1025.070000px;}
.yd2{bottom:1026.510000px;}
.y102{bottom:1026.690000px;}
.y144{bottom:1032.810000px;}
.y9a{bottom:1041.810000px;}
.y35{bottom:1044.870000px;}
.y13{bottom:1050.990000px;}
.y5f{bottom:1053.510000px;}
.y1c2{bottom:1055.130000px;}
.y34{bottom:1064.670000px;}
.y99{bottom:1070.250000px;}
.y12{bottom:1075.290000px;}
.y5e{bottom:1094.730000px;}
.y11{bottom:1098.510000px;}
.y98{bottom:1098.690000px;}
.y7c{bottom:1098.870000px;}
.y33{bottom:1100.310000px;}
.y5c{bottom:1152.540000px;}
.y2{bottom:1174.140000px;}
.y5b{bottom:1175.400000px;}
.y30{bottom:1178.280000px;}
.y2f{bottom:1193.580000px;}
.y1{bottom:1194.300000px;}
.y5a{bottom:1197.540000px;}
.h29{height:36.885000px;}
.h2b{height:37.065000px;}
.h30{height:37.080000px;}
.h10{height:37.546875px;}
.h24{height:37.785000px;}
.h20{height:37.965000px;}
.h1c{height:39.765000px;}
.h19{height:39.945000px;}
.h4{height:41.385000px;}
.h13{height:47.344922px;}
.h5{height:50.312812px;}
.h14{height:52.971680px;}
.h6{height:52.998047px;}
.he{height:53.316562px;}
.h22{height:53.603086px;}
.h11{height:56.320312px;}
.h23{height:57.585000px;}
.h18{height:59.415469px;}
.h7{height:60.226875px;}
.h1a{height:61.545000px;}
.h1b{height:61.725000px;}
.h1e{height:61.740000px;}
.h1d{height:61.762500px;}
.h3{height:62.327813px;}
.h2c{height:64.965000px;}
.h2{height:65.884219px;}
.hf{height:66.082500px;}
.h34{height:68.627813px;}
.h17{height:69.086250px;}
.ha{height:70.628906px;}
.h12{height:70.664062px;}
.h15{height:71.613281px;}
.h9{height:72.562500px;}
.h2e{height:74.902500px;}
.h36{height:75.632812px;}
.h21{height:77.385000px;}
.h26{height:77.580000px;}
.hc{height:81.101250px;}
.h31{height:83.880000px;}
.h16{height:84.898125px;}
.h8{height:86.255508px;}
.hb{height:87.859687px;}
.h1f{height:92.340000px;}
.h25{height:95.422500px;}
.h2a{height:102.765000px;}
.h27{height:117.180000px;}
.h2f{height:121.680000px;}
.h37{height:126.212812px;}
.h2d{height:140.602500px;}
.h28{height:144.210000px;}
.h33{height:144.686250px;}
.h35{height:355.500000px;}
.h32{height:385.920000px;}
.hd{height:1262.877945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:97.009500px;}
.w4{width:142.909500px;}
.w6{width:148.176000px;}
.w8{width:153.169500px;}
.w5{width:157.515000px;}
.wa{width:161.310000px;}
.w9{width:161.475000px;}
.wb{width:201.615000px;}
.w7{width:228.975000px;}
.wd{width:241.575000px;}
.we{width:342.075000px;}
.w10{width:560.700000px;}
.wf{width:622.440000px;}
.w2{width:705.330000px;}
.w3{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:6.105000px;}
.x3{left:8.089500px;}
.x3e{left:9.345000px;}
.x38{left:10.605000px;}
.x17{left:11.685000px;}
.x3c{left:12.780000px;}
.x22{left:15.469500px;}
.x1f{left:17.269500px;}
.x32{left:18.709500px;}
.x28{left:21.225000px;}
.x2c{left:22.669500px;}
.x2f{left:24.660000px;}
.x39{left:26.100000px;}
.x21{left:27.720000px;}
.x3b{left:30.090000px;}
.x33{left:31.125000px;}
.x1e{left:32.220000px;}
.x37{left:33.649500px;}
.x24{left:36.163500px;}
.x3a{left:37.429500px;}
.x20{left:38.863500px;}
.x35{left:40.140000px;}
.x23{left:41.563500px;}
.x26{left:43.740000px;}
.x1c{left:45.163500px;}
.x19{left:47.520000px;}
.x3d{left:50.220000px;}
.x50{left:52.050000px;}
.x36{left:54.525000px;}
.x1d{left:58.170000px;}
.x1b{left:59.385000px;}
.x31{left:62.805000px;}
.x25{left:66.810000px;}
.x15{left:71.443500px;}
.x45{left:73.065000px;}
.x34{left:79.005000px;}
.x61{left:87.270000px;}
.x53{left:88.275000px;}
.x2{left:98.326500px;}
.x1{left:106.416000px;}
.x12{left:111.456000px;}
.x57{left:113.400000px;}
.x14{left:114.526500px;}
.x5a{left:125.745000px;}
.x7{left:130.536000px;}
.x4c{left:133.380000px;}
.x46{left:137.190000px;}
.xb{left:149.256000px;}
.x67{left:159.510000px;}
.x60{left:164.520000px;}
.x62{left:166.680000px;}
.x2a{left:170.310000px;}
.x6{left:176.430000px;}
.x51{left:180.690000px;}
.xa{left:188.670000px;}
.x40{left:193.710000px;}
.x4d{left:202.350000px;}
.x44{left:204.705000px;}
.x63{left:206.430000px;}
.x5c{left:213.765000px;}
.x54{left:216.825000px;}
.x13{left:240.510000px;}
.x2b{left:251.490000px;}
.x58{left:256.605000px;}
.x16{left:258.165000px;}
.x2d{left:260.685000px;}
.x43{left:279.570000px;}
.x10{left:281.190000px;}
.x8{left:283.890000px;}
.xd{left:311.655000px;}
.x52{left:314.175000px;}
.xc{left:316.695000px;}
.x11{left:322.455000px;}
.x64{left:325.590000px;}
.x4e{left:330.120000px;}
.x47{left:338.295000px;}
.x29{left:343.335000px;}
.x3f{left:348.015000px;}
.x55{left:350.280000px;}
.x42{left:355.035000px;}
.x4b{left:363.315000px;}
.x5f{left:365.835000px;}
.x59{left:380.910000px;}
.x48{left:382.215000px;}
.x65{left:405.030000px;}
.x5b{left:410.580000px;}
.x18{left:416.415000px;}
.x2e{left:422.895000px;}
.x5d{left:432.255000px;}
.x49{left:437.655000px;}
.x5{left:445.035000px;}
.x9{left:446.655000px;}
.x4f{left:477.645000px;}
.x56{left:492.375000px;}
.x66{left:524.190000px;}
.x1a{left:565.320000px;}
.xe{left:571.603125px;}
.xf{left:578.625000px;}
.x30{left:584.940000px;}
.x5e{left:725.370000px;}
.x41{left:743.550000px;}
.x4a{left:756.690000px;}
.x4{left:783.870000px;}
@media print{
.v2{vertical-align:-70.506667pt;}
.v8{vertical-align:-56.320000pt;}
.v3{vertical-align:-54.400000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.600000pt;}
.v7{vertical-align:11.146667pt;}
.v5{vertical-align:22.506667pt;}
.v6{vertical-align:56.320000pt;}
.v1{vertical-align:67.200000pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.409067pt;}
.ls1e{letter-spacing:-0.368533pt;}
.ls11{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.297067pt;}
.ls28{letter-spacing:-0.271467pt;}
.ls18{letter-spacing:-0.233067pt;}
.ls13{letter-spacing:-0.230933pt;}
.ls17{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls29{letter-spacing:-0.033280pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.046080pt;}
.ls14{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.133333pt;}
.lsa{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.232960pt;}
.ls1b{letter-spacing:0.233067pt;}
.ls1f{letter-spacing:0.271360pt;}
.ls21{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.544000pt;}
.lsf{letter-spacing:0.592640pt;}
.ls1{letter-spacing:0.871040pt;}
.ls1d{letter-spacing:2.831360pt;}
.ls19{letter-spacing:3.471360pt;}
.ls1a{letter-spacing:3.578027pt;}
.ls1c{letter-spacing:4.111360pt;}
.ls23{letter-spacing:9.231360pt;}
.ls22{letter-spacing:11.791360pt;}
.ls2a{letter-spacing:21.391360pt;}
.ls15{letter-spacing:111.642027pt;}
.ls25{letter-spacing:377.019307pt;}
.ls24{letter-spacing:405.552640pt;}
.ls26{letter-spacing:416.965973pt;}
.ws12{word-spacing:-19.040000pt;}
.ws1e{word-spacing:-18.720000pt;}
.ws1f{word-spacing:-18.686720pt;}
.ws17{word-spacing:-16.640107pt;}
.ws15{word-spacing:-16.601707pt;}
.ws13{word-spacing:-16.368640pt;}
.ws14{word-spacing:-16.271573pt;}
.ws5{word-spacing:-16.192000pt;}
.ws20{word-spacing:-16.135573pt;}
.ws1d{word-spacing:-16.097173pt;}
.ws11{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.656960pt;}
.ws6{word-spacing:-15.552000pt;}
.ws8{word-spacing:-15.359893pt;}
.ws2{word-spacing:-15.311360pt;}
.ws16{word-spacing:-14.873600pt;}
.ws10{word-spacing:-14.814720pt;}
.ws1{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.672427pt;}
.wsf{word-spacing:-14.536427pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.870933pt;}
.wsd{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.096000pt;}
.wse{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.456000pt;}
.ws9{word-spacing:0.000000pt;}
.ws1c{word-spacing:21.221333pt;}
.ws1b{word-spacing:69.570560pt;}
.ws18{word-spacing:203.005440pt;}
.ws1a{word-spacing:205.915733pt;}
.ws19{word-spacing:232.238933pt;}
._8{margin-left:-1.993387pt;}
._1{margin-left:-0.890027pt;}
._0{width:1.383893pt;}
._2{width:2.556587pt;}
._d{width:3.665280pt;}
._4{width:4.568320pt;}
._3{width:5.683840pt;}
._5{width:6.730453pt;}
._6{width:7.968213pt;}
._a{width:9.738667pt;}
._b{width:10.677120pt;}
._e{width:11.580160pt;}
._10{width:12.590507pt;}
._f{width:13.492480pt;}
._16{width:14.734080pt;}
._12{width:15.670400pt;}
._c{width:16.679680pt;}
._15{width:17.958400pt;}
._11{width:19.388800pt;}
._19{width:20.614827pt;}
._1a{width:21.595307pt;}
._1f{width:22.507947pt;}
._1b{width:23.484587pt;}
._17{width:24.906240pt;}
._18{width:25.797973pt;}
._22{width:26.958507pt;}
._20{width:27.968000pt;}
._21{width:29.143893pt;}
._25{width:30.091093pt;}
._26{width:31.036587pt;}
._1c{width:37.859840pt;}
._13{width:39.722667pt;}
._1e{width:42.110080pt;}
._1d{width:43.562667pt;}
._23{width:45.160960pt;}
._24{width:46.212267pt;}
._28{width:47.928320pt;}
._29{width:50.106880pt;}
._2a{width:51.307093pt;}
._27{width:55.464960pt;}
._9{width:64.250667pt;}
._14{width:176.906667pt;}
._7{width:1000.591787pt;}
.fs9{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.386667pt;}
.y1a1{bottom:4.346667pt;}
.y145{bottom:11.200000pt;}
.y149{bottom:11.360000pt;}
.yd7{bottom:13.120000pt;}
.yd3{bottom:13.440000pt;}
.y81{bottom:13.760000pt;}
.y7e{bottom:13.920000pt;}
.y178{bottom:14.173333pt;}
.y8{bottom:14.706667pt;}
.y19b{bottom:18.306667pt;}
.y7{bottom:26.866667pt;}
.y14f{bottom:28.160000pt;}
.yd6{bottom:30.720000pt;}
.ydf{bottom:30.880000pt;}
.y177{bottom:30.973333pt;}
.y80{bottom:33.120000pt;}
.y83{bottom:33.280000pt;}
.y14a{bottom:36.160000pt;}
.y152{bottom:36.480000pt;}
.ydc{bottom:38.720000pt;}
.y147{bottom:40.480000pt;}
.y89{bottom:41.120000pt;}
.y14e{bottom:45.000000pt;}
.yd5{bottom:48.320000pt;}
.yde{bottom:48.480000pt;}
.y154{bottom:52.960000pt;}
.y14c{bottom:57.320000pt;}
.y88{bottom:60.480000pt;}
.y151{bottom:61.280000pt;}
.y32{bottom:63.232000pt;}
.ydb{bottom:64.320000pt;}
.y10{bottom:65.472000pt;}
.ye2{bottom:66.080000pt;}
.y19c{bottom:74.586667pt;}
.y31{bottom:77.152000pt;}
.ye6{bottom:82.080000pt;}
.yf{bottom:83.072000pt;}
.ye1{bottom:83.680000pt;}
.y17f{bottom:88.640000pt;}
.ye5{bottom:90.080000pt;}
.y5d{bottom:90.912000pt;}
.ye{bottom:100.832000pt;}
.y185{bottom:103.106667pt;}
.ye4{bottom:107.680000pt;}
.y17b{bottom:109.146667pt;}
.y17e{bottom:112.773333pt;}
.y175{bottom:117.472000pt;}
.y166{bottom:119.872000pt;}
.y1af{bottom:123.232000pt;}
.y1c1{bottom:124.512000pt;}
.yd{bottom:126.592000pt;}
.yb8{bottom:126.912000pt;}
.y190{bottom:127.072000pt;}
.y112{bottom:127.232000pt;}
.y192{bottom:129.506667pt;}
.y97{bottom:130.432000pt;}
.y19d{bottom:130.880000pt;}
.y182{bottom:131.653333pt;}
.y101{bottom:132.032000pt;}
.y1d8{bottom:133.466667pt;}
.y124{bottom:138.906667pt;}
.yc7{bottom:140.346667pt;}
.y59{bottom:140.986667pt;}
.yc{bottom:141.786667pt;}
.y7b{bottom:142.586667pt;}
.y174{bottom:142.746667pt;}
.yee{bottom:144.186667pt;}
.y165{bottom:145.146667pt;}
.yd1{bottom:146.906667pt;}
.y1ae{bottom:148.506667pt;}
.y1c0{bottom:149.786667pt;}
.yb7{bottom:152.186667pt;}
.y18f{bottom:152.346667pt;}
.y111{bottom:152.506667pt;}
.y96{bottom:155.866667pt;}
.y143{bottom:157.466667pt;}
.yb{bottom:157.626667pt;}
.y1d7{bottom:158.746667pt;}
.y193{bottom:163.266667pt;}
.y123{bottom:164.186667pt;}
.yc6{bottom:165.626667pt;}
.y7a{bottom:167.866667pt;}
.y173{bottom:168.026667pt;}
.yed{bottom:169.466667pt;}
.y164{bottom:170.426667pt;}
.y100{bottom:170.746667pt;}
.ya{bottom:171.066667pt;}
.yd0{bottom:172.186667pt;}
.y1ad{bottom:173.786667pt;}
.yb6{bottom:177.626667pt;}
.y58{bottom:181.146667pt;}
.y6{bottom:181.480000pt;}
.y142{bottom:182.746667pt;}
.y19a{bottom:185.786667pt;}
.y19e{bottom:187.133333pt;}
.y1bf{bottom:188.506667pt;}
.y122{bottom:189.466667pt;}
.yc5{bottom:190.906667pt;}
.y110{bottom:191.226667pt;}
.y79{bottom:193.146667pt;}
.y172{bottom:193.306667pt;}
.yec{bottom:194.746667pt;}
.y163{bottom:195.706667pt;}
.yff{bottom:196.026667pt;}
.y1d6{bottom:197.306667pt;}
.ycf{bottom:197.466667pt;}
.y1ac{bottom:199.066667pt;}
.yb5{bottom:202.906667pt;}
.y18e{bottom:203.066667pt;}
.y95{bottom:206.426667pt;}
.y141{bottom:208.026667pt;}
.y194{bottom:208.293333pt;}
.y1be{bottom:213.786667pt;}
.y121{bottom:214.746667pt;}
.yc4{bottom:216.186667pt;}
.y10f{bottom:216.506667pt;}
.y184{bottom:218.266667pt;}
.yeb{bottom:220.026667pt;}
.y162{bottom:220.986667pt;}
.y57{bottom:221.306667pt;}
.y199{bottom:222.373333pt;}
.yce{bottom:222.746667pt;}
.y1ab{bottom:224.346667pt;}
.y195{bottom:225.186667pt;}
.y5{bottom:225.786667pt;}
.yb4{bottom:228.186667pt;}
.y18d{bottom:228.346667pt;}
.y78{bottom:231.706667pt;}
.y171{bottom:231.866667pt;}
.y140{bottom:233.306667pt;}
.y180{bottom:233.920000pt;}
.y17a{bottom:236.773333pt;}
.y120{bottom:240.186667pt;}
.yc3{bottom:241.466667pt;}
.y10e{bottom:241.786667pt;}
.y19f{bottom:243.426667pt;}
.y4{bottom:244.706667pt;}
.yea{bottom:245.346667pt;}
.y161{bottom:246.306667pt;}
.yfe{bottom:246.626667pt;}
.y17d{bottom:248.320000pt;}
.y1aa{bottom:249.666667pt;}
.y1bd{bottom:252.386667pt;}
.y1b5{bottom:253.506667pt;}
.y18c{bottom:253.666667pt;}
.y77{bottom:257.186667pt;}
.y181{bottom:257.946667pt;}
.y13f{bottom:258.626667pt;}
.y198{bottom:258.946667pt;}
.y56{bottom:261.346667pt;}
.y3{bottom:262.306667pt;}
.ycd{bottom:264.226667pt;}
.y11f{bottom:265.506667pt;}
.yb3{bottom:266.786667pt;}
.y10d{bottom:267.106667pt;}
.y94{bottom:270.306667pt;}
.ye9{bottom:270.626667pt;}
.y17c{bottom:271.613333pt;}
.y160{bottom:271.746667pt;}
.yfd{bottom:271.906667pt;}
.y1a9{bottom:274.946667pt;}
.y1bc{bottom:277.666667pt;}
.y197{bottom:278.653333pt;}
.y2e{bottom:278.946667pt;}
.y12e{bottom:280.226667pt;}
.y76{bottom:282.466667pt;}
.y170{bottom:282.626667pt;}
.y13e{bottom:283.906667pt;}
.y179{bottom:285.826667pt;}
.y1d5{bottom:286.626667pt;}
.y183{bottom:286.813333pt;}
.ycc{bottom:289.506667pt;}
.y11e{bottom:290.786667pt;}
.yb2{bottom:292.066667pt;}
.y10c{bottom:292.386667pt;}
.y18b{bottom:294.306667pt;}
.y196{bottom:295.520000pt;}
.y93{bottom:295.586667pt;}
.ye8{bottom:295.906667pt;}
.y15f{bottom:297.026667pt;}
.yfc{bottom:297.186667pt;}
.y2d{bottom:297.346667pt;}
.y1a0{bottom:299.680000pt;}
.y1a8{bottom:300.226667pt;}
.y55{bottom:301.506667pt;}
.y12d{bottom:305.506667pt;}
.y75{bottom:307.746667pt;}
.y16f{bottom:307.906667pt;}
.y13d{bottom:309.186667pt;}
.y1d4{bottom:311.906667pt;}
.y2c{bottom:313.346667pt;}
.ycb{bottom:314.786667pt;}
.y11d{bottom:316.066667pt;}
.y1bb{bottom:316.386667pt;}
.yb1{bottom:317.346667pt;}
.y186{bottom:318.786667pt;}
.y92{bottom:321.026667pt;}
.y54{bottom:321.826667pt;}
.y15e{bottom:322.306667pt;}
.yfb{bottom:322.626667pt;}
.y1a7{bottom:325.506667pt;}
.y18a{bottom:328.386667pt;}
.y191{bottom:328.480000pt;}
.y12c{bottom:330.786667pt;}
.y74{bottom:333.026667pt;}
.y16e{bottom:333.186667pt;}
.y13c{bottom:334.466667pt;}
.ye7{bottom:338.786667pt;}
.yca{bottom:340.066667pt;}
.y2b{bottom:340.386667pt;}
.y1ba{bottom:341.666667pt;}
.yb0{bottom:342.786667pt;}
.y53{bottom:344.866667pt;}
.y91{bottom:346.306667pt;}
.y2a{bottom:346.466667pt;}
.y15d{bottom:347.586667pt;}
.yfa{bottom:347.906667pt;}
.y1d3{bottom:350.626667pt;}
.y1a6{bottom:350.946667pt;}
.y10b{bottom:354.466667pt;}
.y11c{bottom:354.626667pt;}
.y12b{bottom:356.066667pt;}
.y73{bottom:358.306667pt;}
.y16d{bottom:358.466667pt;}
.y29{bottom:360.546667pt;}
.yc9{bottom:365.346667pt;}
.ye3{bottom:367.906667pt;}
.yaf{bottom:368.066667pt;}
.y90{bottom:371.586667pt;}
.yf9{bottom:373.186667pt;}
.y52{bottom:375.746667pt;}
.y1d2{bottom:375.906667pt;}
.y1a5{bottom:376.226667pt;}
.y11b{bottom:379.906667pt;}
.y1b9{bottom:380.226667pt;}
.y12a{bottom:381.346667pt;}
.y72{bottom:383.586667pt;}
.y16c{bottom:383.746667pt;}
.y15c{bottom:386.146667pt;}
.y28{bottom:387.746667pt;}
.yc8{bottom:390.786667pt;}
.yae{bottom:393.346667pt;}
.y8f{bottom:396.866667pt;}
.yf8{bottom:398.466667pt;}
.y51{bottom:398.626667pt;}
.y1a4{bottom:401.506667pt;}
.y11a{bottom:405.346667pt;}
.y1b8{bottom:405.506667pt;}
.yc2{bottom:406.626667pt;}
.y71{bottom:408.866667pt;}
.y15b{bottom:411.426667pt;}
.y50{bottom:414.146667pt;}
.y1d1{bottom:414.466667pt;}
.yad{bottom:418.626667pt;}
.y27{bottom:419.106667pt;}
.y8e{bottom:422.146667pt;}
.y13b{bottom:423.746667pt;}
.y16b{bottom:424.386667pt;}
.y1a3{bottom:426.786667pt;}
.y4f{bottom:429.506667pt;}
.y119{bottom:430.626667pt;}
.yc1{bottom:431.906667pt;}
.y70{bottom:434.146667pt;}
.y15a{bottom:436.866667pt;}
.yf7{bottom:437.026667pt;}
.y1d0{bottom:439.746667pt;}
.yac{bottom:443.906667pt;}
.y8d{bottom:447.426667pt;}
.y13a{bottom:449.026667pt;}
.y26{bottom:450.466667pt;}
.y1b7{bottom:452.866667pt;}
.y118{bottom:455.906667pt;}
.yc0{bottom:457.186667pt;}
.y176{bottom:458.560000pt;}
.y16a{bottom:458.626667pt;}
.y6f{bottom:459.426667pt;}
.y159{bottom:462.146667pt;}
.yf6{bottom:462.306667pt;}
.y4e{bottom:462.946667pt;}
.y1cf{bottom:465.026667pt;}
.yab{bottom:469.186667pt;}
.y8c{bottom:472.706667pt;}
.y1a2{bottom:474.146667pt;}
.y139{bottom:474.306667pt;}
.y4d{bottom:480.546667pt;}
.y117{bottom:481.186667pt;}
.y25{bottom:481.346667pt;}
.ybf{bottom:482.466667pt;}
.y158{bottom:487.426667pt;}
.yf5{bottom:487.746667pt;}
.y1b6{bottom:491.906667pt;}
.y1b4{bottom:494.493333pt;}
.ye0{bottom:496.733333pt;}
.y8b{bottom:498.013333pt;}
.y4c{bottom:498.173333pt;}
.y138{bottom:499.613333pt;}
.y6e{bottom:501.373333pt;}
.y1ce{bottom:503.773333pt;}
.y24{bottom:504.573333pt;}
.yaa{bottom:507.933333pt;}
.y157{bottom:512.733333pt;}
.yf4{bottom:513.053333pt;}
.y4b{bottom:515.933333pt;}
.y116{bottom:519.773333pt;}
.y129{bottom:521.213333pt;}
.y137{bottom:524.893333pt;}
.y23{bottom:528.253333pt;}
.y1cd{bottom:529.053333pt;}
.y6d{bottom:530.333333pt;}
.ya9{bottom:533.213333pt;}
.y4a{bottom:533.533333pt;}
.y156{bottom:538.013333pt;}
.yf3{bottom:538.333333pt;}
.y8a{bottom:540.893333pt;}
.y115{bottom:545.053333pt;}
.y128{bottom:546.493333pt;}
.y136{bottom:550.333333pt;}
.y49{bottom:551.133333pt;}
.y22{bottom:552.413333pt;}
.ya8{bottom:558.493333pt;}
.yf2{bottom:563.613333pt;}
.y1cc{bottom:567.613333pt;}
.y48{bottom:568.733333pt;}
.y6c{bottom:568.893333pt;}
.y87{bottom:570.013333pt;}
.y114{bottom:570.493333pt;}
.y127{bottom:571.773333pt;}
.y135{bottom:575.613333pt;}
.y21{bottom:576.413333pt;}
.y155{bottom:578.653333pt;}
.ya7{bottom:583.773333pt;}
.y47{bottom:586.333333pt;}
.yf1{bottom:588.893333pt;}
.y150{bottom:591.613333pt;}
.y1cb{bottom:593.053333pt;}
.y6b{bottom:594.173333pt;}
.y113{bottom:595.773333pt;}
.y126{bottom:597.053333pt;}
.y134{bottom:600.893333pt;}
.ydd{bottom:601.533333pt;}
.y1dd{bottom:602.653333pt;}
.y20{bottom:603.133333pt;}
.y46{bottom:604.093333pt;}
.ya6{bottom:609.053333pt;}
.yf0{bottom:614.173333pt;}
.y1ca{bottom:618.333333pt;}
.y6a{bottom:619.453333pt;}
.y1b3{bottom:621.053333pt;}
.y45{bottom:621.693333pt;}
.y125{bottom:622.333333pt;}
.y133{bottom:626.173333pt;}
.y1e{bottom:633.053333pt;}
.ya5{bottom:634.333333pt;}
.y44{bottom:639.293333pt;}
.y1f{bottom:641.053333pt;}
.y69{bottom:644.893333pt;}
.y1b2{bottom:646.333333pt;}
.ybe{bottom:647.613333pt;}
.y132{bottom:651.453333pt;}
.y86{bottom:652.733333pt;}
.yef{bottom:655.933333pt;}
.y189{bottom:656.093333pt;}
.y1c9{bottom:656.893333pt;}
.y1d{bottom:657.693333pt;}
.ya4{bottom:659.613333pt;}
.y153{bottom:666.813333pt;}
.y68{bottom:670.173333pt;}
.y43{bottom:670.813333pt;}
.yda{bottom:671.133333pt;}
.y1b1{bottom:671.613333pt;}
.ybd{bottom:673.053333pt;}
.y131{bottom:676.733333pt;}
.y1c8{bottom:682.173333pt;}
.y1c{bottom:683.453333pt;}
.ya3{bottom:684.893333pt;}
.y42{bottom:686.013333pt;}
.y188{bottom:689.373333pt;}
.y10a{bottom:690.013333pt;}
.y67{bottom:695.453333pt;}
.y1b0{bottom:696.893333pt;}
.ybc{bottom:698.333333pt;}
.y14b{bottom:700.413333pt;}
.y41{bottom:701.373333pt;}
.y1c7{bottom:707.453333pt;}
.y85{bottom:708.253333pt;}
.y1dc{bottom:708.893333pt;}
.ya2{bottom:710.173333pt;}
.y1b{bottom:713.373333pt;}
.y109{bottom:718.493333pt;}
.y66{bottom:720.733333pt;}
.y187{bottom:722.173333pt;}
.ybb{bottom:723.613333pt;}
.y1db{bottom:734.173333pt;}
.y40{bottom:734.813333pt;}
.ya1{bottom:735.613333pt;}
.y1a{bottom:740.893333pt;}
.y65{bottom:746.053333pt;}
.y1c6{bottom:746.213333pt;}
.y108{bottom:747.493333pt;}
.yba{bottom:748.933333pt;}
.y3f{bottom:752.453333pt;}
.yd9{bottom:756.773333pt;}
.y1da{bottom:759.493333pt;}
.ya0{bottom:760.933333pt;}
.y84{bottom:763.813333pt;}
.y14d{bottom:767.653333pt;}
.y19{bottom:768.613333pt;}
.y3e{bottom:770.053333pt;}
.y107{bottom:772.773333pt;}
.yb9{bottom:774.213333pt;}
.y64{bottom:784.613333pt;}
.y1c5{bottom:784.773333pt;}
.y130{bottom:786.213333pt;}
.y3d{bottom:787.653333pt;}
.yd8{bottom:791.013333pt;}
.y18{bottom:796.133333pt;}
.y106{bottom:798.213333pt;}
.y9f{bottom:799.493333pt;}
.y82{bottom:799.813333pt;}
.y3c{bottom:805.253333pt;}
.y63{bottom:810.053333pt;}
.y12f{bottom:811.493333pt;}
.y169{bottom:813.253333pt;}
.y3b{bottom:823.013333pt;}
.y1d9{bottom:823.493333pt;}
.y17{bottom:823.813333pt;}
.y9e{bottom:824.773333pt;}
.y146{bottom:826.053333pt;}
.y62{bottom:835.333333pt;}
.y105{bottom:836.773333pt;}
.y3a{bottom:840.613333pt;}
.yd4{bottom:843.013333pt;}
.y1c4{bottom:848.773333pt;}
.y9d{bottom:850.053333pt;}
.y16{bottom:851.333333pt;}
.y168{bottom:854.533333pt;}
.y7f{bottom:855.333333pt;}
.y39{bottom:858.213333pt;}
.y61{bottom:860.613333pt;}
.y104{bottom:862.053333pt;}
.y1c3{bottom:874.053333pt;}
.y9c{bottom:875.333333pt;}
.y38{bottom:875.813333pt;}
.y15{bottom:879.013333pt;}
.y167{bottom:879.813333pt;}
.y148{bottom:884.453333pt;}
.y60{bottom:885.893333pt;}
.y103{bottom:887.333333pt;}
.y37{bottom:893.413333pt;}
.y9b{bottom:900.773333pt;}
.y14{bottom:906.533333pt;}
.y7d{bottom:910.693333pt;}
.y36{bottom:911.173333pt;}
.yd2{bottom:912.453333pt;}
.y102{bottom:912.613333pt;}
.y144{bottom:918.053333pt;}
.y9a{bottom:926.053333pt;}
.y35{bottom:928.773333pt;}
.y13{bottom:934.213333pt;}
.y5f{bottom:936.453333pt;}
.y1c2{bottom:937.893333pt;}
.y34{bottom:946.373333pt;}
.y99{bottom:951.333333pt;}
.y12{bottom:955.813333pt;}
.y5e{bottom:973.093333pt;}
.y11{bottom:976.453333pt;}
.y98{bottom:976.613333pt;}
.y7c{bottom:976.773333pt;}
.y33{bottom:978.053333pt;}
.y5c{bottom:1024.480000pt;}
.y2{bottom:1043.680000pt;}
.y5b{bottom:1044.800000pt;}
.y30{bottom:1047.360000pt;}
.y2f{bottom:1060.960000pt;}
.y1{bottom:1061.600000pt;}
.y5a{bottom:1064.480000pt;}
.h29{height:32.786667pt;}
.h2b{height:32.946667pt;}
.h30{height:32.960000pt;}
.h10{height:33.375000pt;}
.h24{height:33.586667pt;}
.h20{height:33.746667pt;}
.h1c{height:35.346667pt;}
.h19{height:35.506667pt;}
.h4{height:36.786667pt;}
.h13{height:42.084375pt;}
.h5{height:44.722500pt;}
.h14{height:47.085938pt;}
.h6{height:47.109375pt;}
.he{height:47.392500pt;}
.h22{height:47.647188pt;}
.h11{height:50.062500pt;}
.h23{height:51.186667pt;}
.h18{height:52.813750pt;}
.h7{height:53.535000pt;}
.h1a{height:54.706667pt;}
.h1b{height:54.866667pt;}
.h1e{height:54.880000pt;}
.h1d{height:54.900000pt;}
.h3{height:55.402500pt;}
.h2c{height:57.746667pt;}
.h2{height:58.563750pt;}
.hf{height:58.740000pt;}
.h34{height:61.002500pt;}
.h17{height:61.410000pt;}
.ha{height:62.781250pt;}
.h12{height:62.812500pt;}
.h15{height:63.656250pt;}
.h9{height:64.500000pt;}
.h2e{height:66.580000pt;}
.h36{height:67.229167pt;}
.h21{height:68.786667pt;}
.h26{height:68.960000pt;}
.hc{height:72.090000pt;}
.h31{height:74.560000pt;}
.h16{height:75.465000pt;}
.h8{height:76.671562pt;}
.hb{height:78.097500pt;}
.h1f{height:82.080000pt;}
.h25{height:84.820000pt;}
.h2a{height:91.346667pt;}
.h27{height:104.160000pt;}
.h2f{height:108.160000pt;}
.h37{height:112.189167pt;}
.h2d{height:124.980000pt;}
.h28{height:128.186667pt;}
.h33{height:128.610000pt;}
.h35{height:316.000000pt;}
.h32{height:343.040000pt;}
.hd{height:1122.558173pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:86.230667pt;}
.w4{width:127.030667pt;}
.w6{width:131.712000pt;}
.w8{width:136.150667pt;}
.w5{width:140.013333pt;}
.wa{width:143.386667pt;}
.w9{width:143.533333pt;}
.wb{width:179.213333pt;}
.w7{width:203.533333pt;}
.wd{width:214.733333pt;}
.we{width:304.066667pt;}
.w10{width:498.400000pt;}
.wf{width:553.280000pt;}
.w2{width:626.960000pt;}
.w3{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:5.426667pt;}
.x3{left:7.190667pt;}
.x3e{left:8.306667pt;}
.x38{left:9.426667pt;}
.x17{left:10.386667pt;}
.x3c{left:11.360000pt;}
.x22{left:13.750667pt;}
.x1f{left:15.350667pt;}
.x32{left:16.630667pt;}
.x28{left:18.866667pt;}
.x2c{left:20.150667pt;}
.x2f{left:21.920000pt;}
.x39{left:23.200000pt;}
.x21{left:24.640000pt;}
.x3b{left:26.746667pt;}
.x33{left:27.666667pt;}
.x1e{left:28.640000pt;}
.x37{left:29.910667pt;}
.x24{left:32.145333pt;}
.x3a{left:33.270667pt;}
.x20{left:34.545333pt;}
.x35{left:35.680000pt;}
.x23{left:36.945333pt;}
.x26{left:38.880000pt;}
.x1c{left:40.145333pt;}
.x19{left:42.240000pt;}
.x3d{left:44.640000pt;}
.x50{left:46.266667pt;}
.x36{left:48.466667pt;}
.x1d{left:51.706667pt;}
.x1b{left:52.786667pt;}
.x31{left:55.826667pt;}
.x25{left:59.386667pt;}
.x15{left:63.505333pt;}
.x45{left:64.946667pt;}
.x34{left:70.226667pt;}
.x61{left:77.573333pt;}
.x53{left:78.466667pt;}
.x2{left:87.401333pt;}
.x1{left:94.592000pt;}
.x12{left:99.072000pt;}
.x57{left:100.800000pt;}
.x14{left:101.801333pt;}
.x5a{left:111.773333pt;}
.x7{left:116.032000pt;}
.x4c{left:118.560000pt;}
.x46{left:121.946667pt;}
.xb{left:132.672000pt;}
.x67{left:141.786667pt;}
.x60{left:146.240000pt;}
.x62{left:148.160000pt;}
.x2a{left:151.386667pt;}
.x6{left:156.826667pt;}
.x51{left:160.613333pt;}
.xa{left:167.706667pt;}
.x40{left:172.186667pt;}
.x4d{left:179.866667pt;}
.x44{left:181.960000pt;}
.x63{left:183.493333pt;}
.x5c{left:190.013333pt;}
.x54{left:192.733333pt;}
.x13{left:213.786667pt;}
.x2b{left:223.546667pt;}
.x58{left:228.093333pt;}
.x16{left:229.480000pt;}
.x2d{left:231.720000pt;}
.x43{left:248.506667pt;}
.x10{left:249.946667pt;}
.x8{left:252.346667pt;}
.xd{left:277.026667pt;}
.x52{left:279.266667pt;}
.xc{left:281.506667pt;}
.x11{left:286.626667pt;}
.x64{left:289.413333pt;}
.x4e{left:293.440000pt;}
.x47{left:300.706667pt;}
.x29{left:305.186667pt;}
.x3f{left:309.346667pt;}
.x55{left:311.360000pt;}
.x42{left:315.586667pt;}
.x4b{left:322.946667pt;}
.x5f{left:325.186667pt;}
.x59{left:338.586667pt;}
.x48{left:339.746667pt;}
.x65{left:360.026667pt;}
.x5b{left:364.960000pt;}
.x18{left:370.146667pt;}
.x2e{left:375.906667pt;}
.x5d{left:384.226667pt;}
.x49{left:389.026667pt;}
.x5{left:395.586667pt;}
.x9{left:397.026667pt;}
.x4f{left:424.573333pt;}
.x56{left:437.666667pt;}
.x66{left:465.946667pt;}
.x1a{left:502.506667pt;}
.xe{left:508.091667pt;}
.xf{left:514.333333pt;}
.x30{left:519.946667pt;}
.x5e{left:644.773333pt;}
.x41{left:660.933333pt;}
.x4a{left:672.613333pt;}
.x4{left:696.773333pt;}
}




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