
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_5ad2311d8664fbd3532f4872.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_5bd8aa80bae3667aa66a41c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_a79ed8ed4a7ea9a744bcd0d7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.096680;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_1eb994db3019cffdb53705ec.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.105469;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_bf5b6c3eaa2030f36c017a7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.105469;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_aa331ba35bb1b50368aedaf9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_de1b20a94bef90e28c1ba9a2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.352051;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_5fc218d6fd1bc771976bb6a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_cdbaa80dcac6508de1b7d65a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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_aa8acc0f14384b74d9f3f459.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.095703;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_b700a748babaaa7df171dc4c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;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_20b6c9a295c123ef70f3b6bb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.966309;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_789d9d3e4e5b24213d0f7781.woff2')format("woff");}.fff{font-family:fff;line-height:1.352051;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls46{letter-spacing:-1.644000px;}
.ls54{letter-spacing:-1.086000px;}
.ls9{letter-spacing:-1.008000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls3c{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.226200px;}
.lse{letter-spacing:-0.206400px;}
.ls2c{letter-spacing:-0.202800px;}
.ls2b{letter-spacing:-0.168600px;}
.lsf{letter-spacing:-0.126000px;}
.ls11{letter-spacing:-0.108000px;}
.ls32{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.089400px;}
.ls10{letter-spacing:-0.072000px;}
.ls1e{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.014400px;}
.ls4c{letter-spacing:0.030240px;}
.ls21{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.072000px;}
.lsc{letter-spacing:0.089400px;}
.ls2e{letter-spacing:0.106560px;}
.ls3d{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.120000px;}
.ls26{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.156000px;}
.ls15{letter-spacing:0.169920px;}
.ls1{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.234000px;}
.lsd{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls35{letter-spacing:0.279600px;}
.ls30{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.298800px;}
.ls57{letter-spacing:0.306720px;}
.ls20{letter-spacing:0.313800px;}
.ls42{letter-spacing:0.336000px;}
.ls4b{letter-spacing:0.352200px;}
.ls2{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.402480px;}
.ls6{letter-spacing:0.414000px;}
.ls5c{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.504000px;}
.ls49{letter-spacing:0.540000px;}
.ls3{letter-spacing:0.749520px;}
.ls13{letter-spacing:0.893520px;}
.ls16{letter-spacing:0.900000px;}
.ls17{letter-spacing:1.080000px;}
.ls1b{letter-spacing:1.620000px;}
.ls19{letter-spacing:2.340000px;}
.ls3a{letter-spacing:3.060000px;}
.ls1c{letter-spacing:3.780000px;}
.ls5b{letter-spacing:5.220000px;}
.ls58{letter-spacing:5.940000px;}
.ls3b{letter-spacing:6.660000px;}
.ls2d{letter-spacing:7.380000px;}
.ls25{letter-spacing:8.100000px;}
.ls5e{letter-spacing:8.820000px;}
.ls29{letter-spacing:10.080000px;}
.ls27{letter-spacing:10.980000px;}
.ls45{letter-spacing:11.700000px;}
.ls3e{letter-spacing:11.820000px;}
.ls22{letter-spacing:12.420000px;}
.ls47{letter-spacing:13.860000px;}
.ls5f{letter-spacing:14.580000px;}
.ls56{letter-spacing:16.020000px;}
.ls59{letter-spacing:16.506720px;}
.ls38{letter-spacing:17.436000px;}
.ls39{letter-spacing:17.460000px;}
.ls5d{letter-spacing:18.900000px;}
.ls1a{letter-spacing:20.340000px;}
.ls34{letter-spacing:21.060000px;}
.ls50{letter-spacing:21.180000px;}
.ls12{letter-spacing:21.780000px;}
.ls5a{letter-spacing:22.500000px;}
.ls4d{letter-spacing:27.540000px;}
.ls44{letter-spacing:31.860000px;}
.ls41{letter-spacing:34.740000px;}
.ls55{letter-spacing:42.660000px;}
.ls28{letter-spacing:46.026720px;}
.ls31{letter-spacing:55.386720px;}
.ls4a{letter-spacing:57.780000px;}
.ls51{letter-spacing:59.940000px;}
.ls24{letter-spacing:64.026720px;}
.ls48{letter-spacing:85.860000px;}
.ls53{letter-spacing:103.140000px;}
.ls52{letter-spacing:103.980000px;}
.ls36{letter-spacing:105.300000px;}
.ls43{letter-spacing:113.940000px;}
.ls4f{letter-spacing:137.700000px;}
.ls40{letter-spacing:174.420000px;}
.ls2f{letter-spacing:188.280000px;}
.ls3f{letter-spacing:192.420000px;}
.ls4e{letter-spacing:200.340000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,185,0),0 0.015em rgb(255,185,0),0.015em 0 rgb(255,185,0),0 -0.015em  rgb(255,185,0);}
.sc1{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);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,185,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws23{word-spacing:-60.112200px;}
.ws12{word-spacing:-60.073800px;}
.ws1a{word-spacing:-60.039600px;}
.ws24{word-spacing:-59.790240px;}
.ws7{word-spacing:-59.760000px;}
.ws15{word-spacing:-59.591400px;}
.ws16{word-spacing:-59.557200px;}
.ws14{word-spacing:-59.500200px;}
.ws27{word-spacing:-58.674000px;}
.ws20{word-spacing:-58.116000px;}
.ws25{word-spacing:-43.266240px;}
.ws11{word-spacing:-43.161840px;}
.ws21{word-spacing:-43.071120px;}
.wsf{word-spacing:-43.048080px;}
.ws2a{word-spacing:-43.026720px;}
.ws1c{word-spacing:-42.935040px;}
.ws22{word-spacing:-42.865200px;}
.ws1b{word-spacing:-42.858240px;}
.ws17{word-spacing:-42.549120px;}
.ws2b{word-spacing:-37.401840px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws28{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.146400px;}
.ws29{word-spacing:-15.120000px;}
.ws26{word-spacing:-15.046800px;}
.ws1d{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.ws1f{word-spacing:-14.680200px;}
.ws1e{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.374000px;}
.ws6{word-spacing:-10.529400px;}
.ws5{word-spacing:-10.440000px;}
.ws4{word-spacing:-10.213800px;}
.wsb{word-spacing:-8.928000px;}
.wse{word-spacing:0.000000px;}
._1{margin-left:-115.661520px;}
._3{margin-left:-82.050480px;}
._13{margin-left:-78.151749px;}
._3b{margin-left:-21.864960px;}
._1c{margin-left:-9.369840px;}
._2d{margin-left:-7.326480px;}
._30{margin-left:-5.653200px;}
._2e{margin-left:-2.563440px;}
._0{margin-left:-1.093680px;}
._2{width:1.226400px;}
._4{width:2.502480px;}
._10{width:3.949200px;}
._c{width:5.049360px;}
._b{width:6.102000px;}
._e{width:7.132560px;}
._d{width:8.262000px;}
._19{width:9.282240px;}
._f{width:10.332000px;}
._5{width:11.700000px;}
._17{width:12.828720px;}
._16{width:13.897440px;}
._a{width:15.331680px;}
._9{width:16.560000px;}
._8{width:17.658000px;}
._7{width:18.805680px;}
._6{width:20.160000px;}
._14{width:22.020240px;}
._15{width:23.063760px;}
._23{width:24.083280px;}
._18{width:25.725360px;}
._1a{width:27.112320px;}
._35{width:28.213200px;}
._36{width:29.571840px;}
._31{width:31.980000px;}
._12{width:43.961040px;}
._11{width:45.018000px;}
._39{width:48.324240px;}
._2b{width:54.373200px;}
._3a{width:58.193520px;}
._1f{width:66.927360px;}
._21{width:72.040800px;}
._33{width:73.299600px;}
._24{width:74.733840px;}
._1b{width:78.574560px;}
._2a{width:83.133840px;}
._38{width:89.701200px;}
._22{width:122.014560px;}
._37{width:135.294240px;}
._25{width:139.573440px;}
._29{width:141.504720px;}
._2f{width:143.103840px;}
._26{width:151.907520px;}
._32{width:160.194000px;}
._2c{width:164.568000px;}
._28{width:173.120160px;}
._20{width:174.560400px;}
._34{width:194.094720px;}
._27{width:197.560800px;}
._1e{width:200.250000px;}
._1d{width:201.990000px;}
.fc3{color:rgb(255,185,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fs8{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fsa{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:2.340000px;}
.y40{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y93{bottom:4.500000px;}
.y131{bottom:4.680000px;}
.y5a{bottom:5.010000px;}
.y2{bottom:9.900000px;}
.y4a{bottom:10.260000px;}
.y58{bottom:16.380000px;}
.y3f{bottom:21.780000px;}
.y4{bottom:22.710000px;}
.y92{bottom:23.220000px;}
.y57{bottom:33.300000px;}
.y49{bottom:39.960000px;}
.y3e{bottom:40.500000px;}
.y13d{bottom:41.760000px;}
.y141{bottom:41.940000px;}
.y3{bottom:47.910000px;}
.y56{bottom:50.040000px;}
.y48{bottom:51.120000px;}
.y7{bottom:57.060000px;}
.y3d{bottom:59.040000px;}
.y47{bottom:63.000000px;}
.y55{bottom:67.500000px;}
.y46{bottom:75.960000px;}
.y3c{bottom:77.760000px;}
.y41{bottom:87.120000px;}
.y54{bottom:87.300000px;}
.y45{bottom:89.100000px;}
.y1ee{bottom:91.260000px;}
.ybd{bottom:93.060000px;}
.y90{bottom:93.960000px;}
.y12b{bottom:95.580000px;}
.y3b{bottom:96.300000px;}
.yf3{bottom:97.920000px;}
.y1ba{bottom:100.440000px;}
.y53{bottom:102.780000px;}
.y176{bottom:103.500000px;}
.y21b{bottom:104.760000px;}
.y14f{bottom:105.300000px;}
.y1ed{bottom:108.540000px;}
.y44{bottom:111.060000px;}
.ybc{bottom:111.600000px;}
.y8f{bottom:112.500000px;}
.y12a{bottom:112.680000px;}
.yf2{bottom:115.200000px;}
.y3a{bottom:115.740000px;}
.y52{bottom:115.770000px;}
.y1b9{bottom:119.160000px;}
.y21a{bottom:122.040000px;}
.y175{bottom:122.220000px;}
.y51{bottom:122.250000px;}
.y1ec{bottom:125.640000px;}
.y14e{bottom:126.900000px;}
.y129{bottom:129.960000px;}
.ybb{bottom:130.320000px;}
.y8e{bottom:131.220000px;}
.yf1{bottom:132.480000px;}
.y39{bottom:136.080000px;}
.y1b8{bottom:137.700000px;}
.y50{bottom:137.910000px;}
.y219{bottom:139.320000px;}
.y174{bottom:140.760000px;}
.y19f{bottom:142.200000px;}
.y1eb{bottom:142.920000px;}
.y128{bottom:147.240000px;}
.y14d{bottom:148.500000px;}
.yba{bottom:148.860000px;}
.yf0{bottom:149.580000px;}
.y8d{bottom:149.760000px;}
.y38{bottom:152.865000px;}
.y4f{bottom:153.390000px;}
.y218{bottom:156.420000px;}
.y1b7{bottom:157.140000px;}
.y173{bottom:159.480000px;}
.y19e{bottom:160.920000px;}
.y1ea{bottom:161.460000px;}
.y127{bottom:164.520000px;}
.yb9{bottom:166.140000px;}
.yef{bottom:168.300000px;}
.y8c{bottom:168.480000px;}
.y4e{bottom:168.870000px;}
.y37{bottom:169.605000px;}
.y14c{bottom:169.920000px;}
.y43{bottom:173.010000px;}
.y217{bottom:173.700000px;}
.y1b6{bottom:177.840000px;}
.y172{bottom:178.020000px;}
.y19d{bottom:179.460000px;}
.y1e9{bottom:180.180000px;}
.y126{bottom:181.800000px;}
.yb8{bottom:183.420000px;}
.y42{bottom:183.630000px;}
.y4d{bottom:184.350000px;}
.y36{bottom:186.345000px;}
.yee{bottom:186.840000px;}
.y8b{bottom:187.020000px;}
.y14b{bottom:190.800000px;}
.y216{bottom:190.980000px;}
.y171{bottom:196.560000px;}
.y19c{bottom:198.180000px;}
.y1e8{bottom:198.720000px;}
.y4c{bottom:200.010000px;}
.y125{bottom:200.340000px;}
.yb7{bottom:201.780000px;}
.y35{bottom:203.085000px;}
.yed{bottom:205.410000px;}
.y8a{bottom:205.590000px;}
.y215{bottom:208.290000px;}
.y14a{bottom:209.370000px;}
.y1b5{bottom:213.870000px;}
.y170{bottom:215.310000px;}
.y19b{bottom:216.750000px;}
.y1e7{bottom:217.470000px;}
.y124{bottom:218.910000px;}
.yb6{bottom:219.090000px;}
.y34{bottom:219.825000px;}
.yec{bottom:224.130000px;}
.y89{bottom:224.310000px;}
.y214{bottom:225.570000px;}
.y149{bottom:227.910000px;}
.y1b4{bottom:231.150000px;}
.y16f{bottom:233.850000px;}
.y19a{bottom:235.470000px;}
.y123{bottom:236.190000px;}
.y33{bottom:236.565000px;}
.y1e6{bottom:236.730000px;}
.yb5{bottom:237.270000px;}
.yeb{bottom:242.670000px;}
.y88{bottom:242.850000px;}
.y213{bottom:244.110000px;}
.y148{bottom:246.630000px;}
.y1b3{bottom:249.330000px;}
.y16e{bottom:252.570000px;}
.y32{bottom:253.305000px;}
.y122{bottom:253.470000px;}
.y199{bottom:254.010000px;}
.y22d{bottom:254.550000px;}
.yb4{bottom:257.070000px;}
.y1e5{bottom:258.330000px;}
.y1f{bottom:260.865000px;}
.yea{bottom:261.390000px;}
.y87{bottom:261.570000px;}
.y212{bottom:263.550000px;}
.y147{bottom:265.170000px;}
.y1b2{bottom:266.610000px;}
.y31{bottom:270.045000px;}
.y121{bottom:270.750000px;}
.y16d{bottom:271.110000px;}
.y198{bottom:272.550000px;}
.y22c{bottom:273.090000px;}
.yb3{bottom:275.610000px;}
.y1e4{bottom:279.030000px;}
.ye9{bottom:279.930000px;}
.y86{bottom:280.110000px;}
.y146{bottom:283.890000px;}
.y211{bottom:284.250000px;}
.y1b1{bottom:284.970000px;}
.y1e{bottom:284.985000px;}
.y30{bottom:286.785000px;}
.y120{bottom:288.030000px;}
.y16c{bottom:289.830000px;}
.y197{bottom:291.270000px;}
.y22b{bottom:291.810000px;}
.yb2{bottom:294.150000px;}
.y1e3{bottom:297.750000px;}
.ye8{bottom:298.470000px;}
.y85{bottom:298.650000px;}
.y11{bottom:300.810000px;}
.y1b0{bottom:302.250000px;}
.y145{bottom:302.430000px;}
.y210{bottom:302.790000px;}
.y2f{bottom:303.525000px;}
.y11f{bottom:305.310000px;}
.y16b{bottom:308.370000px;}
.y1d{bottom:309.105000px;}
.y196{bottom:309.810000px;}
.y22a{bottom:310.350000px;}
.yb1{bottom:312.870000px;}
.y1e2{bottom:317.010000px;}
.ye7{bottom:317.190000px;}
.y84{bottom:317.370000px;}
.y2e{bottom:320.265000px;}
.y1af{bottom:320.610000px;}
.y144{bottom:321.150000px;}
.y20f{bottom:322.230000px;}
.y11e{bottom:322.410000px;}
.y16a{bottom:326.910000px;}
.y229{bottom:327.630000px;}
.y195{bottom:328.530000px;}
.yb0{bottom:331.410000px;}
.y1c{bottom:333.225000px;}
.ye6{bottom:335.730000px;}
.y83{bottom:335.910000px;}
.y2d{bottom:337.005000px;}
.y1ae{bottom:337.710000px;}
.y1e1{bottom:337.890000px;}
.y11d{bottom:339.690000px;}
.y20e{bottom:341.670000px;}
.y228{bottom:344.910000px;}
.y169{bottom:345.630000px;}
.y194{bottom:347.070000px;}
.yaf{bottom:350.130000px;}
.y2c{bottom:353.925000px;}
.y82{bottom:354.630000px;}
.ye5{bottom:355.170000px;}
.y1e0{bottom:356.430000px;}
.y1b{bottom:357.345000px;}
.y1ad{bottom:357.510000px;}
.y143{bottom:358.230000px;}
.y11c{bottom:358.410000px;}
.y20d{bottom:358.950000px;}
.y227{bottom:362.190000px;}
.y168{bottom:364.170000px;}
.y193{bottom:364.350000px;}
.yae{bottom:368.670000px;}
.y2b{bottom:370.665000px;}
.y81{bottom:373.170000px;}
.y1df{bottom:375.150000px;}
.y1ac{bottom:376.050000px;}
.ye4{bottom:376.770000px;}
.y11b{bottom:376.950000px;}
.y20c{bottom:377.310000px;}
.y226{bottom:379.470000px;}
.y192{bottom:381.630000px;}
.y1a{bottom:381.675000px;}
.y167{bottom:382.890000px;}
.yad{bottom:387.390000px;}
.y2a{bottom:387.435000px;}
.y1ab{bottom:390.810000px;}
.y142{bottom:391.710000px;}
.y80{bottom:391.890000px;}
.y1de{bottom:393.690000px;}
.y20b{bottom:394.410000px;}
.y11a{bottom:395.490000px;}
.y225{bottom:396.570000px;}
.ye3{bottom:397.470000px;}
.y191{bottom:398.910000px;}
.y166{bottom:401.430000px;}
.y29{bottom:404.175000px;}
.y19{bottom:405.795000px;}
.yac{bottom:405.930000px;}
.y7f{bottom:410.430000px;}
.y1dd{bottom:412.230000px;}
.y119{bottom:412.770000px;}
.y224{bottom:413.850000px;}
.ye2{bottom:416.010000px;}
.y165{bottom:419.970000px;}
.y28{bottom:420.915000px;}
.yab{bottom:424.470000px;}
.y1aa{bottom:428.790000px;}
.y7e{bottom:428.970000px;}
.y18{bottom:429.915000px;}
.y20a{bottom:430.050000px;}
.y1dc{bottom:430.950000px;}
.y223{bottom:431.130000px;}
.y118{bottom:432.570000px;}
.y190{bottom:433.290000px;}
.ye1{bottom:434.730000px;}
.y27{bottom:437.655000px;}
.y164{bottom:438.735000px;}
.yaa{bottom:443.235000px;}
.y7d{bottom:447.735000px;}
.y140{bottom:448.275000px;}
.y222{bottom:448.455000px;}
.y1db{bottom:449.535000px;}
.y209{bottom:449.715000px;}
.y117{bottom:449.895000px;}
.y18f{bottom:450.615000px;}
.ye0{bottom:453.315000px;}
.y17{bottom:454.035000px;}
.y26{bottom:454.395000px;}
.y163{bottom:457.275000px;}
.ya9{bottom:461.775000px;}
.y221{bottom:465.735000px;}
.y7c{bottom:466.275000px;}
.y208{bottom:466.995000px;}
.y116{bottom:467.175000px;}
.y1da{bottom:468.255000px;}
.y18e{bottom:469.155000px;}
.y25{bottom:471.495000px;}
.ydf{bottom:472.035000px;}
.y162{bottom:475.995000px;}
.y16{bottom:478.155000px;}
.ya8{bottom:480.495000px;}
.y220{bottom:483.015000px;}
.y207{bottom:484.275000px;}
.y7b{bottom:484.995000px;}
.y115{bottom:485.715000px;}
.y1a9{bottom:486.255000px;}
.y1d9{bottom:487.515000px;}
.y18d{bottom:487.875000px;}
.yde{bottom:489.315000px;}
.y24{bottom:490.215000px;}
.y161{bottom:494.535000px;}
.ya7{bottom:499.035000px;}
.y206{bottom:501.555000px;}
.y15{bottom:502.275000px;}
.y7a{bottom:503.535000px;}
.y114{bottom:504.435000px;}
.y13f{bottom:504.975000px;}
.ydd{bottom:506.415000px;}
.y1d8{bottom:508.395000px;}
.y23{bottom:508.755000px;}
.y160{bottom:511.815000px;}
.ya6{bottom:517.575000px;}
.y205{bottom:518.835000px;}
.y79{bottom:522.075000px;}
.y113{bottom:522.975000px;}
.ydc{bottom:523.695000px;}
.y1a8{bottom:524.235000px;}
.y18c{bottom:525.135000px;}
.y1d7{bottom:525.675000px;}
.y14{bottom:526.575000px;}
.y22{bottom:527.475000px;}
.y15f{bottom:530.175000px;}
.y204{bottom:536.115000px;}
.ya5{bottom:536.295000px;}
.y78{bottom:540.795000px;}
.ydb{bottom:540.975000px;}
.y112{bottom:541.695000px;}
.y1d6{bottom:542.775000px;}
.y13e{bottom:542.955000px;}
.y18b{bottom:543.675000px;}
.y21{bottom:546.735000px;}
.y15e{bottom:548.535000px;}
.y13{bottom:550.695000px;}
.y203{bottom:553.215000px;}
.ya4{bottom:554.835000px;}
.yda{bottom:558.255000px;}
.y77{bottom:559.335000px;}
.y1d5{bottom:560.055000px;}
.y111{bottom:560.235000px;}
.y18a{bottom:562.215000px;}
.y15d{bottom:568.155000px;}
.y20{bottom:568.335000px;}
.y202{bottom:570.495000px;}
.ya3{bottom:573.555000px;}
.y12{bottom:574.815000px;}
.yd9{bottom:575.535000px;}
.y1d4{bottom:577.335000px;}
.y76{bottom:578.055000px;}
.y110{bottom:578.955000px;}
.y189{bottom:580.935000px;}
.y15c{bottom:586.695000px;}
.y201{bottom:587.775000px;}
.ya2{bottom:592.095000px;}
.yd8{bottom:592.815000px;}
.y1d3{bottom:594.615000px;}
.y75{bottom:596.595000px;}
.y10f{bottom:597.495000px;}
.y13c{bottom:599.475000px;}
.y1a7{bottom:600.195000px;}
.y200{bottom:605.055000px;}
.y15b{bottom:605.415000px;}
.yd7{bottom:609.915000px;}
.ya1{bottom:610.635000px;}
.y1d2{bottom:611.895000px;}
.y74{bottom:615.135000px;}
.y10e{bottom:616.035000px;}
.y188{bottom:618.915000px;}
.y1a6{bottom:619.455000px;}
.y1ff{bottom:622.335000px;}
.y15a{bottom:623.955000px;}
.yd6{bottom:627.195000px;}
.y1d1{bottom:629.175000px;}
.ya0{bottom:629.355000px;}
.y73{bottom:633.855000px;}
.y10d{bottom:634.755000px;}
.y1fe{bottom:639.615000px;}
.y187{bottom:640.335000px;}
.y159{bottom:642.675000px;}
.y1a5{bottom:643.395000px;}
.yd5{bottom:644.475000px;}
.y1d0{bottom:646.275000px;}
.y9f{bottom:647.895000px;}
.y72{bottom:652.395000px;}
.y10c{bottom:653.295000px;}
.y13b{bottom:656.175000px;}
.y1fd{bottom:656.715000px;}
.y158{bottom:661.215000px;}
.yd4{bottom:661.755000px;}
.y186{bottom:661.935000px;}
.y1a4{bottom:662.115000px;}
.y1cf{bottom:663.555000px;}
.y9e{bottom:666.615000px;}
.y71{bottom:671.115000px;}
.y10b{bottom:672.015000px;}
.y1fc{bottom:674.025000px;}
.yd3{bottom:679.065000px;}
.y157{bottom:679.785000px;}
.y13a{bottom:680.145000px;}
.y1a3{bottom:680.685000px;}
.y1ce{bottom:680.865000px;}
.y185{bottom:682.845000px;}
.y9d{bottom:685.905000px;}
.y70{bottom:689.685000px;}
.y10a{bottom:690.585000px;}
.y1fb{bottom:691.305000px;}
.yd2{bottom:696.345000px;}
.y1a2{bottom:697.965000px;}
.y1cd{bottom:698.145000px;}
.y156{bottom:698.505000px;}
.y139{bottom:698.685000px;}
.y184{bottom:701.385000px;}
.y9c{bottom:707.505000px;}
.y6f{bottom:708.405000px;}
.y1fa{bottom:708.585000px;}
.y109{bottom:709.125000px;}
.yd1{bottom:714.885000px;}
.y1cc{bottom:715.425000px;}
.y1a1{bottom:716.325000px;}
.y155{bottom:717.045000px;}
.y138{bottom:717.225000px;}
.y183{bottom:720.825000px;}
.y1f9{bottom:725.865000px;}
.y6e{bottom:726.945000px;}
.y108{bottom:727.845000px;}
.y9b{bottom:729.105000px;}
.y1cb{bottom:732.705000px;}
.yd0{bottom:733.425000px;}
.y1a0{bottom:734.685000px;}
.y154{bottom:735.765000px;}
.y137{bottom:735.945000px;}
.y182{bottom:740.265000px;}
.y1f8{bottom:742.965000px;}
.y6d{bottom:745.485000px;}
.y107{bottom:746.385000px;}
.y9a{bottom:749.805000px;}
.ycf{bottom:752.145000px;}
.y153{bottom:754.305000px;}
.y136{bottom:754.485000px;}
.y181{bottom:757.365000px;}
.y1f7{bottom:760.245000px;}
.y6c{bottom:764.925000px;}
.y106{bottom:765.105000px;}
.y1ca{bottom:767.085000px;}
.y99{bottom:768.345000px;}
.yce{bottom:770.685000px;}
.y152{bottom:772.845000px;}
.y135{bottom:773.205000px;}
.y180{bottom:775.725000px;}
.y1f6{bottom:777.525000px;}
.y105{bottom:783.645000px;}
.y1c9{bottom:785.625000px;}
.y6b{bottom:786.525000px;}
.y98{bottom:787.065000px;}
.y134{bottom:787.965000px;}
.ycd{bottom:789.225000px;}
.y151{bottom:791.565000px;}
.y17f{bottom:793.005000px;}
.y1f5{bottom:794.805000px;}
.y97{bottom:801.825000px;}
.y104{bottom:802.185000px;}
.y1c8{bottom:804.345000px;}
.y133{bottom:807.225000px;}
.y6a{bottom:807.945000px;}
.y150{bottom:810.105000px;}
.y17e{bottom:811.365000px;}
.y21f{bottom:812.085000px;}
.y1f4{bottom:813.345000px;}
.y103{bottom:821.625000px;}
.y1c7{bottom:822.885000px;}
.ycc{bottom:826.485000px;}
.y17d{bottom:828.645000px;}
.y69{bottom:828.825000px;}
.y21e{bottom:829.365000px;}
.y1f3{bottom:830.625000px;}
.y96{bottom:839.805000px;}
.y1c6{bottom:841.605000px;}
.y102{bottom:842.325000px;}
.ycb{bottom:845.205000px;}
.y21d{bottom:846.465000px;}
.y68{bottom:847.365000px;}
.y1f2{bottom:847.905000px;}
.y17c{bottom:848.265000px;}
.y1c5{bottom:860.145000px;}
.y101{bottom:861.045000px;}
.yca{bottom:863.745000px;}
.y1f1{bottom:865.185000px;}
.y67{bottom:865.905000px;}
.y17b{bottom:866.805000px;}
.y95{bottom:877.785000px;}
.y1c4{bottom:878.685000px;}
.y100{bottom:879.585000px;}
.y21c{bottom:881.025000px;}
.yc9{bottom:882.285000px;}
.y1f0{bottom:882.465000px;}
.y132{bottom:883.185000px;}
.y66{bottom:884.625000px;}
.y17a{bottom:885.525000px;}
.y10{bottom:892.185000px;}
.y1c3{bottom:897.405000px;}
.yff{bottom:898.305000px;}
.y1ef{bottom:899.565000px;}
.yc8{bottom:901.005000px;}
.y179{bottom:902.805000px;}
.y65{bottom:903.165000px;}
.yf{bottom:910.770000px;}
.y94{bottom:915.810000px;}
.y1c2{bottom:915.990000px;}
.yfe{bottom:916.890000px;}
.yc7{bottom:919.590000px;}
.y178{bottom:921.030000px;}
.y130{bottom:921.210000px;}
.y64{bottom:921.930000px;}
.ye{bottom:929.490000px;}
.yfd{bottom:934.170000px;}
.y1c1{bottom:934.710000px;}
.yc6{bottom:938.310000px;}
.y177{bottom:939.390000px;}
.y63{bottom:940.470000px;}
.y12f{bottom:940.650000px;}
.yd{bottom:948.030000px;}
.yfc{bottom:951.450000px;}
.y1c0{bottom:953.250000px;}
.y91{bottom:953.790000px;}
.yc5{bottom:956.850000px;}
.y62{bottom:959.190000px;}
.y12e{bottom:964.590000px;}
.yc{bottom:966.570000px;}
.yfb{bottom:968.730000px;}
.y1bf{bottom:971.970000px;}
.yc4{bottom:976.290000px;}
.y61{bottom:977.730000px;}
.y12d{bottom:983.130000px;}
.yfa{bottom:986.010000px;}
.yb{bottom:987.090000px;}
.y1be{bottom:990.510000px;}
.y60{bottom:996.270000px;}
.yc3{bottom:997.710000px;}
.y12c{bottom:1001.850000px;}
.yf9{bottom:1003.110000px;}
.y1bd{bottom:1009.050000px;}
.ya{bottom:1013.190000px;}
.y5f{bottom:1014.990000px;}
.yc2{bottom:1017.150000px;}
.yf8{bottom:1020.390000px;}
.y1bc{bottom:1028.490000px;}
.y5e{bottom:1033.530000px;}
.yc1{bottom:1034.430000px;}
.yf7{bottom:1037.670000px;}
.y9{bottom:1040.190000px;}
.y1bb{bottom:1050.090000px;}
.yc0{bottom:1051.710000px;}
.y5d{bottom:1052.250000px;}
.yf6{bottom:1054.950000px;}
.ybf{bottom:1070.070000px;}
.y5c{bottom:1070.790000px;}
.y8{bottom:1071.870000px;}
.yf5{bottom:1072.230000px;}
.y59{bottom:1075.140000px;}
.ybe{bottom:1088.430000px;}
.y5b{bottom:1089.330000px;}
.yf4{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h16{height:5.068125px;}
.h1e{height:18.540000px;}
.h20{height:18.576000px;}
.h1f{height:18.720000px;}
.h24{height:18.756000px;}
.h14{height:26.533828px;}
.h1a{height:27.720000px;}
.h13{height:31.587891px;}
.hd{height:36.641953px;}
.hc{height:37.090547px;}
.h1c{height:37.260000px;}
.h1d{height:37.296000px;}
.h11{height:47.118164px;}
.h19{height:47.381836px;}
.h10{height:47.513672px;}
.h15{height:47.961914px;}
.h17{height:50.229844px;}
.h18{height:50.444618px;}
.h7{height:50.519883px;}
.h6{height:52.435898px;}
.hf{height:52.581797px;}
.ha{height:53.077852px;}
.h21{height:55.800000px;}
.h23{height:55.836000px;}
.h22{height:55.980000px;}
.h5{height:58.121719px;}
.h1b{height:64.002656px;}
.he{height:64.487109px;}
.h3{height:65.884219px;}
.h9{height:73.504336px;}
.h8{height:74.820586px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h12{height:212.970000px;}
.hb{height:584.535000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.wf{width:132.840000px;}
.w8{width:142.056000px;}
.w12{width:148.860000px;}
.w9{width:158.040000px;}
.wa{width:161.490000px;}
.w7{width:162.900000px;}
.wb{width:165.990000px;}
.w10{width:170.310000px;}
.wc{width:194.070000px;}
.w13{width:195.690000px;}
.w14{width:207.030000px;}
.wd{width:228.810000px;}
.w11{width:229.575000px;}
.we{width:236.010000px;}
.w15{width:255.630000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.056000px;}
.x19{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:18.720000px;}
.x17{left:22.536000px;}
.x16{left:29.016000px;}
.x10{left:43.776000px;}
.x1c{left:47.736000px;}
.x11{left:50.796000px;}
.xf{left:54.936000px;}
.x1d{left:57.096000px;}
.x1a{left:62.145000px;}
.x15{left:67.170000px;}
.x13{left:75.270000px;}
.x1{left:78.300000px;}
.x14{left:83.730000px;}
.x9{left:86.399987px;}
.x2{left:95.790000px;}
.x1e{left:102.810000px;}
.x2a{left:104.796000px;}
.x1b{left:106.770000px;}
.x26{left:113.435987px;}
.x27{left:116.496000px;}
.x12{left:124.590000px;}
.x22{left:131.796000px;}
.x5{left:141.345000px;}
.x1f{left:178.425000px;}
.x3{left:182.370000px;}
.x20{left:196.965000px;}
.x18{left:219.090000px;}
.x2b{left:238.350000px;}
.x23{left:274.575000px;}
.x28{left:311.295000px;}
.x2d{left:313.275000px;}
.x2c{left:409.395000px;}
.x24{left:433.335000px;}
.x2e{left:521.025000px;}
.x29{left:540.825000px;}
.xd{left:545.684987px;}
.xc{left:563.684987px;}
.x25{left:595.545000px;}
.xb{left:640.589987px;}
.xa{left:661.109987px;}
.x8{left:766.049987px;}
.x7{left:791.969987px;}
.xe{left:800.069987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls46{letter-spacing:-1.461333pt;}
.ls54{letter-spacing:-0.965333pt;}
.ls9{letter-spacing:-0.896000pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls3c{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.201067pt;}
.lse{letter-spacing:-0.183467pt;}
.ls2c{letter-spacing:-0.180267pt;}
.ls2b{letter-spacing:-0.149867pt;}
.lsf{letter-spacing:-0.112000pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls32{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.079467pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls1e{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.012800pt;}
.ls4c{letter-spacing:0.026880pt;}
.ls21{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.064000pt;}
.lsc{letter-spacing:0.079467pt;}
.ls2e{letter-spacing:0.094720pt;}
.ls3d{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.106667pt;}
.ls26{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.138667pt;}
.ls15{letter-spacing:0.151040pt;}
.ls1{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.208000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls35{letter-spacing:0.248533pt;}
.ls30{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.265600pt;}
.ls57{letter-spacing:0.272640pt;}
.ls20{letter-spacing:0.278933pt;}
.ls42{letter-spacing:0.298667pt;}
.ls4b{letter-spacing:0.313067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.357760pt;}
.ls6{letter-spacing:0.368000pt;}
.ls5c{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.448000pt;}
.ls49{letter-spacing:0.480000pt;}
.ls3{letter-spacing:0.666240pt;}
.ls13{letter-spacing:0.794240pt;}
.ls16{letter-spacing:0.800000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:1.440000pt;}
.ls19{letter-spacing:2.080000pt;}
.ls3a{letter-spacing:2.720000pt;}
.ls1c{letter-spacing:3.360000pt;}
.ls5b{letter-spacing:4.640000pt;}
.ls58{letter-spacing:5.280000pt;}
.ls3b{letter-spacing:5.920000pt;}
.ls2d{letter-spacing:6.560000pt;}
.ls25{letter-spacing:7.200000pt;}
.ls5e{letter-spacing:7.840000pt;}
.ls29{letter-spacing:8.960000pt;}
.ls27{letter-spacing:9.760000pt;}
.ls45{letter-spacing:10.400000pt;}
.ls3e{letter-spacing:10.506667pt;}
.ls22{letter-spacing:11.040000pt;}
.ls47{letter-spacing:12.320000pt;}
.ls5f{letter-spacing:12.960000pt;}
.ls56{letter-spacing:14.240000pt;}
.ls59{letter-spacing:14.672640pt;}
.ls38{letter-spacing:15.498667pt;}
.ls39{letter-spacing:15.520000pt;}
.ls5d{letter-spacing:16.800000pt;}
.ls1a{letter-spacing:18.080000pt;}
.ls34{letter-spacing:18.720000pt;}
.ls50{letter-spacing:18.826667pt;}
.ls12{letter-spacing:19.360000pt;}
.ls5a{letter-spacing:20.000000pt;}
.ls4d{letter-spacing:24.480000pt;}
.ls44{letter-spacing:28.320000pt;}
.ls41{letter-spacing:30.880000pt;}
.ls55{letter-spacing:37.920000pt;}
.ls28{letter-spacing:40.912640pt;}
.ls31{letter-spacing:49.232640pt;}
.ls4a{letter-spacing:51.360000pt;}
.ls51{letter-spacing:53.280000pt;}
.ls24{letter-spacing:56.912640pt;}
.ls48{letter-spacing:76.320000pt;}
.ls53{letter-spacing:91.680000pt;}
.ls52{letter-spacing:92.426667pt;}
.ls36{letter-spacing:93.600000pt;}
.ls43{letter-spacing:101.280000pt;}
.ls4f{letter-spacing:122.400000pt;}
.ls40{letter-spacing:155.040000pt;}
.ls2f{letter-spacing:167.360000pt;}
.ls3f{letter-spacing:171.040000pt;}
.ls4e{letter-spacing:178.080000pt;}
.ws23{word-spacing:-53.433067pt;}
.ws12{word-spacing:-53.398933pt;}
.ws1a{word-spacing:-53.368533pt;}
.ws24{word-spacing:-53.146880pt;}
.ws7{word-spacing:-53.120000pt;}
.ws15{word-spacing:-52.970133pt;}
.ws16{word-spacing:-52.939733pt;}
.ws14{word-spacing:-52.889067pt;}
.ws27{word-spacing:-52.154667pt;}
.ws20{word-spacing:-51.658667pt;}
.ws25{word-spacing:-38.458880pt;}
.ws11{word-spacing:-38.366080pt;}
.ws21{word-spacing:-38.285440pt;}
.wsf{word-spacing:-38.264960pt;}
.ws2a{word-spacing:-38.245973pt;}
.ws1c{word-spacing:-38.164480pt;}
.ws22{word-spacing:-38.102400pt;}
.ws1b{word-spacing:-38.096213pt;}
.ws17{word-spacing:-37.821440pt;}
.ws2b{word-spacing:-33.246080pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws28{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.463467pt;}
.ws29{word-spacing:-13.440000pt;}
.ws26{word-spacing:-13.374933pt;}
.ws1d{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.ws1f{word-spacing:-13.049067pt;}
.ws1e{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.888000pt;}
.ws6{word-spacing:-9.359467pt;}
.ws5{word-spacing:-9.280000pt;}
.ws4{word-spacing:-9.078933pt;}
.wsb{word-spacing:-7.936000pt;}
.wse{word-spacing:0.000000pt;}
._1{margin-left:-102.810240pt;}
._3{margin-left:-72.933760pt;}
._13{margin-left:-69.468221pt;}
._3b{margin-left:-19.435520pt;}
._1c{margin-left:-8.328747pt;}
._2d{margin-left:-6.512427pt;}
._30{margin-left:-5.025067pt;}
._2e{margin-left:-2.278613pt;}
._0{margin-left:-0.972160pt;}
._2{width:1.090133pt;}
._4{width:2.224427pt;}
._10{width:3.510400pt;}
._c{width:4.488320pt;}
._b{width:5.424000pt;}
._e{width:6.340053pt;}
._d{width:7.344000pt;}
._19{width:8.250880pt;}
._f{width:9.184000pt;}
._5{width:10.400000pt;}
._17{width:11.403307pt;}
._16{width:12.353280pt;}
._a{width:13.628160pt;}
._9{width:14.720000pt;}
._8{width:15.696000pt;}
._7{width:16.716160pt;}
._6{width:17.920000pt;}
._14{width:19.573547pt;}
._15{width:20.501120pt;}
._23{width:21.407360pt;}
._18{width:22.866987pt;}
._1a{width:24.099840pt;}
._35{width:25.078400pt;}
._36{width:26.286080pt;}
._31{width:28.426667pt;}
._12{width:39.076480pt;}
._11{width:40.016000pt;}
._39{width:42.954880pt;}
._2b{width:48.331733pt;}
._3a{width:51.727573pt;}
._1f{width:59.490987pt;}
._21{width:64.036267pt;}
._33{width:65.155200pt;}
._24{width:66.430080pt;}
._1b{width:69.844053pt;}
._2a{width:73.896747pt;}
._38{width:79.734400pt;}
._22{width:108.457387pt;}
._37{width:120.261547pt;}
._25{width:124.065280pt;}
._29{width:125.781973pt;}
._2f{width:127.203413pt;}
._26{width:135.028907pt;}
._32{width:142.394667pt;}
._2c{width:146.282667pt;}
._28{width:153.884587pt;}
._20{width:155.164800pt;}
._34{width:172.528640pt;}
._27{width:175.609600pt;}
._1e{width:178.000000pt;}
._1d{width:179.546667pt;}
.fs9{font-size:5.120000pt;}
.fs8{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fsa{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.080000pt;}
.y40{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y93{bottom:4.000000pt;}
.y131{bottom:4.160000pt;}
.y5a{bottom:4.453333pt;}
.y2{bottom:8.800000pt;}
.y4a{bottom:9.120000pt;}
.y58{bottom:14.560000pt;}
.y3f{bottom:19.360000pt;}
.y4{bottom:20.186667pt;}
.y92{bottom:20.640000pt;}
.y57{bottom:29.600000pt;}
.y49{bottom:35.520000pt;}
.y3e{bottom:36.000000pt;}
.y13d{bottom:37.120000pt;}
.y141{bottom:37.280000pt;}
.y3{bottom:42.586667pt;}
.y56{bottom:44.480000pt;}
.y48{bottom:45.440000pt;}
.y7{bottom:50.720000pt;}
.y3d{bottom:52.480000pt;}
.y47{bottom:56.000000pt;}
.y55{bottom:60.000000pt;}
.y46{bottom:67.520000pt;}
.y3c{bottom:69.120000pt;}
.y41{bottom:77.440000pt;}
.y54{bottom:77.600000pt;}
.y45{bottom:79.200000pt;}
.y1ee{bottom:81.120000pt;}
.ybd{bottom:82.720000pt;}
.y90{bottom:83.520000pt;}
.y12b{bottom:84.960000pt;}
.y3b{bottom:85.600000pt;}
.yf3{bottom:87.040000pt;}
.y1ba{bottom:89.280000pt;}
.y53{bottom:91.360000pt;}
.y176{bottom:92.000000pt;}
.y21b{bottom:93.120000pt;}
.y14f{bottom:93.600000pt;}
.y1ed{bottom:96.480000pt;}
.y44{bottom:98.720000pt;}
.ybc{bottom:99.200000pt;}
.y8f{bottom:100.000000pt;}
.y12a{bottom:100.160000pt;}
.yf2{bottom:102.400000pt;}
.y3a{bottom:102.880000pt;}
.y52{bottom:102.906667pt;}
.y1b9{bottom:105.920000pt;}
.y21a{bottom:108.480000pt;}
.y175{bottom:108.640000pt;}
.y51{bottom:108.666667pt;}
.y1ec{bottom:111.680000pt;}
.y14e{bottom:112.800000pt;}
.y129{bottom:115.520000pt;}
.ybb{bottom:115.840000pt;}
.y8e{bottom:116.640000pt;}
.yf1{bottom:117.760000pt;}
.y39{bottom:120.960000pt;}
.y1b8{bottom:122.400000pt;}
.y50{bottom:122.586667pt;}
.y219{bottom:123.840000pt;}
.y174{bottom:125.120000pt;}
.y19f{bottom:126.400000pt;}
.y1eb{bottom:127.040000pt;}
.y128{bottom:130.880000pt;}
.y14d{bottom:132.000000pt;}
.yba{bottom:132.320000pt;}
.yf0{bottom:132.960000pt;}
.y8d{bottom:133.120000pt;}
.y38{bottom:135.880000pt;}
.y4f{bottom:136.346667pt;}
.y218{bottom:139.040000pt;}
.y1b7{bottom:139.680000pt;}
.y173{bottom:141.760000pt;}
.y19e{bottom:143.040000pt;}
.y1ea{bottom:143.520000pt;}
.y127{bottom:146.240000pt;}
.yb9{bottom:147.680000pt;}
.yef{bottom:149.600000pt;}
.y8c{bottom:149.760000pt;}
.y4e{bottom:150.106667pt;}
.y37{bottom:150.760000pt;}
.y14c{bottom:151.040000pt;}
.y43{bottom:153.786667pt;}
.y217{bottom:154.400000pt;}
.y1b6{bottom:158.080000pt;}
.y172{bottom:158.240000pt;}
.y19d{bottom:159.520000pt;}
.y1e9{bottom:160.160000pt;}
.y126{bottom:161.600000pt;}
.yb8{bottom:163.040000pt;}
.y42{bottom:163.226667pt;}
.y4d{bottom:163.866667pt;}
.y36{bottom:165.640000pt;}
.yee{bottom:166.080000pt;}
.y8b{bottom:166.240000pt;}
.y14b{bottom:169.600000pt;}
.y216{bottom:169.760000pt;}
.y171{bottom:174.720000pt;}
.y19c{bottom:176.160000pt;}
.y1e8{bottom:176.640000pt;}
.y4c{bottom:177.786667pt;}
.y125{bottom:178.080000pt;}
.yb7{bottom:179.360000pt;}
.y35{bottom:180.520000pt;}
.yed{bottom:182.586667pt;}
.y8a{bottom:182.746667pt;}
.y215{bottom:185.146667pt;}
.y14a{bottom:186.106667pt;}
.y1b5{bottom:190.106667pt;}
.y170{bottom:191.386667pt;}
.y19b{bottom:192.666667pt;}
.y1e7{bottom:193.306667pt;}
.y124{bottom:194.586667pt;}
.yb6{bottom:194.746667pt;}
.y34{bottom:195.400000pt;}
.yec{bottom:199.226667pt;}
.y89{bottom:199.386667pt;}
.y214{bottom:200.506667pt;}
.y149{bottom:202.586667pt;}
.y1b4{bottom:205.466667pt;}
.y16f{bottom:207.866667pt;}
.y19a{bottom:209.306667pt;}
.y123{bottom:209.946667pt;}
.y33{bottom:210.280000pt;}
.y1e6{bottom:210.426667pt;}
.yb5{bottom:210.906667pt;}
.yeb{bottom:215.706667pt;}
.y88{bottom:215.866667pt;}
.y213{bottom:216.986667pt;}
.y148{bottom:219.226667pt;}
.y1b3{bottom:221.626667pt;}
.y16e{bottom:224.506667pt;}
.y32{bottom:225.160000pt;}
.y122{bottom:225.306667pt;}
.y199{bottom:225.786667pt;}
.y22d{bottom:226.266667pt;}
.yb4{bottom:228.506667pt;}
.y1e5{bottom:229.626667pt;}
.y1f{bottom:231.880000pt;}
.yea{bottom:232.346667pt;}
.y87{bottom:232.506667pt;}
.y212{bottom:234.266667pt;}
.y147{bottom:235.706667pt;}
.y1b2{bottom:236.986667pt;}
.y31{bottom:240.040000pt;}
.y121{bottom:240.666667pt;}
.y16d{bottom:240.986667pt;}
.y198{bottom:242.266667pt;}
.y22c{bottom:242.746667pt;}
.yb3{bottom:244.986667pt;}
.y1e4{bottom:248.026667pt;}
.ye9{bottom:248.826667pt;}
.y86{bottom:248.986667pt;}
.y146{bottom:252.346667pt;}
.y211{bottom:252.666667pt;}
.y1b1{bottom:253.306667pt;}
.y1e{bottom:253.320000pt;}
.y30{bottom:254.920000pt;}
.y120{bottom:256.026667pt;}
.y16c{bottom:257.626667pt;}
.y197{bottom:258.906667pt;}
.y22b{bottom:259.386667pt;}
.yb2{bottom:261.466667pt;}
.y1e3{bottom:264.666667pt;}
.ye8{bottom:265.306667pt;}
.y85{bottom:265.466667pt;}
.y11{bottom:267.386667pt;}
.y1b0{bottom:268.666667pt;}
.y145{bottom:268.826667pt;}
.y210{bottom:269.146667pt;}
.y2f{bottom:269.800000pt;}
.y11f{bottom:271.386667pt;}
.y16b{bottom:274.106667pt;}
.y1d{bottom:274.760000pt;}
.y196{bottom:275.386667pt;}
.y22a{bottom:275.866667pt;}
.yb1{bottom:278.106667pt;}
.y1e2{bottom:281.786667pt;}
.ye7{bottom:281.946667pt;}
.y84{bottom:282.106667pt;}
.y2e{bottom:284.680000pt;}
.y1af{bottom:284.986667pt;}
.y144{bottom:285.466667pt;}
.y20f{bottom:286.426667pt;}
.y11e{bottom:286.586667pt;}
.y16a{bottom:290.586667pt;}
.y229{bottom:291.226667pt;}
.y195{bottom:292.026667pt;}
.yb0{bottom:294.586667pt;}
.y1c{bottom:296.200000pt;}
.ye6{bottom:298.426667pt;}
.y83{bottom:298.586667pt;}
.y2d{bottom:299.560000pt;}
.y1ae{bottom:300.186667pt;}
.y1e1{bottom:300.346667pt;}
.y11d{bottom:301.946667pt;}
.y20e{bottom:303.706667pt;}
.y228{bottom:306.586667pt;}
.y169{bottom:307.226667pt;}
.y194{bottom:308.506667pt;}
.yaf{bottom:311.226667pt;}
.y2c{bottom:314.600000pt;}
.y82{bottom:315.226667pt;}
.ye5{bottom:315.706667pt;}
.y1e0{bottom:316.826667pt;}
.y1b{bottom:317.640000pt;}
.y1ad{bottom:317.786667pt;}
.y143{bottom:318.426667pt;}
.y11c{bottom:318.586667pt;}
.y20d{bottom:319.066667pt;}
.y227{bottom:321.946667pt;}
.y168{bottom:323.706667pt;}
.y193{bottom:323.866667pt;}
.yae{bottom:327.706667pt;}
.y2b{bottom:329.480000pt;}
.y81{bottom:331.706667pt;}
.y1df{bottom:333.466667pt;}
.y1ac{bottom:334.266667pt;}
.ye4{bottom:334.906667pt;}
.y11b{bottom:335.066667pt;}
.y20c{bottom:335.386667pt;}
.y226{bottom:337.306667pt;}
.y192{bottom:339.226667pt;}
.y1a{bottom:339.266667pt;}
.y167{bottom:340.346667pt;}
.yad{bottom:344.346667pt;}
.y2a{bottom:344.386667pt;}
.y1ab{bottom:347.386667pt;}
.y142{bottom:348.186667pt;}
.y80{bottom:348.346667pt;}
.y1de{bottom:349.946667pt;}
.y20b{bottom:350.586667pt;}
.y11a{bottom:351.546667pt;}
.y225{bottom:352.506667pt;}
.ye3{bottom:353.306667pt;}
.y191{bottom:354.586667pt;}
.y166{bottom:356.826667pt;}
.y29{bottom:359.266667pt;}
.y19{bottom:360.706667pt;}
.yac{bottom:360.826667pt;}
.y7f{bottom:364.826667pt;}
.y1dd{bottom:366.426667pt;}
.y119{bottom:366.906667pt;}
.y224{bottom:367.866667pt;}
.ye2{bottom:369.786667pt;}
.y165{bottom:373.306667pt;}
.y28{bottom:374.146667pt;}
.yab{bottom:377.306667pt;}
.y1aa{bottom:381.146667pt;}
.y7e{bottom:381.306667pt;}
.y18{bottom:382.146667pt;}
.y20a{bottom:382.266667pt;}
.y1dc{bottom:383.066667pt;}
.y223{bottom:383.226667pt;}
.y118{bottom:384.506667pt;}
.y190{bottom:385.146667pt;}
.ye1{bottom:386.426667pt;}
.y27{bottom:389.026667pt;}
.y164{bottom:389.986667pt;}
.yaa{bottom:393.986667pt;}
.y7d{bottom:397.986667pt;}
.y140{bottom:398.466667pt;}
.y222{bottom:398.626667pt;}
.y1db{bottom:399.586667pt;}
.y209{bottom:399.746667pt;}
.y117{bottom:399.906667pt;}
.y18f{bottom:400.546667pt;}
.ye0{bottom:402.946667pt;}
.y17{bottom:403.586667pt;}
.y26{bottom:403.906667pt;}
.y163{bottom:406.466667pt;}
.ya9{bottom:410.466667pt;}
.y221{bottom:413.986667pt;}
.y7c{bottom:414.466667pt;}
.y208{bottom:415.106667pt;}
.y116{bottom:415.266667pt;}
.y1da{bottom:416.226667pt;}
.y18e{bottom:417.026667pt;}
.y25{bottom:419.106667pt;}
.ydf{bottom:419.586667pt;}
.y162{bottom:423.106667pt;}
.y16{bottom:425.026667pt;}
.ya8{bottom:427.106667pt;}
.y220{bottom:429.346667pt;}
.y207{bottom:430.466667pt;}
.y7b{bottom:431.106667pt;}
.y115{bottom:431.746667pt;}
.y1a9{bottom:432.226667pt;}
.y1d9{bottom:433.346667pt;}
.y18d{bottom:433.666667pt;}
.yde{bottom:434.946667pt;}
.y24{bottom:435.746667pt;}
.y161{bottom:439.586667pt;}
.ya7{bottom:443.586667pt;}
.y206{bottom:445.826667pt;}
.y15{bottom:446.466667pt;}
.y7a{bottom:447.586667pt;}
.y114{bottom:448.386667pt;}
.y13f{bottom:448.866667pt;}
.ydd{bottom:450.146667pt;}
.y1d8{bottom:451.906667pt;}
.y23{bottom:452.226667pt;}
.y160{bottom:454.946667pt;}
.ya6{bottom:460.066667pt;}
.y205{bottom:461.186667pt;}
.y79{bottom:464.066667pt;}
.y113{bottom:464.866667pt;}
.ydc{bottom:465.506667pt;}
.y1a8{bottom:465.986667pt;}
.y18c{bottom:466.786667pt;}
.y1d7{bottom:467.266667pt;}
.y14{bottom:468.066667pt;}
.y22{bottom:468.866667pt;}
.y15f{bottom:471.266667pt;}
.y204{bottom:476.546667pt;}
.ya5{bottom:476.706667pt;}
.y78{bottom:480.706667pt;}
.ydb{bottom:480.866667pt;}
.y112{bottom:481.506667pt;}
.y1d6{bottom:482.466667pt;}
.y13e{bottom:482.626667pt;}
.y18b{bottom:483.266667pt;}
.y21{bottom:485.986667pt;}
.y15e{bottom:487.586667pt;}
.y13{bottom:489.506667pt;}
.y203{bottom:491.746667pt;}
.ya4{bottom:493.186667pt;}
.yda{bottom:496.226667pt;}
.y77{bottom:497.186667pt;}
.y1d5{bottom:497.826667pt;}
.y111{bottom:497.986667pt;}
.y18a{bottom:499.746667pt;}
.y15d{bottom:505.026667pt;}
.y20{bottom:505.186667pt;}
.y202{bottom:507.106667pt;}
.ya3{bottom:509.826667pt;}
.y12{bottom:510.946667pt;}
.yd9{bottom:511.586667pt;}
.y1d4{bottom:513.186667pt;}
.y76{bottom:513.826667pt;}
.y110{bottom:514.626667pt;}
.y189{bottom:516.386667pt;}
.y15c{bottom:521.506667pt;}
.y201{bottom:522.466667pt;}
.ya2{bottom:526.306667pt;}
.yd8{bottom:526.946667pt;}
.y1d3{bottom:528.546667pt;}
.y75{bottom:530.306667pt;}
.y10f{bottom:531.106667pt;}
.y13c{bottom:532.866667pt;}
.y1a7{bottom:533.506667pt;}
.y200{bottom:537.826667pt;}
.y15b{bottom:538.146667pt;}
.yd7{bottom:542.146667pt;}
.ya1{bottom:542.786667pt;}
.y1d2{bottom:543.906667pt;}
.y74{bottom:546.786667pt;}
.y10e{bottom:547.586667pt;}
.y188{bottom:550.146667pt;}
.y1a6{bottom:550.626667pt;}
.y1ff{bottom:553.186667pt;}
.y15a{bottom:554.626667pt;}
.yd6{bottom:557.506667pt;}
.y1d1{bottom:559.266667pt;}
.ya0{bottom:559.426667pt;}
.y73{bottom:563.426667pt;}
.y10d{bottom:564.226667pt;}
.y1fe{bottom:568.546667pt;}
.y187{bottom:569.186667pt;}
.y159{bottom:571.266667pt;}
.y1a5{bottom:571.906667pt;}
.yd5{bottom:572.866667pt;}
.y1d0{bottom:574.466667pt;}
.y9f{bottom:575.906667pt;}
.y72{bottom:579.906667pt;}
.y10c{bottom:580.706667pt;}
.y13b{bottom:583.266667pt;}
.y1fd{bottom:583.746667pt;}
.y158{bottom:587.746667pt;}
.yd4{bottom:588.226667pt;}
.y186{bottom:588.386667pt;}
.y1a4{bottom:588.546667pt;}
.y1cf{bottom:589.826667pt;}
.y9e{bottom:592.546667pt;}
.y71{bottom:596.546667pt;}
.y10b{bottom:597.346667pt;}
.y1fc{bottom:599.133333pt;}
.yd3{bottom:603.613333pt;}
.y157{bottom:604.253333pt;}
.y13a{bottom:604.573333pt;}
.y1a3{bottom:605.053333pt;}
.y1ce{bottom:605.213333pt;}
.y185{bottom:606.973333pt;}
.y9d{bottom:609.693333pt;}
.y70{bottom:613.053333pt;}
.y10a{bottom:613.853333pt;}
.y1fb{bottom:614.493333pt;}
.yd2{bottom:618.973333pt;}
.y1a2{bottom:620.413333pt;}
.y1cd{bottom:620.573333pt;}
.y156{bottom:620.893333pt;}
.y139{bottom:621.053333pt;}
.y184{bottom:623.453333pt;}
.y9c{bottom:628.893333pt;}
.y6f{bottom:629.693333pt;}
.y1fa{bottom:629.853333pt;}
.y109{bottom:630.333333pt;}
.yd1{bottom:635.453333pt;}
.y1cc{bottom:635.933333pt;}
.y1a1{bottom:636.733333pt;}
.y155{bottom:637.373333pt;}
.y138{bottom:637.533333pt;}
.y183{bottom:640.733333pt;}
.y1f9{bottom:645.213333pt;}
.y6e{bottom:646.173333pt;}
.y108{bottom:646.973333pt;}
.y9b{bottom:648.093333pt;}
.y1cb{bottom:651.293333pt;}
.yd0{bottom:651.933333pt;}
.y1a0{bottom:653.053333pt;}
.y154{bottom:654.013333pt;}
.y137{bottom:654.173333pt;}
.y182{bottom:658.013333pt;}
.y1f8{bottom:660.413333pt;}
.y6d{bottom:662.653333pt;}
.y107{bottom:663.453333pt;}
.y9a{bottom:666.493333pt;}
.ycf{bottom:668.573333pt;}
.y153{bottom:670.493333pt;}
.y136{bottom:670.653333pt;}
.y181{bottom:673.213333pt;}
.y1f7{bottom:675.773333pt;}
.y6c{bottom:679.933333pt;}
.y106{bottom:680.093333pt;}
.y1ca{bottom:681.853333pt;}
.y99{bottom:682.973333pt;}
.yce{bottom:685.053333pt;}
.y152{bottom:686.973333pt;}
.y135{bottom:687.293333pt;}
.y180{bottom:689.533333pt;}
.y1f6{bottom:691.133333pt;}
.y105{bottom:696.573333pt;}
.y1c9{bottom:698.333333pt;}
.y6b{bottom:699.133333pt;}
.y98{bottom:699.613333pt;}
.y134{bottom:700.413333pt;}
.ycd{bottom:701.533333pt;}
.y151{bottom:703.613333pt;}
.y17f{bottom:704.893333pt;}
.y1f5{bottom:706.493333pt;}
.y97{bottom:712.733333pt;}
.y104{bottom:713.053333pt;}
.y1c8{bottom:714.973333pt;}
.y133{bottom:717.533333pt;}
.y6a{bottom:718.173333pt;}
.y150{bottom:720.093333pt;}
.y17e{bottom:721.213333pt;}
.y21f{bottom:721.853333pt;}
.y1f4{bottom:722.973333pt;}
.y103{bottom:730.333333pt;}
.y1c7{bottom:731.453333pt;}
.ycc{bottom:734.653333pt;}
.y17d{bottom:736.573333pt;}
.y69{bottom:736.733333pt;}
.y21e{bottom:737.213333pt;}
.y1f3{bottom:738.333333pt;}
.y96{bottom:746.493333pt;}
.y1c6{bottom:748.093333pt;}
.y102{bottom:748.733333pt;}
.ycb{bottom:751.293333pt;}
.y21d{bottom:752.413333pt;}
.y68{bottom:753.213333pt;}
.y1f2{bottom:753.693333pt;}
.y17c{bottom:754.013333pt;}
.y1c5{bottom:764.573333pt;}
.y101{bottom:765.373333pt;}
.yca{bottom:767.773333pt;}
.y1f1{bottom:769.053333pt;}
.y67{bottom:769.693333pt;}
.y17b{bottom:770.493333pt;}
.y95{bottom:780.253333pt;}
.y1c4{bottom:781.053333pt;}
.y100{bottom:781.853333pt;}
.y21c{bottom:783.133333pt;}
.yc9{bottom:784.253333pt;}
.y1f0{bottom:784.413333pt;}
.y132{bottom:785.053333pt;}
.y66{bottom:786.333333pt;}
.y17a{bottom:787.133333pt;}
.y10{bottom:793.053333pt;}
.y1c3{bottom:797.693333pt;}
.yff{bottom:798.493333pt;}
.y1ef{bottom:799.613333pt;}
.yc8{bottom:800.893333pt;}
.y179{bottom:802.493333pt;}
.y65{bottom:802.813333pt;}
.yf{bottom:809.573333pt;}
.y94{bottom:814.053333pt;}
.y1c2{bottom:814.213333pt;}
.yfe{bottom:815.013333pt;}
.yc7{bottom:817.413333pt;}
.y178{bottom:818.693333pt;}
.y130{bottom:818.853333pt;}
.y64{bottom:819.493333pt;}
.ye{bottom:826.213333pt;}
.yfd{bottom:830.373333pt;}
.y1c1{bottom:830.853333pt;}
.yc6{bottom:834.053333pt;}
.y177{bottom:835.013333pt;}
.y63{bottom:835.973333pt;}
.y12f{bottom:836.133333pt;}
.yd{bottom:842.693333pt;}
.yfc{bottom:845.733333pt;}
.y1c0{bottom:847.333333pt;}
.y91{bottom:847.813333pt;}
.yc5{bottom:850.533333pt;}
.y62{bottom:852.613333pt;}
.y12e{bottom:857.413333pt;}
.yc{bottom:859.173333pt;}
.yfb{bottom:861.093333pt;}
.y1bf{bottom:863.973333pt;}
.yc4{bottom:867.813333pt;}
.y61{bottom:869.093333pt;}
.y12d{bottom:873.893333pt;}
.yfa{bottom:876.453333pt;}
.yb{bottom:877.413333pt;}
.y1be{bottom:880.453333pt;}
.y60{bottom:885.573333pt;}
.yc3{bottom:886.853333pt;}
.y12c{bottom:890.533333pt;}
.yf9{bottom:891.653333pt;}
.y1bd{bottom:896.933333pt;}
.ya{bottom:900.613333pt;}
.y5f{bottom:902.213333pt;}
.yc2{bottom:904.133333pt;}
.yf8{bottom:907.013333pt;}
.y1bc{bottom:914.213333pt;}
.y5e{bottom:918.693333pt;}
.yc1{bottom:919.493333pt;}
.yf7{bottom:922.373333pt;}
.y9{bottom:924.613333pt;}
.y1bb{bottom:933.413333pt;}
.yc0{bottom:934.853333pt;}
.y5d{bottom:935.333333pt;}
.yf6{bottom:937.733333pt;}
.ybf{bottom:951.173333pt;}
.y5c{bottom:951.813333pt;}
.y8{bottom:952.773333pt;}
.yf5{bottom:953.093333pt;}
.y59{bottom:955.680000pt;}
.ybe{bottom:967.493333pt;}
.y5b{bottom:968.293333pt;}
.yf4{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h16{height:4.505000pt;}
.h1e{height:16.480000pt;}
.h20{height:16.512000pt;}
.h1f{height:16.640000pt;}
.h24{height:16.672000pt;}
.h14{height:23.585625pt;}
.h1a{height:24.640000pt;}
.h13{height:28.078125pt;}
.hd{height:32.570625pt;}
.hc{height:32.969375pt;}
.h1c{height:33.120000pt;}
.h1d{height:33.152000pt;}
.h11{height:41.882812pt;}
.h19{height:42.117188pt;}
.h10{height:42.234375pt;}
.h15{height:42.632812pt;}
.h17{height:44.648750pt;}
.h18{height:44.839661pt;}
.h7{height:44.906562pt;}
.h6{height:46.609688pt;}
.hf{height:46.739375pt;}
.ha{height:47.180312pt;}
.h21{height:49.600000pt;}
.h23{height:49.632000pt;}
.h22{height:49.760000pt;}
.h5{height:51.663750pt;}
.h1b{height:56.891250pt;}
.he{height:57.321875pt;}
.h3{height:58.563750pt;}
.h9{height:65.337187pt;}
.h8{height:66.507188pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h12{height:189.306667pt;}
.hb{height:519.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.wf{width:118.080000pt;}
.w8{width:126.272000pt;}
.w12{width:132.320000pt;}
.w9{width:140.480000pt;}
.wa{width:143.546667pt;}
.w7{width:144.800000pt;}
.wb{width:147.546667pt;}
.w10{width:151.386667pt;}
.wc{width:172.506667pt;}
.w13{width:173.946667pt;}
.w14{width:184.026667pt;}
.wd{width:203.386667pt;}
.w11{width:204.066667pt;}
.we{width:209.786667pt;}
.w15{width:227.226667pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.272000pt;}
.x19{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:16.640000pt;}
.x17{left:20.032000pt;}
.x16{left:25.792000pt;}
.x10{left:38.912000pt;}
.x1c{left:42.432000pt;}
.x11{left:45.152000pt;}
.xf{left:48.832000pt;}
.x1d{left:50.752000pt;}
.x1a{left:55.240000pt;}
.x15{left:59.706667pt;}
.x13{left:66.906667pt;}
.x1{left:69.600000pt;}
.x14{left:74.426667pt;}
.x9{left:76.799988pt;}
.x2{left:85.146667pt;}
.x1e{left:91.386667pt;}
.x2a{left:93.152000pt;}
.x1b{left:94.906667pt;}
.x26{left:100.831988pt;}
.x27{left:103.552000pt;}
.x12{left:110.746667pt;}
.x22{left:117.152000pt;}
.x5{left:125.640000pt;}
.x1f{left:158.600000pt;}
.x3{left:162.106667pt;}
.x20{left:175.080000pt;}
.x18{left:194.746667pt;}
.x2b{left:211.866667pt;}
.x23{left:244.066667pt;}
.x28{left:276.706667pt;}
.x2d{left:278.466667pt;}
.x2c{left:363.906667pt;}
.x24{left:385.186667pt;}
.x2e{left:463.133333pt;}
.x29{left:480.733333pt;}
.xd{left:485.053322pt;}
.xc{left:501.053322pt;}
.x25{left:529.373333pt;}
.xb{left:569.413322pt;}
.xa{left:587.653322pt;}
.x8{left:680.933322pt;}
.x7{left:703.973322pt;}
.xe{left:711.173322pt;}
}




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