
    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_274222f9a1c73a383b46da8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_40911b959272e8db05871e6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5e75c6a043ba8f835578ce63.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_23dea575122e4e671adef547.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_42c751b26403913e9625d9a8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_2aaf2bcb9db03e098beefa26.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ce0bb9c9be2ad3a13c1978cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_700561d759c338abce7afb55.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.995605;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_a50da29dc3115ad0512c65f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.995605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_62321c96bec923c38bbe30b5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_df51fd5eb5ec89a704bba5f7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8207e194196df803ccf88b09.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.682617;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:ff11;src:url('chunks/assets/font_24e5d7f80eaff388bd2aab7e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.053280px;}
.lse{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.284400px;}
.ls18{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.693360px;}
.ls7{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.900000px;}
.ls6{letter-spacing:2.985120px;}
.ls17{letter-spacing:16.506720px;}
.lsd{letter-spacing:46.026720px;}
.ls16{letter-spacing:46.170720px;}
.lsf{letter-spacing:55.386720px;}
.lsc{letter-spacing:64.026720px;}
.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;}
}
.ws6{word-spacing:-56.880000px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.ws4{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.504400px;}
.wsd{word-spacing:-14.479800px;}
.ws8{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.860000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._6{margin-left:-5.554080px;}
._5{margin-left:-4.404960px;}
._19{margin-left:-3.383280px;}
._15{margin-left:-2.242080px;}
._0{margin-left:-1.224000px;}
._4{width:1.053360px;}
._1{width:2.184000px;}
._9{width:3.194400px;}
._a{width:4.689120px;}
._7{width:6.511680px;}
._8{width:7.950000px;}
._f{width:8.980560px;}
._21{width:10.000800px;}
._c{width:11.018160px;}
._b{width:12.131280px;}
._e{width:13.484640px;}
._28{width:16.117200px;}
._3{width:17.236800px;}
._1d{width:19.003680px;}
._10{width:20.139120px;}
._d{width:21.894480px;}
._29{width:22.924800px;}
._18{width:24.045840px;}
._17{width:25.747920px;}
._16{width:27.011520px;}
._22{width:28.338480px;}
._11{width:29.364480px;}
._1a{width:31.056480px;}
._20{width:32.214240px;}
._1f{width:33.346080px;}
._2f{width:34.922160px;}
._25{width:36.112320px;}
._1b{width:37.910160px;}
._26{width:39.023280px;}
._30{width:40.038480px;}
._24{width:41.353920px;}
._23{width:42.608880px;}
._35{width:44.709120px;}
._27{width:45.798480px;}
._3c{width:47.008800px;}
._33{width:48.009600px;}
._1e{width:49.682880px;}
._2a{width:50.975280px;}
._1c{width:52.133040px;}
._36{width:53.185440px;}
._3d{width:54.636480px;}
._31{width:55.636560px;}
._37{width:57.250080px;}
._3e{width:59.065200px;}
._3f{width:61.216560px;}
._40{width:62.269920px;}
._4c{width:63.487440px;}
._42{width:65.437200px;}
._3a{width:66.535200px;}
._34{width:68.088960px;}
._41{width:70.479360px;}
._13{width:71.532720px;}
._3b{width:73.168560px;}
._14{width:76.552560px;}
._38{width:78.248160px;}
._39{width:79.525440px;}
._50{width:80.534880px;}
._4f{width:85.337280px;}
._4e{width:86.711760px;}
._2e{width:91.671840px;}
._4b{width:98.148240px;}
._43{width:103.504320px;}
._2b{width:104.662080px;}
._32{width:114.582240px;}
._53{width:116.950320px;}
._46{width:123.284880px;}
._2d{width:147.633840px;}
._12{width:149.313600px;}
._2c{width:152.029440px;}
._48{width:170.913600px;}
._55{width:188.961120px;}
._44{width:240.616080px;}
._45{width:241.623840px;}
._51{width:248.960160px;}
._52{width:250.305840px;}
._2{width:303.508320px;}
._47{width:327.029040px;}
._56{width:368.259840px;}
._4a{width:389.037600px;}
._49{width:390.232800px;}
._4d{width:414.413280px;}
._54{width:883.879680px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.900000px;}
.y23{bottom:5.760000px;}
.y123{bottom:5.940000px;}
.y1ec{bottom:5.970000px;}
.y13{bottom:7.560000px;}
.y6{bottom:13.860000px;}
.y120{bottom:15.660000px;}
.y124{bottom:15.840000px;}
.y1e8{bottom:15.870000px;}
.y22{bottom:25.560000px;}
.y122{bottom:25.740000px;}
.y1e7{bottom:25.770000px;}
.y1e1{bottom:25.785000px;}
.y5{bottom:45.180000px;}
.y21{bottom:45.360000px;}
.y48{bottom:60.120000px;}
.y20{bottom:65.340000px;}
.y9{bottom:68.580000px;}
.y4{bottom:76.320000px;}
.y1fd{bottom:84.240000px;}
.y1f{bottom:85.140000px;}
.yd0{bottom:86.040000px;}
.y171{bottom:93.240000px;}
.ya0{bottom:95.040000px;}
.y1a4{bottom:98.100000px;}
.y79{bottom:98.820000px;}
.y1d0{bottom:99.180000px;}
.yca{bottom:99.540000px;}
.y37{bottom:99.720000px;}
.y1fc{bottom:104.040000px;}
.y1e{bottom:104.940000px;}
.y22d{bottom:105.120000px;}
.y140{bottom:105.840000px;}
.ycf{bottom:106.020000px;}
.y3{bottom:107.670000px;}
.y1f0{bottom:108.900000px;}
.y170{bottom:113.040000px;}
.y44{bottom:114.120000px;}
.y9f{bottom:115.020000px;}
.y11e{bottom:116.640000px;}
.y1a3{bottom:117.900000px;}
.y36{bottom:118.620000px;}
.y1cf{bottom:118.980000px;}
.yc9{bottom:119.340000px;}
.y1fb{bottom:124.020000px;}
.y1d{bottom:124.740000px;}
.y22c{bottom:124.920000px;}
.y13f{bottom:125.640000px;}
.yce{bottom:125.820000px;}
.y1ef{bottom:127.800000px;}
.y16f{bottom:132.840000px;}
.y43{bottom:133.920000px;}
.y9e{bottom:134.820000px;}
.y11d{bottom:136.620000px;}
.y35{bottom:137.340000px;}
.y1a2{bottom:137.700000px;}
.y78{bottom:138.420000px;}
.y1ce{bottom:138.780000px;}
.yc8{bottom:139.140000px;}
.y2{bottom:139.530000px;}
.y1fa{bottom:143.820000px;}
.y1c{bottom:144.540000px;}
.y22b{bottom:144.720000px;}
.ycd{bottom:145.620000px;}
.y16e{bottom:152.640000px;}
.y1ee{bottom:153.540000px;}
.y42{bottom:153.900000px;}
.y9d{bottom:154.620000px;}
.y34{bottom:156.240000px;}
.y11c{bottom:156.420000px;}
.y1a1{bottom:157.500000px;}
.y1cd{bottom:158.760000px;}
.yc7{bottom:158.940000px;}
.y1f9{bottom:163.620000px;}
.y1b{bottom:164.520000px;}
.y13e{bottom:165.420000px;}
.y77{bottom:167.220000px;}
.y16d{bottom:172.620000px;}
.y41{bottom:173.700000px;}
.y9c{bottom:174.420000px;}
.yf5{bottom:174.600000px;}
.y33{bottom:175.140000px;}
.y11b{bottom:176.220000px;}
.y1a0{bottom:177.300000px;}
.y1cc{bottom:178.560000px;}
.yc6{bottom:178.740000px;}
.y1ed{bottom:179.460000px;}
.y1f8{bottom:183.420000px;}
.y1a{bottom:184.320000px;}
.y22a{bottom:184.500000px;}
.y13d{bottom:185.220000px;}
.y76{bottom:187.200000px;}
.y16c{bottom:192.420000px;}
.y40{bottom:193.500000px;}
.y32{bottom:193.860000px;}
.y9b{bottom:194.220000px;}
.yf4{bottom:194.400000px;}
.y11a{bottom:196.020000px;}
.y1e6{bottom:196.200000px;}
.y19f{bottom:197.280000px;}
.y1cb{bottom:198.360000px;}
.yc5{bottom:198.720000px;}
.y1f7{bottom:203.220000px;}
.y19{bottom:204.150000px;}
.y229{bottom:204.300000px;}
.y13c{bottom:205.020000px;}
.y180{bottom:205.200000px;}
.y75{bottom:207.000000px;}
.y16b{bottom:212.250000px;}
.y31{bottom:212.790000px;}
.y3f{bottom:213.330000px;}
.y9a{bottom:214.230000px;}
.y119{bottom:215.850000px;}
.y19e{bottom:217.110000px;}
.y1ca{bottom:218.190000px;}
.yc4{bottom:218.550000px;}
.y1f6{bottom:223.230000px;}
.y18{bottom:223.950000px;}
.y228{bottom:224.130000px;}
.y13b{bottom:224.850000px;}
.y17f{bottom:225.030000px;}
.y74{bottom:226.830000px;}
.y1eb{bottom:231.150000px;}
.y30{bottom:231.510000px;}
.y16a{bottom:232.050000px;}
.y3e{bottom:233.130000px;}
.y99{bottom:234.030000px;}
.y118{bottom:235.830000px;}
.y19d{bottom:236.910000px;}
.y1c9{bottom:237.990000px;}
.yc3{bottom:238.350000px;}
.y1e5{bottom:241.950000px;}
.y1f5{bottom:243.030000px;}
.y17{bottom:243.750000px;}
.y227{bottom:243.930000px;}
.y13a{bottom:244.830000px;}
.y73{bottom:246.630000px;}
.y169{bottom:251.850000px;}
.y3d{bottom:252.930000px;}
.y98{bottom:253.830000px;}
.y117{bottom:255.630000px;}
.y19c{bottom:256.710000px;}
.y1ea{bottom:257.070000px;}
.y1c8{bottom:257.970000px;}
.yc2{bottom:258.150000px;}
.y2f{bottom:261.930000px;}
.y1f4{bottom:262.830000px;}
.y16{bottom:263.730000px;}
.y139{bottom:264.630000px;}
.y72{bottom:266.430000px;}
.y168{bottom:271.830000px;}
.y3c{bottom:272.910000px;}
.y97{bottom:273.630000px;}
.yf3{bottom:273.810000px;}
.y116{bottom:275.430000px;}
.y19b{bottom:276.510000px;}
.y1c7{bottom:277.770000px;}
.yc1{bottom:277.950000px;}
.y2e{bottom:281.910000px;}
.y1f3{bottom:282.630000px;}
.y1e9{bottom:282.810000px;}
.y15{bottom:283.530000px;}
.y226{bottom:283.710000px;}
.y138{bottom:284.430000px;}
.y71{bottom:286.410000px;}
.y1e4{bottom:287.670000px;}
.y167{bottom:291.630000px;}
.y3b{bottom:292.710000px;}
.y96{bottom:293.430000px;}
.yf2{bottom:293.610000px;}
.y115{bottom:295.230000px;}
.y19a{bottom:296.490000px;}
.y1c6{bottom:297.570000px;}
.yc0{bottom:297.930000px;}
.y2d{bottom:301.710000px;}
.y1f2{bottom:302.430000px;}
.y225{bottom:303.510000px;}
.y137{bottom:304.230000px;}
.y17e{bottom:304.410000px;}
.y70{bottom:306.210000px;}
.y166{bottom:311.430000px;}
.y3a{bottom:312.510000px;}
.y95{bottom:313.410000px;}
.y114{bottom:315.030000px;}
.y199{bottom:316.290000px;}
.y1c5{bottom:317.370000px;}
.ybf{bottom:317.730000px;}
.y2c{bottom:321.510000px;}
.y1f1{bottom:322.410000px;}
.y224{bottom:323.310000px;}
.y136{bottom:324.030000px;}
.y17d{bottom:324.210000px;}
.y6f{bottom:326.010000px;}
.y165{bottom:331.230000px;}
.y39{bottom:332.310000px;}
.ycc{bottom:333.210000px;}
.y1e3{bottom:333.390000px;}
.y113{bottom:335.010000px;}
.y198{bottom:336.090000px;}
.y1c4{bottom:337.170000px;}
.ybe{bottom:337.530000px;}
.y2b{bottom:341.310000px;}
.y94{bottom:342.210000px;}
.y223{bottom:343.110000px;}
.y135{bottom:344.010000px;}
.y6e{bottom:345.810000px;}
.y164{bottom:351.030000px;}
.y38{bottom:352.110000px;}
.ycb{bottom:353.010000px;}
.yf1{bottom:354.090000px;}
.y112{bottom:354.810000px;}
.y197{bottom:355.890000px;}
.ybd{bottom:357.330000px;}
.y2a{bottom:361.110000px;}
.y93{bottom:362.010000px;}
.y222{bottom:362.910000px;}
.y134{bottom:363.810000px;}
.y6d{bottom:365.610000px;}
.y1c3{bottom:366.150000px;}
.y163{bottom:371.010000px;}
.y1de{bottom:372.810000px;}
.yf0{bottom:374.070000px;}
.y111{bottom:374.610000px;}
.y196{bottom:375.690000px;}
.ybc{bottom:377.130000px;}
.y1e2{bottom:378.930000px;}
.y29{bottom:381.090000px;}
.y92{bottom:381.810000px;}
.y221{bottom:382.890000px;}
.y133{bottom:383.610000px;}
.y6c{bottom:385.590000px;}
.y1c2{bottom:385.950000px;}
.y162{bottom:390.810000px;}
.y1dd{bottom:392.610000px;}
.yef{bottom:393.870000px;}
.y110{bottom:394.410000px;}
.y195{bottom:395.670000px;}
.ybb{bottom:397.110000px;}
.y28{bottom:400.890000px;}
.y91{bottom:401.610000px;}
.y220{bottom:402.690000px;}
.y132{bottom:403.410000px;}
.y17c{bottom:403.590000px;}
.y6b{bottom:405.390000px;}
.y1c1{bottom:405.750000px;}
.y161{bottom:410.610000px;}
.y1dc{bottom:412.590000px;}
.y10f{bottom:414.210000px;}
.yee{bottom:414.750000px;}
.y194{bottom:415.470000px;}
.yba{bottom:416.910000px;}
.y27{bottom:420.690000px;}
.y90{bottom:421.590000px;}
.y21f{bottom:422.490000px;}
.y131{bottom:423.210000px;}
.y17b{bottom:423.390000px;}
.y1e0{bottom:424.650000px;}
.y1c0{bottom:425.550000px;}
.y160{bottom:430.410000px;}
.y1db{bottom:432.390000px;}
.y6a{bottom:434.190000px;}
.yed{bottom:434.550000px;}
.y193{bottom:435.270000px;}
.yb9{bottom:436.710000px;}
.y26{bottom:440.490000px;}
.y8f{bottom:441.390000px;}
.y21e{bottom:442.290000px;}
.y130{bottom:443.190000px;}
.y1bf{bottom:445.395000px;}
.y15f{bottom:450.255000px;}
.y1da{bottom:452.235000px;}
.y69{bottom:454.035000px;}
.yec{bottom:454.395000px;}
.y192{bottom:455.115000px;}
.yb8{bottom:456.555000px;}
.y25{bottom:460.335000px;}
.y8e{bottom:461.235000px;}
.y21d{bottom:462.135000px;}
.y12f{bottom:463.035000px;}
.y1be{bottom:465.375000px;}
.y15e{bottom:470.235000px;}
.y1df{bottom:470.415000px;}
.y1d9{bottom:472.035000px;}
.y68{bottom:473.835000px;}
.yeb{bottom:474.195000px;}
.y191{bottom:474.915000px;}
.yb7{bottom:476.355000px;}
.y24{bottom:480.315000px;}
.y8d{bottom:481.035000px;}
.y21c{bottom:482.115000px;}
.y12e{bottom:482.835000px;}
.y1bd{bottom:485.175000px;}
.y15d{bottom:490.035000px;}
.y1d8{bottom:491.835000px;}
.y10e{bottom:493.635000px;}
.y190{bottom:494.895000px;}
.y14{bottom:495.075000px;}
.yea{bottom:495.255000px;}
.yb6{bottom:496.335000px;}
.y8c{bottom:500.835000px;}
.y21b{bottom:501.915000px;}
.y12d{bottom:502.635000px;}
.y67{bottom:502.815000px;}
.y1bc{bottom:504.975000px;}
.y1d7{bottom:511.815000px;}
.y10d{bottom:513.435000px;}
.y18f{bottom:514.695000px;}
.ye9{bottom:515.055000px;}
.y15c{bottom:518.835000px;}
.y8b{bottom:520.815000px;}
.y21a{bottom:521.715000px;}
.y12c{bottom:522.435000px;}
.y66{bottom:522.615000px;}
.y1bb{bottom:524.775000px;}
.yb5{bottom:525.135000px;}
.y1d6{bottom:531.615000px;}
.y10c{bottom:533.415000px;}
.y18e{bottom:534.495000px;}
.ye8{bottom:534.855000px;}
.y15b{bottom:538.635000px;}
.y8a{bottom:540.615000px;}
.y219{bottom:541.515000px;}
.y65{bottom:542.415000px;}
.y1ba{bottom:544.575000px;}
.yb4{bottom:544.935000px;}
.y1d5{bottom:551.415000px;}
.y10b{bottom:553.215000px;}
.y18d{bottom:554.295000px;}
.ye7{bottom:555.735000px;}
.y15a{bottom:558.435000px;}
.y89{bottom:560.415000px;}
.y218{bottom:561.315000px;}
.y64{bottom:562.215000px;}
.y1b9{bottom:564.555000px;}
.yb3{bottom:564.735000px;}
.y1d4{bottom:571.215000px;}
.y10a{bottom:573.015000px;}
.y18c{bottom:574.095000px;}
.ye6{bottom:575.535000px;}
.y159{bottom:578.415000px;}
.y88{bottom:580.215000px;}
.y217{bottom:581.295000px;}
.y63{bottom:582.015000px;}
.y1b8{bottom:584.355000px;}
.yb2{bottom:584.535000px;}
.y1d3{bottom:591.015000px;}
.y109{bottom:592.815000px;}
.y18b{bottom:594.075000px;}
.ye5{bottom:595.515000px;}
.y158{bottom:598.215000px;}
.y87{bottom:600.015000px;}
.y12b{bottom:600.915000px;}
.y216{bottom:601.095000px;}
.y62{bottom:601.995000px;}
.y1b7{bottom:604.155000px;}
.yb1{bottom:605.595000px;}
.y1d2{bottom:610.995000px;}
.y108{bottom:612.615000px;}
.y18a{bottom:613.875000px;}
.ye4{bottom:616.395000px;}
.y157{bottom:618.015000px;}
.y86{bottom:619.995000px;}
.y215{bottom:620.895000px;}
.y61{bottom:621.795000px;}
.y1b6{bottom:623.955000px;}
.yb0{bottom:625.395000px;}
.y1d1{bottom:630.795000px;}
.y107{bottom:632.415000px;}
.y189{bottom:633.675000px;}
.ye3{bottom:636.195000px;}
.y156{bottom:637.815000px;}
.y85{bottom:639.795000px;}
.y214{bottom:640.695000px;}
.y17a{bottom:641.595000px;}
.y1b5{bottom:643.755000px;}
.yaf{bottom:645.195000px;}
.y12a{bottom:646.635000px;}
.y60{bottom:650.595000px;}
.y106{bottom:652.395000px;}
.y188{bottom:653.475000px;}
.ye2{bottom:655.995000px;}
.y155{bottom:657.615000px;}
.y84{bottom:659.595000px;}
.y213{bottom:660.495000px;}
.y179{bottom:661.395000px;}
.y1b4{bottom:663.735000px;}
.yae{bottom:666.075000px;}
.y5f{bottom:670.395000px;}
.y105{bottom:672.195000px;}
.y187{bottom:673.275000px;}
.ye1{bottom:675.795000px;}
.y154{bottom:677.595000px;}
.y83{bottom:679.395000px;}
.y212{bottom:680.475000px;}
.y178{bottom:681.225000px;}
.y1b3{bottom:683.565000px;}
.yad{bottom:685.905000px;}
.y5e{bottom:690.225000px;}
.y104{bottom:692.025000px;}
.y129{bottom:692.205000px;}
.ye0{bottom:696.885000px;}
.y153{bottom:697.425000px;}
.y82{bottom:699.225000px;}
.y211{bottom:700.305000px;}
.y177{bottom:701.205000px;}
.y1b2{bottom:703.365000px;}
.yac{bottom:705.885000px;}
.y5d{bottom:710.205000px;}
.y103{bottom:711.825000px;}
.ydf{bottom:716.685000px;}
.y152{bottom:717.225000px;}
.y128{bottom:718.125000px;}
.y81{bottom:719.205000px;}
.y210{bottom:720.105000px;}
.y1b1{bottom:723.165000px;}
.yab{bottom:726.765000px;}
.y5c{bottom:730.005000px;}
.y102{bottom:731.625000px;}
.yde{bottom:736.485000px;}
.y151{bottom:737.025000px;}
.y186{bottom:737.925000px;}
.y80{bottom:739.005000px;}
.y20f{bottom:739.905000px;}
.y1b0{bottom:742.965000px;}
.y127{bottom:744.045000px;}
.yaa{bottom:746.565000px;}
.y5b{bottom:749.805000px;}
.y101{bottom:751.605000px;}
.ydd{bottom:756.285000px;}
.y150{bottom:756.825000px;}
.y7f{bottom:758.805000px;}
.y20e{bottom:759.705000px;}
.y1af{bottom:762.945000px;}
.ya9{bottom:766.365000px;}
.y5a{bottom:769.605000px;}
.y126{bottom:769.785000px;}
.y100{bottom:771.405000px;}
.y14f{bottom:776.805000px;}
.y7e{bottom:778.605000px;}
.y20d{bottom:779.685000px;}
.y1ae{bottom:782.745000px;}
.y185{bottom:783.645000px;}
.ydc{bottom:785.085000px;}
.ya8{bottom:787.245000px;}
.y59{bottom:789.405000px;}
.yff{bottom:791.205000px;}
.y12{bottom:793.365000px;}
.y14e{bottom:796.605000px;}
.y7d{bottom:798.405000px;}
.y20c{bottom:799.485000px;}
.y1ad{bottom:802.545000px;}
.ydb{bottom:805.065000px;}
.ya7{bottom:807.225000px;}
.y58{bottom:809.385000px;}
.yfe{bottom:811.005000px;}
.y125{bottom:815.505000px;}
.y14d{bottom:816.405000px;}
.y7c{bottom:818.385000px;}
.y20b{bottom:819.285000px;}
.y1ac{bottom:822.345000px;}
.yda{bottom:824.865000px;}
.y11{bottom:825.945000px;}
.ya6{bottom:827.025000px;}
.y57{bottom:829.185000px;}
.y184{bottom:829.365000px;}
.yfd{bottom:830.805000px;}
.y14c{bottom:836.205000px;}
.y7b{bottom:838.185000px;}
.y20a{bottom:839.085000px;}
.y121{bottom:841.245000px;}
.y1ab{bottom:842.145000px;}
.yd9{bottom:845.745000px;}
.ya5{bottom:847.905000px;}
.y56{bottom:848.985000px;}
.yfc{bottom:850.785000px;}
.y10{bottom:851.145000px;}
.y14b{bottom:856.005000px;}
.y7a{bottom:857.985000px;}
.y209{bottom:858.885000px;}
.y1aa{bottom:862.125000px;}
.yf{bottom:866.265000px;}
.yd8{bottom:866.625000px;}
.ya4{bottom:867.705000px;}
.y176{bottom:868.785000px;}
.yfb{bottom:870.585000px;}
.y183{bottom:874.905000px;}
.y14a{bottom:875.805000px;}
.y55{bottom:877.785000px;}
.y208{bottom:878.865000px;}
.y1a9{bottom:881.925000px;}
.yd7{bottom:886.425000px;}
.y11f{bottom:886.965000px;}
.ye{bottom:887.505000px;}
.y175{bottom:888.585000px;}
.yfa{bottom:890.385000px;}
.y149{bottom:895.785000px;}
.y54{bottom:897.585000px;}
.y207{bottom:898.665000px;}
.y1a8{bottom:901.725000px;}
.yd6{bottom:906.405000px;}
.ya3{bottom:908.565000px;}
.yf9{bottom:910.185000px;}
.yd{bottom:910.905000px;}
.y148{bottom:915.585000px;}
.y53{bottom:917.610000px;}
.y206{bottom:918.510000px;}
.y182{bottom:920.670000px;}
.y1a7{bottom:921.570000px;}
.yd5{bottom:927.330000px;}
.ya2{bottom:928.410000px;}
.yf8{bottom:930.030000px;}
.y147{bottom:935.430000px;}
.y52{bottom:937.410000px;}
.y205{bottom:938.310000px;}
.y1a6{bottom:940.470000px;}
.yc{bottom:942.810000px;}
.yd4{bottom:947.130000px;}
.ya1{bottom:948.210000px;}
.yf7{bottom:950.010000px;}
.y146{bottom:955.230000px;}
.y51{bottom:957.210000px;}
.y204{bottom:958.110000px;}
.y181{bottom:966.390000px;}
.yf6{bottom:966.570000px;}
.yd3{bottom:968.010000px;}
.yb{bottom:974.490000px;}
.y145{bottom:975.030000px;}
.y50{bottom:977.010000px;}
.y203{bottom:978.090000px;}
.y1a5{bottom:986.190000px;}
.yd2{bottom:987.810000px;}
.y144{bottom:995.010000px;}
.y4f{bottom:996.810000px;}
.y202{bottom:997.890000px;}
.ya{bottom:1006.170000px;}
.yd1{bottom:1007.790000px;}
.y143{bottom:1013.910000px;}
.y4e{bottom:1016.790000px;}
.y201{bottom:1017.690000px;}
.y174{bottom:1027.590000px;}
.y8{bottom:1032.990000px;}
.y4d{bottom:1036.590000px;}
.y200{bottom:1037.490000px;}
.y142{bottom:1039.650000px;}
.y173{bottom:1047.390000px;}
.y1{bottom:1049.370000px;}
.y4c{bottom:1056.390000px;}
.y1ff{bottom:1057.290000px;}
.y141{bottom:1065.570000px;}
.y172{bottom:1067.190000px;}
.y4b{bottom:1076.190000px;}
.y1fe{bottom:1076.910000px;}
.y4a{bottom:1095.990000px;}
.y49{bottom:1115.970000px;}
.y47{bottom:1145.670000px;}
.y46{bottom:1168.560000px;}
.y45{bottom:1191.600000px;}
.h18{height:19.800000px;}
.h1a{height:19.980000px;}
.h1c{height:20.016000px;}
.hd{height:26.100000px;}
.hb{height:34.855313px;}
.h19{height:39.600000px;}
.h16{height:39.636000px;}
.h17{height:39.780000px;}
.h1b{height:39.816000px;}
.h9{height:42.164648px;}
.h11{height:42.854414px;}
.h15{height:45.024258px;}
.hc{height:45.461953px;}
.h7{height:47.933437px;}
.h12{height:48.075820px;}
.h4{height:48.774375px;}
.h14{height:51.706406px;}
.h3{height:53.015625px;}
.ha{height:53.224453px;}
.h10{height:53.573906px;}
.he{height:55.735313px;}
.h13{height:56.574492px;}
.h5{height:62.028281px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h2{height:158.430000px;}
.hf{height:297.570000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w9{width:38.880000px;}
.w17{width:48.636000px;}
.w11{width:51.480000px;}
.wa{width:51.516000px;}
.w14{width:52.236000px;}
.w1a{width:55.080000px;}
.wd{width:63.900000px;}
.we{width:68.976000px;}
.w18{width:85.680000px;}
.w10{width:89.100000px;}
.w13{width:91.440000px;}
.w16{width:92.160000px;}
.wb{width:111.420000px;}
.w19{width:130.716000px;}
.w3{width:146.736000px;}
.w7{width:153.390000px;}
.w8{width:157.710000px;}
.wc{width:180.570000px;}
.w12{width:220.170000px;}
.wf{width:222.735000px;}
.w15{width:222.870000px;}
.w6{width:626.730000px;}
.w2{width:637.890000px;}
.w5{width:780.120000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:1.080000px;}
.x2{left:8.100000px;}
.x1{left:54.360000px;}
.x5{left:56.520000px;}
.x22{left:64.619987px;}
.x21{left:69.479987px;}
.x8{left:80.999987px;}
.x20{left:96.515987px;}
.x9{left:108.035987px;}
.x4{left:138.630000px;}
.x10{left:218.910000px;}
.x11{left:261.570000px;}
.x16{left:283.935000px;}
.x12{left:316.875000px;}
.x17{left:376.815000px;}
.x7{left:461.444987px;}
.x18{left:464.865000px;}
.x1e{left:476.924987px;}
.xb{left:488.444987px;}
.x13{left:489.885000px;}
.x1f{left:503.924987px;}
.x1b{left:510.765000px;}
.xc{left:515.444987px;}
.xd{left:542.444987px;}
.xe{left:569.444987px;}
.x1c{left:600.225000px;}
.x14{left:674.250000px;}
.x6{left:683.250000px;}
.x19{left:688.650000px;}
.x3{left:692.250000px;}
.x1d{left:734.730000px;}
.x15{left:741.930000px;}
.x1a{left:783.690000px;}
.xa{left:786.749987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.252800pt;}
.ls18{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.616320pt;}
.ls7{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls6{letter-spacing:2.653440pt;}
.ls17{letter-spacing:14.672640pt;}
.lsd{letter-spacing:40.912640pt;}
.ls16{letter-spacing:41.040640pt;}
.lsf{letter-spacing:49.232640pt;}
.lsc{letter-spacing:56.912640pt;}
.ws6{word-spacing:-50.560000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.ws4{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.892800pt;}
.wsd{word-spacing:-12.870933pt;}
.ws8{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._6{margin-left:-4.936960pt;}
._5{margin-left:-3.915520pt;}
._19{margin-left:-3.007360pt;}
._15{margin-left:-1.992960pt;}
._0{margin-left:-1.088000pt;}
._4{width:0.936320pt;}
._1{width:1.941333pt;}
._9{width:2.839467pt;}
._a{width:4.168107pt;}
._7{width:5.788160pt;}
._8{width:7.066667pt;}
._f{width:7.982720pt;}
._21{width:8.889600pt;}
._c{width:9.793920pt;}
._b{width:10.783360pt;}
._e{width:11.986347pt;}
._28{width:14.326400pt;}
._3{width:15.321600pt;}
._1d{width:16.892160pt;}
._10{width:17.901440pt;}
._d{width:19.461760pt;}
._29{width:20.377600pt;}
._18{width:21.374080pt;}
._17{width:22.887040pt;}
._16{width:24.010240pt;}
._22{width:25.189760pt;}
._11{width:26.101760pt;}
._1a{width:27.605760pt;}
._20{width:28.634880pt;}
._1f{width:29.640960pt;}
._2f{width:31.041920pt;}
._25{width:32.099840pt;}
._1b{width:33.697920pt;}
._26{width:34.687360pt;}
._30{width:35.589760pt;}
._24{width:36.759040pt;}
._23{width:37.874560pt;}
._35{width:39.741440pt;}
._27{width:40.709760pt;}
._3c{width:41.785600pt;}
._33{width:42.675200pt;}
._1e{width:44.162560pt;}
._2a{width:45.311360pt;}
._1c{width:46.340480pt;}
._36{width:47.275947pt;}
._3d{width:48.565760pt;}
._31{width:49.454720pt;}
._37{width:50.888960pt;}
._3e{width:52.502400pt;}
._3f{width:54.414720pt;}
._40{width:55.351040pt;}
._4c{width:56.433280pt;}
._42{width:58.166400pt;}
._3a{width:59.142400pt;}
._34{width:60.523520pt;}
._41{width:62.648320pt;}
._13{width:63.584640pt;}
._3b{width:65.038720pt;}
._14{width:68.046720pt;}
._38{width:69.553920pt;}
._39{width:70.689280pt;}
._50{width:71.586560pt;}
._4f{width:75.855360pt;}
._4e{width:77.077120pt;}
._2e{width:81.486080pt;}
._4b{width:87.242880pt;}
._43{width:92.003840pt;}
._2b{width:93.032960pt;}
._32{width:101.850880pt;}
._53{width:103.955840pt;}
._46{width:109.586560pt;}
._2d{width:131.230080pt;}
._12{width:132.723200pt;}
._2c{width:135.137280pt;}
._48{width:151.923200pt;}
._55{width:167.965440pt;}
._44{width:213.880960pt;}
._45{width:214.776747pt;}
._51{width:221.297920pt;}
._52{width:222.494080pt;}
._2{width:269.785173pt;}
._47{width:290.692480pt;}
._56{width:327.342080pt;}
._4a{width:345.811200pt;}
._49{width:346.873600pt;}
._4d{width:368.367360pt;}
._54{width:785.670827pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.800000pt;}
.y23{bottom:5.120000pt;}
.y123{bottom:5.280000pt;}
.y1ec{bottom:5.306667pt;}
.y13{bottom:6.720000pt;}
.y6{bottom:12.320000pt;}
.y120{bottom:13.920000pt;}
.y124{bottom:14.080000pt;}
.y1e8{bottom:14.106667pt;}
.y22{bottom:22.720000pt;}
.y122{bottom:22.880000pt;}
.y1e7{bottom:22.906667pt;}
.y1e1{bottom:22.920000pt;}
.y5{bottom:40.160000pt;}
.y21{bottom:40.320000pt;}
.y48{bottom:53.440000pt;}
.y20{bottom:58.080000pt;}
.y9{bottom:60.960000pt;}
.y4{bottom:67.840000pt;}
.y1fd{bottom:74.880000pt;}
.y1f{bottom:75.680000pt;}
.yd0{bottom:76.480000pt;}
.y171{bottom:82.880000pt;}
.ya0{bottom:84.480000pt;}
.y1a4{bottom:87.200000pt;}
.y79{bottom:87.840000pt;}
.y1d0{bottom:88.160000pt;}
.yca{bottom:88.480000pt;}
.y37{bottom:88.640000pt;}
.y1fc{bottom:92.480000pt;}
.y1e{bottom:93.280000pt;}
.y22d{bottom:93.440000pt;}
.y140{bottom:94.080000pt;}
.ycf{bottom:94.240000pt;}
.y3{bottom:95.706667pt;}
.y1f0{bottom:96.800000pt;}
.y170{bottom:100.480000pt;}
.y44{bottom:101.440000pt;}
.y9f{bottom:102.240000pt;}
.y11e{bottom:103.680000pt;}
.y1a3{bottom:104.800000pt;}
.y36{bottom:105.440000pt;}
.y1cf{bottom:105.760000pt;}
.yc9{bottom:106.080000pt;}
.y1fb{bottom:110.240000pt;}
.y1d{bottom:110.880000pt;}
.y22c{bottom:111.040000pt;}
.y13f{bottom:111.680000pt;}
.yce{bottom:111.840000pt;}
.y1ef{bottom:113.600000pt;}
.y16f{bottom:118.080000pt;}
.y43{bottom:119.040000pt;}
.y9e{bottom:119.840000pt;}
.y11d{bottom:121.440000pt;}
.y35{bottom:122.080000pt;}
.y1a2{bottom:122.400000pt;}
.y78{bottom:123.040000pt;}
.y1ce{bottom:123.360000pt;}
.yc8{bottom:123.680000pt;}
.y2{bottom:124.026667pt;}
.y1fa{bottom:127.840000pt;}
.y1c{bottom:128.480000pt;}
.y22b{bottom:128.640000pt;}
.ycd{bottom:129.440000pt;}
.y16e{bottom:135.680000pt;}
.y1ee{bottom:136.480000pt;}
.y42{bottom:136.800000pt;}
.y9d{bottom:137.440000pt;}
.y34{bottom:138.880000pt;}
.y11c{bottom:139.040000pt;}
.y1a1{bottom:140.000000pt;}
.y1cd{bottom:141.120000pt;}
.yc7{bottom:141.280000pt;}
.y1f9{bottom:145.440000pt;}
.y1b{bottom:146.240000pt;}
.y13e{bottom:147.040000pt;}
.y77{bottom:148.640000pt;}
.y16d{bottom:153.440000pt;}
.y41{bottom:154.400000pt;}
.y9c{bottom:155.040000pt;}
.yf5{bottom:155.200000pt;}
.y33{bottom:155.680000pt;}
.y11b{bottom:156.640000pt;}
.y1a0{bottom:157.600000pt;}
.y1cc{bottom:158.720000pt;}
.yc6{bottom:158.880000pt;}
.y1ed{bottom:159.520000pt;}
.y1f8{bottom:163.040000pt;}
.y1a{bottom:163.840000pt;}
.y22a{bottom:164.000000pt;}
.y13d{bottom:164.640000pt;}
.y76{bottom:166.400000pt;}
.y16c{bottom:171.040000pt;}
.y40{bottom:172.000000pt;}
.y32{bottom:172.320000pt;}
.y9b{bottom:172.640000pt;}
.yf4{bottom:172.800000pt;}
.y11a{bottom:174.240000pt;}
.y1e6{bottom:174.400000pt;}
.y19f{bottom:175.360000pt;}
.y1cb{bottom:176.320000pt;}
.yc5{bottom:176.640000pt;}
.y1f7{bottom:180.640000pt;}
.y19{bottom:181.466667pt;}
.y229{bottom:181.600000pt;}
.y13c{bottom:182.240000pt;}
.y180{bottom:182.400000pt;}
.y75{bottom:184.000000pt;}
.y16b{bottom:188.666667pt;}
.y31{bottom:189.146667pt;}
.y3f{bottom:189.626667pt;}
.y9a{bottom:190.426667pt;}
.y119{bottom:191.866667pt;}
.y19e{bottom:192.986667pt;}
.y1ca{bottom:193.946667pt;}
.yc4{bottom:194.266667pt;}
.y1f6{bottom:198.426667pt;}
.y18{bottom:199.066667pt;}
.y228{bottom:199.226667pt;}
.y13b{bottom:199.866667pt;}
.y17f{bottom:200.026667pt;}
.y74{bottom:201.626667pt;}
.y1eb{bottom:205.466667pt;}
.y30{bottom:205.786667pt;}
.y16a{bottom:206.266667pt;}
.y3e{bottom:207.226667pt;}
.y99{bottom:208.026667pt;}
.y118{bottom:209.626667pt;}
.y19d{bottom:210.586667pt;}
.y1c9{bottom:211.546667pt;}
.yc3{bottom:211.866667pt;}
.y1e5{bottom:215.066667pt;}
.y1f5{bottom:216.026667pt;}
.y17{bottom:216.666667pt;}
.y227{bottom:216.826667pt;}
.y13a{bottom:217.626667pt;}
.y73{bottom:219.226667pt;}
.y169{bottom:223.866667pt;}
.y3d{bottom:224.826667pt;}
.y98{bottom:225.626667pt;}
.y117{bottom:227.226667pt;}
.y19c{bottom:228.186667pt;}
.y1ea{bottom:228.506667pt;}
.y1c8{bottom:229.306667pt;}
.yc2{bottom:229.466667pt;}
.y2f{bottom:232.826667pt;}
.y1f4{bottom:233.626667pt;}
.y16{bottom:234.426667pt;}
.y139{bottom:235.226667pt;}
.y72{bottom:236.826667pt;}
.y168{bottom:241.626667pt;}
.y3c{bottom:242.586667pt;}
.y97{bottom:243.226667pt;}
.yf3{bottom:243.386667pt;}
.y116{bottom:244.826667pt;}
.y19b{bottom:245.786667pt;}
.y1c7{bottom:246.906667pt;}
.yc1{bottom:247.066667pt;}
.y2e{bottom:250.586667pt;}
.y1f3{bottom:251.226667pt;}
.y1e9{bottom:251.386667pt;}
.y15{bottom:252.026667pt;}
.y226{bottom:252.186667pt;}
.y138{bottom:252.826667pt;}
.y71{bottom:254.586667pt;}
.y1e4{bottom:255.706667pt;}
.y167{bottom:259.226667pt;}
.y3b{bottom:260.186667pt;}
.y96{bottom:260.826667pt;}
.yf2{bottom:260.986667pt;}
.y115{bottom:262.426667pt;}
.y19a{bottom:263.546667pt;}
.y1c6{bottom:264.506667pt;}
.yc0{bottom:264.826667pt;}
.y2d{bottom:268.186667pt;}
.y1f2{bottom:268.826667pt;}
.y225{bottom:269.786667pt;}
.y137{bottom:270.426667pt;}
.y17e{bottom:270.586667pt;}
.y70{bottom:272.186667pt;}
.y166{bottom:276.826667pt;}
.y3a{bottom:277.786667pt;}
.y95{bottom:278.586667pt;}
.y114{bottom:280.026667pt;}
.y199{bottom:281.146667pt;}
.y1c5{bottom:282.106667pt;}
.ybf{bottom:282.426667pt;}
.y2c{bottom:285.786667pt;}
.y1f1{bottom:286.586667pt;}
.y224{bottom:287.386667pt;}
.y136{bottom:288.026667pt;}
.y17d{bottom:288.186667pt;}
.y6f{bottom:289.786667pt;}
.y165{bottom:294.426667pt;}
.y39{bottom:295.386667pt;}
.ycc{bottom:296.186667pt;}
.y1e3{bottom:296.346667pt;}
.y113{bottom:297.786667pt;}
.y198{bottom:298.746667pt;}
.y1c4{bottom:299.706667pt;}
.ybe{bottom:300.026667pt;}
.y2b{bottom:303.386667pt;}
.y94{bottom:304.186667pt;}
.y223{bottom:304.986667pt;}
.y135{bottom:305.786667pt;}
.y6e{bottom:307.386667pt;}
.y164{bottom:312.026667pt;}
.y38{bottom:312.986667pt;}
.ycb{bottom:313.786667pt;}
.yf1{bottom:314.746667pt;}
.y112{bottom:315.386667pt;}
.y197{bottom:316.346667pt;}
.ybd{bottom:317.626667pt;}
.y2a{bottom:320.986667pt;}
.y93{bottom:321.786667pt;}
.y222{bottom:322.586667pt;}
.y134{bottom:323.386667pt;}
.y6d{bottom:324.986667pt;}
.y1c3{bottom:325.466667pt;}
.y163{bottom:329.786667pt;}
.y1de{bottom:331.386667pt;}
.yf0{bottom:332.506667pt;}
.y111{bottom:332.986667pt;}
.y196{bottom:333.946667pt;}
.ybc{bottom:335.226667pt;}
.y1e2{bottom:336.826667pt;}
.y29{bottom:338.746667pt;}
.y92{bottom:339.386667pt;}
.y221{bottom:340.346667pt;}
.y133{bottom:340.986667pt;}
.y6c{bottom:342.746667pt;}
.y1c2{bottom:343.066667pt;}
.y162{bottom:347.386667pt;}
.y1dd{bottom:348.986667pt;}
.yef{bottom:350.106667pt;}
.y110{bottom:350.586667pt;}
.y195{bottom:351.706667pt;}
.ybb{bottom:352.986667pt;}
.y28{bottom:356.346667pt;}
.y91{bottom:356.986667pt;}
.y220{bottom:357.946667pt;}
.y132{bottom:358.586667pt;}
.y17c{bottom:358.746667pt;}
.y6b{bottom:360.346667pt;}
.y1c1{bottom:360.666667pt;}
.y161{bottom:364.986667pt;}
.y1dc{bottom:366.746667pt;}
.y10f{bottom:368.186667pt;}
.yee{bottom:368.666667pt;}
.y194{bottom:369.306667pt;}
.yba{bottom:370.586667pt;}
.y27{bottom:373.946667pt;}
.y90{bottom:374.746667pt;}
.y21f{bottom:375.546667pt;}
.y131{bottom:376.186667pt;}
.y17b{bottom:376.346667pt;}
.y1e0{bottom:377.466667pt;}
.y1c0{bottom:378.266667pt;}
.y160{bottom:382.586667pt;}
.y1db{bottom:384.346667pt;}
.y6a{bottom:385.946667pt;}
.yed{bottom:386.266667pt;}
.y193{bottom:386.906667pt;}
.yb9{bottom:388.186667pt;}
.y26{bottom:391.546667pt;}
.y8f{bottom:392.346667pt;}
.y21e{bottom:393.146667pt;}
.y130{bottom:393.946667pt;}
.y1bf{bottom:395.906667pt;}
.y15f{bottom:400.226667pt;}
.y1da{bottom:401.986667pt;}
.y69{bottom:403.586667pt;}
.yec{bottom:403.906667pt;}
.y192{bottom:404.546667pt;}
.yb8{bottom:405.826667pt;}
.y25{bottom:409.186667pt;}
.y8e{bottom:409.986667pt;}
.y21d{bottom:410.786667pt;}
.y12f{bottom:411.586667pt;}
.y1be{bottom:413.666667pt;}
.y15e{bottom:417.986667pt;}
.y1df{bottom:418.146667pt;}
.y1d9{bottom:419.586667pt;}
.y68{bottom:421.186667pt;}
.yeb{bottom:421.506667pt;}
.y191{bottom:422.146667pt;}
.yb7{bottom:423.426667pt;}
.y24{bottom:426.946667pt;}
.y8d{bottom:427.586667pt;}
.y21c{bottom:428.546667pt;}
.y12e{bottom:429.186667pt;}
.y1bd{bottom:431.266667pt;}
.y15d{bottom:435.586667pt;}
.y1d8{bottom:437.186667pt;}
.y10e{bottom:438.786667pt;}
.y190{bottom:439.906667pt;}
.y14{bottom:440.066667pt;}
.yea{bottom:440.226667pt;}
.yb6{bottom:441.186667pt;}
.y8c{bottom:445.186667pt;}
.y21b{bottom:446.146667pt;}
.y12d{bottom:446.786667pt;}
.y67{bottom:446.946667pt;}
.y1bc{bottom:448.866667pt;}
.y1d7{bottom:454.946667pt;}
.y10d{bottom:456.386667pt;}
.y18f{bottom:457.506667pt;}
.ye9{bottom:457.826667pt;}
.y15c{bottom:461.186667pt;}
.y8b{bottom:462.946667pt;}
.y21a{bottom:463.746667pt;}
.y12c{bottom:464.386667pt;}
.y66{bottom:464.546667pt;}
.y1bb{bottom:466.466667pt;}
.yb5{bottom:466.786667pt;}
.y1d6{bottom:472.546667pt;}
.y10c{bottom:474.146667pt;}
.y18e{bottom:475.106667pt;}
.ye8{bottom:475.426667pt;}
.y15b{bottom:478.786667pt;}
.y8a{bottom:480.546667pt;}
.y219{bottom:481.346667pt;}
.y65{bottom:482.146667pt;}
.y1ba{bottom:484.066667pt;}
.yb4{bottom:484.386667pt;}
.y1d5{bottom:490.146667pt;}
.y10b{bottom:491.746667pt;}
.y18d{bottom:492.706667pt;}
.ye7{bottom:493.986667pt;}
.y15a{bottom:496.386667pt;}
.y89{bottom:498.146667pt;}
.y218{bottom:498.946667pt;}
.y64{bottom:499.746667pt;}
.y1b9{bottom:501.826667pt;}
.yb3{bottom:501.986667pt;}
.y1d4{bottom:507.746667pt;}
.y10a{bottom:509.346667pt;}
.y18c{bottom:510.306667pt;}
.ye6{bottom:511.586667pt;}
.y159{bottom:514.146667pt;}
.y88{bottom:515.746667pt;}
.y217{bottom:516.706667pt;}
.y63{bottom:517.346667pt;}
.y1b8{bottom:519.426667pt;}
.yb2{bottom:519.586667pt;}
.y1d3{bottom:525.346667pt;}
.y109{bottom:526.946667pt;}
.y18b{bottom:528.066667pt;}
.ye5{bottom:529.346667pt;}
.y158{bottom:531.746667pt;}
.y87{bottom:533.346667pt;}
.y12b{bottom:534.146667pt;}
.y216{bottom:534.306667pt;}
.y62{bottom:535.106667pt;}
.y1b7{bottom:537.026667pt;}
.yb1{bottom:538.306667pt;}
.y1d2{bottom:543.106667pt;}
.y108{bottom:544.546667pt;}
.y18a{bottom:545.666667pt;}
.ye4{bottom:547.906667pt;}
.y157{bottom:549.346667pt;}
.y86{bottom:551.106667pt;}
.y215{bottom:551.906667pt;}
.y61{bottom:552.706667pt;}
.y1b6{bottom:554.626667pt;}
.yb0{bottom:555.906667pt;}
.y1d1{bottom:560.706667pt;}
.y107{bottom:562.146667pt;}
.y189{bottom:563.266667pt;}
.ye3{bottom:565.506667pt;}
.y156{bottom:566.946667pt;}
.y85{bottom:568.706667pt;}
.y214{bottom:569.506667pt;}
.y17a{bottom:570.306667pt;}
.y1b5{bottom:572.226667pt;}
.yaf{bottom:573.506667pt;}
.y12a{bottom:574.786667pt;}
.y60{bottom:578.306667pt;}
.y106{bottom:579.906667pt;}
.y188{bottom:580.866667pt;}
.ye2{bottom:583.106667pt;}
.y155{bottom:584.546667pt;}
.y84{bottom:586.306667pt;}
.y213{bottom:587.106667pt;}
.y179{bottom:587.906667pt;}
.y1b4{bottom:589.986667pt;}
.yae{bottom:592.066667pt;}
.y5f{bottom:595.906667pt;}
.y105{bottom:597.506667pt;}
.y187{bottom:598.466667pt;}
.ye1{bottom:600.706667pt;}
.y154{bottom:602.306667pt;}
.y83{bottom:603.906667pt;}
.y212{bottom:604.866667pt;}
.y178{bottom:605.533333pt;}
.y1b3{bottom:607.613333pt;}
.yad{bottom:609.693333pt;}
.y5e{bottom:613.533333pt;}
.y104{bottom:615.133333pt;}
.y129{bottom:615.293333pt;}
.ye0{bottom:619.453333pt;}
.y153{bottom:619.933333pt;}
.y82{bottom:621.533333pt;}
.y211{bottom:622.493333pt;}
.y177{bottom:623.293333pt;}
.y1b2{bottom:625.213333pt;}
.yac{bottom:627.453333pt;}
.y5d{bottom:631.293333pt;}
.y103{bottom:632.733333pt;}
.ydf{bottom:637.053333pt;}
.y152{bottom:637.533333pt;}
.y128{bottom:638.333333pt;}
.y81{bottom:639.293333pt;}
.y210{bottom:640.093333pt;}
.y1b1{bottom:642.813333pt;}
.yab{bottom:646.013333pt;}
.y5c{bottom:648.893333pt;}
.y102{bottom:650.333333pt;}
.yde{bottom:654.653333pt;}
.y151{bottom:655.133333pt;}
.y186{bottom:655.933333pt;}
.y80{bottom:656.893333pt;}
.y20f{bottom:657.693333pt;}
.y1b0{bottom:660.413333pt;}
.y127{bottom:661.373333pt;}
.yaa{bottom:663.613333pt;}
.y5b{bottom:666.493333pt;}
.y101{bottom:668.093333pt;}
.ydd{bottom:672.253333pt;}
.y150{bottom:672.733333pt;}
.y7f{bottom:674.493333pt;}
.y20e{bottom:675.293333pt;}
.y1af{bottom:678.173333pt;}
.ya9{bottom:681.213333pt;}
.y5a{bottom:684.093333pt;}
.y126{bottom:684.253333pt;}
.y100{bottom:685.693333pt;}
.y14f{bottom:690.493333pt;}
.y7e{bottom:692.093333pt;}
.y20d{bottom:693.053333pt;}
.y1ae{bottom:695.773333pt;}
.y185{bottom:696.573333pt;}
.ydc{bottom:697.853333pt;}
.ya8{bottom:699.773333pt;}
.y59{bottom:701.693333pt;}
.yff{bottom:703.293333pt;}
.y12{bottom:705.213333pt;}
.y14e{bottom:708.093333pt;}
.y7d{bottom:709.693333pt;}
.y20c{bottom:710.653333pt;}
.y1ad{bottom:713.373333pt;}
.ydb{bottom:715.613333pt;}
.ya7{bottom:717.533333pt;}
.y58{bottom:719.453333pt;}
.yfe{bottom:720.893333pt;}
.y125{bottom:724.893333pt;}
.y14d{bottom:725.693333pt;}
.y7c{bottom:727.453333pt;}
.y20b{bottom:728.253333pt;}
.y1ac{bottom:730.973333pt;}
.yda{bottom:733.213333pt;}
.y11{bottom:734.173333pt;}
.ya6{bottom:735.133333pt;}
.y57{bottom:737.053333pt;}
.y184{bottom:737.213333pt;}
.yfd{bottom:738.493333pt;}
.y14c{bottom:743.293333pt;}
.y7b{bottom:745.053333pt;}
.y20a{bottom:745.853333pt;}
.y121{bottom:747.773333pt;}
.y1ab{bottom:748.573333pt;}
.yd9{bottom:751.773333pt;}
.ya5{bottom:753.693333pt;}
.y56{bottom:754.653333pt;}
.yfc{bottom:756.253333pt;}
.y10{bottom:756.573333pt;}
.y14b{bottom:760.893333pt;}
.y7a{bottom:762.653333pt;}
.y209{bottom:763.453333pt;}
.y1aa{bottom:766.333333pt;}
.yf{bottom:770.013333pt;}
.yd8{bottom:770.333333pt;}
.ya4{bottom:771.293333pt;}
.y176{bottom:772.253333pt;}
.yfb{bottom:773.853333pt;}
.y183{bottom:777.693333pt;}
.y14a{bottom:778.493333pt;}
.y55{bottom:780.253333pt;}
.y208{bottom:781.213333pt;}
.y1a9{bottom:783.933333pt;}
.yd7{bottom:787.933333pt;}
.y11f{bottom:788.413333pt;}
.ye{bottom:788.893333pt;}
.y175{bottom:789.853333pt;}
.yfa{bottom:791.453333pt;}
.y149{bottom:796.253333pt;}
.y54{bottom:797.853333pt;}
.y207{bottom:798.813333pt;}
.y1a8{bottom:801.533333pt;}
.yd6{bottom:805.693333pt;}
.ya3{bottom:807.613333pt;}
.yf9{bottom:809.053333pt;}
.yd{bottom:809.693333pt;}
.y148{bottom:813.853333pt;}
.y53{bottom:815.653333pt;}
.y206{bottom:816.453333pt;}
.y182{bottom:818.373333pt;}
.y1a7{bottom:819.173333pt;}
.yd5{bottom:824.293333pt;}
.ya2{bottom:825.253333pt;}
.yf8{bottom:826.693333pt;}
.y147{bottom:831.493333pt;}
.y52{bottom:833.253333pt;}
.y205{bottom:834.053333pt;}
.y1a6{bottom:835.973333pt;}
.yc{bottom:838.053333pt;}
.yd4{bottom:841.893333pt;}
.ya1{bottom:842.853333pt;}
.yf7{bottom:844.453333pt;}
.y146{bottom:849.093333pt;}
.y51{bottom:850.853333pt;}
.y204{bottom:851.653333pt;}
.y181{bottom:859.013333pt;}
.yf6{bottom:859.173333pt;}
.yd3{bottom:860.453333pt;}
.yb{bottom:866.213333pt;}
.y145{bottom:866.693333pt;}
.y50{bottom:868.453333pt;}
.y203{bottom:869.413333pt;}
.y1a5{bottom:876.613333pt;}
.yd2{bottom:878.053333pt;}
.y144{bottom:884.453333pt;}
.y4f{bottom:886.053333pt;}
.y202{bottom:887.013333pt;}
.ya{bottom:894.373333pt;}
.yd1{bottom:895.813333pt;}
.y143{bottom:901.253333pt;}
.y4e{bottom:903.813333pt;}
.y201{bottom:904.613333pt;}
.y174{bottom:913.413333pt;}
.y8{bottom:918.213333pt;}
.y4d{bottom:921.413333pt;}
.y200{bottom:922.213333pt;}
.y142{bottom:924.133333pt;}
.y173{bottom:931.013333pt;}
.y1{bottom:932.773333pt;}
.y4c{bottom:939.013333pt;}
.y1ff{bottom:939.813333pt;}
.y141{bottom:947.173333pt;}
.y172{bottom:948.613333pt;}
.y4b{bottom:956.613333pt;}
.y1fe{bottom:957.253333pt;}
.y4a{bottom:974.213333pt;}
.y49{bottom:991.973333pt;}
.y47{bottom:1018.373333pt;}
.y46{bottom:1038.720000pt;}
.y45{bottom:1059.200000pt;}
.h18{height:17.600000pt;}
.h1a{height:17.760000pt;}
.h1c{height:17.792000pt;}
.hd{height:23.200000pt;}
.hb{height:30.982500pt;}
.h19{height:35.200000pt;}
.h16{height:35.232000pt;}
.h17{height:35.360000pt;}
.h1b{height:35.392000pt;}
.h9{height:37.479688pt;}
.h11{height:38.092813pt;}
.h15{height:40.021563pt;}
.hc{height:40.410625pt;}
.h7{height:42.607500pt;}
.h12{height:42.734063pt;}
.h4{height:43.355000pt;}
.h14{height:45.961250pt;}
.h3{height:47.125000pt;}
.ha{height:47.310625pt;}
.h10{height:47.621250pt;}
.he{height:49.542500pt;}
.h13{height:50.288438pt;}
.h5{height:55.136250pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h2{height:140.826667pt;}
.hf{height:264.506667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w9{width:34.560000pt;}
.w17{width:43.232000pt;}
.w11{width:45.760000pt;}
.wa{width:45.792000pt;}
.w14{width:46.432000pt;}
.w1a{width:48.960000pt;}
.wd{width:56.800000pt;}
.we{width:61.312000pt;}
.w18{width:76.160000pt;}
.w10{width:79.200000pt;}
.w13{width:81.280000pt;}
.w16{width:81.920000pt;}
.wb{width:99.040000pt;}
.w19{width:116.192000pt;}
.w3{width:130.432000pt;}
.w7{width:136.346667pt;}
.w8{width:140.186667pt;}
.wc{width:160.506667pt;}
.w12{width:195.706667pt;}
.wf{width:197.986667pt;}
.w15{width:198.106667pt;}
.w6{width:557.093333pt;}
.w2{width:567.013333pt;}
.w5{width:693.440000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:0.960000pt;}
.x2{left:7.200000pt;}
.x1{left:48.320000pt;}
.x5{left:50.240000pt;}
.x22{left:57.439988pt;}
.x21{left:61.759988pt;}
.x8{left:71.999988pt;}
.x20{left:85.791988pt;}
.x9{left:96.031988pt;}
.x4{left:123.226667pt;}
.x10{left:194.586667pt;}
.x11{left:232.506667pt;}
.x16{left:252.386667pt;}
.x12{left:281.666667pt;}
.x17{left:334.946667pt;}
.x7{left:410.173322pt;}
.x18{left:413.213333pt;}
.x1e{left:423.933322pt;}
.xb{left:434.173322pt;}
.x13{left:435.453333pt;}
.x1f{left:447.933322pt;}
.x1b{left:454.013333pt;}
.xc{left:458.173322pt;}
.xd{left:482.173322pt;}
.xe{left:506.173322pt;}
.x1c{left:533.533333pt;}
.x14{left:599.333333pt;}
.x6{left:607.333333pt;}
.x19{left:612.133333pt;}
.x3{left:615.333333pt;}
.x1d{left:653.093333pt;}
.x15{left:659.493333pt;}
.x1a{left:696.613333pt;}
.xa{left:699.333322pt;}
}




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