
    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_ec78c6a0ef57ffd0ee187a1b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.917480;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_73414ff75def51f3993dcad4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.925293;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_e4f3fae71e39c08fb94ded64.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_53494fd2918a29d159e55bc3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_0a9fe9efdb6fa9530c7b1391.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_83cbcd9828e5df8b952bc061.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_3cfd1ad1e625ce4428f669d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_394f049d0d4dd5e12b62ad56.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_d5402e93d477d6b30652e088.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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_815bc98cd804cebaab6d05c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_4fcc0836b0bcf7e2d4f3c1a9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.926270;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_6d659a1caac8481d09531fd5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_0b74d8bc43d22813175da943.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.841309;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_1f7b15f737c8211d271fc1c8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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_2f7816719afda8b5b7c224a4.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_dfe00fe75dec28247e64fc50.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.741211;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_9f381f307876b91a2cace564.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_4813455a3291634b7103afc4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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:ff13;src:url('chunks/assets/font_96e64e3bd91be8d3e9c6cc69.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.700195;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls21{letter-spacing:-0.399168px;}
.ls16{letter-spacing:-0.381024px;}
.ls1a{letter-spacing:-0.338688px;}
.ls1c{letter-spacing:-0.320544px;}
.ls15{letter-spacing:-0.302400px;}
.ls18{letter-spacing:-0.260064px;}
.ls26{letter-spacing:-0.238464px;}
.ls9{letter-spacing:-0.198720px;}
.ls22{letter-spacing:-0.192096px;}
.ls1{letter-spacing:-0.185472px;}
.ls13{letter-spacing:-0.178848px;}
.ls3{letter-spacing:-0.165600px;}
.ls6{letter-spacing:-0.158976px;}
.ls19{letter-spacing:-0.157248px;}
.lsd{letter-spacing:-0.152352px;}
.lse{letter-spacing:-0.145728px;}
.ls17{letter-spacing:-0.145152px;}
.ls5{letter-spacing:-0.132480px;}
.ls8{letter-spacing:-0.125856px;}
.ls10{letter-spacing:-0.119232px;}
.ls4{letter-spacing:-0.112608px;}
.lsb{letter-spacing:-0.105984px;}
.lsa{letter-spacing:-0.099360px;}
.ls11{letter-spacing:-0.092736px;}
.ls7{letter-spacing:-0.079488px;}
.ls24{letter-spacing:-0.066240px;}
.ls23{letter-spacing:-0.059616px;}
.lsc{letter-spacing:-0.052992px;}
.ls12{letter-spacing:-0.046368px;}
.lsf{letter-spacing:-0.039744px;}
.ls14{letter-spacing:-0.014400px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.014400px;}
.ls1d{letter-spacing:0.021600px;}
.ls20{letter-spacing:0.239040px;}
.ls1e{letter-spacing:6.291504px;}
.ls0{letter-spacing:12.102048px;}
.ls25{letter-spacing:25.433424px;}
.ls1b{letter-spacing:34.542720px;}
.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;}
}
.ws17{word-spacing:-18.414720px;}
.ws32{word-spacing:-18.374976px;}
.ws30{word-spacing:-18.335232px;}
.ws31{word-spacing:-18.295488px;}
.ws18{word-spacing:-18.288864px;}
.ws16{word-spacing:-18.255744px;}
.ws19{word-spacing:-18.216000px;}
.ws2c{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.985600px;}
.ws20{word-spacing:-16.813440px;}
.ws2e{word-spacing:-16.668288px;}
.ws24{word-spacing:-16.656192px;}
.ws25{word-spacing:-16.553376px;}
.ws23{word-spacing:-16.511040px;}
.ws21{word-spacing:-16.492896px;}
.ws27{word-spacing:-16.474752px;}
.ws28{word-spacing:-16.432416px;}
.ws26{word-spacing:-16.414272px;}
.ws2f{word-spacing:-14.970240px;}
.ws22{word-spacing:-13.446720px;}
.ws2a{word-spacing:-13.327488px;}
.ws2b{word-spacing:-13.281120px;}
.ws1e{word-spacing:-0.086400px;}
.ws1{word-spacing:-0.066240px;}
.ws2d{word-spacing:-0.054720px;}
.wsd{word-spacing:-0.026496px;}
.ws12{word-spacing:-0.019872px;}
.wsa{word-spacing:-0.013248px;}
.ws14{word-spacing:0.000000px;}
.wse{word-spacing:0.013248px;}
.ws11{word-spacing:0.026496px;}
.ws7{word-spacing:0.033120px;}
.ws9{word-spacing:0.039744px;}
.ws3{word-spacing:0.046368px;}
.wsf{word-spacing:0.052992px;}
.ws8{word-spacing:0.059616px;}
.ws4{word-spacing:0.066240px;}
.wsc{word-spacing:0.079488px;}
.wsb{word-spacing:0.086112px;}
.ws6{word-spacing:0.092736px;}
.ws2{word-spacing:0.099360px;}
.ws13{word-spacing:0.112608px;}
.ws0{word-spacing:0.119232px;}
.ws29{word-spacing:0.125856px;}
.ws10{word-spacing:0.132480px;}
.ws1f{word-spacing:11.934720px;}
.ws5{word-spacing:12.353760px;}
.ws1c{word-spacing:15.907680px;}
.ws1b{word-spacing:15.907824px;}
.ws1d{word-spacing:15.922080px;}
.ws1a{word-spacing:22.176000px;}
._11{margin-left:-5.004144px;}
._a{margin-left:-3.635856px;}
._7{margin-left:-2.592144px;}
._3{margin-left:-1.065456px;}
._0{width:1.017360px;}
._6{width:2.036448px;}
._5{width:3.223440px;}
._8{width:4.521600px;}
._10{width:5.529600px;}
._e{width:6.552000px;}
._4{width:8.467200px;}
._d{width:10.211040px;}
._9{width:12.060000px;}
._2{width:13.645440px;}
._1{width:14.675040px;}
._12{width:15.822720px;}
._15{width:16.839360px;}
._14{width:19.051200px;}
._b{width:20.952720px;}
._f{width:22.572000px;}
._16{width:23.659200px;}
._13{width:25.214400px;}
._c{width:26.402400px;}
._17{width:27.775440px;}
._1a{width:28.793664px;}
._19{width:29.908800px;}
._18{width:31.341600px;}
._2e{width:33.491952px;}
._27{width:35.239680px;}
._26{width:36.630720px;}
._2a{width:37.889280px;}
._30{width:38.899296px;}
._23{width:40.066992px;}
._22{width:41.068800px;}
._2f{width:44.645760px;}
._29{width:47.493504px;}
._2d{width:49.415616px;}
._1e{width:61.536960px;}
._31{width:65.577600px;}
._21{width:77.434560px;}
._28{width:79.951680px;}
._1f{width:81.408960px;}
._20{width:82.621296px;}
._35{width:86.657904px;}
._34{width:87.834240px;}
._1d{width:94.259520px;}
._1b{width:105.069312px;}
._1c{width:106.144704px;}
._32{width:114.793920px;}
._2c{width:125.171424px;}
._2b{width:126.397008px;}
._33{width:156.790080px;}
._24{width:159.770880px;}
._25{width:204.482880px;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y12d{bottom:1.274100px;}
.yec{bottom:1.574100px;}
.yf6{bottom:3.434100px;}
.y145{bottom:3.494100px;}
.y128{bottom:3.554100px;}
.yf0{bottom:3.614100px;}
.y11f{bottom:3.674100px;}
.y112{bottom:3.734100px;}
.y116{bottom:3.794100px;}
.y106{bottom:3.854100px;}
.y10c{bottom:3.914100px;}
.yfb{bottom:3.974100px;}
.yb1{bottom:4.034100px;}
.y104{bottom:4.094100px;}
.y143{bottom:4.154100px;}
.yee{bottom:4.214100px;}
.yf4{bottom:4.274100px;}
.yf8{bottom:4.334100px;}
.y125{bottom:4.394100px;}
.y119{bottom:4.454100px;}
.y10a{bottom:4.514100px;}
.y10f{bottom:4.574100px;}
.yfe{bottom:4.634100px;}
.y102{bottom:4.694100px;}
.y108{bottom:4.754100px;}
.y74{bottom:4.814100px;}
.yf2{bottom:4.874100px;}
.y141{bottom:4.934100px;}
.y6c{bottom:4.994100px;}
.y13d{bottom:5.054100px;}
.y168{bottom:5.114100px;}
.y1c5{bottom:5.174100px;}
.y98{bottom:5.234100px;}
.y7c{bottom:12.554100px;}
.y79{bottom:13.394100px;}
.y7d{bottom:17.594100px;}
.y7b{bottom:18.434100px;}
.y7a{bottom:19.514100px;}
.yb0{bottom:22.754100px;}
.y73{bottom:23.894100px;}
.y97{bottom:24.314100px;}
.y6f{bottom:24.974100px;}
.y75{bottom:29.654100px;}
.y77{bottom:34.514100px;}
.y70{bottom:34.694100px;}
.yaf{bottom:41.834100px;}
.y72{bottom:42.974100px;}
.y96{bottom:43.034100px;}
.y6e{bottom:43.694100px;}
.yae{bottom:60.914100px;}
.y71{bottom:61.694100px;}
.y95{bottom:62.114100px;}
.yad{bottom:79.634100px;}
.y9b{bottom:79.754100px;}
.y94{bottom:81.194100px;}
.y8f{bottom:88.394100px;}
.yac{bottom:98.714100px;}
.y93{bottom:99.914100px;}
.y1a1{bottom:109.500000px;}
.y8e{bottom:110.354100px;}
.y140{bottom:111.000000px;}
.y9a{bottom:111.794100px;}
.y22a{bottom:112.694100px;}
.y180{bottom:115.500000px;}
.yab{bottom:117.794100px;}
.yc9{bottom:118.814100px;}
.y92{bottom:118.994100px;}
.y67{bottom:122.414100px;}
.y1c4{bottom:123.000000px;}
.y27{bottom:123.134100px;}
.y134{bottom:125.294100px;}
.yf7{bottom:126.000000px;}
.y18d{bottom:127.454100px;}
.yb6{bottom:128.234100px;}
.y1a0{bottom:129.000000px;}
.y13f{bottom:130.500000px;}
.y55{bottom:130.694100px;}
.y170{bottom:131.054100px;}
.y8d{bottom:132.314100px;}
.y229{bottom:134.294100px;}
.y17f{bottom:135.000000px;}
.ydd{bottom:136.094100px;}
.y76{bottom:136.500000px;}
.yaa{bottom:136.514100px;}
.y91{bottom:138.074100px;}
.y1f1{bottom:138.614100px;}
.yc8{bottom:139.694100px;}
.y66{bottom:143.294100px;}
.y26{bottom:143.654100px;}
.y99{bottom:143.834100px;}
.y1c3{bottom:144.000000px;}
.y133{bottom:146.174100px;}
.y18c{bottom:147.974100px;}
.yf5{bottom:148.500000px;}
.y20e{bottom:149.414100px;}
.ydc{bottom:150.134100px;}
.y1d1{bottom:150.494100px;}
.y54{bottom:151.214100px;}
.y13e{bottom:151.500000px;}
.y16f{bottom:151.934100px;}
.y8c{bottom:153.914100px;}
.ya9{bottom:155.594100px;}
.y17e{bottom:156.000000px;}
.y90{bottom:157.154100px;}
.ya2{bottom:157.394100px;}
.yc7{bottom:160.214100px;}
.yb5{bottom:160.274100px;}
.y1c2{bottom:163.500000px;}
.y65{bottom:163.814100px;}
.y25{bottom:164.534100px;}
.y132{bottom:166.694100px;}
.y18b{bottom:168.854100px;}
.y78{bottom:169.500000px;}
.y13c{bottom:171.000000px;}
.y20d{bottom:171.374100px;}
.y53{bottom:172.094100px;}
.y16e{bottom:172.454100px;}
.ya8{bottom:174.674100px;}
.y17d{bottom:175.500000px;}
.y8b{bottom:175.874100px;}
.ya1{bottom:179.354100px;}
.yc6{bottom:181.094100px;}
.y1b2{bottom:183.254100px;}
.y1c1{bottom:184.500000px;}
.y64{bottom:184.694100px;}
.y24{bottom:185.054100px;}
.y131{bottom:187.574100px;}
.y19f{bottom:189.000000px;}
.y18a{bottom:189.374100px;}
.yf3{bottom:190.500000px;}
.y13b{bottom:192.000000px;}
.yb4{bottom:192.314100px;}
.y52{bottom:192.614100px;}
.y228{bottom:192.974100px;}
.y16d{bottom:193.334100px;}
.ya7{bottom:193.754100px;}
.y1d0{bottom:195.854100px;}
.y17c{bottom:196.500000px;}
.y1f0{bottom:197.294100px;}
.ya0{bottom:200.954100px;}
.yc5{bottom:201.614100px;}
.y6d{bottom:204.000000px;}
.y1b1{bottom:204.134100px;}
.y63{bottom:205.214100px;}
.y23{bottom:205.574100px;}
.y130{bottom:208.094100px;}
.y19e{bottom:210.000000px;}
.y189{bottom:210.254100px;}
.yf1{bottom:211.500000px;}
.ya6{bottom:212.474100px;}
.y51{bottom:213.494100px;}
.y16c{bottom:213.854100px;}
.y227{bottom:214.934100px;}
.y17b{bottom:216.000000px;}
.y1ef{bottom:218.894100px;}
.yc4{bottom:222.494100px;}
.y9f{bottom:222.914100px;}
.y1c0{bottom:223.500000px;}
.yb3{bottom:224.354100px;}
.y1b0{bottom:224.654100px;}
.y62{bottom:226.094100px;}
.y22{bottom:226.454100px;}
.y12f{bottom:228.974100px;}
.y19d{bottom:229.500000px;}
.y20c{bottom:229.694100px;}
.y188{bottom:230.774100px;}
.ya5{bottom:231.554100px;}
.y1cf{bottom:233.294100px;}
.yef{bottom:234.000000px;}
.y50{bottom:234.014100px;}
.y16b{bottom:234.734100px;}
.y17a{bottom:235.500000px;}
.y13a{bottom:235.814100px;}
.y1ee{bottom:240.854100px;}
.yc3{bottom:243.014100px;}
.y1bf{bottom:244.500000px;}
.y9e{bottom:244.874100px;}
.y1af{bottom:245.534100px;}
.y61{bottom:246.614100px;}
.y21{bottom:246.974100px;}
.y19c{bottom:249.000000px;}
.y12e{bottom:249.494100px;}
.ya4{bottom:250.634100px;}
.y187{bottom:251.654100px;}
.y139{bottom:253.094100px;}
.y4f{bottom:254.894100px;}
.yed{bottom:255.000000px;}
.yb2{bottom:256.394100px;}
.y179{bottom:256.500000px;}
.y1ce{bottom:257.414100px;}
.yc2{bottom:263.894100px;}
.y1be{bottom:264.000000px;}
.y1ae{bottom:266.054100px;}
.y9d{bottom:266.474100px;}
.y60{bottom:267.494100px;}
.y20{bottom:267.854100px;}
.ya3{bottom:269.354100px;}
.y16a{bottom:269.654100px;}
.y19b{bottom:270.000000px;}
.y138{bottom:270.374100px;}
.y89{bottom:271.154100px;}
.y186{bottom:272.174100px;}
.y226{bottom:273.614100px;}
.y4e{bottom:275.414100px;}
.yeb{bottom:276.000000px;}
.y1ed{bottom:277.574100px;}
.y6b{bottom:280.500000px;}
.y1cd{bottom:281.174100px;}
.y12c{bottom:283.500000px;}
.yc1{bottom:284.414100px;}
.y1bd{bottom:285.000000px;}
.y1ad{bottom:286.934100px;}
.y5f{bottom:288.014100px;}
.y1f{bottom:288.374100px;}
.y9c{bottom:288.434100px;}
.y19a{bottom:289.500000px;}
.y88{bottom:290.234100px;}
.y185{bottom:293.054100px;}
.y225{bottom:295.214100px;}
.y4d{bottom:296.294100px;}
.y178{bottom:297.000000px;}
.y169{bottom:298.454100px;}
.y1ec{bottom:299.534100px;}
.yea{bottom:302.054100px;}
.y137{bottom:302.774100px;}
.y1bc{bottom:304.500000px;}
.y6a{bottom:304.934100px;}
.yc0{bottom:305.294100px;}
.y12b{bottom:306.000000px;}
.y1ac{bottom:307.454100px;}
.y5e{bottom:308.894100px;}
.y1e{bottom:309.254100px;}
.y87{bottom:309.314100px;}
.y20b{bottom:310.334100px;}
.y199{bottom:310.500000px;}
.y167{bottom:313.500000px;}
.y184{bottom:313.574100px;}
.y177{bottom:316.500000px;}
.y4c{bottom:316.814100px;}
.ye9{bottom:319.334100px;}
.y136{bottom:320.054100px;}
.y1eb{bottom:321.134100px;}
.y69{bottom:322.214100px;}
.y1bb{bottom:324.000000px;}
.ybf{bottom:325.814100px;}
.y12a{bottom:327.000000px;}
.y86{bottom:328.034100px;}
.y1ab{bottom:328.334100px;}
.y1cc{bottom:328.694100px;}
.y5d{bottom:329.414100px;}
.y1d{bottom:329.774100px;}
.y198{bottom:330.000000px;}
.y20a{bottom:332.294100px;}
.y135{bottom:334.094100px;}
.y183{bottom:334.454100px;}
.y166{bottom:334.500000px;}
.y176{bottom:336.000000px;}
.y4b{bottom:337.694100px;}
.y1ea{bottom:343.094100px;}
.y1ba{bottom:345.000000px;}
.ybe{bottom:346.694100px;}
.y85{bottom:347.114100px;}
.y129{bottom:348.000000px;}
.y1aa{bottom:348.854100px;}
.y197{bottom:349.500000px;}
.y1c{bottom:350.654100px;}
.ye8{bottom:351.734100px;}
.y1cb{bottom:352.454100px;}
.y22d{bottom:353.534100px;}
.y224{bottom:353.894100px;}
.y165{bottom:354.000000px;}
.y175{bottom:357.000000px;}
.y68{bottom:357.854100px;}
.y4a{bottom:358.214100px;}
.y1b9{bottom:364.500000px;}
.y84{bottom:366.194100px;}
.ybd{bottom:367.214100px;}
.ye7{bottom:369.014100px;}
.y182{bottom:369.374100px;}
.y1a9{bottom:369.734100px;}
.y127{bottom:370.500000px;}
.y1b{bottom:371.174100px;}
.y5c{bottom:371.534100px;}
.y164{bottom:373.500000px;}
.y223{bottom:375.854100px;}
.y1ca{bottom:376.214100px;}
.y49{bottom:379.094100px;}
.y1e9{bottom:379.814100px;}
.y174{bottom:380.894100px;}
.y83{bottom:384.914100px;}
.y1b8{bottom:385.500000px;}
.ye6{bottom:385.934100px;}
.ybc{bottom:388.094100px;}
.y196{bottom:390.000000px;}
.y1a8{bottom:390.254100px;}
.y209{bottom:390.614100px;}
.y126{bottom:391.500000px;}
.y1a{bottom:392.054100px;}
.y163{bottom:394.500000px;}
.y222{bottom:397.454100px;}
.y48{bottom:399.614100px;}
.y1e8{bottom:401.774100px;}
.ye5{bottom:403.214100px;}
.y82{bottom:403.994100px;}
.y1b7{bottom:405.000000px;}
.y5b{bottom:408.614100px;}
.y195{bottom:409.500000px;}
.y1a7{bottom:411.134100px;}
.y124{bottom:412.500000px;}
.y19{bottom:412.574100px;}
.y173{bottom:412.934100px;}
.y162{bottom:414.000000px;}
.ye4{bottom:417.254100px;}
.y221{bottom:419.414100px;}
.ydb{bottom:419.774100px;}
.y47{bottom:420.494100px;}
.y181{bottom:421.574100px;}
.y1c9{bottom:422.294100px;}
.y81{bottom:423.074100px;}
.y1e7{bottom:423.734100px;}
.y1b6{bottom:426.000000px;}
.ybb{bottom:429.494100px;}
.y172{bottom:430.214100px;}
.y194{bottom:430.500000px;}
.y1a6{bottom:431.654100px;}
.y123{bottom:433.500000px;}
.y22c{bottom:434.534100px;}
.y161{bottom:435.000000px;}
.yda{bottom:440.654100px;}
.y46{bottom:441.014100px;}
.y80{bottom:442.154100px;}
.y5a{bottom:442.814100px;}
.y171{bottom:444.254100px;}
.y1e6{bottom:445.334100px;}
.y1b5{bottom:449.294100px;}
.y193{bottom:450.000000px;}
.yba{bottom:450.014100px;}
.y1a5{bottom:452.534100px;}
.y18{bottom:453.614100px;}
.y160{bottom:454.500000px;}
.y122{bottom:456.000000px;}
.y220{bottom:456.134100px;}
.y59{bottom:460.094100px;}
.y1c8{bottom:460.814100px;}
.y7f{bottom:460.874100px;}
.yd9{bottom:461.174100px;}
.y45{bottom:461.894100px;}
.yb9{bottom:470.894100px;}
.y192{bottom:471.000000px;}
.y208{bottom:471.254100px;}
.y15f{bottom:475.500000px;}
.y121{bottom:477.000000px;}
.y58{bottom:477.374100px;}
.y21f{bottom:478.094100px;}
.y1c7{bottom:480.254100px;}
.y1b4{bottom:481.694100px;}
.yd8{bottom:482.054100px;}
.y44{bottom:482.414100px;}
.y1a4{bottom:487.094100px;}
.y17{bottom:491.054100px;}
.y207{bottom:493.214100px;}
.y57{bottom:494.654100px;}
.y15e{bottom:495.000000px;}
.y120{bottom:498.000000px;}
.y1b3{bottom:498.974100px;}
.y1c6{bottom:499.334100px;}
.y21e{bottom:500.054100px;}
.yd7{bottom:502.574100px;}
.y43{bottom:503.294100px;}
.y1e5{bottom:504.014100px;}
.y56{bottom:508.334100px;}
.y191{bottom:511.934100px;}
.yb8{bottom:512.294100px;}
.y16{bottom:513.014100px;}
.y15d{bottom:514.500000px;}
.y206{bottom:514.814100px;}
.y11e{bottom:520.500000px;}
.yd6{bottom:523.454100px;}
.y42{bottom:523.814100px;}
.y1a3{bottom:524.174100px;}
.y1e4{bottom:525.974100px;}
.y15{bottom:535.334100px;}
.y15c{bottom:535.500000px;}
.y21d{bottom:536.774100px;}
.y11d{bottom:541.500000px;}
.yd5{bottom:543.974100px;}
.y190{bottom:544.334100px;}
.y41{bottom:544.694100px;}
.y1e3{bottom:547.574100px;}
.yb7{bottom:550.814100px;}
.y205{bottom:551.534100px;}
.y15b{bottom:555.000000px;}
.y21c{bottom:558.374100px;}
.y1a2{bottom:559.814100px;}
.y18f{bottom:561.614100px;}
.y11c{bottom:562.500000px;}
.yd4{bottom:564.854100px;}
.y40{bottom:565.214100px;}
.y14{bottom:572.774100px;}
.y204{bottom:573.494100px;}
.y18e{bottom:575.654100px;}
.y15a{bottom:576.000000px;}
.y21b{bottom:580.334100px;}
.y7e{bottom:583.500000px;}
.y1e2{bottom:584.654100px;}
.y11b{bottom:585.000000px;}
.yd3{bottom:585.374100px;}
.y3f{bottom:586.094100px;}
.y13{bottom:595.094100px;}
.y203{bottom:595.454100px;}
.y159{bottom:595.500000px;}
.y21a{bottom:602.294100px;}
.y11a{bottom:606.000000px;}
.yd2{bottom:606.254100px;}
.y3e{bottom:606.614100px;}
.y158{bottom:615.000000px;}
.y12{bottom:617.054100px;}
.yd1{bottom:626.774100px;}
.y118{bottom:627.000000px;}
.y3d{bottom:627.494100px;}
.y1e1{bottom:628.214100px;}
.y202{bottom:632.174100px;}
.y157{bottom:636.000000px;}
.y219{bottom:639.014100px;}
.y11{bottom:639.374100px;}
.yd0{bottom:647.654100px;}
.y117{bottom:648.000000px;}
.y3c{bottom:648.014100px;}
.y1e0{bottom:649.814100px;}
.y201{bottom:654.134100px;}
.y156{bottom:655.500000px;}
.y218{bottom:660.974100px;}
.y10{bottom:661.694100px;}
.ycf{bottom:668.174100px;}
.y3b{bottom:668.894100px;}
.y115{bottom:670.500000px;}
.y200{bottom:675.734100px;}
.y155{bottom:676.500000px;}
.y217{bottom:682.574100px;}
.yf{bottom:684.734100px;}
.y1df{bottom:686.894100px;}
.yce{bottom:689.054100px;}
.y3a{bottom:689.414100px;}
.y114{bottom:691.500000px;}
.y154{bottom:696.000000px;}
.y22b{bottom:697.694100px;}
.ycd{bottom:705.974100px;}
.y1de{bottom:708.494100px;}
.y39{bottom:710.294100px;}
.y1ff{bottom:712.454100px;}
.y113{bottom:712.500000px;}
.y153{bottom:715.500000px;}
.yca{bottom:717.854100px;}
.y216{bottom:719.294100px;}
.ye{bottom:722.174100px;}
.y1dd{bottom:730.454100px;}
.y38{bottom:730.814100px;}
.ycc{bottom:731.534100px;}
.ycb{bottom:732.254100px;}
.y1fe{bottom:734.414100px;}
.y111{bottom:735.000000px;}
.y152{bottom:736.500000px;}
.y215{bottom:741.254100px;}
.yd{bottom:744.494100px;}
.y37{bottom:751.694100px;}
.y110{bottom:756.000000px;}
.y1fd{bottom:756.374100px;}
.y214{bottom:763.214100px;}
.yc{bottom:766.454100px;}
.y1dc{bottom:767.174100px;}
.y36{bottom:772.214100px;}
.y10e{bottom:777.000000px;}
.y1fc{bottom:777.974100px;}
.yb{bottom:788.774100px;}
.y35{bottom:793.094100px;}
.y151{bottom:796.500000px;}
.y10d{bottom:798.000000px;}
.y213{bottom:799.934100px;}
.y1db{bottom:804.614100px;}
.ya{bottom:811.094100px;}
.y34{bottom:813.614100px;}
.y1fb{bottom:815.054100px;}
.y150{bottom:816.000000px;}
.y10b{bottom:820.500000px;}
.y212{bottom:821.894100px;}
.y1da{bottom:826.934100px;}
.y9{bottom:833.414100px;}
.y33{bottom:834.494100px;}
.y1fa{bottom:836.654100px;}
.y14f{bottom:837.000000px;}
.y109{bottom:841.500000px;}
.y211{bottom:843.494100px;}
.y1d9{bottom:848.894100px;}
.y32{bottom:855.014100px;}
.y8{bottom:855.374100px;}
.y14e{bottom:856.500000px;}
.y1f9{bottom:858.614100px;}
.y107{bottom:862.500000px;}
.y1d8{bottom:872.294100px;}
.y31{bottom:875.894100px;}
.y14d{bottom:877.500000px;}
.y7{bottom:877.694100px;}
.y1f8{bottom:880.214100px;}
.y105{bottom:885.000000px;}
.y8a{bottom:886.500000px;}
.y30{bottom:896.414100px;}
.y14c{bottom:897.000000px;}
.y6{bottom:901.094100px;}
.y210{bottom:902.174100px;}
.y103{bottom:906.000000px;}
.y1d7{bottom:909.374100px;}
.y14b{bottom:916.500000px;}
.y2f{bottom:917.294100px;}
.y20f{bottom:924.134100px;}
.y101{bottom:927.000000px;}
.ye3{bottom:929.534100px;}
.y1d6{bottom:931.694100px;}
.y14a{bottom:937.500000px;}
.y2e{bottom:937.814100px;}
.y5{bottom:938.174100px;}
.y1f7{bottom:938.894100px;}
.y100{bottom:949.500000px;}
.ye2{bottom:950.774100px;}
.y1d5{bottom:955.094100px;}
.y149{bottom:957.000000px;}
.y2d{bottom:958.694100px;}
.y1f6{bottom:960.854100px;}
.yff{bottom:970.500000px;}
.ye1{bottom:971.294100px;}
.y4{bottom:972.374100px;}
.y148{bottom:976.500000px;}
.y2c{bottom:979.214100px;}
.y1d4{bottom:979.934100px;}
.y1f5{bottom:982.814100px;}
.yfd{bottom:991.500000px;}
.y147{bottom:997.500000px;}
.y2b{bottom:1000.094100px;}
.y1f4{bottom:1004.414100px;}
.y3{bottom:1006.574100px;}
.ye0{bottom:1010.894100px;}
.yfc{bottom:1012.500000px;}
.y146{bottom:1017.000000px;}
.y1d3{bottom:1017.374100px;}
.y2a{bottom:1020.614100px;}
.y2{bottom:1025.654100px;}
.yfa{bottom:1035.000000px;}
.y144{bottom:1038.000000px;}
.y1d2{bottom:1039.694100px;}
.y1f3{bottom:1041.134100px;}
.y29{bottom:1041.494100px;}
.ydf{bottom:1047.254100px;}
.yf9{bottom:1056.000000px;}
.y142{bottom:1057.500000px;}
.y28{bottom:1062.014100px;}
.y1{bottom:1062.734100px;}
.y1f2{bottom:1063.094100px;}
.yde{bottom:1064.534100px;}
.h19{height:19.500000px;}
.h8{height:21.000000px;}
.h17{height:22.500000px;}
.hd{height:33.000000px;}
.hc{height:36.000000px;}
.h1a{height:40.310156px;}
.h7{height:44.031094px;}
.h18{height:44.060625px;}
.h14{height:44.149219px;}
.h5{height:45.281250px;}
.h1{height:46.445625px;}
.h4{height:46.833750px;}
.h16{height:47.988281px;}
.h2{height:48.224531px;}
.h3{height:48.256875px;}
.h11{height:48.796875px;}
.h6{height:50.027344px;}
.h13{height:50.800781px;}
.h15{height:56.593125px;}
.ha{height:59.221406px;}
.hb{height:69.000000px;}
.h9{height:78.000000px;}
.hf{height:192.000000px;}
.h10{height:304.500000px;}
.he{height:495.000000px;}
.h12{height:1171.500000px;}
.h0{height:1188.000000px;}
.w5{width:27.000000px;}
.w8{width:73.500000px;}
.wa{width:81.000000px;}
.wd{width:85.500000px;}
.wc{width:87.000000px;}
.wb{width:96.000000px;}
.w7{width:106.500000px;}
.w3{width:150.000000px;}
.w1{width:171.000000px;}
.w6{width:240.000000px;}
.w9{width:243.000000px;}
.w2{width:286.500000px;}
.w4{width:901.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x28{left:5.205864px;}
.xe{left:7.545900px;}
.x39{left:8.565864px;}
.x4{left:9.700728px;}
.x6{left:11.785224px;}
.x2a{left:12.804420px;}
.xa{left:14.124420px;}
.x16{left:16.500000px;}
.x2f{left:17.652300px;}
.x36{left:19.967940px;}
.x31{left:23.907300px;}
.x34{left:26.222580px;}
.x33{left:28.078260px;}
.x2c{left:29.152260px;}
.x12{left:30.604500px;}
.x35{left:32.249580px;}
.x15{left:34.545900px;}
.x13{left:36.562500px;}
.x2e{left:40.797660px;}
.x11{left:42.956364px;}
.x30{left:44.968620px;}
.x10{left:47.732100px;}
.x32{left:49.139940px;}
.xd{left:51.645432px;}
.xc{left:57.819012px;}
.x14{left:61.273128px;}
.xf{left:74.626020px;}
.xb{left:85.328412px;}
.x8{left:100.827660px;}
.x17{left:124.153380px;}
.x1{left:136.425828px;}
.x38{left:163.425828px;}
.x19{left:183.248820px;}
.x27{left:184.500000px;}
.x18{left:192.225900px;}
.x2{left:210.900720px;}
.x40{left:217.425828px;}
.x5{left:306.000000px;}
.x1b{left:359.015832px;}
.x1a{left:363.945900px;}
.x1d{left:383.934060px;}
.x1c{left:393.105900px;}
.x3a{left:406.500000px;}
.x23{left:415.714860px;}
.x29{left:450.000000px;}
.x7{left:477.000000px;}
.x3b{left:487.500000px;}
.x2b{left:556.500000px;}
.x1f{left:559.700820px;}
.x1e{left:564.825900px;}
.x3c{left:582.000000px;}
.x21{left:584.618940px;}
.x20{left:593.625900px;}
.x2d{left:663.000000px;}
.x3d{left:667.500000px;}
.x3e{left:753.000000px;}
.x9{left:763.500000px;}
.x26{left:767.325540px;}
.x22{left:772.905900px;}
.x24{left:780.198420px;}
.x41{left:790.185900px;}
.x25{left:811.425900px;}
.x3f{left:817.185900px;}
.x3{left:836.625900px;}
.x37{left:862.545900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls21{letter-spacing:-0.354816pt;}
.ls16{letter-spacing:-0.338688pt;}
.ls1a{letter-spacing:-0.301056pt;}
.ls1c{letter-spacing:-0.284928pt;}
.ls15{letter-spacing:-0.268800pt;}
.ls18{letter-spacing:-0.231168pt;}
.ls26{letter-spacing:-0.211968pt;}
.ls9{letter-spacing:-0.176640pt;}
.ls22{letter-spacing:-0.170752pt;}
.ls1{letter-spacing:-0.164864pt;}
.ls13{letter-spacing:-0.158976pt;}
.ls3{letter-spacing:-0.147200pt;}
.ls6{letter-spacing:-0.141312pt;}
.ls19{letter-spacing:-0.139776pt;}
.lsd{letter-spacing:-0.135424pt;}
.lse{letter-spacing:-0.129536pt;}
.ls17{letter-spacing:-0.129024pt;}
.ls5{letter-spacing:-0.117760pt;}
.ls8{letter-spacing:-0.111872pt;}
.ls10{letter-spacing:-0.105984pt;}
.ls4{letter-spacing:-0.100096pt;}
.lsb{letter-spacing:-0.094208pt;}
.lsa{letter-spacing:-0.088320pt;}
.ls11{letter-spacing:-0.082432pt;}
.ls7{letter-spacing:-0.070656pt;}
.ls24{letter-spacing:-0.058880pt;}
.ls23{letter-spacing:-0.052992pt;}
.lsc{letter-spacing:-0.047104pt;}
.ls12{letter-spacing:-0.041216pt;}
.lsf{letter-spacing:-0.035328pt;}
.ls14{letter-spacing:-0.012800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.012800pt;}
.ls1d{letter-spacing:0.019200pt;}
.ls20{letter-spacing:0.212480pt;}
.ls1e{letter-spacing:5.592448pt;}
.ls0{letter-spacing:10.757376pt;}
.ls25{letter-spacing:22.607488pt;}
.ls1b{letter-spacing:30.704640pt;}
.ws17{word-spacing:-16.368640pt;}
.ws32{word-spacing:-16.333312pt;}
.ws30{word-spacing:-16.297984pt;}
.ws31{word-spacing:-16.262656pt;}
.ws18{word-spacing:-16.256768pt;}
.ws16{word-spacing:-16.227328pt;}
.ws19{word-spacing:-16.192000pt;}
.ws2c{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.987200pt;}
.ws20{word-spacing:-14.945280pt;}
.ws2e{word-spacing:-14.816256pt;}
.ws24{word-spacing:-14.805504pt;}
.ws25{word-spacing:-14.714112pt;}
.ws23{word-spacing:-14.676480pt;}
.ws21{word-spacing:-14.660352pt;}
.ws27{word-spacing:-14.644224pt;}
.ws28{word-spacing:-14.606592pt;}
.ws26{word-spacing:-14.590464pt;}
.ws2f{word-spacing:-13.306880pt;}
.ws22{word-spacing:-11.952640pt;}
.ws2a{word-spacing:-11.846656pt;}
.ws2b{word-spacing:-11.805440pt;}
.ws1e{word-spacing:-0.076800pt;}
.ws1{word-spacing:-0.058880pt;}
.ws2d{word-spacing:-0.048640pt;}
.wsd{word-spacing:-0.023552pt;}
.ws12{word-spacing:-0.017664pt;}
.wsa{word-spacing:-0.011776pt;}
.ws14{word-spacing:0.000000pt;}
.wse{word-spacing:0.011776pt;}
.ws11{word-spacing:0.023552pt;}
.ws7{word-spacing:0.029440pt;}
.ws9{word-spacing:0.035328pt;}
.ws3{word-spacing:0.041216pt;}
.wsf{word-spacing:0.047104pt;}
.ws8{word-spacing:0.052992pt;}
.ws4{word-spacing:0.058880pt;}
.wsc{word-spacing:0.070656pt;}
.wsb{word-spacing:0.076544pt;}
.ws6{word-spacing:0.082432pt;}
.ws2{word-spacing:0.088320pt;}
.ws13{word-spacing:0.100096pt;}
.ws0{word-spacing:0.105984pt;}
.ws29{word-spacing:0.111872pt;}
.ws10{word-spacing:0.117760pt;}
.ws1f{word-spacing:10.608640pt;}
.ws5{word-spacing:10.981120pt;}
.ws1c{word-spacing:14.140160pt;}
.ws1b{word-spacing:14.140288pt;}
.ws1d{word-spacing:14.152960pt;}
.ws1a{word-spacing:19.712000pt;}
._11{margin-left:-4.448128pt;}
._a{margin-left:-3.231872pt;}
._7{margin-left:-2.304128pt;}
._3{margin-left:-0.947072pt;}
._0{width:0.904320pt;}
._6{width:1.810176pt;}
._5{width:2.865280pt;}
._8{width:4.019200pt;}
._10{width:4.915200pt;}
._e{width:5.824000pt;}
._4{width:7.526400pt;}
._d{width:9.076480pt;}
._9{width:10.720000pt;}
._2{width:12.129280pt;}
._1{width:13.044480pt;}
._12{width:14.064640pt;}
._15{width:14.968320pt;}
._14{width:16.934400pt;}
._b{width:18.624640pt;}
._f{width:20.064000pt;}
._16{width:21.030400pt;}
._13{width:22.412800pt;}
._c{width:23.468800pt;}
._17{width:24.689280pt;}
._1a{width:25.594368pt;}
._19{width:26.585600pt;}
._18{width:27.859200pt;}
._2e{width:29.770624pt;}
._27{width:31.324160pt;}
._26{width:32.560640pt;}
._2a{width:33.679360pt;}
._30{width:34.577152pt;}
._23{width:35.615104pt;}
._22{width:36.505600pt;}
._2f{width:39.685120pt;}
._29{width:42.216448pt;}
._2d{width:43.924992pt;}
._1e{width:54.699520pt;}
._31{width:58.291200pt;}
._21{width:68.830720pt;}
._28{width:71.068160pt;}
._1f{width:72.363520pt;}
._20{width:73.441152pt;}
._35{width:77.029248pt;}
._34{width:78.074880pt;}
._1d{width:83.786240pt;}
._1b{width:93.394944pt;}
._1c{width:94.350848pt;}
._32{width:102.039040pt;}
._2c{width:111.263488pt;}
._2b{width:112.352896pt;}
._33{width:139.368960pt;}
._24{width:142.018560pt;}
._25{width:181.762560pt;}
.fs3{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y12d{bottom:1.132533pt;}
.yec{bottom:1.399200pt;}
.yf6{bottom:3.052533pt;}
.y145{bottom:3.105867pt;}
.y128{bottom:3.159200pt;}
.yf0{bottom:3.212533pt;}
.y11f{bottom:3.265867pt;}
.y112{bottom:3.319200pt;}
.y116{bottom:3.372533pt;}
.y106{bottom:3.425867pt;}
.y10c{bottom:3.479200pt;}
.yfb{bottom:3.532533pt;}
.yb1{bottom:3.585867pt;}
.y104{bottom:3.639200pt;}
.y143{bottom:3.692533pt;}
.yee{bottom:3.745867pt;}
.yf4{bottom:3.799200pt;}
.yf8{bottom:3.852533pt;}
.y125{bottom:3.905867pt;}
.y119{bottom:3.959200pt;}
.y10a{bottom:4.012533pt;}
.y10f{bottom:4.065867pt;}
.yfe{bottom:4.119200pt;}
.y102{bottom:4.172533pt;}
.y108{bottom:4.225867pt;}
.y74{bottom:4.279200pt;}
.yf2{bottom:4.332533pt;}
.y141{bottom:4.385867pt;}
.y6c{bottom:4.439200pt;}
.y13d{bottom:4.492533pt;}
.y168{bottom:4.545867pt;}
.y1c5{bottom:4.599200pt;}
.y98{bottom:4.652533pt;}
.y7c{bottom:11.159200pt;}
.y79{bottom:11.905867pt;}
.y7d{bottom:15.639200pt;}
.y7b{bottom:16.385867pt;}
.y7a{bottom:17.345867pt;}
.yb0{bottom:20.225867pt;}
.y73{bottom:21.239200pt;}
.y97{bottom:21.612533pt;}
.y6f{bottom:22.199200pt;}
.y75{bottom:26.359200pt;}
.y77{bottom:30.679200pt;}
.y70{bottom:30.839200pt;}
.yaf{bottom:37.185867pt;}
.y72{bottom:38.199200pt;}
.y96{bottom:38.252533pt;}
.y6e{bottom:38.839200pt;}
.yae{bottom:54.145867pt;}
.y71{bottom:54.839200pt;}
.y95{bottom:55.212533pt;}
.yad{bottom:70.785867pt;}
.y9b{bottom:70.892533pt;}
.y94{bottom:72.172533pt;}
.y8f{bottom:78.572533pt;}
.yac{bottom:87.745867pt;}
.y93{bottom:88.812533pt;}
.y1a1{bottom:97.333333pt;}
.y8e{bottom:98.092533pt;}
.y140{bottom:98.666667pt;}
.y9a{bottom:99.372533pt;}
.y22a{bottom:100.172533pt;}
.y180{bottom:102.666667pt;}
.yab{bottom:104.705867pt;}
.yc9{bottom:105.612533pt;}
.y92{bottom:105.772533pt;}
.y67{bottom:108.812533pt;}
.y1c4{bottom:109.333333pt;}
.y27{bottom:109.452533pt;}
.y134{bottom:111.372533pt;}
.yf7{bottom:112.000000pt;}
.y18d{bottom:113.292533pt;}
.yb6{bottom:113.985867pt;}
.y1a0{bottom:114.666667pt;}
.y13f{bottom:116.000000pt;}
.y55{bottom:116.172533pt;}
.y170{bottom:116.492533pt;}
.y8d{bottom:117.612533pt;}
.y229{bottom:119.372533pt;}
.y17f{bottom:120.000000pt;}
.ydd{bottom:120.972533pt;}
.y76{bottom:121.333333pt;}
.yaa{bottom:121.345867pt;}
.y91{bottom:122.732533pt;}
.y1f1{bottom:123.212533pt;}
.yc8{bottom:124.172533pt;}
.y66{bottom:127.372533pt;}
.y26{bottom:127.692533pt;}
.y99{bottom:127.852533pt;}
.y1c3{bottom:128.000000pt;}
.y133{bottom:129.932533pt;}
.y18c{bottom:131.532533pt;}
.yf5{bottom:132.000000pt;}
.y20e{bottom:132.812533pt;}
.ydc{bottom:133.452533pt;}
.y1d1{bottom:133.772533pt;}
.y54{bottom:134.412533pt;}
.y13e{bottom:134.666667pt;}
.y16f{bottom:135.052533pt;}
.y8c{bottom:136.812533pt;}
.ya9{bottom:138.305867pt;}
.y17e{bottom:138.666667pt;}
.y90{bottom:139.692533pt;}
.ya2{bottom:139.905867pt;}
.yc7{bottom:142.412533pt;}
.yb5{bottom:142.465867pt;}
.y1c2{bottom:145.333333pt;}
.y65{bottom:145.612533pt;}
.y25{bottom:146.252533pt;}
.y132{bottom:148.172533pt;}
.y18b{bottom:150.092533pt;}
.y78{bottom:150.666667pt;}
.y13c{bottom:152.000000pt;}
.y20d{bottom:152.332533pt;}
.y53{bottom:152.972533pt;}
.y16e{bottom:153.292533pt;}
.ya8{bottom:155.265867pt;}
.y17d{bottom:156.000000pt;}
.y8b{bottom:156.332533pt;}
.ya1{bottom:159.425867pt;}
.yc6{bottom:160.972533pt;}
.y1b2{bottom:162.892533pt;}
.y1c1{bottom:164.000000pt;}
.y64{bottom:164.172533pt;}
.y24{bottom:164.492533pt;}
.y131{bottom:166.732533pt;}
.y19f{bottom:168.000000pt;}
.y18a{bottom:168.332533pt;}
.yf3{bottom:169.333333pt;}
.y13b{bottom:170.666667pt;}
.yb4{bottom:170.945867pt;}
.y52{bottom:171.212533pt;}
.y228{bottom:171.532533pt;}
.y16d{bottom:171.852533pt;}
.ya7{bottom:172.225867pt;}
.y1d0{bottom:174.092533pt;}
.y17c{bottom:174.666667pt;}
.y1f0{bottom:175.372533pt;}
.ya0{bottom:178.625867pt;}
.yc5{bottom:179.212533pt;}
.y6d{bottom:181.333333pt;}
.y1b1{bottom:181.452533pt;}
.y63{bottom:182.412533pt;}
.y23{bottom:182.732533pt;}
.y130{bottom:184.972533pt;}
.y19e{bottom:186.666667pt;}
.y189{bottom:186.892533pt;}
.yf1{bottom:188.000000pt;}
.ya6{bottom:188.865867pt;}
.y51{bottom:189.772533pt;}
.y16c{bottom:190.092533pt;}
.y227{bottom:191.052533pt;}
.y17b{bottom:192.000000pt;}
.y1ef{bottom:194.572533pt;}
.yc4{bottom:197.772533pt;}
.y9f{bottom:198.145867pt;}
.y1c0{bottom:198.666667pt;}
.yb3{bottom:199.425867pt;}
.y1b0{bottom:199.692533pt;}
.y62{bottom:200.972533pt;}
.y22{bottom:201.292533pt;}
.y12f{bottom:203.532533pt;}
.y19d{bottom:204.000000pt;}
.y20c{bottom:204.172533pt;}
.y188{bottom:205.132533pt;}
.ya5{bottom:205.825867pt;}
.y1cf{bottom:207.372533pt;}
.yef{bottom:208.000000pt;}
.y50{bottom:208.012533pt;}
.y16b{bottom:208.652533pt;}
.y17a{bottom:209.333333pt;}
.y13a{bottom:209.612533pt;}
.y1ee{bottom:214.092533pt;}
.yc3{bottom:216.012533pt;}
.y1bf{bottom:217.333333pt;}
.y9e{bottom:217.665867pt;}
.y1af{bottom:218.252533pt;}
.y61{bottom:219.212533pt;}
.y21{bottom:219.532533pt;}
.y19c{bottom:221.333333pt;}
.y12e{bottom:221.772533pt;}
.ya4{bottom:222.785867pt;}
.y187{bottom:223.692533pt;}
.y139{bottom:224.972533pt;}
.y4f{bottom:226.572533pt;}
.yed{bottom:226.666667pt;}
.yb2{bottom:227.905867pt;}
.y179{bottom:228.000000pt;}
.y1ce{bottom:228.812533pt;}
.yc2{bottom:234.572533pt;}
.y1be{bottom:234.666667pt;}
.y1ae{bottom:236.492533pt;}
.y9d{bottom:236.865867pt;}
.y60{bottom:237.772533pt;}
.y20{bottom:238.092533pt;}
.ya3{bottom:239.425867pt;}
.y16a{bottom:239.692533pt;}
.y19b{bottom:240.000000pt;}
.y138{bottom:240.332533pt;}
.y89{bottom:241.025867pt;}
.y186{bottom:241.932533pt;}
.y226{bottom:243.212533pt;}
.y4e{bottom:244.812533pt;}
.yeb{bottom:245.333333pt;}
.y1ed{bottom:246.732533pt;}
.y6b{bottom:249.333333pt;}
.y1cd{bottom:249.932533pt;}
.y12c{bottom:252.000000pt;}
.yc1{bottom:252.812533pt;}
.y1bd{bottom:253.333333pt;}
.y1ad{bottom:255.052533pt;}
.y5f{bottom:256.012533pt;}
.y1f{bottom:256.332533pt;}
.y9c{bottom:256.385867pt;}
.y19a{bottom:257.333333pt;}
.y88{bottom:257.985867pt;}
.y185{bottom:260.492533pt;}
.y225{bottom:262.412533pt;}
.y4d{bottom:263.372533pt;}
.y178{bottom:264.000000pt;}
.y169{bottom:265.292533pt;}
.y1ec{bottom:266.252533pt;}
.yea{bottom:268.492533pt;}
.y137{bottom:269.132533pt;}
.y1bc{bottom:270.666667pt;}
.y6a{bottom:271.052533pt;}
.yc0{bottom:271.372533pt;}
.y12b{bottom:272.000000pt;}
.y1ac{bottom:273.292533pt;}
.y5e{bottom:274.572533pt;}
.y1e{bottom:274.892533pt;}
.y87{bottom:274.945867pt;}
.y20b{bottom:275.852533pt;}
.y199{bottom:276.000000pt;}
.y167{bottom:278.666667pt;}
.y184{bottom:278.732533pt;}
.y177{bottom:281.333333pt;}
.y4c{bottom:281.612533pt;}
.ye9{bottom:283.852533pt;}
.y136{bottom:284.492533pt;}
.y1eb{bottom:285.452533pt;}
.y69{bottom:286.412533pt;}
.y1bb{bottom:288.000000pt;}
.ybf{bottom:289.612533pt;}
.y12a{bottom:290.666667pt;}
.y86{bottom:291.585867pt;}
.y1ab{bottom:291.852533pt;}
.y1cc{bottom:292.172533pt;}
.y5d{bottom:292.812533pt;}
.y1d{bottom:293.132533pt;}
.y198{bottom:293.333333pt;}
.y20a{bottom:295.372533pt;}
.y135{bottom:296.972533pt;}
.y183{bottom:297.292533pt;}
.y166{bottom:297.333333pt;}
.y176{bottom:298.666667pt;}
.y4b{bottom:300.172533pt;}
.y1ea{bottom:304.972533pt;}
.y1ba{bottom:306.666667pt;}
.ybe{bottom:308.172533pt;}
.y85{bottom:308.545867pt;}
.y129{bottom:309.333333pt;}
.y1aa{bottom:310.092533pt;}
.y197{bottom:310.666667pt;}
.y1c{bottom:311.692533pt;}
.ye8{bottom:312.652533pt;}
.y1cb{bottom:313.292533pt;}
.y22d{bottom:314.252533pt;}
.y224{bottom:314.572533pt;}
.y165{bottom:314.666667pt;}
.y175{bottom:317.333333pt;}
.y68{bottom:318.092533pt;}
.y4a{bottom:318.412533pt;}
.y1b9{bottom:324.000000pt;}
.y84{bottom:325.505867pt;}
.ybd{bottom:326.412533pt;}
.ye7{bottom:328.012533pt;}
.y182{bottom:328.332533pt;}
.y1a9{bottom:328.652533pt;}
.y127{bottom:329.333333pt;}
.y1b{bottom:329.932533pt;}
.y5c{bottom:330.252533pt;}
.y164{bottom:332.000000pt;}
.y223{bottom:334.092533pt;}
.y1ca{bottom:334.412533pt;}
.y49{bottom:336.972533pt;}
.y1e9{bottom:337.612533pt;}
.y174{bottom:338.572533pt;}
.y83{bottom:342.145867pt;}
.y1b8{bottom:342.666667pt;}
.ye6{bottom:343.052533pt;}
.ybc{bottom:344.972533pt;}
.y196{bottom:346.666667pt;}
.y1a8{bottom:346.892533pt;}
.y209{bottom:347.212533pt;}
.y126{bottom:348.000000pt;}
.y1a{bottom:348.492533pt;}
.y163{bottom:350.666667pt;}
.y222{bottom:353.292533pt;}
.y48{bottom:355.212533pt;}
.y1e8{bottom:357.132533pt;}
.ye5{bottom:358.412533pt;}
.y82{bottom:359.105867pt;}
.y1b7{bottom:360.000000pt;}
.y5b{bottom:363.212533pt;}
.y195{bottom:364.000000pt;}
.y1a7{bottom:365.452533pt;}
.y124{bottom:366.666667pt;}
.y19{bottom:366.732533pt;}
.y173{bottom:367.052533pt;}
.y162{bottom:368.000000pt;}
.ye4{bottom:370.892533pt;}
.y221{bottom:372.812533pt;}
.ydb{bottom:373.132533pt;}
.y47{bottom:373.772533pt;}
.y181{bottom:374.732533pt;}
.y1c9{bottom:375.372533pt;}
.y81{bottom:376.065867pt;}
.y1e7{bottom:376.652533pt;}
.y1b6{bottom:378.666667pt;}
.ybb{bottom:381.772533pt;}
.y172{bottom:382.412533pt;}
.y194{bottom:382.666667pt;}
.y1a6{bottom:383.692533pt;}
.y123{bottom:385.333333pt;}
.y22c{bottom:386.252533pt;}
.y161{bottom:386.666667pt;}
.yda{bottom:391.692533pt;}
.y46{bottom:392.012533pt;}
.y80{bottom:393.025867pt;}
.y5a{bottom:393.612533pt;}
.y171{bottom:394.892533pt;}
.y1e6{bottom:395.852533pt;}
.y1b5{bottom:399.372533pt;}
.y193{bottom:400.000000pt;}
.yba{bottom:400.012533pt;}
.y1a5{bottom:402.252533pt;}
.y18{bottom:403.212533pt;}
.y160{bottom:404.000000pt;}
.y122{bottom:405.333333pt;}
.y220{bottom:405.452533pt;}
.y59{bottom:408.972533pt;}
.y1c8{bottom:409.612533pt;}
.y7f{bottom:409.665867pt;}
.yd9{bottom:409.932533pt;}
.y45{bottom:410.572533pt;}
.yb9{bottom:418.572533pt;}
.y192{bottom:418.666667pt;}
.y208{bottom:418.892533pt;}
.y15f{bottom:422.666667pt;}
.y121{bottom:424.000000pt;}
.y58{bottom:424.332533pt;}
.y21f{bottom:424.972533pt;}
.y1c7{bottom:426.892533pt;}
.y1b4{bottom:428.172533pt;}
.yd8{bottom:428.492533pt;}
.y44{bottom:428.812533pt;}
.y1a4{bottom:432.972533pt;}
.y17{bottom:436.492533pt;}
.y207{bottom:438.412533pt;}
.y57{bottom:439.692533pt;}
.y15e{bottom:440.000000pt;}
.y120{bottom:442.666667pt;}
.y1b3{bottom:443.532533pt;}
.y1c6{bottom:443.852533pt;}
.y21e{bottom:444.492533pt;}
.yd7{bottom:446.732533pt;}
.y43{bottom:447.372533pt;}
.y1e5{bottom:448.012533pt;}
.y56{bottom:451.852533pt;}
.y191{bottom:455.052533pt;}
.yb8{bottom:455.372533pt;}
.y16{bottom:456.012533pt;}
.y15d{bottom:457.333333pt;}
.y206{bottom:457.612533pt;}
.y11e{bottom:462.666667pt;}
.yd6{bottom:465.292533pt;}
.y42{bottom:465.612533pt;}
.y1a3{bottom:465.932533pt;}
.y1e4{bottom:467.532533pt;}
.y15{bottom:475.852533pt;}
.y15c{bottom:476.000000pt;}
.y21d{bottom:477.132533pt;}
.y11d{bottom:481.333333pt;}
.yd5{bottom:483.532533pt;}
.y190{bottom:483.852533pt;}
.y41{bottom:484.172533pt;}
.y1e3{bottom:486.732533pt;}
.yb7{bottom:489.612533pt;}
.y205{bottom:490.252533pt;}
.y15b{bottom:493.333333pt;}
.y21c{bottom:496.332533pt;}
.y1a2{bottom:497.612533pt;}
.y18f{bottom:499.212533pt;}
.y11c{bottom:500.000000pt;}
.yd4{bottom:502.092533pt;}
.y40{bottom:502.412533pt;}
.y14{bottom:509.132533pt;}
.y204{bottom:509.772533pt;}
.y18e{bottom:511.692533pt;}
.y15a{bottom:512.000000pt;}
.y21b{bottom:515.852533pt;}
.y7e{bottom:518.666667pt;}
.y1e2{bottom:519.692533pt;}
.y11b{bottom:520.000000pt;}
.yd3{bottom:520.332533pt;}
.y3f{bottom:520.972533pt;}
.y13{bottom:528.972533pt;}
.y203{bottom:529.292533pt;}
.y159{bottom:529.333333pt;}
.y21a{bottom:535.372533pt;}
.y11a{bottom:538.666667pt;}
.yd2{bottom:538.892533pt;}
.y3e{bottom:539.212533pt;}
.y158{bottom:546.666667pt;}
.y12{bottom:548.492533pt;}
.yd1{bottom:557.132533pt;}
.y118{bottom:557.333333pt;}
.y3d{bottom:557.772533pt;}
.y1e1{bottom:558.412533pt;}
.y202{bottom:561.932533pt;}
.y157{bottom:565.333333pt;}
.y219{bottom:568.012533pt;}
.y11{bottom:568.332533pt;}
.yd0{bottom:575.692533pt;}
.y117{bottom:576.000000pt;}
.y3c{bottom:576.012533pt;}
.y1e0{bottom:577.612533pt;}
.y201{bottom:581.452533pt;}
.y156{bottom:582.666667pt;}
.y218{bottom:587.532533pt;}
.y10{bottom:588.172533pt;}
.ycf{bottom:593.932533pt;}
.y3b{bottom:594.572533pt;}
.y115{bottom:596.000000pt;}
.y200{bottom:600.652533pt;}
.y155{bottom:601.333333pt;}
.y217{bottom:606.732533pt;}
.yf{bottom:608.652533pt;}
.y1df{bottom:610.572533pt;}
.yce{bottom:612.492533pt;}
.y3a{bottom:612.812533pt;}
.y114{bottom:614.666667pt;}
.y154{bottom:618.666667pt;}
.y22b{bottom:620.172533pt;}
.ycd{bottom:627.532533pt;}
.y1de{bottom:629.772533pt;}
.y39{bottom:631.372533pt;}
.y1ff{bottom:633.292533pt;}
.y113{bottom:633.333333pt;}
.y153{bottom:636.000000pt;}
.yca{bottom:638.092533pt;}
.y216{bottom:639.372533pt;}
.ye{bottom:641.932533pt;}
.y1dd{bottom:649.292533pt;}
.y38{bottom:649.612533pt;}
.ycc{bottom:650.252533pt;}
.ycb{bottom:650.892533pt;}
.y1fe{bottom:652.812533pt;}
.y111{bottom:653.333333pt;}
.y152{bottom:654.666667pt;}
.y215{bottom:658.892533pt;}
.yd{bottom:661.772533pt;}
.y37{bottom:668.172533pt;}
.y110{bottom:672.000000pt;}
.y1fd{bottom:672.332533pt;}
.y214{bottom:678.412533pt;}
.yc{bottom:681.292533pt;}
.y1dc{bottom:681.932533pt;}
.y36{bottom:686.412533pt;}
.y10e{bottom:690.666667pt;}
.y1fc{bottom:691.532533pt;}
.yb{bottom:701.132533pt;}
.y35{bottom:704.972533pt;}
.y151{bottom:708.000000pt;}
.y10d{bottom:709.333333pt;}
.y213{bottom:711.052533pt;}
.y1db{bottom:715.212533pt;}
.ya{bottom:720.972533pt;}
.y34{bottom:723.212533pt;}
.y1fb{bottom:724.492533pt;}
.y150{bottom:725.333333pt;}
.y10b{bottom:729.333333pt;}
.y212{bottom:730.572533pt;}
.y1da{bottom:735.052533pt;}
.y9{bottom:740.812533pt;}
.y33{bottom:741.772533pt;}
.y1fa{bottom:743.692533pt;}
.y14f{bottom:744.000000pt;}
.y109{bottom:748.000000pt;}
.y211{bottom:749.772533pt;}
.y1d9{bottom:754.572533pt;}
.y32{bottom:760.012533pt;}
.y8{bottom:760.332533pt;}
.y14e{bottom:761.333333pt;}
.y1f9{bottom:763.212533pt;}
.y107{bottom:766.666667pt;}
.y1d8{bottom:775.372533pt;}
.y31{bottom:778.572533pt;}
.y14d{bottom:780.000000pt;}
.y7{bottom:780.172533pt;}
.y1f8{bottom:782.412533pt;}
.y105{bottom:786.666667pt;}
.y8a{bottom:788.000000pt;}
.y30{bottom:796.812533pt;}
.y14c{bottom:797.333333pt;}
.y6{bottom:800.972533pt;}
.y210{bottom:801.932533pt;}
.y103{bottom:805.333333pt;}
.y1d7{bottom:808.332533pt;}
.y14b{bottom:814.666667pt;}
.y2f{bottom:815.372533pt;}
.y20f{bottom:821.452533pt;}
.y101{bottom:824.000000pt;}
.ye3{bottom:826.252533pt;}
.y1d6{bottom:828.172533pt;}
.y14a{bottom:833.333333pt;}
.y2e{bottom:833.612533pt;}
.y5{bottom:833.932533pt;}
.y1f7{bottom:834.572533pt;}
.y100{bottom:844.000000pt;}
.ye2{bottom:845.132533pt;}
.y1d5{bottom:848.972533pt;}
.y149{bottom:850.666667pt;}
.y2d{bottom:852.172533pt;}
.y1f6{bottom:854.092533pt;}
.yff{bottom:862.666667pt;}
.ye1{bottom:863.372533pt;}
.y4{bottom:864.332533pt;}
.y148{bottom:868.000000pt;}
.y2c{bottom:870.412533pt;}
.y1d4{bottom:871.052533pt;}
.y1f5{bottom:873.612533pt;}
.yfd{bottom:881.333333pt;}
.y147{bottom:886.666667pt;}
.y2b{bottom:888.972533pt;}
.y1f4{bottom:892.812533pt;}
.y3{bottom:894.732533pt;}
.ye0{bottom:898.572533pt;}
.yfc{bottom:900.000000pt;}
.y146{bottom:904.000000pt;}
.y1d3{bottom:904.332533pt;}
.y2a{bottom:907.212533pt;}
.y2{bottom:911.692533pt;}
.yfa{bottom:920.000000pt;}
.y144{bottom:922.666667pt;}
.y1d2{bottom:924.172533pt;}
.y1f3{bottom:925.452533pt;}
.y29{bottom:925.772533pt;}
.ydf{bottom:930.892533pt;}
.yf9{bottom:938.666667pt;}
.y142{bottom:940.000000pt;}
.y28{bottom:944.012533pt;}
.y1{bottom:944.652533pt;}
.y1f2{bottom:944.972533pt;}
.yde{bottom:946.252533pt;}
.h19{height:17.333333pt;}
.h8{height:18.666667pt;}
.h17{height:20.000000pt;}
.hd{height:29.333333pt;}
.hc{height:32.000000pt;}
.h1a{height:35.831250pt;}
.h7{height:39.138750pt;}
.h18{height:39.165000pt;}
.h14{height:39.243750pt;}
.h5{height:40.250000pt;}
.h1{height:41.285000pt;}
.h4{height:41.630000pt;}
.h16{height:42.656250pt;}
.h2{height:42.866250pt;}
.h3{height:42.895000pt;}
.h11{height:43.375000pt;}
.h6{height:44.468750pt;}
.h13{height:45.156250pt;}
.h15{height:50.305000pt;}
.ha{height:52.641250pt;}
.hb{height:61.333333pt;}
.h9{height:69.333333pt;}
.hf{height:170.666667pt;}
.h10{height:270.666667pt;}
.he{height:440.000000pt;}
.h12{height:1041.333333pt;}
.h0{height:1056.000000pt;}
.w5{width:24.000000pt;}
.w8{width:65.333333pt;}
.wa{width:72.000000pt;}
.wd{width:76.000000pt;}
.wc{width:77.333333pt;}
.wb{width:85.333333pt;}
.w7{width:94.666667pt;}
.w3{width:133.333333pt;}
.w1{width:152.000000pt;}
.w6{width:213.333333pt;}
.w9{width:216.000000pt;}
.w2{width:254.666667pt;}
.w4{width:801.333333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x28{left:4.627435pt;}
.xe{left:6.707467pt;}
.x39{left:7.614101pt;}
.x4{left:8.622869pt;}
.x6{left:10.475755pt;}
.x2a{left:11.381707pt;}
.xa{left:12.555040pt;}
.x16{left:14.666667pt;}
.x2f{left:15.690933pt;}
.x36{left:17.749280pt;}
.x31{left:21.250933pt;}
.x34{left:23.308960pt;}
.x33{left:24.958453pt;}
.x2c{left:25.913120pt;}
.x12{left:27.204000pt;}
.x35{left:28.666293pt;}
.x15{left:30.707467pt;}
.x13{left:32.500000pt;}
.x2e{left:36.264587pt;}
.x11{left:38.183435pt;}
.x30{left:39.972107pt;}
.x10{left:42.428533pt;}
.x32{left:43.679947pt;}
.xd{left:45.907051pt;}
.xc{left:51.394677pt;}
.x14{left:54.465003pt;}
.xf{left:66.334240pt;}
.xb{left:75.847477pt;}
.x8{left:89.624587pt;}
.x17{left:110.358560pt;}
.x1{left:121.267403pt;}
.x38{left:145.267403pt;}
.x19{left:162.887840pt;}
.x27{left:164.000000pt;}
.x18{left:170.867467pt;}
.x2{left:187.467307pt;}
.x40{left:193.267403pt;}
.x5{left:272.000000pt;}
.x1b{left:319.125184pt;}
.x1a{left:323.507467pt;}
.x1d{left:341.274720pt;}
.x1c{left:349.427467pt;}
.x3a{left:361.333333pt;}
.x23{left:369.524320pt;}
.x29{left:400.000000pt;}
.x7{left:424.000000pt;}
.x3b{left:433.333333pt;}
.x2b{left:494.666667pt;}
.x1f{left:497.511840pt;}
.x1e{left:502.067467pt;}
.x3c{left:517.333333pt;}
.x21{left:519.661280pt;}
.x20{left:527.667467pt;}
.x2d{left:589.333333pt;}
.x3d{left:593.333333pt;}
.x3e{left:669.333333pt;}
.x9{left:678.666667pt;}
.x26{left:682.067147pt;}
.x22{left:687.027467pt;}
.x24{left:693.509707pt;}
.x41{left:702.387467pt;}
.x25{left:721.267467pt;}
.x3f{left:726.387467pt;}
.x3{left:743.667467pt;}
.x37{left:766.707467pt;}
}




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