
    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_148f5c16216fc600443cda7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6ef1655c0ed589cf925b2a9d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_7a764324e6e57131d2671695.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_244960999d9165c027ab8c2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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_9dc2f5382a65db12eece63b1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.983398;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_7bf97291bd2f8b38387f2c87.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983398;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_6f9eee11277bf987521efbbd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-77.040000px;}
.v9{vertical-align:-67.140000px;}
.va{vertical-align:-49.080000px;}
.v3{vertical-align:-29.520000px;}
.v2{vertical-align:-24.660000px;}
.v8{vertical-align:-8.220000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:4.860000px;}
.v1{vertical-align:7.020000px;}
.v6{vertical-align:21.300000px;}
.v5{vertical-align:29.520000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.869760px;}
.ls0{letter-spacing:0.950400px;}
.ls2{letter-spacing:1.589760px;}
.ls8{letter-spacing:1.831680px;}
.ls5{letter-spacing:2.527680px;}
.ls7{letter-spacing:2.551680px;}
.ls6{letter-spacing:6.854400px;}
.ls4{letter-spacing:849.547200px;}
.ls9{letter-spacing:849.583200px;}
.lsa{letter-spacing:852.276000px;}
.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;}
}
.ws1{word-spacing:-14.970240px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:28.507680px;}
.ws4{word-spacing:28.686240px;}
.ws2{word-spacing:37.717200px;}
.ws5{word-spacing:203.724000px;}
.wsa{word-spacing:423.744000px;}
.ws8{word-spacing:428.184000px;}
.ws6{word-spacing:429.504000px;}
.ws7{word-spacing:429.684000px;}
.wsd{word-spacing:430.344000px;}
.wsb{word-spacing:431.844000px;}
.wsc{word-spacing:432.384000px;}
.ws9{word-spacing:435.384000px;}
._1a{margin-left:-12.564000px;}
._24{margin-left:-10.650240px;}
._32{margin-left:-9.210240px;}
._14{margin-left:-7.430400px;}
._22{margin-left:-5.610240px;}
._1e{margin-left:-4.462080px;}
._3{margin-left:-2.730240px;}
._2a{margin-left:-1.137120px;}
._0{width:1.785600px;}
._25{width:3.101280px;}
._38{width:4.173120px;}
._2{width:5.296320px;}
._9{width:7.210080px;}
._1d{width:9.144000px;}
._8{width:10.990080px;}
._2e{width:11.996640px;}
._f{width:13.969440px;}
._3e{width:15.581520px;}
._33{width:16.602720px;}
._42{width:18.161280px;}
._1{width:19.464960px;}
._83{width:20.705040px;}
._15{width:21.823200px;}
._3f{width:23.288160px;}
._d{width:25.064640px;}
._34{width:26.932800px;}
._5d{width:28.194240px;}
._36{width:29.485440px;}
._a{width:31.763520px;}
._23{width:33.600000px;}
._4{width:35.176320px;}
._79{width:36.204000px;}
._5{width:37.372320px;}
._76{width:38.539200px;}
._20{width:40.463040px;}
._b{width:41.534400px;}
._1f{width:42.753120px;}
._2c{width:43.815360px;}
._21{width:45.096960px;}
._51{width:46.344000px;}
._43{width:47.426880px;}
._6d{width:48.619200px;}
._16{width:49.926000px;}
._59{width:51.119520px;}
._4f{width:53.313600px;}
._1c{width:55.236000px;}
._5b{width:56.665440px;}
._69{width:58.296000px;}
._11{width:59.897280px;}
._7{width:61.660800px;}
._58{width:63.533760px;}
._50{width:64.603200px;}
._52{width:66.126720px;}
._62{width:67.595760px;}
._53{width:68.989440px;}
._6{width:70.512960px;}
._49{width:72.524640px;}
._e{width:74.316000px;}
._29{width:75.613440px;}
._75{width:76.828800px;}
._63{width:78.193200px;}
._2b{width:79.800480px;}
._60{width:80.952960px;}
._65{width:82.400640px;}
._40{width:85.172160px;}
._64{width:86.600640px;}
._86{width:87.656880px;}
._44{width:89.562240px;}
._7f{width:90.703920px;}
._2d{width:94.728000px;}
._87{width:96.279600px;}
._56{width:97.304160px;}
._78{width:99.156000px;}
._27{width:101.022240px;}
._7e{width:102.540000px;}
._6f{width:105.011040px;}
._2f{width:106.425120px;}
._41{width:108.082560px;}
._1b{width:110.772000px;}
._66{width:111.990720px;}
._5a{width:114.796800px;}
._70{width:117.063600px;}
._73{width:119.352000px;}
._88{width:121.107360px;}
._80{width:122.178000px;}
._18{width:123.762000px;}
._74{width:126.282960px;}
._7d{width:127.440480px;}
._17{width:130.278000px;}
._6e{width:131.916000px;}
._7a{width:136.464240px;}
._28{width:140.054880px;}
._5c{width:142.229280px;}
._67{width:144.369600px;}
._72{width:148.533600px;}
._68{width:152.577120px;}
._26{width:154.164000px;}
._31{width:156.203040px;}
._12{width:158.219040px;}
._82{width:160.224000px;}
._30{width:162.504480px;}
._19{width:164.946720px;}
._13{width:167.909760px;}
._c{width:169.180320px;}
._8a{width:170.790000px;}
._77{width:175.365120px;}
._54{width:178.278960px;}
._4d{width:179.337120px;}
._61{width:180.869280px;}
._6b{width:186.354240px;}
._47{width:189.273120px;}
._85{width:191.648400px;}
._7c{width:194.385120px;}
._10{width:195.444960px;}
._8c{width:199.158000px;}
._4e{width:200.556960px;}
._4b{width:203.212320px;}
._45{width:207.543840px;}
._84{width:211.044480px;}
._55{width:213.001440px;}
._4a{width:215.075040px;}
._6a{width:217.108320px;}
._3b{width:218.934240px;}
._71{width:224.493600px;}
._57{width:227.591520px;}
._5f{width:229.145280px;}
._5e{width:230.257920px;}
._6c{width:232.559520px;}
._3c{width:234.897600px;}
._81{width:242.664000px;}
._3a{width:251.247840px;}
._35{width:252.327360px;}
._4c{width:253.897440px;}
._7b{width:256.721280px;}
._46{width:260.980800px;}
._48{width:273.814080px;}
._39{width:275.755200px;}
._37{width:280.075200px;}
._89{width:291.322560px;}
._8b{width:315.190560px;}
._3d{width:851.952000px;}
.fc3{color:rgb(79,129,189);}
.fc1{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:59.904000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fsd{font-size:95.760000px;}
.fs2{font-size:105.120000px;}
.fsc{font-size:216.000000px;}
.y23{bottom:-1.260000px;}
.y0{bottom:0.000000px;}
.y1aa{bottom:3.420000px;}
.y120{bottom:3.780000px;}
.y160{bottom:3.810000px;}
.y194{bottom:3.825000px;}
.yc0{bottom:4.140000px;}
.y46{bottom:5.940000px;}
.y49{bottom:7.020000px;}
.yb9{bottom:10.260000px;}
.y140{bottom:12.780000px;}
.y1a0{bottom:12.810000px;}
.ya9{bottom:12.930000px;}
.yc3{bottom:14.040000px;}
.y11d{bottom:17.100000px;}
.y1a9{bottom:19.620000px;}
.y105{bottom:21.600000px;}
.y12d{bottom:21.780000px;}
.y19f{bottom:21.810000px;}
.y17c{bottom:21.825000px;}
.ybb{bottom:22.860000px;}
.ybf{bottom:23.940000px;}
.y48{bottom:27.900000px;}
.ya8{bottom:29.130000px;}
.yc2{bottom:33.840000px;}
.yb8{bottom:35.460000px;}
.y1a8{bottom:35.820000px;}
.y12e{bottom:39.780000px;}
.y11c{bottom:41.220000px;}
.ybe{bottom:43.740000px;}
.ya7{bottom:45.360000px;}
.yba{bottom:48.060000px;}
.y47{bottom:49.140000px;}
.y104{bottom:50.580000px;}
.y1a7{bottom:52.020000px;}
.yc1{bottom:53.640000px;}
.yfc{bottom:54.570000px;}
.y3{bottom:57.240000px;}
.yb7{bottom:60.660000px;}
.y45{bottom:60.840000px;}
.y9f{bottom:62.610000px;}
.ybd{bottom:63.540000px;}
.y11b{bottom:65.340000px;}
.yfb{bottom:72.570000px;}
.y27{bottom:73.476000px;}
.y2{bottom:77.076000px;}
.y103{bottom:79.560000px;}
.y44{bottom:83.736000px;}
.y11a{bottom:89.460000px;}
.y26{bottom:89.676000px;}
.yfa{bottom:90.570000px;}
.y43{bottom:99.576000px;}
.y1{bottom:99.936000px;}
.ya0{bottom:106.740000px;}
.ye6{bottom:108.540000px;}
.yf9{bottom:108.570000px;}
.y25{bottom:109.656000px;}
.y9d{bottom:119.490000px;}
.y119{bottom:122.940000px;}
.yf2{bottom:127.770000px;}
.y99{bottom:127.836000px;}
.y102{bottom:137.520000px;}
.y117{bottom:145.656000px;}
.y98{bottom:150.510000px;}
.ya1{bottom:150.870000px;}
.y21{bottom:153.030000px;}
.y72{bottom:154.290000px;}
.y101{bottom:166.500000px;}
.y116{bottom:168.330000px;}
.yf3{bottom:168.735000px;}
.y97{bottom:173.370000px;}
.y149{bottom:173.910000px;}
.y71{bottom:174.990000px;}
.y9a{bottom:176.220000px;}
.y20{bottom:178.050000px;}
.yaa{bottom:179.025000px;}
.y100{bottom:190.260000px;}
.y115{bottom:191.190000px;}
.y9b{bottom:193.605000px;}
.y70{bottom:193.890000px;}
.ya2{bottom:195.015000px;}
.y96{bottom:196.050000px;}
.y148{bottom:196.770000px;}
.y1f{bottom:204.510000px;}
.yf4{bottom:209.700000px;}
.yfd{bottom:213.090000px;}
.yd5{bottom:213.330000px;}
.y114{bottom:213.870000px;}
.y147{bottom:215.310000px;}
.y6f{bottom:218.010000px;}
.y95{bottom:218.910000px;}
.yea{bottom:226.590000px;}
.y146{bottom:234.030000px;}
.y1e{bottom:236.010000px;}
.yed{bottom:236.415000px;}
.y113{bottom:236.730000px;}
.yf1{bottom:238.065000px;}
.ya3{bottom:239.145000px;}
.y6e{bottom:240.690000px;}
.y94{bottom:241.590000px;}
.y9c{bottom:247.470000px;}
.yf5{bottom:250.665000px;}
.ye9{bottom:250.740000px;}
.y170{bottom:250.950000px;}
.y145{bottom:252.570000px;}
.yeb{bottom:254.850000px;}
.yf0{bottom:258.555000px;}
.yd4{bottom:258.870000px;}
.y112{bottom:259.410000px;}
.yee{bottom:260.565000px;}
.y6d{bottom:263.550000px;}
.y93{bottom:264.450000px;}
.y144{bottom:265.710000px;}
.y1d{bottom:267.510000px;}
.y16f{bottom:273.630000px;}
.y22{bottom:279.210000px;}
.yd3{bottom:281.550000px;}
.y111{bottom:282.270000px;}
.ya4{bottom:283.290000px;}
.yef{bottom:283.530000px;}
.y143{bottom:284.610000px;}
.y6c{bottom:286.230000px;}
.y92{bottom:287.130000px;}
.yec{bottom:290.490000px;}
.yf6{bottom:291.630000px;}
.y16e{bottom:292.350000px;}
.ye8{bottom:298.695000px;}
.y1c{bottom:299.010000px;}
.y142{bottom:303.330000px;}
.yd2{bottom:304.410000px;}
.y110{bottom:304.950000px;}
.y9e{bottom:307.470000px;}
.y6b{bottom:309.090000px;}
.y91{bottom:309.990000px;}
.y16d{bottom:310.890000px;}
.y141{bottom:322.095000px;}
.ye7{bottom:324.075000px;}
.yd1{bottom:327.135000px;}
.ya5{bottom:327.420000px;}
.y10f{bottom:327.855000px;}
.y16c{bottom:329.655000px;}
.y6a{bottom:330.015000px;}
.y1b{bottom:330.555000px;}
.yf7{bottom:332.610000px;}
.y90{bottom:332.715000px;}
.y13f{bottom:340.815000px;}
.y16b{bottom:348.195000px;}
.y69{bottom:348.375000px;}
.yd0{bottom:349.995000px;}
.y10e{bottom:350.535000px;}
.yfe{bottom:353.490000px;}
.y8f{bottom:355.575000px;}
.y16a{bottom:361.695000px;}
.y1a{bottom:362.055000px;}
.y10d{bottom:370.875000px;}
.y68{bottom:371.235000px;}
.ya6{bottom:371.550000px;}
.ycf{bottom:372.675000px;}
.yf8{bottom:373.575000px;}
.y13e{bottom:377.535000px;}
.y8e{bottom:378.255000px;}
.y169{bottom:380.595000px;}
.y1be{bottom:382.395000px;}
.y19{bottom:393.555000px;}
.y67{bottom:393.915000px;}
.yce{bottom:395.535000px;}
.y13d{bottom:396.255000px;}
.y168{bottom:399.315000px;}
.y8d{bottom:401.115000px;}
.y10c{bottom:403.995000px;}
.y1bd{bottom:405.255000px;}
.y41{bottom:409.575000px;}
.y13c{bottom:415.155000px;}
.y66{bottom:416.775000px;}
.y167{bottom:418.035000px;}
.ycd{bottom:418.215000px;}
.y8c{bottom:423.795000px;}
.y18{bottom:425.055000px;}
.y40{bottom:426.135000px;}
.y10b{bottom:426.675000px;}
.y13a{bottom:433.875000px;}
.y166{bottom:436.755000px;}
.y1ce{bottom:437.115000px;}
.ycc{bottom:438.555000px;}
.y65{bottom:439.455000px;}
.y1bc{bottom:442.515000px;}
.y3f{bottom:443.415000px;}
.y8b{bottom:446.655000px;}
.y10a{bottom:449.535000px;}
.y13b{bottom:452.595000px;}
.y165{bottom:455.475000px;}
.y1cd{bottom:455.835000px;}
.y17{bottom:456.555000px;}
.y1bb{bottom:461.055000px;}
.y3e{bottom:466.275000px;}
.y8a{bottom:469.335000px;}
.y1a5{bottom:470.055000px;}
.ycb{bottom:471.675000px;}
.y109{bottom:472.215000px;}
.y164{bottom:474.195000px;}
.y1cc{bottom:474.375000px;}
.y64{bottom:477.255000px;}
.y1ba{bottom:479.775000px;}
.y16{bottom:488.055000px;}
.y1a4{bottom:488.595000px;}
.y3d{bottom:488.955000px;}
.y89{bottom:492.195000px;}
.y163{bottom:493.095000px;}
.y1b9{bottom:493.275000px;}
.yca{bottom:494.355000px;}
.y108{bottom:495.075000px;}
.y63{bottom:500.115000px;}
.y18b{bottom:501.375000px;}
.y1a3{bottom:507.315000px;}
.y139{bottom:511.635000px;}
.y3c{bottom:511.815000px;}
.y88{bottom:514.875000px;}
.yc9{bottom:517.215000px;}
.y107{bottom:517.755000px;}
.y15{bottom:519.555000px;}
.y62{bottom:522.795000px;}
.y1a2{bottom:525.855000px;}
.y1b8{bottom:529.995000px;}
.ye5{bottom:530.355000px;}
.y162{bottom:530.535000px;}
.y3b{bottom:534.495000px;}
.y138{bottom:535.575000px;}
.y87{bottom:537.735000px;}
.y18a{bottom:539.175000px;}
.yc8{bottom:539.895000px;}
.y106{bottom:540.615000px;}
.y1a1{bottom:544.575000px;}
.y61{bottom:545.655000px;}
.y1b7{bottom:548.715000px;}
.y1cb{bottom:548.895000px;}
.y161{bottom:549.255000px;}
.y14{bottom:551.055000px;}
.y137{bottom:557.175000px;}
.y3a{bottom:557.355000px;}
.y19e{bottom:558.075000px;}
.y86{bottom:560.415000px;}
.y189{bottom:560.595000px;}
.yc7{bottom:562.755000px;}
.ye4{bottom:563.295000px;}
.y1b6{bottom:567.435000px;}
.y1ca{bottom:567.615000px;}
.y15f{bottom:567.975000px;}
.y60{bottom:568.365000px;}
.y136{bottom:575.745000px;}
.y188{bottom:579.345000px;}
.y39{bottom:580.065000px;}
.y85{bottom:580.785000px;}
.y13{bottom:582.585000px;}
.yc6{bottom:585.465000px;}
.ye3{bottom:586.185000px;}
.y15e{bottom:586.725000px;}
.y1c9{bottom:587.445000px;}
.y5f{bottom:591.225000px;}
.y135{bottom:594.465000px;}
.y19d{bottom:594.825000px;}
.y187{bottom:597.885000px;}
.y38{bottom:602.925000px;}
.y1b5{bottom:605.085000px;}
.y15d{bottom:605.625000px;}
.y134{bottom:607.605000px;}
.yc5{bottom:608.325000px;}
.ye2{bottom:608.865000px;}
.y1c8{bottom:610.305000px;}
.y19c{bottom:613.545000px;}
.y5e{bottom:613.905000px;}
.y12{bottom:614.085000px;}
.y186{bottom:616.605000px;}
.y84{bottom:621.465000px;}
.y1b4{bottom:623.805000px;}
.y15c{bottom:624.345000px;}
.y37{bottom:625.605000px;}
.y133{bottom:626.325000px;}
.y185{bottom:630.105000px;}
.yc4{bottom:631.005000px;}
.ye1{bottom:631.725000px;}
.y5d{bottom:636.585000px;}
.y15b{bottom:643.065000px;}
.y83{bottom:644.145000px;}
.y132{bottom:645.045000px;}
.y11{bottom:645.585000px;}
.y36{bottom:648.465000px;}
.y184{bottom:648.825000px;}
.y19b{bottom:650.265000px;}
.y1c7{bottom:650.445000px;}
.ye0{bottom:654.405000px;}
.ybc{bottom:656.385000px;}
.y1b3{bottom:660.525000px;}
.y15a{bottom:661.785000px;}
.y131{bottom:663.945000px;}
.y82{bottom:667.005000px;}
.y183{bottom:667.545000px;}
.y19a{bottom:669.165000px;}
.y35{bottom:671.145000px;}
.y5c{bottom:674.565000px;}
.y10{bottom:677.085000px;}
.ydf{bottom:677.265000px;}
.y1b2{bottom:679.245000px;}
.y159{bottom:680.505000px;}
.y130{bottom:682.665000px;}
.y182{bottom:686.265000px;}
.y199{bottom:687.885000px;}
.y81{bottom:689.685000px;}
.y34{bottom:694.725000px;}
.y5b{bottom:697.245000px;}
.y1b1{bottom:697.965000px;}
.y158{bottom:699.225000px;}
.yde{bottom:699.945000px;}
.y1c6{bottom:700.665000px;}
.y12f{bottom:701.385000px;}
.y181{bottom:705.165000px;}
.y198{bottom:706.605000px;}
.yf{bottom:708.585000px;}
.y80{bottom:712.545000px;}
.y157{bottom:718.125000px;}
.y5a{bottom:720.105000px;}
.ydd{bottom:722.805000px;}
.y180{bottom:723.885000px;}
.y33{bottom:727.845000px;}
.y7f{bottom:735.225000px;}
.yb6{bottom:736.485000px;}
.y1c4{bottom:737.385000px;}
.y12b{bottom:738.825000px;}
.ye{bottom:740.085000px;}
.y156{bottom:740.805000px;}
.y59{bottom:740.985000px;}
.y17f{bottom:742.605000px;}
.y197{bottom:743.325000px;}
.ydc{bottom:745.485000px;}
.y32{bottom:750.525000px;}
.y1b0{bottom:752.685000px;}
.y1c5{bottom:756.105000px;}
.y12c{bottom:757.545000px;}
.y7e{bottom:758.085000px;}
.y58{bottom:759.345000px;}
.y17e{bottom:761.325000px;}
.y196{bottom:762.045000px;}
.y155{bottom:764.745000px;}
.ydb{bottom:768.345000px;}
.yd{bottom:771.585000px;}
.y31{bottom:773.385000px;}
.y17d{bottom:780.045000px;}
.y7d{bottom:780.765000px;}
.y57{bottom:782.205000px;}
.y154{bottom:786.345000px;}
.y1af{bottom:789.585000px;}
.yda{bottom:791.025000px;}
.y30{bottom:796.065000px;}
.y17b{bottom:798.765000px;}
.y195{bottom:799.665000px;}
.yc{bottom:803.085000px;}
.y7c{bottom:803.625000px;}
.y56{bottom:804.885000px;}
.yd9{bottom:813.885000px;}
.y1c3{bottom:814.785000px;}
.y12a{bottom:816.585000px;}
.y193{bottom:818.385000px;}
.y2f{bottom:818.925000px;}
.y153{bottom:823.650000px;}
.y7b{bottom:826.350000px;}
.yb5{bottom:827.610000px;}
.y55{bottom:827.790000px;}
.yb{bottom:834.630000px;}
.y17a{bottom:835.710000px;}
.yd8{bottom:836.610000px;}
.y152{bottom:836.790000px;}
.y192{bottom:837.150000px;}
.y1c2{bottom:838.950000px;}
.y129{bottom:840.750000px;}
.y2e{bottom:842.550000px;}
.y7a{bottom:846.690000px;}
.yb4{bottom:849.210000px;}
.y54{bottom:850.470000px;}
.y179{bottom:854.430000px;}
.y151{bottom:855.510000px;}
.y191{bottom:855.870000px;}
.yd7{bottom:859.470000px;}
.y1c1{bottom:860.370000px;}
.y128{bottom:862.170000px;}
.yff{bottom:863.070000px;}
.ya{bottom:866.130000px;}
.y178{bottom:873.150000px;}
.y53{bottom:873.330000px;}
.y150{bottom:874.230000px;}
.y190{bottom:874.590000px;}
.y2d{bottom:875.490000px;}
.y1c0{bottom:879.090000px;}
.y79{bottom:879.810000px;}
.y127{bottom:880.890000px;}
.y1ae{bottom:881.790000px;}
.yb3{bottom:882.150000px;}
.y118{bottom:887.730000px;}
.y177{bottom:891.870000px;}
.y1bf{bottom:892.590000px;}
.y14f{bottom:892.950000px;}
.y126{bottom:893.670000px;}
.y52{bottom:896.010000px;}
.y9{bottom:897.630000px;}
.y2c{bottom:898.350000px;}
.y1ad{bottom:900.510000px;}
.y78{bottom:902.490000px;}
.yb2{bottom:905.010000px;}
.y176{bottom:910.590000px;}
.y18f{bottom:911.310000px;}
.y125{bottom:912.390000px;}
.y51{bottom:918.870000px;}
.y1ac{bottom:919.230000px;}
.y2b{bottom:921.030000px;}
.y77{bottom:925.350000px;}
.yb1{bottom:927.690000px;}
.y8{bottom:929.130000px;}
.y175{bottom:929.310000px;}
.y14e{bottom:929.670000px;}
.y18e{bottom:930.210000px;}
.y124{bottom:931.110000px;}
.y1ab{bottom:938.130000px;}
.y50{bottom:941.550000px;}
.y2a{bottom:943.890000px;}
.y76{bottom:948.030000px;}
.y174{bottom:948.210000px;}
.y14d{bottom:948.570000px;}
.y123{bottom:950.010000px;}
.yb0{bottom:950.550000px;}
.y7{bottom:960.630000px;}
.y4f{bottom:961.890000px;}
.y173{bottom:966.930000px;}
.y29{bottom:967.290000px;}
.y122{bottom:968.730000px;}
.y75{bottom:970.890000px;}
.yaf{bottom:973.230000px;}
.y1a6{bottom:974.850000px;}
.y4e{bottom:984.030000px;}
.y14b{bottom:985.290000px;}
.y18c{bottom:985.650000px;}
.y121{bottom:987.450000px;}
.y6{bottom:992.130000px;}
.y74{bottom:993.570000px;}
.yae{bottom:996.090000px;}
.y28{bottom:998.790000px;}
.y4d{bottom:999.510000px;}
.y171{bottom:1003.650000px;}
.y14c{bottom:1004.010000px;}
.y18d{bottom:1004.370000px;}
.y11f{bottom:1006.170000px;}
.y73{bottom:1016.430000px;}
.yad{bottom:1018.770000px;}
.y4c{bottom:1019.310000px;}
.y24{bottom:1021.470000px;}
.y172{bottom:1022.370000px;}
.y5{bottom:1023.630000px;}
.y11e{bottom:1028.850000px;}
.y4b{bottom:1039.110000px;}
.yac{bottom:1041.630000px;}
.y4{bottom:1055.130000px;}
.y4a{bottom:1060.170000px;}
.y14a{bottom:1063.050000px;}
.yd6{bottom:1064.130000px;}
.yab{bottom:1064.310000px;}
.y42{bottom:1118.340000px;}
.h20{height:18.000000px;}
.h25{height:18.036000px;}
.h1b{height:35.806641px;}
.h24{height:36.000000px;}
.h27{height:36.036000px;}
.h21{height:43.453125px;}
.ha{height:47.980898px;}
.h12{height:48.088125px;}
.h15{height:53.302500px;}
.h2{height:53.709961px;}
.h11{height:53.853187px;}
.h23{height:54.000000px;}
.h26{height:54.720000px;}
.hf{height:55.291992px;}
.hc{height:59.439023px;}
.h19{height:59.582250px;}
.hd{height:61.189805px;}
.h1e{height:61.575820px;}
.h10{height:62.311992px;}
.h29{height:64.800000px;}
.h9{height:64.836000px;}
.h1{height:65.884219px;}
.h7{height:67.824844px;}
.h6{height:69.516000px;}
.h8{height:71.613281px;}
.h22{height:72.720000px;}
.hb{height:73.722656px;}
.h18{height:76.591992px;}
.h5{height:77.342344px;}
.h14{height:79.200000px;}
.h28{height:83.520000px;}
.h4{height:83.787539px;}
.h17{height:84.811992px;}
.h13{height:85.536000px;}
.h1f{height:95.245664px;}
.h3{height:107.635078px;}
.h1c{height:186.510000px;}
.h1a{height:210.990000px;}
.h1d{height:214.839844px;}
.he{height:392.220000px;}
.h16{height:412.740000px;}
.h0{height:1188.000000px;}
.w2e{width:46.440000px;}
.w1f{width:50.040000px;}
.w1b{width:59.976000px;}
.w27{width:62.460000px;}
.w3c{width:64.476000px;}
.w20{width:66.600000px;}
.w33{width:73.080000px;}
.w30{width:73.440000px;}
.w34{width:73.980000px;}
.wc{width:74.160000px;}
.w21{width:78.876000px;}
.w41{width:82.800000px;}
.w3f{width:83.520000px;}
.w3a{width:86.580000px;}
.w31{width:86.940000px;}
.w2f{width:86.976000px;}
.w38{width:87.480000px;}
.w2a{width:88.920000px;}
.w3d{width:89.280000px;}
.w3e{width:89.496000px;}
.w2c{width:89.640000px;}
.w24{width:94.680000px;}
.w22{width:95.040000px;}
.w25{width:95.580000px;}
.w37{width:100.476000px;}
.w1c{width:107.100000px;}
.w36{width:113.940000px;}
.w16{width:113.976000px;}
.w15{width:114.120000px;}
.w29{width:116.136000px;}
.wf{width:120.780000px;}
.w11{width:120.816000px;}
.w28{width:123.120000px;}
.w10{width:127.476000px;}
.w18{width:139.680000px;}
.w12{width:141.300000px;}
.w2{width:160.590000px;}
.we{width:195.330000px;}
.wd{width:197.310000px;}
.wa{width:213.870000px;}
.w14{width:215.490000px;}
.w7{width:219.450000px;}
.w5{width:235.110000px;}
.w23{width:242.670000px;}
.w6{width:244.470000px;}
.w2d{width:249.330000px;}
.w9{width:288.210000px;}
.w39{width:303.510000px;}
.w26{width:307.470000px;}
.w2b{width:329.610000px;}
.w40{width:337.890000px;}
.w3b{width:350.490000px;}
.w35{width:370.830000px;}
.w32{width:411.015000px;}
.w1e{width:414.615000px;}
.wb{width:438.375000px;}
.w4{width:480.780000px;}
.w19{width:490.755000px;}
.w17{width:492.375000px;}
.w13{width:512.535000px;}
.w1d{width:539.355000px;}
.w1a{width:539.715000px;}
.w8{width:744.480000px;}
.w3{width:761.730000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4c{left:7.920000px;}
.x2c{left:9.000000px;}
.x9{left:10.800000px;}
.xa{left:12.240000px;}
.x27{left:14.220000px;}
.x4b{left:16.020000px;}
.x2d{left:17.460000px;}
.x29{left:18.540000px;}
.x61{left:19.620000px;}
.x2a{left:21.600000px;}
.x2b{left:23.220000px;}
.x44{left:25.380000px;}
.x63{left:26.640000px;}
.x40{left:27.720000px;}
.x68{left:29.160000px;}
.x48{left:31.140000px;}
.x1d{left:33.012000px;}
.x62{left:34.560000px;}
.x46{left:35.640000px;}
.x28{left:36.720000px;}
.x39{left:38.700000px;}
.x12{left:41.328000px;}
.x11{left:43.410000px;}
.x38{left:45.180000px;}
.x58{left:46.800000px;}
.x54{left:48.240000px;}
.x10{left:49.245000px;}
.x53{left:50.580000px;}
.x55{left:52.200000px;}
.x52{left:53.850000px;}
.x20{left:55.434000px;}
.x57{left:57.420000px;}
.x59{left:58.680000px;}
.x24{left:60.120000px;}
.x26{left:61.380000px;}
.x1f{left:64.074000px;}
.x21{left:65.694000px;}
.x23{left:69.300000px;}
.x2e{left:74.310000px;}
.x60{left:77.220000px;}
.x2{left:78.480000px;}
.x4a{left:83.385000px;}
.x14{left:84.855000px;}
.x13{left:87.990000px;}
.xc{left:95.400000px;}
.x30{left:105.810000px;}
.x1{left:108.035986px;}
.x5{left:109.475986px;}
.x67{left:121.140000px;}
.x6{left:122.975986px;}
.x74{left:125.100000px;}
.x7{left:138.095986px;}
.x43{left:144.000000px;}
.x3{left:148.890000px;}
.x8{left:162.029986px;}
.x15{left:163.695000px;}
.x34{left:170.430000px;}
.xd{left:174.210000px;}
.x1e{left:187.049986px;}
.x56{left:202.350000px;}
.x41{left:204.690000px;}
.x2f{left:207.825000px;}
.x51{left:212.430000px;}
.x3a{left:216.285000px;}
.x16{left:228.495000px;}
.x17{left:232.950000px;}
.x3b{left:256.890000px;}
.x4d{left:304.455000px;}
.x18{left:323.385000px;}
.x19{left:324.720000px;}
.xe{left:335.445000px;}
.x22{left:344.775000px;}
.x3c{left:352.260000px;}
.x69{left:358.275000px;}
.x31{left:374.790000px;}
.x1b{left:386.130000px;}
.x1c{left:390.600000px;}
.x6a{left:405.435000px;}
.xf{left:409.935000px;}
.x1a{left:413.715000px;}
.x64{left:416.415000px;}
.x4e{left:425.955000px;}
.x35{left:439.995000px;}
.x70{left:459.255000px;}
.x65{left:479.805000px;}
.x6b{left:493.305000px;}
.x32{left:509.400000px;}
.x42{left:520.305000px;}
.x5c{left:523.365000px;}
.x71{left:524.445000px;}
.x3d{left:526.065000px;}
.x47{left:547.305000px;}
.x4f{left:554.145000px;}
.x4{left:567.104986px;}
.x36{left:573.120000px;}
.x5d{left:574.305000px;}
.x25{left:589.965000px;}
.x45{left:595.905000px;}
.xb{left:600.944986px;}
.x66{left:603.645000px;}
.x3e{left:614.160000px;}
.x49{left:622.185000px;}
.x3f{left:636.870000px;}
.x5e{left:641.805000px;}
.x33{left:643.605000px;}
.x5a{left:648.465000px;}
.x6c{left:655.305000px;}
.x6e{left:668.805000px;}
.x50{left:675.690000px;}
.x72{left:704.670000px;}
.x37{left:707.370000px;}
.x5b{left:709.350000px;}
.x5f{left:721.410000px;}
.x6d{left:743.010000px;}
.x6f{left:770.010000px;}
.x73{left:778.830000px;}
@media print{
.v4{vertical-align:-68.480000pt;}
.v9{vertical-align:-59.680000pt;}
.va{vertical-align:-43.626667pt;}
.v3{vertical-align:-26.240000pt;}
.v2{vertical-align:-21.920000pt;}
.v8{vertical-align:-7.306667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:4.320000pt;}
.v1{vertical-align:6.240000pt;}
.v6{vertical-align:18.933333pt;}
.v5{vertical-align:26.240000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.773120pt;}
.ls0{letter-spacing:0.844800pt;}
.ls2{letter-spacing:1.413120pt;}
.ls8{letter-spacing:1.628160pt;}
.ls5{letter-spacing:2.246827pt;}
.ls7{letter-spacing:2.268160pt;}
.ls6{letter-spacing:6.092800pt;}
.ls4{letter-spacing:755.153067pt;}
.ls9{letter-spacing:755.185067pt;}
.lsa{letter-spacing:757.578667pt;}
.ws1{word-spacing:-13.306880pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:25.340160pt;}
.ws4{word-spacing:25.498880pt;}
.ws2{word-spacing:33.526400pt;}
.ws5{word-spacing:181.088000pt;}
.wsa{word-spacing:376.661333pt;}
.ws8{word-spacing:380.608000pt;}
.ws6{word-spacing:381.781333pt;}
.ws7{word-spacing:381.941333pt;}
.wsd{word-spacing:382.528000pt;}
.wsb{word-spacing:383.861333pt;}
.wsc{word-spacing:384.341333pt;}
.ws9{word-spacing:387.008000pt;}
._1a{margin-left:-11.168000pt;}
._24{margin-left:-9.466880pt;}
._32{margin-left:-8.186880pt;}
._14{margin-left:-6.604800pt;}
._22{margin-left:-4.986880pt;}
._1e{margin-left:-3.966293pt;}
._3{margin-left:-2.426880pt;}
._2a{margin-left:-1.010773pt;}
._0{width:1.587200pt;}
._25{width:2.756693pt;}
._38{width:3.709440pt;}
._2{width:4.707840pt;}
._9{width:6.408960pt;}
._1d{width:8.128000pt;}
._8{width:9.768960pt;}
._2e{width:10.663680pt;}
._f{width:12.417280pt;}
._3e{width:13.850240pt;}
._33{width:14.757973pt;}
._42{width:16.143360pt;}
._1{width:17.302187pt;}
._83{width:18.404480pt;}
._15{width:19.398400pt;}
._3f{width:20.700587pt;}
._d{width:22.279680pt;}
._34{width:23.940267pt;}
._5d{width:25.061547pt;}
._36{width:26.209280pt;}
._a{width:28.234240pt;}
._23{width:29.866667pt;}
._4{width:31.267840pt;}
._79{width:32.181333pt;}
._5{width:33.219840pt;}
._76{width:34.257067pt;}
._20{width:35.967147pt;}
._b{width:36.919467pt;}
._1f{width:38.002773pt;}
._2c{width:38.946987pt;}
._21{width:40.086187pt;}
._51{width:41.194667pt;}
._43{width:42.157227pt;}
._6d{width:43.217067pt;}
._16{width:44.378667pt;}
._59{width:45.439573pt;}
._4f{width:47.389867pt;}
._1c{width:49.098667pt;}
._5b{width:50.369280pt;}
._69{width:51.818667pt;}
._11{width:53.242027pt;}
._7{width:54.809600pt;}
._58{width:56.474453pt;}
._50{width:57.425067pt;}
._52{width:58.779307pt;}
._62{width:60.085120pt;}
._53{width:61.323947pt;}
._6{width:62.678187pt;}
._49{width:64.466347pt;}
._e{width:66.058667pt;}
._29{width:67.211947pt;}
._75{width:68.292267pt;}
._63{width:69.505067pt;}
._2b{width:70.933760pt;}
._60{width:71.958187pt;}
._65{width:73.245013pt;}
._40{width:75.708587pt;}
._64{width:76.978347pt;}
._86{width:77.917227pt;}
._44{width:79.610880pt;}
._7f{width:80.625707pt;}
._2d{width:84.202667pt;}
._87{width:85.581867pt;}
._56{width:86.492587pt;}
._78{width:88.138667pt;}
._27{width:89.797547pt;}
._7e{width:91.146667pt;}
._6f{width:93.343147pt;}
._2f{width:94.600107pt;}
._41{width:96.073387pt;}
._1b{width:98.464000pt;}
._66{width:99.547307pt;}
._5a{width:102.041600pt;}
._70{width:104.056533pt;}
._73{width:106.090667pt;}
._88{width:107.650987pt;}
._80{width:108.602667pt;}
._18{width:110.010667pt;}
._74{width:112.251520pt;}
._7d{width:113.280427pt;}
._17{width:115.802667pt;}
._6e{width:117.258667pt;}
._7a{width:121.301547pt;}
._28{width:124.493227pt;}
._5c{width:126.426027pt;}
._67{width:128.328533pt;}
._72{width:132.029867pt;}
._68{width:135.624107pt;}
._26{width:137.034667pt;}
._31{width:138.847147pt;}
._12{width:140.639147pt;}
._82{width:142.421333pt;}
._30{width:144.448427pt;}
._19{width:146.619307pt;}
._13{width:149.253120pt;}
._c{width:150.382507pt;}
._8a{width:151.813333pt;}
._77{width:155.880107pt;}
._54{width:158.470187pt;}
._4d{width:159.410773pt;}
._61{width:160.772693pt;}
._6b{width:165.648213pt;}
._47{width:168.242773pt;}
._85{width:170.354133pt;}
._7c{width:172.786773pt;}
._10{width:173.728853pt;}
._8c{width:177.029333pt;}
._4e{width:178.272853pt;}
._4b{width:180.633173pt;}
._45{width:184.483413pt;}
._84{width:187.595093pt;}
._55{width:189.334613pt;}
._4a{width:191.177813pt;}
._6a{width:192.985173pt;}
._3b{width:194.608213pt;}
._71{width:199.549867pt;}
._57{width:202.303573pt;}
._5f{width:203.684693pt;}
._5e{width:204.673707pt;}
._6c{width:206.719573pt;}
._3c{width:208.797867pt;}
._81{width:215.701333pt;}
._3a{width:223.331413pt;}
._35{width:224.290987pt;}
._4c{width:225.686613pt;}
._7b{width:228.196693pt;}
._46{width:231.982933pt;}
._48{width:243.390293pt;}
._39{width:245.115733pt;}
._37{width:248.955733pt;}
._89{width:258.953387pt;}
._8b{width:280.169387pt;}
._3d{width:757.290667pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:53.248000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fsd{font-size:85.120000pt;}
.fs2{font-size:93.440000pt;}
.fsc{font-size:192.000000pt;}
.y23{bottom:-1.120000pt;}
.y0{bottom:0.000000pt;}
.y1aa{bottom:3.040000pt;}
.y120{bottom:3.360000pt;}
.y160{bottom:3.386667pt;}
.y194{bottom:3.400000pt;}
.yc0{bottom:3.680000pt;}
.y46{bottom:5.280000pt;}
.y49{bottom:6.240000pt;}
.yb9{bottom:9.120000pt;}
.y140{bottom:11.360000pt;}
.y1a0{bottom:11.386667pt;}
.ya9{bottom:11.493333pt;}
.yc3{bottom:12.480000pt;}
.y11d{bottom:15.200000pt;}
.y1a9{bottom:17.440000pt;}
.y105{bottom:19.200000pt;}
.y12d{bottom:19.360000pt;}
.y19f{bottom:19.386667pt;}
.y17c{bottom:19.400000pt;}
.ybb{bottom:20.320000pt;}
.ybf{bottom:21.280000pt;}
.y48{bottom:24.800000pt;}
.ya8{bottom:25.893333pt;}
.yc2{bottom:30.080000pt;}
.yb8{bottom:31.520000pt;}
.y1a8{bottom:31.840000pt;}
.y12e{bottom:35.360000pt;}
.y11c{bottom:36.640000pt;}
.ybe{bottom:38.880000pt;}
.ya7{bottom:40.320000pt;}
.yba{bottom:42.720000pt;}
.y47{bottom:43.680000pt;}
.y104{bottom:44.960000pt;}
.y1a7{bottom:46.240000pt;}
.yc1{bottom:47.680000pt;}
.yfc{bottom:48.506667pt;}
.y3{bottom:50.880000pt;}
.yb7{bottom:53.920000pt;}
.y45{bottom:54.080000pt;}
.y9f{bottom:55.653333pt;}
.ybd{bottom:56.480000pt;}
.y11b{bottom:58.080000pt;}
.yfb{bottom:64.506667pt;}
.y27{bottom:65.312000pt;}
.y2{bottom:68.512000pt;}
.y103{bottom:70.720000pt;}
.y44{bottom:74.432000pt;}
.y11a{bottom:79.520000pt;}
.y26{bottom:79.712000pt;}
.yfa{bottom:80.506667pt;}
.y43{bottom:88.512000pt;}
.y1{bottom:88.832000pt;}
.ya0{bottom:94.880000pt;}
.ye6{bottom:96.480000pt;}
.yf9{bottom:96.506667pt;}
.y25{bottom:97.472000pt;}
.y9d{bottom:106.213333pt;}
.y119{bottom:109.280000pt;}
.yf2{bottom:113.573333pt;}
.y99{bottom:113.632000pt;}
.y102{bottom:122.240000pt;}
.y117{bottom:129.472000pt;}
.y98{bottom:133.786667pt;}
.ya1{bottom:134.106667pt;}
.y21{bottom:136.026667pt;}
.y72{bottom:137.146667pt;}
.y101{bottom:148.000000pt;}
.y116{bottom:149.626667pt;}
.yf3{bottom:149.986667pt;}
.y97{bottom:154.106667pt;}
.y149{bottom:154.586667pt;}
.y71{bottom:155.546667pt;}
.y9a{bottom:156.640000pt;}
.y20{bottom:158.266667pt;}
.yaa{bottom:159.133333pt;}
.y100{bottom:169.120000pt;}
.y115{bottom:169.946667pt;}
.y9b{bottom:172.093333pt;}
.y70{bottom:172.346667pt;}
.ya2{bottom:173.346667pt;}
.y96{bottom:174.266667pt;}
.y148{bottom:174.906667pt;}
.y1f{bottom:181.786667pt;}
.yf4{bottom:186.400000pt;}
.yfd{bottom:189.413333pt;}
.yd5{bottom:189.626667pt;}
.y114{bottom:190.106667pt;}
.y147{bottom:191.386667pt;}
.y6f{bottom:193.786667pt;}
.y95{bottom:194.586667pt;}
.yea{bottom:201.413333pt;}
.y146{bottom:208.026667pt;}
.y1e{bottom:209.786667pt;}
.yed{bottom:210.146667pt;}
.y113{bottom:210.426667pt;}
.yf1{bottom:211.613333pt;}
.ya3{bottom:212.573333pt;}
.y6e{bottom:213.946667pt;}
.y94{bottom:214.746667pt;}
.y9c{bottom:219.973333pt;}
.yf5{bottom:222.813333pt;}
.ye9{bottom:222.880000pt;}
.y170{bottom:223.066667pt;}
.y145{bottom:224.506667pt;}
.yeb{bottom:226.533333pt;}
.yf0{bottom:229.826667pt;}
.yd4{bottom:230.106667pt;}
.y112{bottom:230.586667pt;}
.yee{bottom:231.613333pt;}
.y6d{bottom:234.266667pt;}
.y93{bottom:235.066667pt;}
.y144{bottom:236.186667pt;}
.y1d{bottom:237.786667pt;}
.y16f{bottom:243.226667pt;}
.y22{bottom:248.186667pt;}
.yd3{bottom:250.266667pt;}
.y111{bottom:250.906667pt;}
.ya4{bottom:251.813333pt;}
.yef{bottom:252.026667pt;}
.y143{bottom:252.986667pt;}
.y6c{bottom:254.426667pt;}
.y92{bottom:255.226667pt;}
.yec{bottom:258.213333pt;}
.yf6{bottom:259.226667pt;}
.y16e{bottom:259.866667pt;}
.ye8{bottom:265.506667pt;}
.y1c{bottom:265.786667pt;}
.y142{bottom:269.626667pt;}
.yd2{bottom:270.586667pt;}
.y110{bottom:271.066667pt;}
.y9e{bottom:273.306667pt;}
.y6b{bottom:274.746667pt;}
.y91{bottom:275.546667pt;}
.y16d{bottom:276.346667pt;}
.y141{bottom:286.306667pt;}
.ye7{bottom:288.066667pt;}
.yd1{bottom:290.786667pt;}
.ya5{bottom:291.040000pt;}
.y10f{bottom:291.426667pt;}
.y16c{bottom:293.026667pt;}
.y6a{bottom:293.346667pt;}
.y1b{bottom:293.826667pt;}
.yf7{bottom:295.653333pt;}
.y90{bottom:295.746667pt;}
.y13f{bottom:302.946667pt;}
.y16b{bottom:309.506667pt;}
.y69{bottom:309.666667pt;}
.yd0{bottom:311.106667pt;}
.y10e{bottom:311.586667pt;}
.yfe{bottom:314.213333pt;}
.y8f{bottom:316.066667pt;}
.y16a{bottom:321.506667pt;}
.y1a{bottom:321.826667pt;}
.y10d{bottom:329.666667pt;}
.y68{bottom:329.986667pt;}
.ya6{bottom:330.266667pt;}
.ycf{bottom:331.266667pt;}
.yf8{bottom:332.066667pt;}
.y13e{bottom:335.586667pt;}
.y8e{bottom:336.226667pt;}
.y169{bottom:338.306667pt;}
.y1be{bottom:339.906667pt;}
.y19{bottom:349.826667pt;}
.y67{bottom:350.146667pt;}
.yce{bottom:351.586667pt;}
.y13d{bottom:352.226667pt;}
.y168{bottom:354.946667pt;}
.y8d{bottom:356.546667pt;}
.y10c{bottom:359.106667pt;}
.y1bd{bottom:360.226667pt;}
.y41{bottom:364.066667pt;}
.y13c{bottom:369.026667pt;}
.y66{bottom:370.466667pt;}
.y167{bottom:371.586667pt;}
.ycd{bottom:371.746667pt;}
.y8c{bottom:376.706667pt;}
.y18{bottom:377.826667pt;}
.y40{bottom:378.786667pt;}
.y10b{bottom:379.266667pt;}
.y13a{bottom:385.666667pt;}
.y166{bottom:388.226667pt;}
.y1ce{bottom:388.546667pt;}
.ycc{bottom:389.826667pt;}
.y65{bottom:390.626667pt;}
.y1bc{bottom:393.346667pt;}
.y3f{bottom:394.146667pt;}
.y8b{bottom:397.026667pt;}
.y10a{bottom:399.586667pt;}
.y13b{bottom:402.306667pt;}
.y165{bottom:404.866667pt;}
.y1cd{bottom:405.186667pt;}
.y17{bottom:405.826667pt;}
.y1bb{bottom:409.826667pt;}
.y3e{bottom:414.466667pt;}
.y8a{bottom:417.186667pt;}
.y1a5{bottom:417.826667pt;}
.ycb{bottom:419.266667pt;}
.y109{bottom:419.746667pt;}
.y164{bottom:421.506667pt;}
.y1cc{bottom:421.666667pt;}
.y64{bottom:424.226667pt;}
.y1ba{bottom:426.466667pt;}
.y16{bottom:433.826667pt;}
.y1a4{bottom:434.306667pt;}
.y3d{bottom:434.626667pt;}
.y89{bottom:437.506667pt;}
.y163{bottom:438.306667pt;}
.y1b9{bottom:438.466667pt;}
.yca{bottom:439.426667pt;}
.y108{bottom:440.066667pt;}
.y63{bottom:444.546667pt;}
.y18b{bottom:445.666667pt;}
.y1a3{bottom:450.946667pt;}
.y139{bottom:454.786667pt;}
.y3c{bottom:454.946667pt;}
.y88{bottom:457.666667pt;}
.yc9{bottom:459.746667pt;}
.y107{bottom:460.226667pt;}
.y15{bottom:461.826667pt;}
.y62{bottom:464.706667pt;}
.y1a2{bottom:467.426667pt;}
.y1b8{bottom:471.106667pt;}
.ye5{bottom:471.426667pt;}
.y162{bottom:471.586667pt;}
.y3b{bottom:475.106667pt;}
.y138{bottom:476.066667pt;}
.y87{bottom:477.986667pt;}
.y18a{bottom:479.266667pt;}
.yc8{bottom:479.906667pt;}
.y106{bottom:480.546667pt;}
.y1a1{bottom:484.066667pt;}
.y61{bottom:485.026667pt;}
.y1b7{bottom:487.746667pt;}
.y1cb{bottom:487.906667pt;}
.y161{bottom:488.226667pt;}
.y14{bottom:489.826667pt;}
.y137{bottom:495.266667pt;}
.y3a{bottom:495.426667pt;}
.y19e{bottom:496.066667pt;}
.y86{bottom:498.146667pt;}
.y189{bottom:498.306667pt;}
.yc7{bottom:500.226667pt;}
.ye4{bottom:500.706667pt;}
.y1b6{bottom:504.386667pt;}
.y1ca{bottom:504.546667pt;}
.y15f{bottom:504.866667pt;}
.y60{bottom:505.213333pt;}
.y136{bottom:511.773333pt;}
.y188{bottom:514.973333pt;}
.y39{bottom:515.613333pt;}
.y85{bottom:516.253333pt;}
.y13{bottom:517.853333pt;}
.yc6{bottom:520.413333pt;}
.ye3{bottom:521.053333pt;}
.y15e{bottom:521.533333pt;}
.y1c9{bottom:522.173333pt;}
.y5f{bottom:525.533333pt;}
.y135{bottom:528.413333pt;}
.y19d{bottom:528.733333pt;}
.y187{bottom:531.453333pt;}
.y38{bottom:535.933333pt;}
.y1b5{bottom:537.853333pt;}
.y15d{bottom:538.333333pt;}
.y134{bottom:540.093333pt;}
.yc5{bottom:540.733333pt;}
.ye2{bottom:541.213333pt;}
.y1c8{bottom:542.493333pt;}
.y19c{bottom:545.373333pt;}
.y5e{bottom:545.693333pt;}
.y12{bottom:545.853333pt;}
.y186{bottom:548.093333pt;}
.y84{bottom:552.413333pt;}
.y1b4{bottom:554.493333pt;}
.y15c{bottom:554.973333pt;}
.y37{bottom:556.093333pt;}
.y133{bottom:556.733333pt;}
.y185{bottom:560.093333pt;}
.yc4{bottom:560.893333pt;}
.ye1{bottom:561.533333pt;}
.y5d{bottom:565.853333pt;}
.y15b{bottom:571.613333pt;}
.y83{bottom:572.573333pt;}
.y132{bottom:573.373333pt;}
.y11{bottom:573.853333pt;}
.y36{bottom:576.413333pt;}
.y184{bottom:576.733333pt;}
.y19b{bottom:578.013333pt;}
.y1c7{bottom:578.173333pt;}
.ye0{bottom:581.693333pt;}
.ybc{bottom:583.453333pt;}
.y1b3{bottom:587.133333pt;}
.y15a{bottom:588.253333pt;}
.y131{bottom:590.173333pt;}
.y82{bottom:592.893333pt;}
.y183{bottom:593.373333pt;}
.y19a{bottom:594.813333pt;}
.y35{bottom:596.573333pt;}
.y5c{bottom:599.613333pt;}
.y10{bottom:601.853333pt;}
.ydf{bottom:602.013333pt;}
.y1b2{bottom:603.773333pt;}
.y159{bottom:604.893333pt;}
.y130{bottom:606.813333pt;}
.y182{bottom:610.013333pt;}
.y199{bottom:611.453333pt;}
.y81{bottom:613.053333pt;}
.y34{bottom:617.533333pt;}
.y5b{bottom:619.773333pt;}
.y1b1{bottom:620.413333pt;}
.y158{bottom:621.533333pt;}
.yde{bottom:622.173333pt;}
.y1c6{bottom:622.813333pt;}
.y12f{bottom:623.453333pt;}
.y181{bottom:626.813333pt;}
.y198{bottom:628.093333pt;}
.yf{bottom:629.853333pt;}
.y80{bottom:633.373333pt;}
.y157{bottom:638.333333pt;}
.y5a{bottom:640.093333pt;}
.ydd{bottom:642.493333pt;}
.y180{bottom:643.453333pt;}
.y33{bottom:646.973333pt;}
.y7f{bottom:653.533333pt;}
.yb6{bottom:654.653333pt;}
.y1c4{bottom:655.453333pt;}
.y12b{bottom:656.733333pt;}
.ye{bottom:657.853333pt;}
.y156{bottom:658.493333pt;}
.y59{bottom:658.653333pt;}
.y17f{bottom:660.093333pt;}
.y197{bottom:660.733333pt;}
.ydc{bottom:662.653333pt;}
.y32{bottom:667.133333pt;}
.y1b0{bottom:669.053333pt;}
.y1c5{bottom:672.093333pt;}
.y12c{bottom:673.373333pt;}
.y7e{bottom:673.853333pt;}
.y58{bottom:674.973333pt;}
.y17e{bottom:676.733333pt;}
.y196{bottom:677.373333pt;}
.y155{bottom:679.773333pt;}
.ydb{bottom:682.973333pt;}
.yd{bottom:685.853333pt;}
.y31{bottom:687.453333pt;}
.y17d{bottom:693.373333pt;}
.y7d{bottom:694.013333pt;}
.y57{bottom:695.293333pt;}
.y154{bottom:698.973333pt;}
.y1af{bottom:701.853333pt;}
.yda{bottom:703.133333pt;}
.y30{bottom:707.613333pt;}
.y17b{bottom:710.013333pt;}
.y195{bottom:710.813333pt;}
.yc{bottom:713.853333pt;}
.y7c{bottom:714.333333pt;}
.y56{bottom:715.453333pt;}
.yd9{bottom:723.453333pt;}
.y1c3{bottom:724.253333pt;}
.y12a{bottom:725.853333pt;}
.y193{bottom:727.453333pt;}
.y2f{bottom:727.933333pt;}
.y153{bottom:732.133333pt;}
.y7b{bottom:734.533333pt;}
.yb5{bottom:735.653333pt;}
.y55{bottom:735.813333pt;}
.yb{bottom:741.893333pt;}
.y17a{bottom:742.853333pt;}
.yd8{bottom:743.653333pt;}
.y152{bottom:743.813333pt;}
.y192{bottom:744.133333pt;}
.y1c2{bottom:745.733333pt;}
.y129{bottom:747.333333pt;}
.y2e{bottom:748.933333pt;}
.y7a{bottom:752.613333pt;}
.yb4{bottom:754.853333pt;}
.y54{bottom:755.973333pt;}
.y179{bottom:759.493333pt;}
.y151{bottom:760.453333pt;}
.y191{bottom:760.773333pt;}
.yd7{bottom:763.973333pt;}
.y1c1{bottom:764.773333pt;}
.y128{bottom:766.373333pt;}
.yff{bottom:767.173333pt;}
.ya{bottom:769.893333pt;}
.y178{bottom:776.133333pt;}
.y53{bottom:776.293333pt;}
.y150{bottom:777.093333pt;}
.y190{bottom:777.413333pt;}
.y2d{bottom:778.213333pt;}
.y1c0{bottom:781.413333pt;}
.y79{bottom:782.053333pt;}
.y127{bottom:783.013333pt;}
.y1ae{bottom:783.813333pt;}
.yb3{bottom:784.133333pt;}
.y118{bottom:789.093333pt;}
.y177{bottom:792.773333pt;}
.y1bf{bottom:793.413333pt;}
.y14f{bottom:793.733333pt;}
.y126{bottom:794.373333pt;}
.y52{bottom:796.453333pt;}
.y9{bottom:797.893333pt;}
.y2c{bottom:798.533333pt;}
.y1ad{bottom:800.453333pt;}
.y78{bottom:802.213333pt;}
.yb2{bottom:804.453333pt;}
.y176{bottom:809.413333pt;}
.y18f{bottom:810.053333pt;}
.y125{bottom:811.013333pt;}
.y51{bottom:816.773333pt;}
.y1ac{bottom:817.093333pt;}
.y2b{bottom:818.693333pt;}
.y77{bottom:822.533333pt;}
.yb1{bottom:824.613333pt;}
.y8{bottom:825.893333pt;}
.y175{bottom:826.053333pt;}
.y14e{bottom:826.373333pt;}
.y18e{bottom:826.853333pt;}
.y124{bottom:827.653333pt;}
.y1ab{bottom:833.893333pt;}
.y50{bottom:836.933333pt;}
.y2a{bottom:839.013333pt;}
.y76{bottom:842.693333pt;}
.y174{bottom:842.853333pt;}
.y14d{bottom:843.173333pt;}
.y123{bottom:844.453333pt;}
.yb0{bottom:844.933333pt;}
.y7{bottom:853.893333pt;}
.y4f{bottom:855.013333pt;}
.y173{bottom:859.493333pt;}
.y29{bottom:859.813333pt;}
.y122{bottom:861.093333pt;}
.y75{bottom:863.013333pt;}
.yaf{bottom:865.093333pt;}
.y1a6{bottom:866.533333pt;}
.y4e{bottom:874.693333pt;}
.y14b{bottom:875.813333pt;}
.y18c{bottom:876.133333pt;}
.y121{bottom:877.733333pt;}
.y6{bottom:881.893333pt;}
.y74{bottom:883.173333pt;}
.yae{bottom:885.413333pt;}
.y28{bottom:887.813333pt;}
.y4d{bottom:888.453333pt;}
.y171{bottom:892.133333pt;}
.y14c{bottom:892.453333pt;}
.y18d{bottom:892.773333pt;}
.y11f{bottom:894.373333pt;}
.y73{bottom:903.493333pt;}
.yad{bottom:905.573333pt;}
.y4c{bottom:906.053333pt;}
.y24{bottom:907.973333pt;}
.y172{bottom:908.773333pt;}
.y5{bottom:909.893333pt;}
.y11e{bottom:914.533333pt;}
.y4b{bottom:923.653333pt;}
.yac{bottom:925.893333pt;}
.y4{bottom:937.893333pt;}
.y4a{bottom:942.373333pt;}
.y14a{bottom:944.933333pt;}
.yd6{bottom:945.893333pt;}
.yab{bottom:946.053333pt;}
.y42{bottom:994.080000pt;}
.h20{height:16.000000pt;}
.h25{height:16.032000pt;}
.h1b{height:31.828125pt;}
.h24{height:32.000000pt;}
.h27{height:32.032000pt;}
.h21{height:38.625000pt;}
.ha{height:42.649687pt;}
.h12{height:42.745000pt;}
.h15{height:47.380000pt;}
.h2{height:47.742188pt;}
.h11{height:47.869500pt;}
.h23{height:48.000000pt;}
.h26{height:48.640000pt;}
.hf{height:49.148438pt;}
.hc{height:52.834688pt;}
.h19{height:52.962000pt;}
.hd{height:54.390938pt;}
.h1e{height:54.734062pt;}
.h10{height:55.388438pt;}
.h29{height:57.600000pt;}
.h9{height:57.632000pt;}
.h1{height:58.563750pt;}
.h7{height:60.288750pt;}
.h6{height:61.792000pt;}
.h8{height:63.656250pt;}
.h22{height:64.640000pt;}
.hb{height:65.531250pt;}
.h18{height:68.081771pt;}
.h5{height:68.748750pt;}
.h14{height:70.400000pt;}
.h28{height:74.240000pt;}
.h4{height:74.477812pt;}
.h17{height:75.388437pt;}
.h13{height:76.032000pt;}
.h1f{height:84.662813pt;}
.h3{height:95.675625pt;}
.h1c{height:165.786667pt;}
.h1a{height:187.546667pt;}
.h1d{height:190.968750pt;}
.he{height:348.640000pt;}
.h16{height:366.880000pt;}
.h0{height:1056.000000pt;}
.w2e{width:41.280000pt;}
.w1f{width:44.480000pt;}
.w1b{width:53.312000pt;}
.w27{width:55.520000pt;}
.w3c{width:57.312000pt;}
.w20{width:59.200000pt;}
.w33{width:64.960000pt;}
.w30{width:65.280000pt;}
.w34{width:65.760000pt;}
.wc{width:65.920000pt;}
.w21{width:70.112000pt;}
.w41{width:73.600000pt;}
.w3f{width:74.240000pt;}
.w3a{width:76.960000pt;}
.w31{width:77.280000pt;}
.w2f{width:77.312000pt;}
.w38{width:77.760000pt;}
.w2a{width:79.040000pt;}
.w3d{width:79.360000pt;}
.w3e{width:79.552000pt;}
.w2c{width:79.680000pt;}
.w24{width:84.160000pt;}
.w22{width:84.480000pt;}
.w25{width:84.960000pt;}
.w37{width:89.312000pt;}
.w1c{width:95.200000pt;}
.w36{width:101.280000pt;}
.w16{width:101.312000pt;}
.w15{width:101.440000pt;}
.w29{width:103.232000pt;}
.wf{width:107.360000pt;}
.w11{width:107.392000pt;}
.w28{width:109.440000pt;}
.w10{width:113.312000pt;}
.w18{width:124.160000pt;}
.w12{width:125.600000pt;}
.w2{width:142.746667pt;}
.we{width:173.626667pt;}
.wd{width:175.386667pt;}
.wa{width:190.106667pt;}
.w14{width:191.546667pt;}
.w7{width:195.066667pt;}
.w5{width:208.986667pt;}
.w23{width:215.706667pt;}
.w6{width:217.306667pt;}
.w2d{width:221.626667pt;}
.w9{width:256.186667pt;}
.w39{width:269.786667pt;}
.w26{width:273.306667pt;}
.w2b{width:292.986667pt;}
.w40{width:300.346667pt;}
.w3b{width:311.546667pt;}
.w35{width:329.626667pt;}
.w32{width:365.346667pt;}
.w1e{width:368.546667pt;}
.wb{width:389.666667pt;}
.w4{width:427.360000pt;}
.w19{width:436.226667pt;}
.w17{width:437.666667pt;}
.w13{width:455.586667pt;}
.w1d{width:479.426667pt;}
.w1a{width:479.746667pt;}
.w8{width:661.760000pt;}
.w3{width:677.093333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:7.040000pt;}
.x2c{left:8.000000pt;}
.x9{left:9.600000pt;}
.xa{left:10.880000pt;}
.x27{left:12.640000pt;}
.x4b{left:14.240000pt;}
.x2d{left:15.520000pt;}
.x29{left:16.480000pt;}
.x61{left:17.440000pt;}
.x2a{left:19.200000pt;}
.x2b{left:20.640000pt;}
.x44{left:22.560000pt;}
.x63{left:23.680000pt;}
.x40{left:24.640000pt;}
.x68{left:25.920000pt;}
.x48{left:27.680000pt;}
.x1d{left:29.344000pt;}
.x62{left:30.720000pt;}
.x46{left:31.680000pt;}
.x28{left:32.640000pt;}
.x39{left:34.400000pt;}
.x12{left:36.736000pt;}
.x11{left:38.586667pt;}
.x38{left:40.160000pt;}
.x58{left:41.600000pt;}
.x54{left:42.880000pt;}
.x10{left:43.773333pt;}
.x53{left:44.960000pt;}
.x55{left:46.400000pt;}
.x52{left:47.866667pt;}
.x20{left:49.274667pt;}
.x57{left:51.040000pt;}
.x59{left:52.160000pt;}
.x24{left:53.440000pt;}
.x26{left:54.560000pt;}
.x1f{left:56.954667pt;}
.x21{left:58.394667pt;}
.x23{left:61.600000pt;}
.x2e{left:66.053333pt;}
.x60{left:68.640000pt;}
.x2{left:69.760000pt;}
.x4a{left:74.120000pt;}
.x14{left:75.426667pt;}
.x13{left:78.213333pt;}
.xc{left:84.800000pt;}
.x30{left:94.053333pt;}
.x1{left:96.031988pt;}
.x5{left:97.311988pt;}
.x67{left:107.680000pt;}
.x6{left:109.311988pt;}
.x74{left:111.200000pt;}
.x7{left:122.751988pt;}
.x43{left:128.000000pt;}
.x3{left:132.346667pt;}
.x8{left:144.026655pt;}
.x15{left:145.506667pt;}
.x34{left:151.493333pt;}
.xd{left:154.853333pt;}
.x1e{left:166.266655pt;}
.x56{left:179.866667pt;}
.x41{left:181.946667pt;}
.x2f{left:184.733333pt;}
.x51{left:188.826667pt;}
.x3a{left:192.253333pt;}
.x16{left:203.106667pt;}
.x17{left:207.066667pt;}
.x3b{left:228.346667pt;}
.x4d{left:270.626667pt;}
.x18{left:287.453333pt;}
.x19{left:288.640000pt;}
.xe{left:298.173333pt;}
.x22{left:306.466667pt;}
.x3c{left:313.120000pt;}
.x69{left:318.466667pt;}
.x31{left:333.146667pt;}
.x1b{left:343.226667pt;}
.x1c{left:347.200000pt;}
.x6a{left:360.386667pt;}
.xf{left:364.386667pt;}
.x1a{left:367.746667pt;}
.x64{left:370.146667pt;}
.x4e{left:378.626667pt;}
.x35{left:391.106667pt;}
.x70{left:408.226667pt;}
.x65{left:426.493333pt;}
.x6b{left:438.493333pt;}
.x32{left:452.800000pt;}
.x42{left:462.493333pt;}
.x5c{left:465.213333pt;}
.x71{left:466.173333pt;}
.x3d{left:467.613333pt;}
.x47{left:486.493333pt;}
.x4f{left:492.573333pt;}
.x4{left:504.093321pt;}
.x36{left:509.440000pt;}
.x5d{left:510.493333pt;}
.x25{left:524.413333pt;}
.x45{left:529.693333pt;}
.xb{left:534.173321pt;}
.x66{left:536.573333pt;}
.x3e{left:545.920000pt;}
.x49{left:553.053333pt;}
.x3f{left:566.106667pt;}
.x5e{left:570.493333pt;}
.x33{left:572.093333pt;}
.x5a{left:576.413333pt;}
.x6c{left:582.493333pt;}
.x6e{left:594.493333pt;}
.x50{left:600.613333pt;}
.x72{left:626.373333pt;}
.x37{left:628.773333pt;}
.x5b{left:630.533333pt;}
.x5f{left:641.253333pt;}
.x6d{left:660.453333pt;}
.x6f{left:684.453333pt;}
.x73{left:692.293333pt;}
}




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