
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3943d8f1031bb821a8df53ea.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_bda15158592e99ed4ab0406d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_bf1e1a3735bd442e6f4a4b0f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_6e41dfe0e2888f3845650e84.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_fdd36c68ec90cc96e28176a2.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e28774b487448e86f0f978ed.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_54c27d1eb2b33b6201bb55a7.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls19{letter-spacing:-0.444600px;}
.ls1f{letter-spacing:-0.423600px;}
.ls1b{letter-spacing:-0.243600px;}
.ls13{letter-spacing:-0.232800px;}
.lsb{letter-spacing:-0.186600px;}
.lse{letter-spacing:-0.160800px;}
.ls6{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.121200px;}
.ls16{letter-spacing:-0.117600px;}
.ls5{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls1a{letter-spacing:-0.070800px;}
.ls12{letter-spacing:-0.063600px;}
.ls21{letter-spacing:-0.038880px;}
.ls1c{letter-spacing:-0.014760px;}
.ls9{letter-spacing:-0.008400px;}
.ls17{letter-spacing:-0.007560px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.116400px;}
.ls18{letter-spacing:0.127200px;}
.lsc{letter-spacing:0.173400px;}
.ls8{letter-spacing:0.174600px;}
.lsf{letter-spacing:0.199200px;}
.ls15{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.534600px;}
.ls20{letter-spacing:14.246640px;}
.ls1e{letter-spacing:47.726640px;}
.ls1d{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.425600px;}
.ws5{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.353600px;}
.wsf{word-spacing:-13.342800px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.218840px;}
.ws14{word-spacing:-13.211640px;}
.ws16{word-spacing:-13.187520px;}
.wsd{word-spacing:-13.162800px;}
.ws12{word-spacing:-13.155600px;}
.ws9{word-spacing:-13.065600px;}
.ws4{word-spacing:-13.039800px;}
.wse{word-spacing:-12.993600px;}
.ws13{word-spacing:-12.982800px;}
.ws15{word-spacing:-12.802800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._15{margin-left:-3.596050px;}
._a{margin-left:-2.412236px;}
._4{margin-left:-1.288440px;}
._0{width:1.190640px;}
._13{width:3.186600px;}
._2{width:5.003543px;}
._1{width:6.192588px;}
._3{width:7.294090px;}
._f{width:8.399219px;}
._14{width:9.438600px;}
._d{width:11.182200px;}
._e{width:12.225721px;}
._17{width:14.274360px;}
._12{width:15.330600px;}
._6{width:17.055959px;}
._5{width:18.216600px;}
._9{width:19.599000px;}
._7{width:21.102000px;}
._8{width:22.461361px;}
._16{width:23.577477px;}
._1f{width:25.310520px;}
._10{width:26.813400px;}
._11{width:28.254243px;}
._42{width:29.819520px;}
._b{width:31.563000px;}
._c{width:32.904120px;}
._4d{width:34.569000px;}
._5c{width:35.591040px;}
._1b{width:37.274400px;}
._29{width:38.356560px;}
._35{width:40.039920px;}
._58{width:42.925680px;}
._21{width:44.188200px;}
._38{width:46.172160px;}
._2a{width:47.494800px;}
._33{width:49.118040px;}
._5d{width:50.166000px;}
._55{width:51.222240px;}
._56{width:52.304400px;}
._22{width:53.386560px;}
._2c{width:54.829440px;}
._2b{width:56.272320px;}
._49{width:57.895560px;}
._23{width:60.059880px;}
._20{width:63.967680px;}
._40{width:65.844720px;}
._5b{width:68.176080px;}
._41{width:70.821360px;}
._48{width:71.843400px;}
._3d{width:76.532760px;}
._30{width:78.156000px;}
._46{width:79.598880px;}
._28{width:80.981640px;}
._59{width:82.484640px;}
._36{width:84.709080px;}
._1e{width:86.091840px;}
._53{width:87.354360px;}
._19{width:90.781200px;}
._52{width:93.907440px;}
._1c{width:95.350320px;}
._4f{width:106.893360px;}
._3c{width:108.396360px;}
._1d{width:109.899360px;}
._39{width:112.244040px;}
._31{width:121.021560px;}
._27{width:122.765040px;}
._25{width:131.843160px;}
._26{width:138.636720px;}
._4a{width:145.009440px;}
._18{width:147.474360px;}
._3f{width:148.917240px;}
._2e{width:150.600600px;}
._44{width:151.742880px;}
._34{width:153.847080px;}
._3b{width:154.929240px;}
._2f{width:159.859080px;}
._47{width:165.810960px;}
._4e{width:171.161640px;}
._5a{width:173.145600px;}
._2d{width:179.097480px;}
._32{width:185.229720px;}
._24{width:186.913080px;}
._51{width:189.077400px;}
._3e{width:202.123440px;}
._57{width:203.638080px;}
._43{width:205.309800px;}
._3a{width:212.283720px;}
._4c{width:215.409960px;}
._54{width:220.880880px;}
._50{width:224.969040px;}
._4b{width:270.900720px;}
._1a{width:278.596080px;}
._37{width:299.818440px;}
._5e{width:322.002120px;}
._45{width:358.375320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:7.830000px;}
.ye3{bottom:7.860000px;}
.y73{bottom:7.920000px;}
.y6f{bottom:25.380000px;}
.y69{bottom:25.470000px;}
.ya5{bottom:25.500000px;}
.yad{bottom:38.520000px;}
.y6d{bottom:43.020000px;}
.ye2{bottom:43.050000px;}
.y75{bottom:43.110000px;}
.yaa{bottom:60.570000px;}
.y6c{bottom:60.660000px;}
.y72{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.yac{bottom:78.120000px;}
.ya9{bottom:78.210000px;}
.y71{bottom:78.240000px;}
.ya8{bottom:95.760000px;}
.yb2{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y1fe{bottom:111.720000px;}
.y1d5{bottom:112.170000px;}
.ya7{bottom:113.400000px;}
.y7e{bottom:113.880000px;}
.yf2{bottom:114.690000px;}
.y1db{bottom:115.680000px;}
.y16c{bottom:116.130000px;}
.y1ef{bottom:116.580000px;}
.y210{bottom:121.530000px;}
.yb9{bottom:122.250000px;}
.y110{bottom:124.680000px;}
.y17e{bottom:125.130000px;}
.ya3{bottom:125.580000px;}
.y2a{bottom:127.740000px;}
.y4a{bottom:128.100000px;}
.y19f{bottom:129.720000px;}
.y59{bottom:130.800000px;}
.y7d{bottom:131.430000px;}
.yf1{bottom:132.330000px;}
.y16b{bottom:133.680000px;}
.y156{bottom:133.860000px;}
.ycf{bottom:134.130000px;}
.y20f{bottom:139.170000px;}
.y233{bottom:139.350000px;}
.yb8{bottom:139.800000px;}
.y10f{bottom:142.320000px;}
.y17d{bottom:142.680000px;}
.ya2{bottom:143.130000px;}
.y29{bottom:145.290000px;}
.y49{bottom:145.650000px;}
.y19e{bottom:147.270000px;}
.y58{bottom:148.440000px;}
.y7c{bottom:149.070000px;}
.yf0{bottom:149.880000px;}
.y16a{bottom:151.320000px;}
.y155{bottom:151.500000px;}
.yce{bottom:151.680000px;}
.y20e{bottom:156.720000px;}
.y232{bottom:156.990000px;}
.yb7{bottom:157.350000px;}
.y13a{bottom:158.250000px;}
.y10e{bottom:159.870000px;}
.y17c{bottom:160.320000px;}
.ya1{bottom:160.680000px;}
.y28{bottom:162.930000px;}
.y1fd{bottom:164.910000px;}
.y57{bottom:165.990000px;}
.y7b{bottom:166.620000px;}
.yef{bottom:167.430000px;}
.y169{bottom:168.870000px;}
.y154{bottom:169.050000px;}
.ycd{bottom:169.320000px;}
.y1d4{bottom:173.910000px;}
.y20d{bottom:174.270000px;}
.yb6{bottom:174.990000px;}
.y17b{bottom:177.870000px;}
.ya0{bottom:178.320000px;}
.y27{bottom:180.480000px;}
.y48{bottom:181.290000px;}
.y1fc{bottom:182.460000px;}
.y19d{bottom:182.910000px;}
.y231{bottom:183.540000px;}
.y56{bottom:183.630000px;}
.y7a{bottom:184.260000px;}
.yee{bottom:185.070000px;}
.y168{bottom:186.510000px;}
.y153{bottom:186.600000px;}
.ycc{bottom:186.870000px;}
.y1ee{bottom:187.320000px;}
.y20c{bottom:191.910000px;}
.yb5{bottom:192.540000px;}
.y10d{bottom:195.510000px;}
.y9f{bottom:195.870000px;}
.y26{bottom:198.120000px;}
.y47{bottom:198.840000px;}
.y19c{bottom:200.460000px;}
.y230{bottom:201.090000px;}
.y55{bottom:201.180000px;}
.y79{bottom:201.810000px;}
.yed{bottom:202.620000px;}
.y17a{bottom:204.510000px;}
.y1ed{bottom:204.870000px;}
.y1d3{bottom:209.460000px;}
.y10c{bottom:213.060000px;}
.y152{bottom:213.240000px;}
.y1a9{bottom:213.510000px;}
.y25{bottom:215.670000px;}
.y19b{bottom:218.100000px;}
.y22f{bottom:218.730000px;}
.yb4{bottom:219.090000px;}
.y78{bottom:219.360000px;}
.yec{bottom:220.260000px;}
.y1da{bottom:222.060000px;}
.y9e{bottom:222.510000px;}
.y1d2{bottom:227.100000px;}
.y20b{bottom:227.460000px;}
.y10b{bottom:230.610000px;}
.y46{bottom:231.060000px;}
.y19a{bottom:235.650000px;}
.y54{bottom:236.730000px;}
.y1d9{bottom:239.610000px;}
.ycb{bottom:240.060000px;}
.y24{bottom:242.580000px;}
.y1d1{bottom:244.650000px;}
.y20a{bottom:245.100000px;}
.y22e{bottom:245.280000px;}
.y77{bottom:246.000000px;}
.y10a{bottom:248.250000px;}
.y167{bottom:248.610000px;}
.y151{bottom:248.790000px;}
.yb3{bottom:249.150000px;}
.y199{bottom:253.200000px;}
.y53{bottom:254.370000px;}
.yeb{bottom:255.810000px;}
.y139{bottom:255.900000px;}
.y1d8{bottom:257.250000px;}
.yca{bottom:257.610000px;}
.y9d{bottom:258.060000px;}
.y1d0{bottom:262.200000px;}
.y209{bottom:262.650000px;}
.y22d{bottom:262.830000px;}
.y109{bottom:265.800000px;}
.y166{bottom:266.250000px;}
.y150{bottom:266.430000px;}
.y198{bottom:270.840000px;}
.yea{bottom:273.360000px;}
.y1e1{bottom:274.800000px;}
.yc9{bottom:275.250000px;}
.y9c{bottom:275.610000px;}
.y76{bottom:275.970000px;}
.y1cf{bottom:279.840000px;}
.y208{bottom:280.200000px;}
.y22c{bottom:280.470000px;}
.y165{bottom:283.800000px;}
.y14f{bottom:283.980000px;}
.y1a8{bottom:284.250000px;}
.y52{bottom:286.590000px;}
.y197{bottom:288.390000px;}
.y23{bottom:290.820000px;}
.ye9{bottom:291.000000px;}
.y1e0{bottom:292.440000px;}
.y179{bottom:292.800000px;}
.y9b{bottom:293.250000px;}
.y1ce{bottom:297.390000px;}
.y207{bottom:297.840000px;}
.y108{bottom:301.440000px;}
.y14e{bottom:301.530000px;}
.y1a7{bottom:301.800000px;}
.y196{bottom:305.940000px;}
.y22b{bottom:307.020000px;}
.ye8{bottom:308.550000px;}
.y22{bottom:308.730000px;}
.y1df{bottom:309.990000px;}
.y178{bottom:310.440000px;}
.y9a{bottom:310.800000px;}
.y1cd{bottom:314.940000px;}
.y206{bottom:315.390000px;}
.y107{bottom:318.990000px;}
.y14d{bottom:319.170000px;}
.y1a6{bottom:319.440000px;}
.y195{bottom:323.580000px;}
.y1fb{bottom:323.940000px;}
.y22a{bottom:324.660000px;}
.ye7{bottom:326.190000px;}
.y12c{bottom:327.540000px;}
.y235{bottom:327.990000px;}
.y99{bottom:328.440000px;}
.y1cc{bottom:332.580000px;}
.y205{bottom:332.940000px;}
.y106{bottom:336.540000px;}
.y164{bottom:336.990000px;}
.y1ec{bottom:337.440000px;}
.y74{bottom:338.430000px;}
.y1fa{bottom:341.580000px;}
.y229{bottom:342.210000px;}
.ye6{bottom:343.740000px;}
.y12b{bottom:345.180000px;}
.y239{bottom:345.540000px;}
.y21{bottom:345.810000px;}
.y98{bottom:345.990000px;}
.y105{bottom:354.180000px;}
.y163{bottom:354.540000px;}
.y14c{bottom:354.720000px;}
.y1eb{bottom:354.990000px;}
.y194{bottom:359.130000px;}
.y12a{bottom:362.730000px;}
.y20{bottom:363.360000px;}
.y97{bottom:363.540000px;}
.yb1{bottom:364.350000px;}
.y1cb{bottom:368.130000px;}
.y204{bottom:368.580000px;}
.y228{bottom:368.760000px;}
.ye5{bottom:370.290000px;}
.y138{bottom:371.190000px;}
.y104{bottom:371.730000px;}
.y162{bottom:372.180000px;}
.y14b{bottom:372.360000px;}
.y1ea{bottom:372.540000px;}
.y193{bottom:376.770000px;}
.y129{bottom:380.370000px;}
.y1f{bottom:380.910000px;}
.yc8{bottom:381.180000px;}
.y1ca{bottom:385.770000px;}
.y203{bottom:386.130000px;}
.y227{bottom:386.400000px;}
.y161{bottom:389.730000px;}
.y14a{bottom:389.910000px;}
.y1e9{bottom:390.180000px;}
.y192{bottom:394.320000px;}
.y128{bottom:397.920000px;}
.y1e{bottom:398.550000px;}
.yc7{bottom:398.730000px;}
.y96{bottom:399.180000px;}
.ye4{bottom:400.260000px;}
.y1c9{bottom:403.320000px;}
.y202{bottom:403.770000px;}
.y226{bottom:403.950000px;}
.y103{bottom:407.370000px;}
.y149{bottom:407.460000px;}
.y1e8{bottom:407.730000px;}
.y191{bottom:411.870000px;}
.y1d{bottom:416.100000px;}
.yc6{bottom:416.370000px;}
.y95{bottom:416.730000px;}
.y70{bottom:418.530000px;}
.y201{bottom:421.320000px;}
.y127{bottom:424.470000px;}
.y102{bottom:424.920000px;}
.y1f7{bottom:425.370000px;}
.y190{bottom:429.510000px;}
.y225{bottom:430.590000px;}
.y1c{bottom:433.740000px;}
.y160{bottom:433.920000px;}
.y94{bottom:434.370000px;}
.y137{bottom:437.430000px;}
.y1f9{bottom:438.510000px;}
.y1c8{bottom:438.870000px;}
.y101{bottom:442.470000px;}
.yc5{bottom:442.920000px;}
.y148{bottom:443.100000px;}
.y18f{bottom:447.060000px;}
.y224{bottom:448.140000px;}
.y1b{bottom:451.290000px;}
.y238{bottom:451.470000px;}
.y93{bottom:451.920000px;}
.y1c7{bottom:456.510000px;}
.y100{bottom:460.110000px;}
.y177{bottom:460.470000px;}
.y147{bottom:460.650000px;}
.ye1{bottom:462.810000px;}
.y18e{bottom:464.700000px;}
.y223{bottom:465.690000px;}
.y1a{bottom:468.840000px;}
.y92{bottom:469.470000px;}
.y1e7{bottom:469.950000px;}
.y136{bottom:473.100000px;}
.y1c6{bottom:474.090000px;}
.y126{bottom:477.690000px;}
.y1f6{bottom:478.140000px;}
.y146{bottom:478.320000px;}
.yc4{bottom:478.500000px;}
.yb0{bottom:479.670000px;}
.y18d{bottom:482.280000px;}
.y19{bottom:486.510000px;}
.yff{bottom:486.690000px;}
.y15f{bottom:487.140000px;}
.y1e6{bottom:487.500000px;}
.y135{bottom:490.650000px;}
.y1c5{bottom:491.730000px;}
.y222{bottom:492.360000px;}
.y125{bottom:495.330000px;}
.y234{bottom:495.690000px;}
.y145{bottom:495.870000px;}
.yc3{bottom:496.140000px;}
.y18{bottom:504.060000px;}
.y15e{bottom:504.690000px;}
.y91{bottom:505.140000px;}
.y18c{bottom:509.190000px;}
.y1c4{bottom:509.280000px;}
.y221{bottom:509.910000px;}
.y124{bottom:512.880000px;}
.y237{bottom:513.330000px;}
.y144{bottom:513.420000px;}
.yc2{bottom:513.690000px;}
.y6e{bottom:516.300000px;}
.y200{bottom:518.640000px;}
.y17{bottom:521.700000px;}
.yfe{bottom:522.330000px;}
.y90{bottom:522.690000px;}
.y134{bottom:526.290000px;}
.y1c3{bottom:526.830000px;}
.y123{bottom:530.430000px;}
.y143{bottom:531.060000px;}
.yc1{bottom:531.330000px;}
.y220{bottom:536.550000px;}
.y16{bottom:539.250000px;}
.yfd{bottom:539.880000px;}
.y8f{bottom:540.330000px;}
.ye0{bottom:542.940000px;}
.y133{bottom:543.840000px;}
.y1c2{bottom:544.470000px;}
.y142{bottom:548.610000px;}
.yc0{bottom:548.880000px;}
.y1e5{bottom:549.330000px;}
.y21f{bottom:554.100000px;}
.y15{bottom:556.800000px;}
.yfc{bottom:557.430000px;}
.y8e{bottom:557.880000px;}
.y132{bottom:561.390000px;}
.y1c1{bottom:562.020000px;}
.y122{bottom:566.070000px;}
.y141{bottom:566.160000px;}
.y176{bottom:566.430000px;}
.y1ff{bottom:566.880000px;}
.y1f8{bottom:571.380000px;}
.y21e{bottom:571.650000px;}
.y14{bottom:574.440000px;}
.yfb{bottom:575.070000px;}
.y8d{bottom:575.430000px;}
.yaf{bottom:577.320000px;}
.y6b{bottom:578.760000px;}
.y131{bottom:579.030000px;}
.y1c0{bottom:579.660000px;}
.y121{bottom:583.620000px;}
.y175{bottom:584.070000px;}
.ybf{bottom:584.430000px;}
.y1e4{bottom:584.880000px;}
.y13{bottom:591.990000px;}
.y18b{bottom:592.620000px;}
.y140{bottom:593.070000px;}
.y130{bottom:596.580000px;}
.y21d{bottom:598.560000px;}
.y120{bottom:601.260000px;}
.yfa{bottom:601.620000px;}
.y8c{bottom:602.070000px;}
.y1e3{bottom:602.430000px;}
.y1bf{bottom:606.210000px;}
.y12{bottom:609.630000px;}
.y18a{bottom:610.260000px;}
.y174{bottom:610.620000px;}
.y12f{bottom:614.220000px;}
.y11f{bottom:618.810000px;}
.y236{bottom:619.260000px;}
.ybe{bottom:619.620000px;}
.y1e2{bottom:620.070000px;}
.ydf{bottom:623.040000px;}
.y11{bottom:627.180000px;}
.y189{bottom:627.810000px;}
.y1f5{bottom:628.260000px;}
.y1a5{bottom:628.620000px;}
.y1de{bottom:636.810000px;}
.ybd{bottom:637.260000px;}
.y8b{bottom:637.620000px;}
.y13f{bottom:638.790000px;}
.y1be{bottom:641.760000px;}
.y188{bottom:645.360000px;}
.y1f4{bottom:645.810000px;}
.y15d{bottom:646.260000px;}
.y21c{bottom:646.890000px;}
.y12e{bottom:649.770000px;}
.y10{bottom:654.090000px;}
.y11e{bottom:654.360000px;}
.ybc{bottom:654.810000px;}
.y8a{bottom:655.260000px;}
.yae{bottom:657.420000px;}
.y68{bottom:658.860000px;}
.y1bd{bottom:659.400000px;}
.y187{bottom:663.000000px;}
.y1f3{bottom:663.360000px;}
.y173{bottom:663.810000px;}
.y21b{bottom:664.440000px;}
.y11d{bottom:672.000000px;}
.ybb{bottom:672.360000px;}
.y89{bottom:672.810000px;}
.y1bc{bottom:676.950000px;}
.y1f2{bottom:681.000000px;}
.y172{bottom:681.360000px;}
.y15c{bottom:681.810000px;}
.y12d{bottom:681.990000px;}
.y45{bottom:682.260000px;}
.y51{bottom:686.310000px;}
.y11c{bottom:689.550000px;}
.yf9{bottom:690.000000px;}
.y88{bottom:690.360000px;}
.y21a{bottom:691.350000px;}
.y1bb{bottom:694.590000px;}
.y186{bottom:698.550000px;}
.y171{bottom:699.000000px;}
.y15b{bottom:699.360000px;}
.y44{bottom:699.810000px;}
.yf{bottom:700.890000px;}
.y11b{bottom:707.190000px;}
.y1d7{bottom:707.550000px;}
.y87{bottom:708.000000px;}
.y1ba{bottom:712.140000px;}
.y185{bottom:716.190000px;}
.y170{bottom:716.550000px;}
.y15a{bottom:717.000000px;}
.y43{bottom:717.360000px;}
.yde{bottom:720.690000px;}
.y67{bottom:725.190000px;}
.y86{bottom:725.550000px;}
.y219{bottom:728.340000px;}
.y184{bottom:733.740000px;}
.y1f1{bottom:734.190000px;}
.y50{bottom:734.550000px;}
.y42{bottom:735.000000px;}
.ye{bottom:736.440000px;}
.y11a{bottom:742.740000px;}
.y85{bottom:743.190000px;}
.y218{bottom:745.980000px;}
.y1b9{bottom:747.690000px;}
.y183{bottom:751.290000px;}
.y1d6{bottom:751.740000px;}
.y4f{bottom:752.190000px;}
.y41{bottom:752.550000px;}
.yab{bottom:755.160000px;}
.y119{bottom:760.290000px;}
.y66{bottom:760.740000px;}
.y1a4{bottom:761.190000px;}
.y217{bottom:763.530000px;}
.y1b8{bottom:765.330000px;}
.y1dd{bottom:769.290000px;}
.y4e{bottom:769.740000px;}
.y40{bottom:770.190000px;}
.yd{bottom:772.260000px;}
.y118{bottom:777.930000px;}
.y65{bottom:778.290000px;}
.y1a3{bottom:778.740000px;}
.y216{bottom:781.170000px;}
.y1b7{bottom:782.880000px;}
.y182{bottom:786.930000px;}
.y4d{bottom:787.290000px;}
.y3f{bottom:787.740000px;}
.y117{bottom:795.480000px;}
.y64{bottom:795.930000px;}
.y1a2{bottom:796.290000px;}
.y1b6{bottom:800.520000px;}
.y181{bottom:804.480000px;}
.y4c{bottom:804.930000px;}
.y3e{bottom:805.290000px;}
.y215{bottom:808.080000px;}
.yc{bottom:812.040000px;}
.y63{bottom:813.480000px;}
.y84{bottom:813.930000px;}
.ydd{bottom:818.340000px;}
.y180{bottom:822.030000px;}
.y4b{bottom:822.480000px;}
.y3d{bottom:822.930000px;}
.yb{bottom:830.040000px;}
.y62{bottom:831.030000px;}
.y83{bottom:831.480000px;}
.y1b5{bottom:836.070000px;}
.y17f{bottom:839.670000px;}
.y159{bottom:840.030000px;}
.y3c{bottom:840.480000px;}
.y214{bottom:845.340000px;}
.ya{bottom:848.040000px;}
.y116{bottom:848.670000px;}
.y82{bottom:849.030000px;}
.y13e{bottom:851.730000px;}
.ya6{bottom:852.810000px;}
.y1b4{bottom:853.620000px;}
.y16f{bottom:857.670000px;}
.y3b{bottom:858.030000px;}
.y9{bottom:866.040000px;}
.y115{bottom:866.220000px;}
.y61{bottom:866.670000px;}
.y1b3{bottom:871.260000px;}
.y16e{bottom:875.220000px;}
.y3a{bottom:875.670000px;}
.y114{bottom:883.860000px;}
.y8{bottom:884.040000px;}
.y60{bottom:884.220000px;}
.ydc{bottom:884.670000px;}
.y1b2{bottom:888.810000px;}
.y16d{bottom:892.860000px;}
.y39{bottom:893.220000px;}
.y213{bottom:893.670000px;}
.y5f{bottom:901.860000px;}
.y7{bottom:902.040000px;}
.y158{bottom:902.220000px;}
.y1b1{bottom:906.450000px;}
.y1f0{bottom:910.410000px;}
.y38{bottom:910.860000px;}
.y212{bottom:911.220000px;}
.y5e{bottom:919.410000px;}
.y157{bottom:919.860000px;}
.y6{bottom:920.040000px;}
.ydb{bottom:920.220000px;}
.y1b0{bottom:924.000000px;}
.y37{bottom:928.410000px;}
.y211{bottom:928.860000px;}
.y13d{bottom:931.830000px;}
.y5d{bottom:936.960000px;}
.yf8{bottom:937.410000px;}
.yda{bottom:937.860000px;}
.yba{bottom:945.960000px;}
.y81{bottom:946.410000px;}
.y5{bottom:952.350000px;}
.y113{bottom:954.600000px;}
.yf7{bottom:954.960000px;}
.yd9{bottom:955.410000px;}
.y1af{bottom:959.550000px;}
.y5c{bottom:963.600000px;}
.y36{bottom:963.960000px;}
.y4{bottom:971.700000px;}
.y112{bottom:972.150000px;}
.yf6{bottom:972.600000px;}
.yd8{bottom:972.960000px;}
.y1ae{bottom:977.190000px;}
.y1dc{bottom:981.150000px;}
.y35{bottom:981.600000px;}
.ya4{bottom:985.650000px;}
.yf5{bottom:990.150000px;}
.yd7{bottom:990.600000px;}
.y13c{bottom:994.290000px;}
.y1ad{bottom:994.740000px;}
.y111{bottom:998.790000px;}
.y34{bottom:999.150000px;}
.yf4{bottom:1007.790000px;}
.yd6{bottom:1008.150000px;}
.y3{bottom:1009.980000px;}
.y1ac{bottom:1012.320000px;}
.y33{bottom:1016.820000px;}
.yf3{bottom:1025.370000px;}
.yd5{bottom:1025.820000px;}
.y1ab{bottom:1029.960000px;}
.y32{bottom:1034.370000px;}
.y1a1{bottom:1042.920000px;}
.yd4{bottom:1043.370000px;}
.y1aa{bottom:1047.510000px;}
.y31{bottom:1051.920000px;}
.y80{bottom:1052.370000px;}
.y1a0{bottom:1060.560000px;}
.yd3{bottom:1060.920000px;}
.y5b{bottom:1069.560000px;}
.y7f{bottom:1069.920000px;}
.y13b{bottom:1074.420000px;}
.yd2{bottom:1078.560000px;}
.y5a{bottom:1087.110000px;}
.y30{bottom:1087.560000px;}
.yd1{bottom:1096.110000px;}
.y2f{bottom:1105.110000px;}
.yd0{bottom:1113.750000px;}
.y2e{bottom:1122.750000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.hb{height:44.190000px;}
.h11{height:44.220000px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h10{height:59.973223px;}
.he{height:61.740000px;}
.h1b{height:61.793886px;}
.h19{height:61.830000px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.h17{height:79.290000px;}
.hd{height:79.380000px;}
.h18{height:79.410000px;}
.h13{height:96.840000px;}
.h14{height:96.930000px;}
.hf{height:96.960000px;}
.h16{height:114.480000px;}
.h1a{height:114.570000px;}
.h15{height:114.600000px;}
.h12{height:132.120000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:84.240000px;}
.w13{width:108.360000px;}
.w8{width:122.790000px;}
.wf{width:125.010000px;}
.w12{width:126.210000px;}
.wc{width:134.010000px;}
.we{width:135.000000px;}
.w6{width:137.460000px;}
.w14{width:141.930000px;}
.wa{width:142.680000px;}
.w10{width:146.370000px;}
.w3{width:152.490000px;}
.w15{width:167.340000px;}
.w9{width:171.720000px;}
.w11{width:172.890000px;}
.wd{width:173.460000px;}
.wb{width:181.440000px;}
.w4{width:190.530000px;}
.w7{width:207.180000px;}
.w16{width:208.890000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:3.960000px;}
.xf{left:7.740000px;}
.x1{left:68.040000px;}
.x5{left:79.739987px;}
.x8{left:83.519987px;}
.x17{left:86.759987px;}
.x1c{left:111.239987px;}
.x2{left:192.719987px;}
.x18{left:195.690000px;}
.xb{left:221.970000px;}
.x13{left:242.940000px;}
.x19{left:304.770000px;}
.x10{left:364.800000px;}
.x14{left:378.750000px;}
.x9{left:394.499987px;}
.x6{left:410.699987px;}
.xc{left:413.310000px;}
.x1a{left:447.510000px;}
.xd{left:498.360000px;}
.x15{left:504.480000px;}
.x11{left:508.290000px;}
.x1b{left:615.570000px;}
.xe{left:636.630000px;}
.x16{left:651.570000px;}
.x12{left:690.450000px;}
.x4{left:745.889987px;}
.x3{left:800.339987px;}
.x7{left:820.139987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls19{letter-spacing:-0.395200pt;}
.ls1f{letter-spacing:-0.376533pt;}
.ls1b{letter-spacing:-0.216533pt;}
.ls13{letter-spacing:-0.206933pt;}
.lsb{letter-spacing:-0.165867pt;}
.lse{letter-spacing:-0.142933pt;}
.ls6{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls16{letter-spacing:-0.104533pt;}
.ls5{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls1a{letter-spacing:-0.062933pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls21{letter-spacing:-0.034560pt;}
.ls1c{letter-spacing:-0.013120pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls17{letter-spacing:-0.006720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.103467pt;}
.ls18{letter-spacing:0.113067pt;}
.lsc{letter-spacing:0.154133pt;}
.ls8{letter-spacing:0.155200pt;}
.lsf{letter-spacing:0.177067pt;}
.ls15{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.475200pt;}
.ls20{letter-spacing:12.663680pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.933867pt;}
.ws5{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.869867pt;}
.wsf{word-spacing:-11.860267pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.750080pt;}
.ws14{word-spacing:-11.743680pt;}
.ws16{word-spacing:-11.722240pt;}
.wsd{word-spacing:-11.700267pt;}
.ws12{word-spacing:-11.693867pt;}
.ws9{word-spacing:-11.613867pt;}
.ws4{word-spacing:-11.590933pt;}
.wse{word-spacing:-11.549867pt;}
.ws13{word-spacing:-11.540267pt;}
.ws15{word-spacing:-11.380267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._15{margin-left:-3.196489pt;}
._a{margin-left:-2.144210pt;}
._4{margin-left:-1.145280pt;}
._0{width:1.058347pt;}
._13{width:2.832534pt;}
._2{width:4.447593pt;}
._1{width:5.504523pt;}
._3{width:6.483636pt;}
._f{width:7.465972pt;}
._14{width:8.389866pt;}
._d{width:9.939733pt;}
._e{width:10.867308pt;}
._17{width:12.688320pt;}
._12{width:13.627200pt;}
._6{width:15.160852pt;}
._5{width:16.192534pt;}
._9{width:17.421333pt;}
._7{width:18.757333pt;}
._8{width:19.965654pt;}
._16{width:20.957757pt;}
._1f{width:22.498240pt;}
._10{width:23.834133pt;}
._11{width:25.114883pt;}
._42{width:26.506240pt;}
._b{width:28.056000pt;}
._c{width:29.248107pt;}
._4d{width:30.728000pt;}
._5c{width:31.636480pt;}
._1b{width:33.132800pt;}
._29{width:34.094720pt;}
._35{width:35.591040pt;}
._58{width:38.156160pt;}
._21{width:39.278400pt;}
._38{width:41.041920pt;}
._2a{width:42.217600pt;}
._33{width:43.660480pt;}
._5d{width:44.592000pt;}
._55{width:45.530880pt;}
._56{width:46.492800pt;}
._22{width:47.454720pt;}
._2c{width:48.737280pt;}
._2b{width:50.019840pt;}
._49{width:51.462720pt;}
._23{width:53.386560pt;}
._20{width:56.860160pt;}
._40{width:58.528640pt;}
._5b{width:60.600960pt;}
._41{width:62.952320pt;}
._48{width:63.860800pt;}
._3d{width:68.029120pt;}
._30{width:69.472000pt;}
._46{width:70.754560pt;}
._28{width:71.983680pt;}
._59{width:73.319680pt;}
._36{width:75.296960pt;}
._1e{width:76.526080pt;}
._53{width:77.648320pt;}
._19{width:80.694400pt;}
._52{width:83.473280pt;}
._1c{width:84.755840pt;}
._4f{width:95.016320pt;}
._3c{width:96.352320pt;}
._1d{width:97.688320pt;}
._39{width:99.772480pt;}
._31{width:107.574720pt;}
._27{width:109.124480pt;}
._25{width:117.193920pt;}
._26{width:123.232640pt;}
._4a{width:128.897280pt;}
._18{width:131.088320pt;}
._3f{width:132.370880pt;}
._2e{width:133.867200pt;}
._44{width:134.882560pt;}
._34{width:136.752960pt;}
._3b{width:137.714880pt;}
._2f{width:142.096960pt;}
._47{width:147.387520pt;}
._4e{width:152.143680pt;}
._5a{width:153.907200pt;}
._2d{width:159.197760pt;}
._32{width:164.648640pt;}
._24{width:166.144960pt;}
._51{width:168.068800pt;}
._3e{width:179.665280pt;}
._57{width:181.011627pt;}
._43{width:182.497600pt;}
._3a{width:188.696640pt;}
._4c{width:191.475520pt;}
._54{width:196.338560pt;}
._50{width:199.972480pt;}
._4b{width:240.800640pt;}
._1a{width:247.640960pt;}
._37{width:266.505280pt;}
._5e{width:286.224107pt;}
._45{width:318.555840pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:6.960000pt;}
.ye3{bottom:6.986667pt;}
.y73{bottom:7.040000pt;}
.y6f{bottom:22.560000pt;}
.y69{bottom:22.640000pt;}
.ya5{bottom:22.666667pt;}
.yad{bottom:34.240000pt;}
.y6d{bottom:38.240000pt;}
.ye2{bottom:38.266667pt;}
.y75{bottom:38.320000pt;}
.yaa{bottom:53.840000pt;}
.y6c{bottom:53.920000pt;}
.y72{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.yac{bottom:69.440000pt;}
.ya9{bottom:69.520000pt;}
.y71{bottom:69.546667pt;}
.ya8{bottom:85.120000pt;}
.yb2{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y1fe{bottom:99.306667pt;}
.y1d5{bottom:99.706667pt;}
.ya7{bottom:100.800000pt;}
.y7e{bottom:101.226667pt;}
.yf2{bottom:101.946667pt;}
.y1db{bottom:102.826667pt;}
.y16c{bottom:103.226667pt;}
.y1ef{bottom:103.626667pt;}
.y210{bottom:108.026667pt;}
.yb9{bottom:108.666667pt;}
.y110{bottom:110.826667pt;}
.y17e{bottom:111.226667pt;}
.ya3{bottom:111.626667pt;}
.y2a{bottom:113.546667pt;}
.y4a{bottom:113.866667pt;}
.y19f{bottom:115.306667pt;}
.y59{bottom:116.266667pt;}
.y7d{bottom:116.826667pt;}
.yf1{bottom:117.626667pt;}
.y16b{bottom:118.826667pt;}
.y156{bottom:118.986667pt;}
.ycf{bottom:119.226667pt;}
.y20f{bottom:123.706667pt;}
.y233{bottom:123.866667pt;}
.yb8{bottom:124.266667pt;}
.y10f{bottom:126.506667pt;}
.y17d{bottom:126.826667pt;}
.ya2{bottom:127.226667pt;}
.y29{bottom:129.146667pt;}
.y49{bottom:129.466667pt;}
.y19e{bottom:130.906667pt;}
.y58{bottom:131.946667pt;}
.y7c{bottom:132.506667pt;}
.yf0{bottom:133.226667pt;}
.y16a{bottom:134.506667pt;}
.y155{bottom:134.666667pt;}
.yce{bottom:134.826667pt;}
.y20e{bottom:139.306667pt;}
.y232{bottom:139.546667pt;}
.yb7{bottom:139.866667pt;}
.y13a{bottom:140.666667pt;}
.y10e{bottom:142.106667pt;}
.y17c{bottom:142.506667pt;}
.ya1{bottom:142.826667pt;}
.y28{bottom:144.826667pt;}
.y1fd{bottom:146.586667pt;}
.y57{bottom:147.546667pt;}
.y7b{bottom:148.106667pt;}
.yef{bottom:148.826667pt;}
.y169{bottom:150.106667pt;}
.y154{bottom:150.266667pt;}
.ycd{bottom:150.506667pt;}
.y1d4{bottom:154.586667pt;}
.y20d{bottom:154.906667pt;}
.yb6{bottom:155.546667pt;}
.y17b{bottom:158.106667pt;}
.ya0{bottom:158.506667pt;}
.y27{bottom:160.426667pt;}
.y48{bottom:161.146667pt;}
.y1fc{bottom:162.186667pt;}
.y19d{bottom:162.586667pt;}
.y231{bottom:163.146667pt;}
.y56{bottom:163.226667pt;}
.y7a{bottom:163.786667pt;}
.yee{bottom:164.506667pt;}
.y168{bottom:165.786667pt;}
.y153{bottom:165.866667pt;}
.ycc{bottom:166.106667pt;}
.y1ee{bottom:166.506667pt;}
.y20c{bottom:170.586667pt;}
.yb5{bottom:171.146667pt;}
.y10d{bottom:173.786667pt;}
.y9f{bottom:174.106667pt;}
.y26{bottom:176.106667pt;}
.y47{bottom:176.746667pt;}
.y19c{bottom:178.186667pt;}
.y230{bottom:178.746667pt;}
.y55{bottom:178.826667pt;}
.y79{bottom:179.386667pt;}
.yed{bottom:180.106667pt;}
.y17a{bottom:181.786667pt;}
.y1ed{bottom:182.106667pt;}
.y1d3{bottom:186.186667pt;}
.y10c{bottom:189.386667pt;}
.y152{bottom:189.546667pt;}
.y1a9{bottom:189.786667pt;}
.y25{bottom:191.706667pt;}
.y19b{bottom:193.866667pt;}
.y22f{bottom:194.426667pt;}
.yb4{bottom:194.746667pt;}
.y78{bottom:194.986667pt;}
.yec{bottom:195.786667pt;}
.y1da{bottom:197.386667pt;}
.y9e{bottom:197.786667pt;}
.y1d2{bottom:201.866667pt;}
.y20b{bottom:202.186667pt;}
.y10b{bottom:204.986667pt;}
.y46{bottom:205.386667pt;}
.y19a{bottom:209.466667pt;}
.y54{bottom:210.426667pt;}
.y1d9{bottom:212.986667pt;}
.ycb{bottom:213.386667pt;}
.y24{bottom:215.626667pt;}
.y1d1{bottom:217.466667pt;}
.y20a{bottom:217.866667pt;}
.y22e{bottom:218.026667pt;}
.y77{bottom:218.666667pt;}
.y10a{bottom:220.666667pt;}
.y167{bottom:220.986667pt;}
.y151{bottom:221.146667pt;}
.yb3{bottom:221.466667pt;}
.y199{bottom:225.066667pt;}
.y53{bottom:226.106667pt;}
.yeb{bottom:227.386667pt;}
.y139{bottom:227.466667pt;}
.y1d8{bottom:228.666667pt;}
.yca{bottom:228.986667pt;}
.y9d{bottom:229.386667pt;}
.y1d0{bottom:233.066667pt;}
.y209{bottom:233.466667pt;}
.y22d{bottom:233.626667pt;}
.y109{bottom:236.266667pt;}
.y166{bottom:236.666667pt;}
.y150{bottom:236.826667pt;}
.y198{bottom:240.746667pt;}
.yea{bottom:242.986667pt;}
.y1e1{bottom:244.266667pt;}
.yc9{bottom:244.666667pt;}
.y9c{bottom:244.986667pt;}
.y76{bottom:245.306667pt;}
.y1cf{bottom:248.746667pt;}
.y208{bottom:249.066667pt;}
.y22c{bottom:249.306667pt;}
.y165{bottom:252.266667pt;}
.y14f{bottom:252.426667pt;}
.y1a8{bottom:252.666667pt;}
.y52{bottom:254.746667pt;}
.y197{bottom:256.346667pt;}
.y23{bottom:258.506667pt;}
.ye9{bottom:258.666667pt;}
.y1e0{bottom:259.946667pt;}
.y179{bottom:260.266667pt;}
.y9b{bottom:260.666667pt;}
.y1ce{bottom:264.346667pt;}
.y207{bottom:264.746667pt;}
.y108{bottom:267.946667pt;}
.y14e{bottom:268.026667pt;}
.y1a7{bottom:268.266667pt;}
.y196{bottom:271.946667pt;}
.y22b{bottom:272.906667pt;}
.ye8{bottom:274.266667pt;}
.y22{bottom:274.426667pt;}
.y1df{bottom:275.546667pt;}
.y178{bottom:275.946667pt;}
.y9a{bottom:276.266667pt;}
.y1cd{bottom:279.946667pt;}
.y206{bottom:280.346667pt;}
.y107{bottom:283.546667pt;}
.y14d{bottom:283.706667pt;}
.y1a6{bottom:283.946667pt;}
.y195{bottom:287.626667pt;}
.y1fb{bottom:287.946667pt;}
.y22a{bottom:288.586667pt;}
.ye7{bottom:289.946667pt;}
.y12c{bottom:291.146667pt;}
.y235{bottom:291.546667pt;}
.y99{bottom:291.946667pt;}
.y1cc{bottom:295.626667pt;}
.y205{bottom:295.946667pt;}
.y106{bottom:299.146667pt;}
.y164{bottom:299.546667pt;}
.y1ec{bottom:299.946667pt;}
.y74{bottom:300.826667pt;}
.y1fa{bottom:303.626667pt;}
.y229{bottom:304.186667pt;}
.ye6{bottom:305.546667pt;}
.y12b{bottom:306.826667pt;}
.y239{bottom:307.146667pt;}
.y21{bottom:307.386667pt;}
.y98{bottom:307.546667pt;}
.y105{bottom:314.826667pt;}
.y163{bottom:315.146667pt;}
.y14c{bottom:315.306667pt;}
.y1eb{bottom:315.546667pt;}
.y194{bottom:319.226667pt;}
.y12a{bottom:322.426667pt;}
.y20{bottom:322.986667pt;}
.y97{bottom:323.146667pt;}
.yb1{bottom:323.866667pt;}
.y1cb{bottom:327.226667pt;}
.y204{bottom:327.626667pt;}
.y228{bottom:327.786667pt;}
.ye5{bottom:329.146667pt;}
.y138{bottom:329.946667pt;}
.y104{bottom:330.426667pt;}
.y162{bottom:330.826667pt;}
.y14b{bottom:330.986667pt;}
.y1ea{bottom:331.146667pt;}
.y193{bottom:334.906667pt;}
.y129{bottom:338.106667pt;}
.y1f{bottom:338.586667pt;}
.yc8{bottom:338.826667pt;}
.y1ca{bottom:342.906667pt;}
.y203{bottom:343.226667pt;}
.y227{bottom:343.466667pt;}
.y161{bottom:346.426667pt;}
.y14a{bottom:346.586667pt;}
.y1e9{bottom:346.826667pt;}
.y192{bottom:350.506667pt;}
.y128{bottom:353.706667pt;}
.y1e{bottom:354.266667pt;}
.yc7{bottom:354.426667pt;}
.y96{bottom:354.826667pt;}
.ye4{bottom:355.786667pt;}
.y1c9{bottom:358.506667pt;}
.y202{bottom:358.906667pt;}
.y226{bottom:359.066667pt;}
.y103{bottom:362.106667pt;}
.y149{bottom:362.186667pt;}
.y1e8{bottom:362.426667pt;}
.y191{bottom:366.106667pt;}
.y1d{bottom:369.866667pt;}
.yc6{bottom:370.106667pt;}
.y95{bottom:370.426667pt;}
.y70{bottom:372.026667pt;}
.y201{bottom:374.506667pt;}
.y127{bottom:377.306667pt;}
.y102{bottom:377.706667pt;}
.y1f7{bottom:378.106667pt;}
.y190{bottom:381.786667pt;}
.y225{bottom:382.746667pt;}
.y1c{bottom:385.546667pt;}
.y160{bottom:385.706667pt;}
.y94{bottom:386.106667pt;}
.y137{bottom:388.826667pt;}
.y1f9{bottom:389.786667pt;}
.y1c8{bottom:390.106667pt;}
.y101{bottom:393.306667pt;}
.yc5{bottom:393.706667pt;}
.y148{bottom:393.866667pt;}
.y18f{bottom:397.386667pt;}
.y224{bottom:398.346667pt;}
.y1b{bottom:401.146667pt;}
.y238{bottom:401.306667pt;}
.y93{bottom:401.706667pt;}
.y1c7{bottom:405.786667pt;}
.y100{bottom:408.986667pt;}
.y177{bottom:409.306667pt;}
.y147{bottom:409.466667pt;}
.ye1{bottom:411.386667pt;}
.y18e{bottom:413.066667pt;}
.y223{bottom:413.946667pt;}
.y1a{bottom:416.746667pt;}
.y92{bottom:417.306667pt;}
.y1e7{bottom:417.733333pt;}
.y136{bottom:420.533333pt;}
.y1c6{bottom:421.413333pt;}
.y126{bottom:424.613333pt;}
.y1f6{bottom:425.013333pt;}
.y146{bottom:425.173333pt;}
.yc4{bottom:425.333333pt;}
.yb0{bottom:426.373333pt;}
.y18d{bottom:428.693333pt;}
.y19{bottom:432.453333pt;}
.yff{bottom:432.613333pt;}
.y15f{bottom:433.013333pt;}
.y1e6{bottom:433.333333pt;}
.y135{bottom:436.133333pt;}
.y1c5{bottom:437.093333pt;}
.y222{bottom:437.653333pt;}
.y125{bottom:440.293333pt;}
.y234{bottom:440.613333pt;}
.y145{bottom:440.773333pt;}
.yc3{bottom:441.013333pt;}
.y18{bottom:448.053333pt;}
.y15e{bottom:448.613333pt;}
.y91{bottom:449.013333pt;}
.y18c{bottom:452.613333pt;}
.y1c4{bottom:452.693333pt;}
.y221{bottom:453.253333pt;}
.y124{bottom:455.893333pt;}
.y237{bottom:456.293333pt;}
.y144{bottom:456.373333pt;}
.yc2{bottom:456.613333pt;}
.y6e{bottom:458.933333pt;}
.y200{bottom:461.013333pt;}
.y17{bottom:463.733333pt;}
.yfe{bottom:464.293333pt;}
.y90{bottom:464.613333pt;}
.y134{bottom:467.813333pt;}
.y1c3{bottom:468.293333pt;}
.y123{bottom:471.493333pt;}
.y143{bottom:472.053333pt;}
.yc1{bottom:472.293333pt;}
.y220{bottom:476.933333pt;}
.y16{bottom:479.333333pt;}
.yfd{bottom:479.893333pt;}
.y8f{bottom:480.293333pt;}
.ye0{bottom:482.613333pt;}
.y133{bottom:483.413333pt;}
.y1c2{bottom:483.973333pt;}
.y142{bottom:487.653333pt;}
.yc0{bottom:487.893333pt;}
.y1e5{bottom:488.293333pt;}
.y21f{bottom:492.533333pt;}
.y15{bottom:494.933333pt;}
.yfc{bottom:495.493333pt;}
.y8e{bottom:495.893333pt;}
.y132{bottom:499.013333pt;}
.y1c1{bottom:499.573333pt;}
.y122{bottom:503.173333pt;}
.y141{bottom:503.253333pt;}
.y176{bottom:503.493333pt;}
.y1ff{bottom:503.893333pt;}
.y1f8{bottom:507.893333pt;}
.y21e{bottom:508.133333pt;}
.y14{bottom:510.613333pt;}
.yfb{bottom:511.173333pt;}
.y8d{bottom:511.493333pt;}
.yaf{bottom:513.173333pt;}
.y6b{bottom:514.453333pt;}
.y131{bottom:514.693333pt;}
.y1c0{bottom:515.253333pt;}
.y121{bottom:518.773333pt;}
.y175{bottom:519.173333pt;}
.ybf{bottom:519.493333pt;}
.y1e4{bottom:519.893333pt;}
.y13{bottom:526.213333pt;}
.y18b{bottom:526.773333pt;}
.y140{bottom:527.173333pt;}
.y130{bottom:530.293333pt;}
.y21d{bottom:532.053333pt;}
.y120{bottom:534.453333pt;}
.yfa{bottom:534.773333pt;}
.y8c{bottom:535.173333pt;}
.y1e3{bottom:535.493333pt;}
.y1bf{bottom:538.853333pt;}
.y12{bottom:541.893333pt;}
.y18a{bottom:542.453333pt;}
.y174{bottom:542.773333pt;}
.y12f{bottom:545.973333pt;}
.y11f{bottom:550.053333pt;}
.y236{bottom:550.453333pt;}
.ybe{bottom:550.773333pt;}
.y1e2{bottom:551.173333pt;}
.ydf{bottom:553.813333pt;}
.y11{bottom:557.493333pt;}
.y189{bottom:558.053333pt;}
.y1f5{bottom:558.453333pt;}
.y1a5{bottom:558.773333pt;}
.y1de{bottom:566.053333pt;}
.ybd{bottom:566.453333pt;}
.y8b{bottom:566.773333pt;}
.y13f{bottom:567.813333pt;}
.y1be{bottom:570.453333pt;}
.y188{bottom:573.653333pt;}
.y1f4{bottom:574.053333pt;}
.y15d{bottom:574.453333pt;}
.y21c{bottom:575.013333pt;}
.y12e{bottom:577.573333pt;}
.y10{bottom:581.413333pt;}
.y11e{bottom:581.653333pt;}
.ybc{bottom:582.053333pt;}
.y8a{bottom:582.453333pt;}
.yae{bottom:584.373333pt;}
.y68{bottom:585.653333pt;}
.y1bd{bottom:586.133333pt;}
.y187{bottom:589.333333pt;}
.y1f3{bottom:589.653333pt;}
.y173{bottom:590.053333pt;}
.y21b{bottom:590.613333pt;}
.y11d{bottom:597.333333pt;}
.ybb{bottom:597.653333pt;}
.y89{bottom:598.053333pt;}
.y1bc{bottom:601.733333pt;}
.y1f2{bottom:605.333333pt;}
.y172{bottom:605.653333pt;}
.y15c{bottom:606.053333pt;}
.y12d{bottom:606.213333pt;}
.y45{bottom:606.453333pt;}
.y51{bottom:610.053333pt;}
.y11c{bottom:612.933333pt;}
.yf9{bottom:613.333333pt;}
.y88{bottom:613.653333pt;}
.y21a{bottom:614.533333pt;}
.y1bb{bottom:617.413333pt;}
.y186{bottom:620.933333pt;}
.y171{bottom:621.333333pt;}
.y15b{bottom:621.653333pt;}
.y44{bottom:622.053333pt;}
.yf{bottom:623.013333pt;}
.y11b{bottom:628.613333pt;}
.y1d7{bottom:628.933333pt;}
.y87{bottom:629.333333pt;}
.y1ba{bottom:633.013333pt;}
.y185{bottom:636.613333pt;}
.y170{bottom:636.933333pt;}
.y15a{bottom:637.333333pt;}
.y43{bottom:637.653333pt;}
.yde{bottom:640.613333pt;}
.y67{bottom:644.613333pt;}
.y86{bottom:644.933333pt;}
.y219{bottom:647.413333pt;}
.y184{bottom:652.213333pt;}
.y1f1{bottom:652.613333pt;}
.y50{bottom:652.933333pt;}
.y42{bottom:653.333333pt;}
.ye{bottom:654.613333pt;}
.y11a{bottom:660.213333pt;}
.y85{bottom:660.613333pt;}
.y218{bottom:663.093333pt;}
.y1b9{bottom:664.613333pt;}
.y183{bottom:667.813333pt;}
.y1d6{bottom:668.213333pt;}
.y4f{bottom:668.613333pt;}
.y41{bottom:668.933333pt;}
.yab{bottom:671.253333pt;}
.y119{bottom:675.813333pt;}
.y66{bottom:676.213333pt;}
.y1a4{bottom:676.613333pt;}
.y217{bottom:678.693333pt;}
.y1b8{bottom:680.293333pt;}
.y1dd{bottom:683.813333pt;}
.y4e{bottom:684.213333pt;}
.y40{bottom:684.613333pt;}
.yd{bottom:686.453333pt;}
.y118{bottom:691.493333pt;}
.y65{bottom:691.813333pt;}
.y1a3{bottom:692.213333pt;}
.y216{bottom:694.373333pt;}
.y1b7{bottom:695.893333pt;}
.y182{bottom:699.493333pt;}
.y4d{bottom:699.813333pt;}
.y3f{bottom:700.213333pt;}
.y117{bottom:707.093333pt;}
.y64{bottom:707.493333pt;}
.y1a2{bottom:707.813333pt;}
.y1b6{bottom:711.573333pt;}
.y181{bottom:715.093333pt;}
.y4c{bottom:715.493333pt;}
.y3e{bottom:715.813333pt;}
.y215{bottom:718.293333pt;}
.yc{bottom:721.813333pt;}
.y63{bottom:723.093333pt;}
.y84{bottom:723.493333pt;}
.ydd{bottom:727.413333pt;}
.y180{bottom:730.693333pt;}
.y4b{bottom:731.093333pt;}
.y3d{bottom:731.493333pt;}
.yb{bottom:737.813333pt;}
.y62{bottom:738.693333pt;}
.y83{bottom:739.093333pt;}
.y1b5{bottom:743.173333pt;}
.y17f{bottom:746.373333pt;}
.y159{bottom:746.693333pt;}
.y3c{bottom:747.093333pt;}
.y214{bottom:751.413333pt;}
.ya{bottom:753.813333pt;}
.y116{bottom:754.373333pt;}
.y82{bottom:754.693333pt;}
.y13e{bottom:757.093333pt;}
.ya6{bottom:758.053333pt;}
.y1b4{bottom:758.773333pt;}
.y16f{bottom:762.373333pt;}
.y3b{bottom:762.693333pt;}
.y9{bottom:769.813333pt;}
.y115{bottom:769.973333pt;}
.y61{bottom:770.373333pt;}
.y1b3{bottom:774.453333pt;}
.y16e{bottom:777.973333pt;}
.y3a{bottom:778.373333pt;}
.y114{bottom:785.653333pt;}
.y8{bottom:785.813333pt;}
.y60{bottom:785.973333pt;}
.ydc{bottom:786.373333pt;}
.y1b2{bottom:790.053333pt;}
.y16d{bottom:793.653333pt;}
.y39{bottom:793.973333pt;}
.y213{bottom:794.373333pt;}
.y5f{bottom:801.653333pt;}
.y7{bottom:801.813333pt;}
.y158{bottom:801.973333pt;}
.y1b1{bottom:805.733333pt;}
.y1f0{bottom:809.253333pt;}
.y38{bottom:809.653333pt;}
.y212{bottom:809.973333pt;}
.y5e{bottom:817.253333pt;}
.y157{bottom:817.653333pt;}
.y6{bottom:817.813333pt;}
.ydb{bottom:817.973333pt;}
.y1b0{bottom:821.333333pt;}
.y37{bottom:825.253333pt;}
.y211{bottom:825.653333pt;}
.y13d{bottom:828.293333pt;}
.y5d{bottom:832.853333pt;}
.yf8{bottom:833.253333pt;}
.yda{bottom:833.653333pt;}
.yba{bottom:840.853333pt;}
.y81{bottom:841.253333pt;}
.y5{bottom:846.533333pt;}
.y113{bottom:848.533333pt;}
.yf7{bottom:848.853333pt;}
.yd9{bottom:849.253333pt;}
.y1af{bottom:852.933333pt;}
.y5c{bottom:856.533333pt;}
.y36{bottom:856.853333pt;}
.y4{bottom:863.733333pt;}
.y112{bottom:864.133333pt;}
.yf6{bottom:864.533333pt;}
.yd8{bottom:864.853333pt;}
.y1ae{bottom:868.613333pt;}
.y1dc{bottom:872.133333pt;}
.y35{bottom:872.533333pt;}
.ya4{bottom:876.133333pt;}
.yf5{bottom:880.133333pt;}
.yd7{bottom:880.533333pt;}
.y13c{bottom:883.813333pt;}
.y1ad{bottom:884.213333pt;}
.y111{bottom:887.813333pt;}
.y34{bottom:888.133333pt;}
.yf4{bottom:895.813333pt;}
.yd6{bottom:896.133333pt;}
.y3{bottom:897.760000pt;}
.y1ac{bottom:899.840000pt;}
.y33{bottom:903.840000pt;}
.yf3{bottom:911.440000pt;}
.yd5{bottom:911.840000pt;}
.y1ab{bottom:915.520000pt;}
.y32{bottom:919.440000pt;}
.y1a1{bottom:927.040000pt;}
.yd4{bottom:927.440000pt;}
.y1aa{bottom:931.120000pt;}
.y31{bottom:935.040000pt;}
.y80{bottom:935.440000pt;}
.y1a0{bottom:942.720000pt;}
.yd3{bottom:943.040000pt;}
.y5b{bottom:950.720000pt;}
.y7f{bottom:951.040000pt;}
.y13b{bottom:955.040000pt;}
.yd2{bottom:958.720000pt;}
.y5a{bottom:966.320000pt;}
.y30{bottom:966.720000pt;}
.yd1{bottom:974.320000pt;}
.y2f{bottom:982.320000pt;}
.yd0{bottom:990.000000pt;}
.y2e{bottom:998.000000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.hb{height:39.280000pt;}
.h11{height:39.306667pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h10{height:53.309531pt;}
.he{height:54.880000pt;}
.h1b{height:54.927899pt;}
.h19{height:54.960000pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.h17{height:70.480000pt;}
.hd{height:70.560000pt;}
.h18{height:70.586667pt;}
.h13{height:86.080000pt;}
.h14{height:86.160000pt;}
.hf{height:86.186667pt;}
.h16{height:101.760000pt;}
.h1a{height:101.840000pt;}
.h15{height:101.866667pt;}
.h12{height:117.440000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:74.880000pt;}
.w13{width:96.320000pt;}
.w8{width:109.146667pt;}
.wf{width:111.120000pt;}
.w12{width:112.186667pt;}
.wc{width:119.120000pt;}
.we{width:120.000000pt;}
.w6{width:122.186667pt;}
.w14{width:126.160000pt;}
.wa{width:126.826667pt;}
.w10{width:130.106667pt;}
.w3{width:135.546667pt;}
.w15{width:148.746667pt;}
.w9{width:152.640000pt;}
.w11{width:153.680000pt;}
.wd{width:154.186667pt;}
.wb{width:161.280000pt;}
.w4{width:169.360000pt;}
.w7{width:184.160000pt;}
.w16{width:185.680000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.520000pt;}
.xf{left:6.880000pt;}
.x1{left:60.480000pt;}
.x5{left:70.879988pt;}
.x8{left:74.239988pt;}
.x17{left:77.119988pt;}
.x1c{left:98.879988pt;}
.x2{left:171.306655pt;}
.x18{left:173.946667pt;}
.xb{left:197.306667pt;}
.x13{left:215.946667pt;}
.x19{left:270.906667pt;}
.x10{left:324.266667pt;}
.x14{left:336.666667pt;}
.x9{left:350.666655pt;}
.x6{left:365.066655pt;}
.xc{left:367.386667pt;}
.x1a{left:397.786667pt;}
.xd{left:442.986667pt;}
.x15{left:448.426667pt;}
.x11{left:451.813333pt;}
.x1b{left:547.173333pt;}
.xe{left:565.893333pt;}
.x16{left:579.173333pt;}
.x12{left:613.733333pt;}
.x4{left:663.013322pt;}
.x3{left:711.413322pt;}
.x7{left:729.013322pt;}
}




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