
    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_a1228314a4918affbdd8c5ed.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_83c52d53cd0990f66414412c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5c9f73927824c7cef0b80ef3.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b95ae28041f409b2266437dd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.724609;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_b0b15e2014e9299aee880581.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_01550484136508020ba6a618.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1a1aec3ddcbeb04e3ad96e8f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_a07afe1b1823860ac453566f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.737793;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_1f27905285d4ae515a84a22f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_cb831bfc45030f6d94299355.woff')format("woff");}.ffb{font-family:ffb;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b010e47a581509ad388b8702.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_165fb94c4df93711d2726227.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b4603d5343e847babdc076c2.woff')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_f9709e72865913774ae31471.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a700d8a7e5a32397311246e6.woff')format("woff");}.ff10{font-family:ff10;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.160000px;}
.v5{vertical-align:12.960000px;}
.v1{vertical-align:23.760000px;}
.v7{vertical-align:30.240000px;}
.v3{vertical-align:35.280000px;}
.v4{vertical-align:51.120000px;}
.lsd{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.460200px;}
.ls19{letter-spacing:-0.269400px;}
.lsc{letter-spacing:-0.223800px;}
.ls12{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.089400px;}
.ls11{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.028800px;}
.lsb{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144720px;}
.ls7{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.270720px;}
.ls20{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.493920px;}
.ls21{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.541200px;}
.lse{letter-spacing:0.569400px;}
.ls1e{letter-spacing:0.828000px;}
.ls1a{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.509120px;}
.ls15{letter-spacing:1.620000px;}
.ls14{letter-spacing:2.340000px;}
.ls1f{letter-spacing:10.260000px;}
.ls9{letter-spacing:15.480000px;}
.ls4{letter-spacing:47.700000px;}
.ls1{letter-spacing:71.280000px;}
.ls2{letter-spacing:72.000000px;}
.ls3{letter-spacing:72.120000px;}
.ls0{letter-spacing:72.180000px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws11{word-spacing:-18.000000px;}
.ws15{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.238800px;}
.ws17{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.733600px;}
.ws18{word-spacing:-14.220000px;}
.wsb{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws13{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.790600px;}
.ws6{word-spacing:-10.981200px;}
.ws5{word-spacing:-10.440000px;}
.wsd{word-spacing:-9.187200px;}
.wse{word-spacing:-9.158400px;}
.ws4{word-spacing:-9.000000px;}
.ws0{word-spacing:-7.560000px;}
.ws7{word-spacing:0.000000px;}
.wsc{word-spacing:5.110560px;}
._5{margin-left:-59.580000px;}
._15{margin-left:-3.888000px;}
._14{margin-left:-2.887920px;}
._2{margin-left:-1.391040px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._11{width:4.134960px;}
._16{width:5.150880px;}
._a{width:6.155280px;}
._7{width:8.127360px;}
._13{width:9.216000px;}
._10{width:10.218960px;}
._12{width:11.565360px;}
._f{width:12.967920px;}
._17{width:14.963040px;}
._8{width:16.314480px;}
._9{width:17.598720px;}
._1b{width:19.541520px;}
._1c{width:20.560560px;}
._1d{width:21.570240px;}
._1e{width:22.850640px;}
._25{width:24.114480px;}
._d{width:25.338240px;}
._21{width:26.354160px;}
._24{width:27.549360px;}
._2a{width:29.015280px;}
._26{width:30.537360px;}
._3e{width:31.553280px;}
._28{width:32.569200px;}
._1f{width:33.991920px;}
._e{width:35.437680px;}
._3a{width:36.520560px;}
._22{width:37.662240px;}
._b{width:38.696400px;}
._c{width:39.884400px;}
._20{width:41.080320px;}
._2b{width:43.553520px;}
._27{width:44.640720px;}
._29{width:46.612800px;}
._2d{width:48.345840px;}
._32{width:50.127120px;}
._30{width:51.453360px;}
._18{width:55.164960px;}
._23{width:56.652480px;}
._2e{width:59.222160px;}
._2f{width:60.656400px;}
._37{width:62.748000px;}
._38{width:64.063680px;}
._3{width:65.496000px;}
._34{width:67.767840px;}
._19{width:74.583360px;}
._35{width:79.421040px;}
._31{width:81.452880px;}
._36{width:84.525120px;}
._33{width:117.069840px;}
._3d{width:125.280000px;}
._3b{width:139.838400px;}
._39{width:145.635120px;}
._2c{width:170.770320px;}
._4{width:199.620000px;}
._3c{width:204.164640px;}
._1a{width:285.870000px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsd{font-size:12.240000px;}
.fsf{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs10{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y77{bottom:-251.490000px;}
.y76{bottom:-217.830000px;}
.y75{bottom:-183.990000px;}
.y74{bottom:-150.330000px;}
.y73{bottom:-116.460000px;}
.y83{bottom:-104.250000px;}
.y72{bottom:-82.800000px;}
.y82{bottom:-70.545000px;}
.y71{bottom:-48.960000px;}
.y81{bottom:-36.885000px;}
.y3c{bottom:-27.180000px;}
.y85{bottom:-17.922750px;}
.y70{bottom:-15.300000px;}
.y80{bottom:-3.045000px;}
.y0{bottom:0.000000px;}
.y204{bottom:1.837500px;}
.y6f{bottom:2.700000px;}
.y2{bottom:3.960000px;}
.y148{bottom:4.680000px;}
.y15a{bottom:4.845000px;}
.y147{bottom:4.860000px;}
.y3b{bottom:5.040000px;}
.y60{bottom:5.385000px;}
.y6a{bottom:5.580000px;}
.y161{bottom:6.105000px;}
.y151{bottom:6.120000px;}
.y162{bottom:6.285000px;}
.y152{bottom:6.300000px;}
.y165{bottom:6.825000px;}
.y14e{bottom:6.840000px;}
.y166{bottom:7.005000px;}
.y14f{bottom:7.020000px;}
.y155{bottom:7.230000px;}
.y156{bottom:7.410000px;}
.y168{bottom:11.505000px;}
.y169{bottom:11.685000px;}
.y7{bottom:12.420000px;}
.y15d{bottom:12.585000px;}
.y14a{bottom:12.600000px;}
.y158{bottom:12.765000px;}
.y14c{bottom:12.780000px;}
.y16e{bottom:12.810000px;}
.y15b{bottom:12.945000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.y171{bottom:13.890000px;}
.y6e{bottom:15.660000px;}
.y16a{bottom:18.885000px;}
.y15e{bottom:20.685000px;}
.y14b{bottom:20.700000px;}
.y16c{bottom:20.730000px;}
.y159{bottom:20.865000px;}
.y5f{bottom:21.405000px;}
.y6{bottom:25.200000px;}
.y170{bottom:27.750000px;}
.y7f{bottom:27.915000px;}
.y16d{bottom:28.650000px;}
.y6d{bottom:28.800000px;}
.y5e{bottom:35.445000px;}
.y16f{bottom:36.570000px;}
.y5{bottom:38.160000px;}
.y7e{bottom:40.875000px;}
.y6c{bottom:41.040000px;}
.y68{bottom:42.345000px;}
.y5d{bottom:45.525000px;}
.y89{bottom:46.260000px;}
.y7d{bottom:54.015000px;}
.yec{bottom:59.760000px;}
.y67{bottom:60.525000px;}
.y5c{bottom:61.050000px;}
.y1{bottom:61.380000px;}
.y88{bottom:61.740000px;}
.y84{bottom:63.780000px;}
.y7c{bottom:66.975000px;}
.y66{bottom:73.485000px;}
.y87{bottom:76.500000px;}
.y5b{bottom:76.530000px;}
.y7b{bottom:79.935000px;}
.yeb{bottom:86.400000px;}
.y65{bottom:86.625000px;}
.y5a{bottom:92.010000px;}
.y7a{bottom:93.075000px;}
.y10d{bottom:98.100000px;}
.y1e1{bottom:99.360000px;}
.y64{bottom:99.585000px;}
.yea{bottom:103.680000px;}
.y203{bottom:104.580000px;}
.y79{bottom:105.315000px;}
.y59{bottom:106.230000px;}
.y196{bottom:108.900000px;}
.y174{bottom:109.440000px;}
.y1b5{bottom:110.880000px;}
.y39{bottom:112.500000px;}
.y63{bottom:112.545000px;}
.y1d3{bottom:113.040000px;}
.y58{bottom:116.310000px;}
.y129{bottom:116.820000px;}
.y10c{bottom:117.900000px;}
.y1e0{bottom:119.160000px;}
.yb9{bottom:123.480000px;}
.y202{bottom:124.380000px;}
.y173{bottom:124.740000px;}
.y195{bottom:128.700000px;}
.y62{bottom:129.645000px;}
.y1b4{bottom:130.680000px;}
.y57{bottom:131.790000px;}
.y38{bottom:132.300000px;}
.y1d2{bottom:132.840000px;}
.y172{bottom:136.440000px;}
.y128{bottom:136.620000px;}
.y10b{bottom:137.700000px;}
.ye9{bottom:138.420000px;}
.y1df{bottom:138.960000px;}
.yb8{bottom:143.280000px;}
.y201{bottom:144.180000px;}
.y56{bottom:147.270000px;}
.y194{bottom:148.500000px;}
.y1b3{bottom:150.480000px;}
.y37{bottom:152.280000px;}
.y1d1{bottom:152.640000px;}
.y16b{bottom:153.000000px;}
.y10a{bottom:157.500000px;}
.ye8{bottom:158.400000px;}
.y1de{bottom:158.940000px;}
.y55{bottom:162.750000px;}
.yb7{bottom:163.110000px;}
.y200{bottom:164.190000px;}
.y193{bottom:165.270000px;}
.y1b2{bottom:170.490000px;}
.y36{bottom:172.110000px;}
.y1d0{bottom:172.470000px;}
.y109{bottom:177.330000px;}
.ye7{bottom:178.230000px;}
.y54{bottom:178.410000px;}
.y1dd{bottom:178.770000px;}
.yb6{bottom:183.090000px;}
.y1ff{bottom:183.990000px;}
.y127{bottom:187.230000px;}
.y1b1{bottom:190.290000px;}
.y35{bottom:191.910000px;}
.y1cf{bottom:192.450000px;}
.y53{bottom:193.890000px;}
.y108{bottom:197.310000px;}
.ye6{bottom:198.030000px;}
.y1dc{bottom:199.470000px;}
.y126{bottom:200.190000px;}
.y167{bottom:201.465000px;}
.yb5{bottom:202.890000px;}
.y1fe{bottom:203.790000px;}
.y52{bottom:208.110000px;}
.y1b0{bottom:210.090000px;}
.y34{bottom:211.710000px;}
.y1ce{bottom:212.250000px;}
.y107{bottom:217.110000px;}
.ye5{bottom:217.830000px;}
.y51{bottom:218.010000px;}
.y125{bottom:219.990000px;}
.yb4{bottom:222.690000px;}
.y1fd{bottom:223.590000px;}
.y1af{bottom:229.890000px;}
.y33{bottom:231.510000px;}
.y164{bottom:231.885000px;}
.y1cd{bottom:232.050000px;}
.y50{bottom:233.490000px;}
.y106{bottom:236.910000px;}
.ye4{bottom:237.630000px;}
.y124{bottom:239.790000px;}
.y1db{bottom:240.330000px;}
.yb3{bottom:242.490000px;}
.y1fc{bottom:243.390000px;}
.y4f{bottom:248.970000px;}
.y1ae{bottom:249.690000px;}
.y32{bottom:251.490000px;}
.y1cc{bottom:251.850000px;}
.y163{bottom:252.765000px;}
.y105{bottom:256.710000px;}
.ye3{bottom:257.610000px;}
.y123{bottom:259.770000px;}
.y1da{bottom:260.310000px;}
.yb2{bottom:262.290000px;}
.y1fb{bottom:264.270000px;}
.y4e{bottom:264.630000px;}
.y1ad{bottom:269.490000px;}
.y31{bottom:271.290000px;}
.y1cb{bottom:271.650000px;}
.y104{bottom:276.510000px;}
.ye2{bottom:277.410000px;}
.y122{bottom:279.570000px;}
.y4d{bottom:280.110000px;}
.yb1{bottom:282.270000px;}
.y160{bottom:285.345000px;}
.y1ac{bottom:289.470000px;}
.y30{bottom:291.090000px;}
.y1ca{bottom:291.630000px;}
.y4c{bottom:295.620000px;}
.y103{bottom:296.490000px;}
.ye1{bottom:297.210000px;}
.y121{bottom:299.370000px;}
.y1d9{bottom:299.910000px;}
.yb0{bottom:302.070000px;}
.y15f{bottom:304.785000px;}
.y1fa{bottom:305.130000px;}
.y1ab{bottom:309.270000px;}
.y4b{bottom:311.100000px;}
.y1c9{bottom:311.430000px;}
.y2f{bottom:311.790000px;}
.y102{bottom:316.290000px;}
.ye0{bottom:317.010000px;}
.y120{bottom:319.170000px;}
.y1d8{bottom:319.710000px;}
.y15c{bottom:321.525000px;}
.yaf{bottom:321.870000px;}
.y1f9{bottom:325.830000px;}
.y4a{bottom:326.760000px;}
.y1aa{bottom:329.070000px;}
.y1c8{bottom:331.230000px;}
.y2e{bottom:332.130000px;}
.y101{bottom:336.090000px;}
.ydf{bottom:336.810000px;}
.y3d{bottom:336.825000px;}
.y11f{bottom:338.970000px;}
.y1d7{bottom:339.510000px;}
.y49{bottom:340.980000px;}
.y2d{bottom:341.670000px;}
.y1a9{bottom:348.870000px;}
.y48{bottom:350.880000px;}
.y1c7{bottom:351.030000px;}
.y2c{bottom:351.570000px;}
.y157{bottom:353.925000px;}
.y100{bottom:355.890000px;}
.yde{bottom:356.790000px;}
.y11e{bottom:358.950000px;}
.y1d6{bottom:359.310000px;}
.yae{bottom:361.470000px;}
.y47{bottom:366.360000px;}
.y1f8{bottom:366.690000px;}
.y1a8{bottom:368.670000px;}
.y1c6{bottom:370.830000px;}
.y2b{bottom:375.330000px;}
.yff{bottom:375.690000px;}
.ydd{bottom:376.590000px;}
.y11d{bottom:378.750000px;}
.y1d5{bottom:379.290000px;}
.yad{bottom:381.450000px;}
.y46{bottom:381.840000px;}
.y1f7{bottom:386.490000px;}
.y154{bottom:386.505000px;}
.y1a7{bottom:388.650000px;}
.y1c5{bottom:390.810000px;}
.yfe{bottom:395.715000px;}
.ydc{bottom:396.435000px;}
.y45{bottom:397.500000px;}
.y11c{bottom:398.595000px;}
.y2a{bottom:399.135000px;}
.yac{bottom:401.295000px;}
.y1f6{bottom:406.515000px;}
.y153{bottom:408.135000px;}
.y1a6{bottom:408.495000px;}
.y1c4{bottom:410.655000px;}
.y44{bottom:412.980000px;}
.yfd{bottom:415.515000px;}
.ydb{bottom:416.235000px;}
.y11b{bottom:417.315000px;}
.y1d4{bottom:419.835000px;}
.yab{bottom:421.095000px;}
.y29{bottom:422.895000px;}
.y11a{bottom:424.875000px;}
.y1f5{bottom:427.215000px;}
.y150{bottom:427.755000px;}
.y1a5{bottom:428.295000px;}
.y43{bottom:428.460000px;}
.y1c3{bottom:430.455000px;}
.yfc{bottom:435.315000px;}
.yda{bottom:436.035000px;}
.yaa{bottom:440.895000px;}
.y42{bottom:443.940000px;}
.y28{bottom:446.835000px;}
.y14d{bottom:447.195000px;}
.y1a4{bottom:448.095000px;}
.y1c2{bottom:450.255000px;}
.y119{bottom:451.155000px;}
.yfb{bottom:455.115000px;}
.yd9{bottom:456.015000px;}
.y41{bottom:459.600000px;}
.ya9{bottom:460.695000px;}
.y1a3{bottom:467.895000px;}
.y1f4{bottom:468.075000px;}
.y149{bottom:468.255000px;}
.y1c1{bottom:470.055000px;}
.y27{bottom:470.595000px;}
.y118{bottom:470.955000px;}
.yfa{bottom:474.915000px;}
.y40{bottom:475.080000px;}
.yd8{bottom:475.815000px;}
.ya8{bottom:480.675000px;}
.y78{bottom:484.260000px;}
.y1a2{bottom:487.875000px;}
.y1c0{bottom:490.035000px;}
.y3f{bottom:490.560000px;}
.y117{bottom:490.935000px;}
.y26{bottom:494.355000px;}
.yf9{bottom:494.895000px;}
.yd7{bottom:495.615000px;}
.ya7{bottom:500.475000px;}
.y146{bottom:502.095000px;}
.y3e{bottom:506.040000px;}
.y1a1{bottom:507.675000px;}
.y1f3{bottom:507.855000px;}
.y1bf{bottom:509.835000px;}
.y116{bottom:510.735000px;}
.yf8{bottom:514.695000px;}
.y25{bottom:515.235000px;}
.yd6{bottom:515.415000px;}
.ya6{bottom:520.275000px;}
.y145{bottom:524.775000px;}
.y1a0{bottom:527.475000px;}
.y1f2{bottom:527.655000px;}
.y1be{bottom:529.635000px;}
.y115{bottom:530.535000px;}
.yf7{bottom:534.495000px;}
.y24{bottom:535.035000px;}
.yd5{bottom:535.215000px;}
.y192{bottom:535.755000px;}
.ya5{bottom:540.075000px;}
.y144{bottom:541.155000px;}
.y19f{bottom:547.275000px;}
.y1f1{bottom:548.355000px;}
.y23{bottom:548.895000px;}
.y1bd{bottom:549.435000px;}
.y114{bottom:550.335000px;}
.yf6{bottom:554.295000px;}
.yd4{bottom:555.015000px;}
.y143{bottom:555.555000px;}
.y22{bottom:557.535000px;}
.ya4{bottom:559.875000px;}
.y134{bottom:565.815000px;}
.y19e{bottom:567.075000px;}
.y1bc{bottom:569.235000px;}
.y113{bottom:570.135000px;}
.yf5{bottom:574.095000px;}
.yd3{bottom:574.995000px;}
.y191{bottom:575.355000px;}
.ya3{bottom:579.855000px;}
.y21{bottom:580.755000px;}
.y142{bottom:583.635000px;}
.y133{bottom:585.795000px;}
.y19d{bottom:587.055000px;}
.y1bb{bottom:589.215000px;}
.y112{bottom:590.115000px;}
.yf4{bottom:594.075000px;}
.yd2{bottom:594.795000px;}
.y190{bottom:595.335000px;}
.ya2{bottom:599.655000px;}
.y141{bottom:603.435000px;}
.y20{bottom:604.155000px;}
.y132{bottom:605.595000px;}
.y19c{bottom:606.855000px;}
.y1ba{bottom:609.015000px;}
.y111{bottom:609.915000px;}
.y61{bottom:611.880000px;}
.yf3{bottom:613.875000px;}
.yd1{bottom:614.595000px;}
.y18f{bottom:615.135000px;}
.ya1{bottom:619.455000px;}
.y140{bottom:623.265000px;}
.y131{bottom:625.425000px;}
.y19b{bottom:626.685000px;}
.y1f{bottom:627.405000px;}
.y1b9{bottom:628.845000px;}
.y1f0{bottom:629.025000px;}
.y110{bottom:629.745000px;}
.yf2{bottom:633.705000px;}
.yd0{bottom:634.425000px;}
.y18e{bottom:634.965000px;}
.ya0{bottom:639.285000px;}
.y13f{bottom:643.065000px;}
.y130{bottom:645.225000px;}
.y19a{bottom:646.485000px;}
.y1b8{bottom:648.645000px;}
.y1ef{bottom:648.825000px;}
.y10f{bottom:649.545000px;}
.yf1{bottom:653.505000px;}
.ycf{bottom:654.225000px;}
.y18d{bottom:654.765000px;}
.y9f{bottom:659.085000px;}
.y13e{bottom:663.045000px;}
.y12f{bottom:665.025000px;}
.y199{bottom:667.365000px;}
.y1b7{bottom:668.445000px;}
.y1ee{bottom:669.525000px;}
.y10e{bottom:670.245000px;}
.yf0{bottom:673.305000px;}
.yce{bottom:674.205000px;}
.y18c{bottom:674.565000px;}
.y9e{bottom:679.065000px;}
.y1e{bottom:682.305000px;}
.y13d{bottom:682.845000px;}
.y12e{bottom:685.005000px;}
.y1b6{bottom:688.425000px;}
.yef{bottom:688.965000px;}
.ycd{bottom:694.005000px;}
.y18b{bottom:694.545000px;}
.y1d{bottom:697.785000px;}
.y9d{bottom:698.865000px;}
.y13c{bottom:702.645000px;}
.y12d{bottom:704.805000px;}
.y198{bottom:708.225000px;}
.yee{bottom:709.665000px;}
.y1ed{bottom:710.385000px;}
.y1c{bottom:713.265000px;}
.ycc{bottom:713.805000px;}
.y18a{bottom:714.345000px;}
.y9c{bottom:718.665000px;}
.y13b{bottom:723.345000px;}
.y12c{bottom:724.605000px;}
.yed{bottom:724.785000px;}
.y197{bottom:724.965000px;}
.y1b{bottom:728.745000px;}
.y1ec{bottom:730.185000px;}
.ycb{bottom:733.605000px;}
.y189{bottom:734.145000px;}
.y9b{bottom:738.465000px;}
.y1a{bottom:744.405000px;}
.y12b{bottom:745.305000px;}
.y1eb{bottom:750.165000px;}
.yca{bottom:753.405000px;}
.y188{bottom:753.945000px;}
.y19{bottom:755.385000px;}
.y9a{bottom:758.265000px;}
.y13a{bottom:764.205000px;}
.y12a{bottom:765.105000px;}
.y6b{bottom:767.265000px;}
.y18{bottom:769.065000px;}
.y1ea{bottom:769.965000px;}
.yc9{bottom:773.385000px;}
.y187{bottom:773.745000px;}
.y99{bottom:778.245000px;}
.y17{bottom:781.665000px;}
.y139{bottom:784.185000px;}
.y1e9{bottom:789.765000px;}
.yc8{bottom:793.185000px;}
.y186{bottom:793.725000px;}
.y16{bottom:794.085000px;}
.y98{bottom:798.045000px;}
.y138{bottom:803.985000px;}
.y15{bottom:807.045000px;}
.y1e8{bottom:809.565000px;}
.yc7{bottom:812.985000px;}
.y185{bottom:813.525000px;}
.y97{bottom:817.845000px;}
.y14{bottom:820.725000px;}
.y137{bottom:823.785000px;}
.y1e7{bottom:829.365000px;}
.y184{bottom:829.725000px;}
.yc6{bottom:832.785000px;}
.y13{bottom:833.685000px;}
.y96{bottom:837.645000px;}
.y183{bottom:841.785000px;}
.y136{bottom:844.485000px;}
.y1e6{bottom:850.245000px;}
.yc5{bottom:852.585000px;}
.y182{bottom:853.710000px;}
.y95{bottom:857.490000px;}
.y12{bottom:860.550000px;}
.y135{bottom:864.330000px;}
.y181{bottom:870.270000px;}
.y11{bottom:871.710000px;}
.yc4{bottom:872.610000px;}
.y94{bottom:877.470000px;}
.y180{bottom:886.830000px;}
.y1e5{bottom:891.150000px;}
.y10{bottom:891.330000px;}
.yc3{bottom:892.410000px;}
.y93{bottom:897.270000px;}
.y17f{bottom:903.570000px;}
.yf{bottom:906.090000px;}
.y1e4{bottom:910.950000px;}
.yc2{bottom:912.210000px;}
.y92{bottom:917.070000px;}
.y17e{bottom:920.130000px;}
.ye{bottom:925.530000px;}
.y1e3{bottom:931.650000px;}
.yc1{bottom:932.010000px;}
.yd{bottom:935.790000px;}
.y17d{bottom:936.690000px;}
.y91{bottom:936.870000px;}
.yc0{bottom:951.810000px;}
.y17c{bottom:953.250000px;}
.y1e2{bottom:955.590000px;}
.y90{bottom:956.670000px;}
.yc{bottom:957.750000px;}
.y17b{bottom:969.990000px;}
.ybf{bottom:971.790000px;}
.y8f{bottom:976.650000px;}
.yb{bottom:980.970000px;}
.y17a{bottom:986.550000px;}
.ybe{bottom:991.590000px;}
.y8e{bottom:996.450000px;}
.y179{bottom:1003.110000px;}
.ya{bottom:1004.550000px;}
.ybd{bottom:1011.390000px;}
.y8d{bottom:1016.250000px;}
.y178{bottom:1019.850000px;}
.ybc{bottom:1031.190000px;}
.y8c{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y177{bottom:1036.410000px;}
.ybb{bottom:1052.070000px;}
.y176{bottom:1054.590000px;}
.y8b{bottom:1055.850000px;}
.y8{bottom:1063.230000px;}
.yba{bottom:1072.770000px;}
.y8a{bottom:1075.650000px;}
.y175{bottom:1077.090000px;}
.y69{bottom:1096.200000px;}
.y86{bottom:1123.200000px;}
.y3a{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h38{height:6.257812px;}
.h15{height:12.335625px;}
.h2{height:13.500000px;}
.h2b{height:15.825000px;}
.h37{height:15.840000px;}
.h31{height:16.005000px;}
.h17{height:16.920000px;}
.h27{height:17.666016px;}
.h2e{height:18.705000px;}
.h2d{height:20.145000px;}
.h2f{height:20.901000px;}
.h1f{height:22.140000px;}
.h14{height:23.319141px;}
.hb{height:29.678906px;}
.h32{height:29.685000px;}
.h33{height:29.691000px;}
.h34{height:29.700000px;}
.he{height:30.963516px;}
.h2c{height:31.665000px;}
.h30{height:31.845000px;}
.h24{height:35.806641px;}
.h16{height:36.281250px;}
.h12{height:39.503370px;}
.h5{height:40.985156px;}
.h1c{height:41.535703px;}
.h2a{height:41.726953px;}
.h1d{height:42.086250px;}
.h10{height:44.518359px;}
.h11{height:46.622932px;}
.hc{height:47.344922px;}
.h4{height:47.699850px;}
.h35{height:47.736000px;}
.h36{height:47.745000px;}
.h18{height:48.616875px;}
.h21{height:52.020000px;}
.h13{height:52.998047px;}
.h25{height:53.709961px;}
.h19{height:54.421875px;}
.hf{height:55.291992px;}
.h3{height:58.651172px;}
.h9{height:60.226875px;}
.ha{height:65.010937px;}
.h1e{height:65.884219px;}
.h26{height:70.628906px;}
.hd{height:72.562500px;}
.h20{height:74.953125px;}
.h23{height:75.093750px;}
.h28{height:81.459844px;}
.h7{height:86.585445px;}
.h29{height:88.891172px;}
.h8{height:96.508125px;}
.h22{height:116.280000px;}
.h1b{height:137.745000px;}
.h1a{height:518.310000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wb{width:28.251000px;}
.w12{width:30.951000px;}
.w10{width:48.060000px;}
.wf{width:69.510000px;}
.we{width:72.705000px;}
.w15{width:75.960000px;}
.w3{width:82.071000px;}
.w14{width:108.030000px;}
.wd{width:119.001000px;}
.w11{width:119.002500px;}
.w9{width:154.470000px;}
.wa{width:180.390000px;}
.w7{width:180.915000px;}
.wc{width:383.106000px;}
.w13{width:505.710000px;}
.w6{width:553.440000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:4.252500px;}
.x2{left:8.091000px;}
.x35{left:9.351000px;}
.xf{left:10.791000px;}
.x34{left:12.411000px;}
.x1f{left:14.031000px;}
.x2b{left:15.120000px;}
.x2f{left:16.380000px;}
.x28{left:19.260000px;}
.x14{left:21.255000px;}
.x2a{left:22.320000px;}
.x29{left:23.760000px;}
.x30{left:26.640000px;}
.x24{left:28.980000px;}
.x2d{left:36.360000px;}
.x27{left:43.905000px;}
.x2e{left:46.245000px;}
.x22{left:50.025000px;}
.x2c{left:59.430000px;}
.x3{left:73.965000px;}
.xe{left:81.765000px;}
.x13{left:93.105000px;}
.x11{left:95.265000px;}
.x1e{left:101.196000px;}
.x6{left:106.596000px;}
.x1{left:108.045000px;}
.x18{left:109.116000px;}
.x37{left:121.536000px;}
.xb{left:132.696000px;}
.x1a{left:135.036000px;}
.x20{left:136.305000px;}
.x31{left:139.005000px;}
.x9{left:142.416000px;}
.x1c{left:148.536000px;}
.x16{left:162.210000px;}
.x4{left:190.125000px;}
.x7{left:241.950000px;}
.x10{left:282.495000px;}
.x12{left:325.290000px;}
.x5{left:446.505000px;}
.x8{left:452.265000px;}
.xa{left:472.065000px;}
.xc{left:489.165000px;}
.xd{left:490.785000px;}
.x21{left:519.420000px;}
.x1d{left:556.665000px;}
.x15{left:620.253000px;}
.x23{left:638.430000px;}
.x32{left:644.730000px;}
.x19{left:651.570000px;}
.x25{left:711.150000px;}
.x33{left:752.760000px;}
.x36{left:756.180000px;}
.x26{left:780.660000px;}
.x1b{left:792.720000px;}
.x17{left:799.200000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.920000pt;}
.v5{vertical-align:11.520000pt;}
.v1{vertical-align:21.120000pt;}
.v7{vertical-align:26.880000pt;}
.v3{vertical-align:31.360000pt;}
.v4{vertical-align:45.440000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.409067pt;}
.ls19{letter-spacing:-0.239467pt;}
.lsc{letter-spacing:-0.198933pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.079467pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.025600pt;}
.lsb{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128640pt;}
.ls7{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.240640pt;}
.ls20{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.439040pt;}
.ls21{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.481067pt;}
.lse{letter-spacing:0.506133pt;}
.ls1e{letter-spacing:0.736000pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.341440pt;}
.ls15{letter-spacing:1.440000pt;}
.ls14{letter-spacing:2.080000pt;}
.ls1f{letter-spacing:9.120000pt;}
.ls9{letter-spacing:13.760000pt;}
.ls4{letter-spacing:42.400000pt;}
.ls1{letter-spacing:63.360000pt;}
.ls2{letter-spacing:64.000000pt;}
.ls3{letter-spacing:64.106667pt;}
.ls0{letter-spacing:64.160000pt;}
.wsf{word-spacing:-53.120000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws15{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.545600pt;}
.ws17{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.096533pt;}
.ws18{word-spacing:-12.640000pt;}
.wsb{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.680000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.480533pt;}
.ws6{word-spacing:-9.761067pt;}
.ws5{word-spacing:-9.280000pt;}
.wsd{word-spacing:-8.166400pt;}
.wse{word-spacing:-8.140800pt;}
.ws4{word-spacing:-8.000000pt;}
.ws0{word-spacing:-6.720000pt;}
.ws7{word-spacing:0.000000pt;}
.wsc{word-spacing:4.542720pt;}
._5{margin-left:-52.960000pt;}
._15{margin-left:-3.456000pt;}
._14{margin-left:-2.567040pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._11{width:3.675520pt;}
._16{width:4.578560pt;}
._a{width:5.471360pt;}
._7{width:7.224320pt;}
._13{width:8.192000pt;}
._10{width:9.083520pt;}
._12{width:10.280320pt;}
._f{width:11.527040pt;}
._17{width:13.300480pt;}
._8{width:14.501760pt;}
._9{width:15.643307pt;}
._1b{width:17.370240pt;}
._1c{width:18.276053pt;}
._1d{width:19.173547pt;}
._1e{width:20.311680pt;}
._25{width:21.435093pt;}
._d{width:22.522880pt;}
._21{width:23.425920pt;}
._24{width:24.488320pt;}
._2a{width:25.791360pt;}
._26{width:27.144320pt;}
._3e{width:28.047360pt;}
._28{width:28.950400pt;}
._1f{width:30.215040pt;}
._e{width:31.500160pt;}
._3a{width:32.462720pt;}
._22{width:33.477547pt;}
._b{width:34.396800pt;}
._c{width:35.452800pt;}
._20{width:36.515840pt;}
._2b{width:38.714240pt;}
._27{width:39.680640pt;}
._29{width:41.433600pt;}
._2d{width:42.974080pt;}
._32{width:44.557440pt;}
._30{width:45.736320pt;}
._18{width:49.035520pt;}
._23{width:50.357760pt;}
._2e{width:52.641920pt;}
._2f{width:53.916800pt;}
._37{width:55.776000pt;}
._38{width:56.945493pt;}
._3{width:58.218667pt;}
._34{width:60.238080pt;}
._19{width:66.296320pt;}
._35{width:70.596480pt;}
._31{width:72.402560pt;}
._36{width:75.133440pt;}
._33{width:104.062080pt;}
._3d{width:111.360000pt;}
._3b{width:124.300800pt;}
._39{width:129.453440pt;}
._2c{width:151.795840pt;}
._4{width:177.440000pt;}
._3c{width:181.479680pt;}
._1a{width:254.106667pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsd{font-size:10.880000pt;}
.fsf{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs10{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y77{bottom:-223.546667pt;}
.y76{bottom:-193.626667pt;}
.y75{bottom:-163.546667pt;}
.y74{bottom:-133.626667pt;}
.y73{bottom:-103.520000pt;}
.y83{bottom:-92.666667pt;}
.y72{bottom:-73.600000pt;}
.y82{bottom:-62.706667pt;}
.y71{bottom:-43.520000pt;}
.y81{bottom:-32.786667pt;}
.y3c{bottom:-24.160000pt;}
.y85{bottom:-15.931333pt;}
.y70{bottom:-13.600000pt;}
.y80{bottom:-2.706667pt;}
.y0{bottom:0.000000pt;}
.y204{bottom:1.633333pt;}
.y6f{bottom:2.400000pt;}
.y2{bottom:3.520000pt;}
.y148{bottom:4.160000pt;}
.y15a{bottom:4.306667pt;}
.y147{bottom:4.320000pt;}
.y3b{bottom:4.480000pt;}
.y60{bottom:4.786667pt;}
.y6a{bottom:4.960000pt;}
.y161{bottom:5.426667pt;}
.y151{bottom:5.440000pt;}
.y162{bottom:5.586667pt;}
.y152{bottom:5.600000pt;}
.y165{bottom:6.066667pt;}
.y14e{bottom:6.080000pt;}
.y166{bottom:6.226667pt;}
.y14f{bottom:6.240000pt;}
.y155{bottom:6.426667pt;}
.y156{bottom:6.586667pt;}
.y168{bottom:10.226667pt;}
.y169{bottom:10.386667pt;}
.y7{bottom:11.040000pt;}
.y15d{bottom:11.186667pt;}
.y14a{bottom:11.200000pt;}
.y158{bottom:11.346667pt;}
.y14c{bottom:11.360000pt;}
.y16e{bottom:11.386667pt;}
.y15b{bottom:11.506667pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.y171{bottom:12.346667pt;}
.y6e{bottom:13.920000pt;}
.y16a{bottom:16.786667pt;}
.y15e{bottom:18.386667pt;}
.y14b{bottom:18.400000pt;}
.y16c{bottom:18.426667pt;}
.y159{bottom:18.546667pt;}
.y5f{bottom:19.026667pt;}
.y6{bottom:22.400000pt;}
.y170{bottom:24.666667pt;}
.y7f{bottom:24.813333pt;}
.y16d{bottom:25.466667pt;}
.y6d{bottom:25.600000pt;}
.y5e{bottom:31.506667pt;}
.y16f{bottom:32.506667pt;}
.y5{bottom:33.920000pt;}
.y7e{bottom:36.333333pt;}
.y6c{bottom:36.480000pt;}
.y68{bottom:37.640000pt;}
.y5d{bottom:40.466667pt;}
.y89{bottom:41.120000pt;}
.y7d{bottom:48.013333pt;}
.yec{bottom:53.120000pt;}
.y67{bottom:53.800000pt;}
.y5c{bottom:54.266667pt;}
.y1{bottom:54.560000pt;}
.y88{bottom:54.880000pt;}
.y84{bottom:56.693333pt;}
.y7c{bottom:59.533333pt;}
.y66{bottom:65.320000pt;}
.y87{bottom:68.000000pt;}
.y5b{bottom:68.026667pt;}
.y7b{bottom:71.053333pt;}
.yeb{bottom:76.800000pt;}
.y65{bottom:77.000000pt;}
.y5a{bottom:81.786667pt;}
.y7a{bottom:82.733333pt;}
.y10d{bottom:87.200000pt;}
.y1e1{bottom:88.320000pt;}
.y64{bottom:88.520000pt;}
.yea{bottom:92.160000pt;}
.y203{bottom:92.960000pt;}
.y79{bottom:93.613333pt;}
.y59{bottom:94.426667pt;}
.y196{bottom:96.800000pt;}
.y174{bottom:97.280000pt;}
.y1b5{bottom:98.560000pt;}
.y39{bottom:100.000000pt;}
.y63{bottom:100.040000pt;}
.y1d3{bottom:100.480000pt;}
.y58{bottom:103.386667pt;}
.y129{bottom:103.840000pt;}
.y10c{bottom:104.800000pt;}
.y1e0{bottom:105.920000pt;}
.yb9{bottom:109.760000pt;}
.y202{bottom:110.560000pt;}
.y173{bottom:110.880000pt;}
.y195{bottom:114.400000pt;}
.y62{bottom:115.240000pt;}
.y1b4{bottom:116.160000pt;}
.y57{bottom:117.146667pt;}
.y38{bottom:117.600000pt;}
.y1d2{bottom:118.080000pt;}
.y172{bottom:121.280000pt;}
.y128{bottom:121.440000pt;}
.y10b{bottom:122.400000pt;}
.ye9{bottom:123.040000pt;}
.y1df{bottom:123.520000pt;}
.yb8{bottom:127.360000pt;}
.y201{bottom:128.160000pt;}
.y56{bottom:130.906667pt;}
.y194{bottom:132.000000pt;}
.y1b3{bottom:133.760000pt;}
.y37{bottom:135.360000pt;}
.y1d1{bottom:135.680000pt;}
.y16b{bottom:136.000000pt;}
.y10a{bottom:140.000000pt;}
.ye8{bottom:140.800000pt;}
.y1de{bottom:141.280000pt;}
.y55{bottom:144.666667pt;}
.yb7{bottom:144.986667pt;}
.y200{bottom:145.946667pt;}
.y193{bottom:146.906667pt;}
.y1b2{bottom:151.546667pt;}
.y36{bottom:152.986667pt;}
.y1d0{bottom:153.306667pt;}
.y109{bottom:157.626667pt;}
.ye7{bottom:158.426667pt;}
.y54{bottom:158.586667pt;}
.y1dd{bottom:158.906667pt;}
.yb6{bottom:162.746667pt;}
.y1ff{bottom:163.546667pt;}
.y127{bottom:166.426667pt;}
.y1b1{bottom:169.146667pt;}
.y35{bottom:170.586667pt;}
.y1cf{bottom:171.066667pt;}
.y53{bottom:172.346667pt;}
.y108{bottom:175.386667pt;}
.ye6{bottom:176.026667pt;}
.y1dc{bottom:177.306667pt;}
.y126{bottom:177.946667pt;}
.y167{bottom:179.080000pt;}
.yb5{bottom:180.346667pt;}
.y1fe{bottom:181.146667pt;}
.y52{bottom:184.986667pt;}
.y1b0{bottom:186.746667pt;}
.y34{bottom:188.186667pt;}
.y1ce{bottom:188.666667pt;}
.y107{bottom:192.986667pt;}
.ye5{bottom:193.626667pt;}
.y51{bottom:193.786667pt;}
.y125{bottom:195.546667pt;}
.yb4{bottom:197.946667pt;}
.y1fd{bottom:198.746667pt;}
.y1af{bottom:204.346667pt;}
.y33{bottom:205.786667pt;}
.y164{bottom:206.120000pt;}
.y1cd{bottom:206.266667pt;}
.y50{bottom:207.546667pt;}
.y106{bottom:210.586667pt;}
.ye4{bottom:211.226667pt;}
.y124{bottom:213.146667pt;}
.y1db{bottom:213.626667pt;}
.yb3{bottom:215.546667pt;}
.y1fc{bottom:216.346667pt;}
.y4f{bottom:221.306667pt;}
.y1ae{bottom:221.946667pt;}
.y32{bottom:223.546667pt;}
.y1cc{bottom:223.866667pt;}
.y163{bottom:224.680000pt;}
.y105{bottom:228.186667pt;}
.ye3{bottom:228.986667pt;}
.y123{bottom:230.906667pt;}
.y1da{bottom:231.386667pt;}
.yb2{bottom:233.146667pt;}
.y1fb{bottom:234.906667pt;}
.y4e{bottom:235.226667pt;}
.y1ad{bottom:239.546667pt;}
.y31{bottom:241.146667pt;}
.y1cb{bottom:241.466667pt;}
.y104{bottom:245.786667pt;}
.ye2{bottom:246.586667pt;}
.y122{bottom:248.506667pt;}
.y4d{bottom:248.986667pt;}
.yb1{bottom:250.906667pt;}
.y160{bottom:253.640000pt;}
.y1ac{bottom:257.306667pt;}
.y30{bottom:258.746667pt;}
.y1ca{bottom:259.226667pt;}
.y4c{bottom:262.773333pt;}
.y103{bottom:263.546667pt;}
.ye1{bottom:264.186667pt;}
.y121{bottom:266.106667pt;}
.y1d9{bottom:266.586667pt;}
.yb0{bottom:268.506667pt;}
.y15f{bottom:270.920000pt;}
.y1fa{bottom:271.226667pt;}
.y1ab{bottom:274.906667pt;}
.y4b{bottom:276.533333pt;}
.y1c9{bottom:276.826667pt;}
.y2f{bottom:277.146667pt;}
.y102{bottom:281.146667pt;}
.ye0{bottom:281.786667pt;}
.y120{bottom:283.706667pt;}
.y1d8{bottom:284.186667pt;}
.y15c{bottom:285.800000pt;}
.yaf{bottom:286.106667pt;}
.y1f9{bottom:289.626667pt;}
.y4a{bottom:290.453333pt;}
.y1aa{bottom:292.506667pt;}
.y1c8{bottom:294.426667pt;}
.y2e{bottom:295.226667pt;}
.y101{bottom:298.746667pt;}
.ydf{bottom:299.386667pt;}
.y3d{bottom:299.400000pt;}
.y11f{bottom:301.306667pt;}
.y1d7{bottom:301.786667pt;}
.y49{bottom:303.093333pt;}
.y2d{bottom:303.706667pt;}
.y1a9{bottom:310.106667pt;}
.y48{bottom:311.893333pt;}
.y1c7{bottom:312.026667pt;}
.y2c{bottom:312.506667pt;}
.y157{bottom:314.600000pt;}
.y100{bottom:316.346667pt;}
.yde{bottom:317.146667pt;}
.y11e{bottom:319.066667pt;}
.y1d6{bottom:319.386667pt;}
.yae{bottom:321.306667pt;}
.y47{bottom:325.653333pt;}
.y1f8{bottom:325.946667pt;}
.y1a8{bottom:327.706667pt;}
.y1c6{bottom:329.626667pt;}
.y2b{bottom:333.626667pt;}
.yff{bottom:333.946667pt;}
.ydd{bottom:334.746667pt;}
.y11d{bottom:336.666667pt;}
.y1d5{bottom:337.146667pt;}
.yad{bottom:339.066667pt;}
.y46{bottom:339.413333pt;}
.y1f7{bottom:343.546667pt;}
.y154{bottom:343.560000pt;}
.y1a7{bottom:345.466667pt;}
.y1c5{bottom:347.386667pt;}
.yfe{bottom:351.746667pt;}
.ydc{bottom:352.386667pt;}
.y45{bottom:353.333333pt;}
.y11c{bottom:354.306667pt;}
.y2a{bottom:354.786667pt;}
.yac{bottom:356.706667pt;}
.y1f6{bottom:361.346667pt;}
.y153{bottom:362.786667pt;}
.y1a6{bottom:363.106667pt;}
.y1c4{bottom:365.026667pt;}
.y44{bottom:367.093333pt;}
.yfd{bottom:369.346667pt;}
.ydb{bottom:369.986667pt;}
.y11b{bottom:370.946667pt;}
.y1d4{bottom:373.186667pt;}
.yab{bottom:374.306667pt;}
.y29{bottom:375.906667pt;}
.y11a{bottom:377.666667pt;}
.y1f5{bottom:379.746667pt;}
.y150{bottom:380.226667pt;}
.y1a5{bottom:380.706667pt;}
.y43{bottom:380.853333pt;}
.y1c3{bottom:382.626667pt;}
.yfc{bottom:386.946667pt;}
.yda{bottom:387.586667pt;}
.yaa{bottom:391.906667pt;}
.y42{bottom:394.613333pt;}
.y28{bottom:397.186667pt;}
.y14d{bottom:397.506667pt;}
.y1a4{bottom:398.306667pt;}
.y1c2{bottom:400.226667pt;}
.y119{bottom:401.026667pt;}
.yfb{bottom:404.546667pt;}
.yd9{bottom:405.346667pt;}
.y41{bottom:408.533333pt;}
.ya9{bottom:409.506667pt;}
.y1a3{bottom:415.906667pt;}
.y1f4{bottom:416.066667pt;}
.y149{bottom:416.226667pt;}
.y1c1{bottom:417.826667pt;}
.y27{bottom:418.306667pt;}
.y118{bottom:418.626667pt;}
.yfa{bottom:422.146667pt;}
.y40{bottom:422.293333pt;}
.yd8{bottom:422.946667pt;}
.ya8{bottom:427.266667pt;}
.y78{bottom:430.453333pt;}
.y1a2{bottom:433.666667pt;}
.y1c0{bottom:435.586667pt;}
.y3f{bottom:436.053333pt;}
.y117{bottom:436.386667pt;}
.y26{bottom:439.426667pt;}
.yf9{bottom:439.906667pt;}
.yd7{bottom:440.546667pt;}
.ya7{bottom:444.866667pt;}
.y146{bottom:446.306667pt;}
.y3e{bottom:449.813333pt;}
.y1a1{bottom:451.266667pt;}
.y1f3{bottom:451.426667pt;}
.y1bf{bottom:453.186667pt;}
.y116{bottom:453.986667pt;}
.yf8{bottom:457.506667pt;}
.y25{bottom:457.986667pt;}
.yd6{bottom:458.146667pt;}
.ya6{bottom:462.466667pt;}
.y145{bottom:466.466667pt;}
.y1a0{bottom:468.866667pt;}
.y1f2{bottom:469.026667pt;}
.y1be{bottom:470.786667pt;}
.y115{bottom:471.586667pt;}
.yf7{bottom:475.106667pt;}
.y24{bottom:475.586667pt;}
.yd5{bottom:475.746667pt;}
.y192{bottom:476.226667pt;}
.ya5{bottom:480.066667pt;}
.y144{bottom:481.026667pt;}
.y19f{bottom:486.466667pt;}
.y1f1{bottom:487.426667pt;}
.y23{bottom:487.906667pt;}
.y1bd{bottom:488.386667pt;}
.y114{bottom:489.186667pt;}
.yf6{bottom:492.706667pt;}
.yd4{bottom:493.346667pt;}
.y143{bottom:493.826667pt;}
.y22{bottom:495.586667pt;}
.ya4{bottom:497.666667pt;}
.y134{bottom:502.946667pt;}
.y19e{bottom:504.066667pt;}
.y1bc{bottom:505.986667pt;}
.y113{bottom:506.786667pt;}
.yf5{bottom:510.306667pt;}
.yd3{bottom:511.106667pt;}
.y191{bottom:511.426667pt;}
.ya3{bottom:515.426667pt;}
.y21{bottom:516.226667pt;}
.y142{bottom:518.786667pt;}
.y133{bottom:520.706667pt;}
.y19d{bottom:521.826667pt;}
.y1bb{bottom:523.746667pt;}
.y112{bottom:524.546667pt;}
.yf4{bottom:528.066667pt;}
.yd2{bottom:528.706667pt;}
.y190{bottom:529.186667pt;}
.ya2{bottom:533.026667pt;}
.y141{bottom:536.386667pt;}
.y20{bottom:537.026667pt;}
.y132{bottom:538.306667pt;}
.y19c{bottom:539.426667pt;}
.y1ba{bottom:541.346667pt;}
.y111{bottom:542.146667pt;}
.y61{bottom:543.893333pt;}
.yf3{bottom:545.666667pt;}
.yd1{bottom:546.306667pt;}
.y18f{bottom:546.786667pt;}
.ya1{bottom:550.626667pt;}
.y140{bottom:554.013333pt;}
.y131{bottom:555.933333pt;}
.y19b{bottom:557.053333pt;}
.y1f{bottom:557.693333pt;}
.y1b9{bottom:558.973333pt;}
.y1f0{bottom:559.133333pt;}
.y110{bottom:559.773333pt;}
.yf2{bottom:563.293333pt;}
.yd0{bottom:563.933333pt;}
.y18e{bottom:564.413333pt;}
.ya0{bottom:568.253333pt;}
.y13f{bottom:571.613333pt;}
.y130{bottom:573.533333pt;}
.y19a{bottom:574.653333pt;}
.y1b8{bottom:576.573333pt;}
.y1ef{bottom:576.733333pt;}
.y10f{bottom:577.373333pt;}
.yf1{bottom:580.893333pt;}
.ycf{bottom:581.533333pt;}
.y18d{bottom:582.013333pt;}
.y9f{bottom:585.853333pt;}
.y13e{bottom:589.373333pt;}
.y12f{bottom:591.133333pt;}
.y199{bottom:593.213333pt;}
.y1b7{bottom:594.173333pt;}
.y1ee{bottom:595.133333pt;}
.y10e{bottom:595.773333pt;}
.yf0{bottom:598.493333pt;}
.yce{bottom:599.293333pt;}
.y18c{bottom:599.613333pt;}
.y9e{bottom:603.613333pt;}
.y1e{bottom:606.493333pt;}
.y13d{bottom:606.973333pt;}
.y12e{bottom:608.893333pt;}
.y1b6{bottom:611.933333pt;}
.yef{bottom:612.413333pt;}
.ycd{bottom:616.893333pt;}
.y18b{bottom:617.373333pt;}
.y1d{bottom:620.253333pt;}
.y9d{bottom:621.213333pt;}
.y13c{bottom:624.573333pt;}
.y12d{bottom:626.493333pt;}
.y198{bottom:629.533333pt;}
.yee{bottom:630.813333pt;}
.y1ed{bottom:631.453333pt;}
.y1c{bottom:634.013333pt;}
.ycc{bottom:634.493333pt;}
.y18a{bottom:634.973333pt;}
.y9c{bottom:638.813333pt;}
.y13b{bottom:642.973333pt;}
.y12c{bottom:644.093333pt;}
.yed{bottom:644.253333pt;}
.y197{bottom:644.413333pt;}
.y1b{bottom:647.773333pt;}
.y1ec{bottom:649.053333pt;}
.ycb{bottom:652.093333pt;}
.y189{bottom:652.573333pt;}
.y9b{bottom:656.413333pt;}
.y1a{bottom:661.693333pt;}
.y12b{bottom:662.493333pt;}
.y1eb{bottom:666.813333pt;}
.yca{bottom:669.693333pt;}
.y188{bottom:670.173333pt;}
.y19{bottom:671.453333pt;}
.y9a{bottom:674.013333pt;}
.y13a{bottom:679.293333pt;}
.y12a{bottom:680.093333pt;}
.y6b{bottom:682.013333pt;}
.y18{bottom:683.613333pt;}
.y1ea{bottom:684.413333pt;}
.yc9{bottom:687.453333pt;}
.y187{bottom:687.773333pt;}
.y99{bottom:691.773333pt;}
.y17{bottom:694.813333pt;}
.y139{bottom:697.053333pt;}
.y1e9{bottom:702.013333pt;}
.yc8{bottom:705.053333pt;}
.y186{bottom:705.533333pt;}
.y16{bottom:705.853333pt;}
.y98{bottom:709.373333pt;}
.y138{bottom:714.653333pt;}
.y15{bottom:717.373333pt;}
.y1e8{bottom:719.613333pt;}
.yc7{bottom:722.653333pt;}
.y185{bottom:723.133333pt;}
.y97{bottom:726.973333pt;}
.y14{bottom:729.533333pt;}
.y137{bottom:732.253333pt;}
.y1e7{bottom:737.213333pt;}
.y184{bottom:737.533333pt;}
.yc6{bottom:740.253333pt;}
.y13{bottom:741.053333pt;}
.y96{bottom:744.573333pt;}
.y183{bottom:748.253333pt;}
.y136{bottom:750.653333pt;}
.y1e6{bottom:755.773333pt;}
.yc5{bottom:757.853333pt;}
.y182{bottom:758.853333pt;}
.y95{bottom:762.213333pt;}
.y12{bottom:764.933333pt;}
.y135{bottom:768.293333pt;}
.y181{bottom:773.573333pt;}
.y11{bottom:774.853333pt;}
.yc4{bottom:775.653333pt;}
.y94{bottom:779.973333pt;}
.y180{bottom:788.293333pt;}
.y1e5{bottom:792.133333pt;}
.y10{bottom:792.293333pt;}
.yc3{bottom:793.253333pt;}
.y93{bottom:797.573333pt;}
.y17f{bottom:803.173333pt;}
.yf{bottom:805.413333pt;}
.y1e4{bottom:809.733333pt;}
.yc2{bottom:810.853333pt;}
.y92{bottom:815.173333pt;}
.y17e{bottom:817.893333pt;}
.ye{bottom:822.693333pt;}
.y1e3{bottom:828.133333pt;}
.yc1{bottom:828.453333pt;}
.yd{bottom:831.813333pt;}
.y17d{bottom:832.613333pt;}
.y91{bottom:832.773333pt;}
.yc0{bottom:846.053333pt;}
.y17c{bottom:847.333333pt;}
.y1e2{bottom:849.413333pt;}
.y90{bottom:850.373333pt;}
.yc{bottom:851.333333pt;}
.y17b{bottom:862.213333pt;}
.ybf{bottom:863.813333pt;}
.y8f{bottom:868.133333pt;}
.yb{bottom:871.973333pt;}
.y17a{bottom:876.933333pt;}
.ybe{bottom:881.413333pt;}
.y8e{bottom:885.733333pt;}
.y179{bottom:891.653333pt;}
.ya{bottom:892.933333pt;}
.ybd{bottom:899.013333pt;}
.y8d{bottom:903.333333pt;}
.y178{bottom:906.533333pt;}
.ybc{bottom:916.613333pt;}
.y8c{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y177{bottom:921.253333pt;}
.ybb{bottom:935.173333pt;}
.y176{bottom:937.413333pt;}
.y8b{bottom:938.533333pt;}
.y8{bottom:945.093333pt;}
.yba{bottom:953.573333pt;}
.y8a{bottom:956.133333pt;}
.y175{bottom:957.413333pt;}
.y69{bottom:974.400000pt;}
.y86{bottom:998.400000pt;}
.y3a{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h38{height:5.562500pt;}
.h15{height:10.965000pt;}
.h2{height:12.000000pt;}
.h2b{height:14.066667pt;}
.h37{height:14.080000pt;}
.h31{height:14.226667pt;}
.h17{height:15.040000pt;}
.h27{height:15.703125pt;}
.h2e{height:16.626667pt;}
.h2d{height:17.906667pt;}
.h2f{height:18.578667pt;}
.h1f{height:19.680000pt;}
.h14{height:20.728125pt;}
.hb{height:26.381250pt;}
.h32{height:26.386667pt;}
.h33{height:26.392000pt;}
.h34{height:26.400000pt;}
.he{height:27.523125pt;}
.h2c{height:28.146667pt;}
.h30{height:28.306667pt;}
.h24{height:31.828125pt;}
.h16{height:32.250000pt;}
.h12{height:35.114107pt;}
.h5{height:36.431250pt;}
.h1c{height:36.920625pt;}
.h2a{height:37.090625pt;}
.h1d{height:37.410000pt;}
.h10{height:39.571875pt;}
.h11{height:41.442606pt;}
.hc{height:42.084375pt;}
.h4{height:42.399867pt;}
.h35{height:42.432000pt;}
.h36{height:42.440000pt;}
.h18{height:43.215000pt;}
.h21{height:46.240000pt;}
.h13{height:47.109375pt;}
.h25{height:47.742188pt;}
.h19{height:48.375000pt;}
.hf{height:49.148438pt;}
.h3{height:52.134375pt;}
.h9{height:53.535000pt;}
.ha{height:57.787500pt;}
.h1e{height:58.563750pt;}
.h26{height:62.781250pt;}
.hd{height:64.500000pt;}
.h20{height:66.625000pt;}
.h23{height:66.750000pt;}
.h28{height:72.408750pt;}
.h7{height:76.964840pt;}
.h29{height:79.014375pt;}
.h8{height:85.785000pt;}
.h22{height:103.360000pt;}
.h1b{height:122.440000pt;}
.h1a{height:460.720000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wb{width:25.112000pt;}
.w12{width:27.512000pt;}
.w10{width:42.720000pt;}
.wf{width:61.786667pt;}
.we{width:64.626667pt;}
.w15{width:67.520000pt;}
.w3{width:72.952000pt;}
.w14{width:96.026667pt;}
.wd{width:105.778667pt;}
.w11{width:105.780000pt;}
.w9{width:137.306667pt;}
.wa{width:160.346667pt;}
.w7{width:160.813333pt;}
.wc{width:340.538667pt;}
.w13{width:449.520000pt;}
.w6{width:491.946667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:3.780000pt;}
.x2{left:7.192000pt;}
.x35{left:8.312000pt;}
.xf{left:9.592000pt;}
.x34{left:11.032000pt;}
.x1f{left:12.472000pt;}
.x2b{left:13.440000pt;}
.x2f{left:14.560000pt;}
.x28{left:17.120000pt;}
.x14{left:18.893333pt;}
.x2a{left:19.840000pt;}
.x29{left:21.120000pt;}
.x30{left:23.680000pt;}
.x24{left:25.760000pt;}
.x2d{left:32.320000pt;}
.x27{left:39.026667pt;}
.x2e{left:41.106667pt;}
.x22{left:44.466667pt;}
.x2c{left:52.826667pt;}
.x3{left:65.746667pt;}
.xe{left:72.680000pt;}
.x13{left:82.760000pt;}
.x11{left:84.680000pt;}
.x1e{left:89.952000pt;}
.x6{left:94.752000pt;}
.x1{left:96.040000pt;}
.x18{left:96.992000pt;}
.x37{left:108.032000pt;}
.xb{left:117.952000pt;}
.x1a{left:120.032000pt;}
.x20{left:121.160000pt;}
.x31{left:123.560000pt;}
.x9{left:126.592000pt;}
.x1c{left:132.032000pt;}
.x16{left:144.186667pt;}
.x4{left:169.000000pt;}
.x7{left:215.066667pt;}
.x10{left:251.106667pt;}
.x12{left:289.146667pt;}
.x5{left:396.893333pt;}
.x8{left:402.013333pt;}
.xa{left:419.613333pt;}
.xc{left:434.813333pt;}
.xd{left:436.253333pt;}
.x21{left:461.706667pt;}
.x1d{left:494.813333pt;}
.x15{left:551.336000pt;}
.x23{left:567.493333pt;}
.x32{left:573.093333pt;}
.x19{left:579.173333pt;}
.x25{left:632.133333pt;}
.x33{left:669.120000pt;}
.x36{left:672.160000pt;}
.x26{left:693.920000pt;}
.x1b{left:704.640000pt;}
.x17{left:710.400000pt;}
}




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