
    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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_149c54ba4d89000fcded471c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_c49c1ae83030e0d5e6e62599.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_039143bd9d106cec76099090.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_6fd8d812f4991b19a0e71812.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_227198b3d04c3a26acf3b983.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.726562;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_58b2764d69e2ac75833d6bf0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.793457;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_ed12f2ff995b63c42c8b9341.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.965820;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_94bb7ed1bf22d7c306767d81.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.939941;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_0bd185ed63abaec9f42bc8ad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_414f61bc0e194ed2935f842a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973145;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_28ab3ba2d7648e39832264c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_2380b68dae66092d539b9f40.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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_959cebe2dd705780b4530d20.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916992;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_c025e6b0c067293fa53a4734.woff2')format("woff");}.fff{font-family:fff;line-height:0.950684;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_4160921dd9d49feef7f4d042.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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_325fd1b8dbdf485cc673296d.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_2eb6d96a7472ca6d9f915fc4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.811035;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;}
.m5{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);}
.m3{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010553px;}
.ls1{letter-spacing:0.073080px;}
.ls5{letter-spacing:0.093305px;}
.ls3{letter-spacing:0.354780px;}
.ls7{letter-spacing:1.412699px;}
.ls4{letter-spacing:4.294318px;}
.ls6{letter-spacing:38.847764px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-22.407831px;}
.ws0{word-spacing:-17.999993px;}
.ws3{word-spacing:-16.824953px;}
.ws6{word-spacing:-13.715995px;}
.ws7{word-spacing:-13.107300px;}
.ws2{word-spacing:-13.013995px;}
.ws5{word-spacing:-8.675997px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-1456.073115px;}
._3{margin-left:-601.075192px;}
._7{margin-left:-469.257070px;}
._6{margin-left:-70.559337px;}
._5{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._8{margin-left:-16.559201px;}
._3a{margin-left:-2.516274px;}
._1{margin-left:-1.230315px;}
._4{width:1.197496px;}
._a{width:2.345811px;}
._10{width:3.517238px;}
._f{width:4.931922px;}
._11{width:6.671596px;}
._b{width:8.462606px;}
._e{width:9.727242px;}
._d{width:10.889341px;}
._20{width:11.901291px;}
._c{width:14.601307px;}
._1b{width:15.740758px;}
._16{width:17.136768px;}
._18{width:18.879642px;}
._2b{width:20.197592px;}
._12{width:21.233389px;}
._13{width:22.951879px;}
._17{width:23.982704px;}
._1e{width:24.988121px;}
._37{width:26.040249px;}
._15{width:27.058188px;}
._14{width:28.306315px;}
._2e{width:29.550287px;}
._31{width:30.864082px;}
._30{width:32.952817px;}
._32{width:34.655393px;}
._2c{width:36.152181px;}
._2d{width:37.222279px;}
._1a{width:38.675982px;}
._28{width:40.092825px;}
._21{width:42.047293px;}
._22{width:43.277457px;}
._35{width:44.661098px;}
._1c{width:46.237953px;}
._1d{width:47.365839px;}
._25{width:49.089756px;}
._27{width:50.574233px;}
._33{width:52.445188px;}
._23{width:54.008674px;}
._24{width:55.578227px;}
._3b{width:56.601851px;}
._38{width:57.605151px;}
._29{width:59.381466px;}
._2a{width:60.664525px;}
._2f{width:62.002760px;}
._9{width:65.693856px;}
._36{width:67.253550px;}
._19{width:68.505470px;}
._1f{width:73.912374px;}
._3d{width:78.409008px;}
._26{width:80.705308px;}
._34{width:82.190272px;}
._3c{width:87.445732px;}
._3e{width:90.630481px;}
._3f{width:102.983732px;}
._39{width:124.282545px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.239995px;}
.fsc{font-size:35.999986px;}
.fs7{font-size:38.879984px;}
.fsd{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fs8{font-size:59.759976px;}
.fsa{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fsb{font-size:74.879970px;}
.fs1{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs5{font-size:101.199557px;}
.fs2{font-size:107.999957px;}
.y41{bottom:-15.661020px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.878921px;}
.y153{bottom:3.058953px;}
.y155{bottom:3.058963px;}
.y158{bottom:3.058981px;}
.y15b{bottom:3.058991px;}
.y11d{bottom:3.059063px;}
.y11f{bottom:3.059071px;}
.y121{bottom:3.059079px;}
.y123{bottom:3.059087px;}
.y1d{bottom:3.059088px;}
.y125{bottom:3.059095px;}
.y127{bottom:3.059103px;}
.y129{bottom:3.059110px;}
.y12b{bottom:3.059118px;}
.y12d{bottom:3.059126px;}
.y12f{bottom:3.059134px;}
.y2c{bottom:3.059136px;}
.y131{bottom:3.059142px;}
.y133{bottom:3.059149px;}
.y135{bottom:3.059157px;}
.y137{bottom:3.059165px;}
.y139{bottom:3.059173px;}
.y13b{bottom:3.059181px;}
.y13d{bottom:3.059189px;}
.y13f{bottom:3.059196px;}
.y141{bottom:3.059204px;}
.y13{bottom:3.239032px;}
.y1f{bottom:3.239096px;}
.y27{bottom:3.599124px;}
.y3c{bottom:3.778944px;}
.y2a{bottom:3.779130px;}
.ya{bottom:4.138945px;}
.y4{bottom:4.320028px;}
.y15{bottom:4.859040px;}
.y1a{bottom:4.859070px;}
.y21{bottom:4.859104px;}
.y25{bottom:4.859116px;}
.y6{bottom:58.620277px;}
.y3{bottom:75.000240px;}
.y5{bottom:78.960268px;}
.y2{bottom:79.319968px;}
.yf0{bottom:112.079955px;}
.y181{bottom:116.219954px;}
.y192{bottom:118.559953px;}
.y173{bottom:118.919952px;}
.ycf{bottom:119.099952px;}
.y1b0{bottom:119.459952px;}
.y9e{bottom:119.639952px;}
.y11b{bottom:123.059951px;}
.y1db{bottom:128.459949px;}
.y209{bottom:128.639949px;}
.y68{bottom:130.619948px;}
.y230{bottom:132.059947px;}
.y257{bottom:134.399946px;}
.yef{bottom:136.559945px;}
.y180{bottom:139.259944px;}
.yce{bottom:141.239944px;}
.y191{bottom:141.599943px;}
.y9d{bottom:141.959943px;}
.y1af{bottom:144.119942px;}
.y150{bottom:145.199942px;}
.y11a{bottom:146.819941px;}
.y208{bottom:150.239940px;}
.y273{bottom:152.039939px;}
.y1da{bottom:152.219939px;}
.y67{bottom:153.479939px;}
.y22f{bottom:154.199938px;}
.y256{bottom:157.799937px;}
.yee{bottom:161.039936px;}
.y1a2{bottom:162.299935px;}
.ycd{bottom:162.659935px;}
.ycc{bottom:163.379935px;}
.y9c{bottom:164.099934px;}
.y190{bottom:164.639934px;}
.y172{bottom:164.999934px;}
.y14f{bottom:168.059933px;}
.y1ae{bottom:168.599933px;}
.y119{bottom:170.579932px;}
.y207{bottom:171.659931px;}
.y272{bottom:174.899930px;}
.y1d9{bottom:175.439930px;}
.y1d8{bottom:176.159930px;}
.y66{bottom:176.519929px;}
.y255{bottom:181.199928px;}
.y17f{bottom:185.159926px;}
.y1a1{bottom:185.339926px;}
.yed{bottom:185.519926px;}
.ycb{bottom:185.699926px;}
.y9b{bottom:186.419925px;}
.y18f{bottom:187.679925px;}
.y171{bottom:187.859925px;}
.y14e{bottom:191.099924px;}
.y1ad{bottom:193.079923px;}
.y118{bottom:194.339922px;}
.y271{bottom:197.939921px;}
.y22e{bottom:198.659921px;}
.y65{bottom:199.559920px;}
.y1d7{bottom:200.099920px;}
.y254{bottom:204.419918px;}
.yca{bottom:207.839917px;}
.y1a0{bottom:208.199917px;}
.y9a{bottom:208.559917px;}
.yec{bottom:210.179916px;}
.y18e{bottom:210.719916px;}
.y170{bottom:210.899916px;}
.y151{bottom:213.419915px;}
.y14d{bottom:214.139914px;}
.y206{bottom:214.499914px;}
.y1ac{bottom:217.739913px;}
.y117{bottom:218.099913px;}
.y22d{bottom:220.979912px;}
.y64{bottom:222.599911px;}
.y1d6{bottom:224.039910px;}
.y253{bottom:227.819909px;}
.yc9{bottom:230.159908px;}
.y99{bottom:230.879908px;}
.y19f{bottom:231.239908px;}
.y18d{bottom:233.579907px;}
.y16f{bottom:233.939906px;}
.yeb{bottom:234.659906px;}
.y205{bottom:236.099906px;}
.y14c{bottom:237.179905px;}
.y116{bottom:241.859903px;}
.y1ab{bottom:242.219903px;}
.y22c{bottom:243.119903px;}
.y270{bottom:244.019902px;}
.y63{bottom:245.639902px;}
.y1d5{bottom:247.979901px;}
.y252{bottom:248.879900px;}
.yc8{bottom:252.299899px;}
.y98{bottom:253.019899px;}
.y19e{bottom:254.279898px;}
.y204{bottom:255.719898px;}
.y18c{bottom:256.619897px;}
.y16e{bottom:256.979897px;}
.yea{bottom:259.139896px;}
.y14b{bottom:260.219896px;}
.y22b{bottom:263.279895px;}
.y115{bottom:265.619894px;}
.y1aa{bottom:266.699893px;}
.y26f{bottom:267.059893px;}
.y62{bottom:268.679893px;}
.y251{bottom:269.219892px;}
.y1d4{bottom:270.299892px;}
.y203{bottom:274.259890px;}
.yc7{bottom:274.619890px;}
.y97{bottom:275.339890px;}
.y19d{bottom:277.319889px;}
.y18b{bottom:279.659888px;}
.y16d{bottom:280.019888px;}
.y22a{bottom:282.719887px;}
.y14a{bottom:283.079887px;}
.ye9{bottom:283.799886px;}
.y114{bottom:289.559884px;}
.y26e{bottom:290.099884px;}
.y1a9{bottom:291.359883px;}
.y61{bottom:291.539883px;}
.y250{bottom:292.619883px;}
.y1d3{bottom:292.979883px;}
.y202{bottom:295.679882px;}
.yc6{bottom:296.219882px;}
.yc5{bottom:296.939881px;}
.y96{bottom:297.659881px;}
.y19c{bottom:300.359880px;}
.y18a{bottom:302.699879px;}
.y16c{bottom:303.059879px;}
.y229{bottom:305.039878px;}
.y149{bottom:306.119878px;}
.ye8{bottom:308.279877px;}
.y26d{bottom:312.959875px;}
.y113{bottom:313.319875px;}
.y60{bottom:314.579874px;}
.y1a8{bottom:315.839874px;}
.y1d2{bottom:316.919873px;}
.y201{bottom:317.099873px;}
.yc4{bottom:319.079872px;}
.y95{bottom:319.799872px;}
.y19b{bottom:323.399871px;}
.y189{bottom:325.739870px;}
.y16b{bottom:325.919870px;}
.y228{bottom:327.179869px;}
.y148{bottom:329.159868px;}
.ye7{bottom:332.939867px;}
.y26c{bottom:335.999866px;}
.y112{bottom:337.079865px;}
.y5f{bottom:337.619865px;}
.y200{bottom:338.699865px;}
.y24f{bottom:339.239864px;}
.y1a7{bottom:340.139864px;}
.y1d1{bottom:340.859864px;}
.yc3{bottom:341.399863px;}
.y94{bottom:342.119863px;}
.y19a{bottom:346.259861px;}
.y188{bottom:348.779860px;}
.y16a{bottom:348.959860px;}
.y227{bottom:349.499860px;}
.y147{bottom:352.199859px;}
.ye6{bottom:357.419857px;}
.y1ff{bottom:358.319857px;}
.y26b{bottom:359.039856px;}
.y5e{bottom:360.659856px;}
.y111{bottom:360.839856px;}
.y24e{bottom:362.639855px;}
.yc2{bottom:363.539855px;}
.y93{bottom:364.259854px;}
.y1d0{bottom:364.799854px;}
.y199{bottom:369.299852px;}
.y187{bottom:371.639851px;}
.y169{bottom:371.999851px;}
.y146{bottom:375.239850px;}
.y1fe{bottom:376.859849px;}
.ye5{bottom:381.899847px;}
.y26a{bottom:382.079847px;}
.y39{bottom:382.439847px;}
.y5d{bottom:383.699847px;}
.y110{bottom:384.599846px;}
.y92{bottom:385.859846px;}
.y38{bottom:386.219846px;}
.y91{bottom:386.579845px;}
.y1a6{bottom:388.559845px;}
.y1cf{bottom:388.739845px;}
.y226{bottom:391.619843px;}
.y198{bottom:392.339843px;}
.y186{bottom:394.679842px;}
.y145{bottom:398.279841px;}
.y269{bottom:405.119838px;}
.yd2{bottom:406.019838px;}
.ye4{bottom:406.559837px;}
.y37{bottom:406.739837px;}
.y24d{bottom:406.919837px;}
.yc1{bottom:407.999837px;}
.y10f{bottom:408.359837px;}
.y90{bottom:408.719837px;}
.y225{bottom:411.239836px;}
.y1ce{bottom:412.499835px;}
.y1a5{bottom:412.679835px;}
.y197{bottom:415.379834px;}
.y185{bottom:417.719833px;}
.y168{bottom:418.079833px;}
.y1fd{bottom:419.699832px;}
.y144{bottom:421.139832px;}
.y24c{bottom:427.439829px;}
.y268{bottom:428.159829px;}
.yd1{bottom:428.879828px;}
.y5c{bottom:429.599828px;}
.y36{bottom:429.779828px;}
.yc0{bottom:430.319828px;}
.y8f{bottom:431.039828px;}
.y10e{bottom:432.119827px;}
.y224{bottom:433.559827px;}
.y1cd{bottom:434.819826px;}
.y1a4{bottom:436.979825px;}
.y196{bottom:438.419825px;}
.y184{bottom:440.759824px;}
.y1fc{bottom:441.299823px;}
.y143{bottom:444.179822px;}
.y24b{bottom:450.659820px;}
.y267{bottom:451.019820px;}
.y5b{bottom:452.639819px;}
.y35{bottom:452.819819px;}
.y8e{bottom:453.179819px;}
.ye3{bottom:455.519818px;}
.y223{bottom:455.699818px;}
.y10d{bottom:455.879818px;}
.y1cc{bottom:457.679817px;}
.y1fb{bottom:460.919816px;}
.y1a3{bottom:461.279815px;}
.y195{bottom:461.459815px;}
.y183{bottom:463.799814px;}
.y142{bottom:467.219813px;}
.y24a{bottom:474.059810px;}
.ybf{bottom:474.779810px;}
.y8d{bottom:475.499810px;}
.y34{bottom:475.679810px;}
.y222{bottom:478.019809px;}
.y1fa{bottom:479.459808px;}
.y10c{bottom:479.639808px;}
.ye2{bottom:480.179808px;}
.y1cb{bottom:481.619807px;}
.y140{bottom:486.300600px;}
.ybe{bottom:497.099801px;}
.y249{bottom:497.279801px;}
.y8c{bottom:497.819801px;}
.y33{bottom:498.719801px;}
.y221{bottom:500.159800px;}
.y1f9{bottom:500.879800px;}
.y10b{bottom:503.399799px;}
.ye1{bottom:504.659798px;}
.y1ca{bottom:505.559798px;}
.y13e{bottom:505.920600px;}
.y194{bottom:507.359797px;}
.y182{bottom:509.699796px;}
.y248{bottom:518.339793px;}
.ybd{bottom:519.239792px;}
.y8b{bottom:519.959792px;}
.y266{bottom:520.139792px;}
.y32{bottom:521.759791px;}
.y1f8{bottom:522.299791px;}
.y220{bottom:522.479791px;}
.y13c{bottom:525.360600px;}
.y10a{bottom:527.159789px;}
.ye0{bottom:529.139788px;}
.y1c9{bottom:529.499788px;}
.y193{bottom:530.399788px;}
.y247{bottom:538.859784px;}
.ybc{bottom:540.839784px;}
.ybb{bottom:541.559783px;}
.y8a{bottom:542.279783px;}
.y21f{bottom:542.459783px;}
.y17e{bottom:543.179783px;}
.y1f7{bottom:543.899782px;}
.y31{bottom:544.799782px;}
.y13a{bottom:544.980600px;}
.y109{bottom:551.099780px;}
.y1c8{bottom:553.259779px;}
.ydf{bottom:553.799778px;}
.y21e{bottom:562.079775px;}
.y1f6{bottom:563.519775px;}
.yba{bottom:563.699775px;}
.y89{bottom:564.419774px;}
.y138{bottom:564.420600px;}
.y17d{bottom:566.039774px;}
.y5a{bottom:567.659773px;}
.y30{bottom:567.839773px;}
.y108{bottom:574.859770px;}
.y1c7{bottom:577.199769px;}
.yde{bottom:578.279769px;}
.y1f5{bottom:582.059767px;}
.y136{bottom:584.040600px;}
.y21d{bottom:584.219766px;}
.y246{bottom:585.479766px;}
.yb9{bottom:586.019766px;}
.y88{bottom:586.739765px;}
.y17c{bottom:589.079764px;}
.y59{bottom:590.699764px;}
.y2f{bottom:590.879764px;}
.y107{bottom:598.619761px;}
.y1c6{bottom:601.139760px;}
.ydd{bottom:602.759759px;}
.y1f4{bottom:603.479759px;}
.y134{bottom:603.480600px;}
.y21c{bottom:606.539757px;}
.yb8{bottom:608.159757px;}
.y87{bottom:608.879756px;}
.y17b{bottom:612.119755px;}
.y2e{bottom:613.739755px;}
.y106{bottom:622.379751px;}
.y132{bottom:623.460600px;}
.y1f3{bottom:624.899750px;}
.y1c5{bottom:625.079750px;}
.ydc{bottom:627.419749px;}
.y21b{bottom:628.679749px;}
.y245{bottom:629.759748px;}
.yb7{bottom:630.479748px;}
.y86{bottom:631.199748px;}
.y17a{bottom:635.159746px;}
.y2d{bottom:636.779745px;}
.y130{bottom:643.080600px;}
.y105{bottom:646.139742px;}
.y1f2{bottom:646.499741px;}
.y1c4{bottom:647.399741px;}
.y21a{bottom:648.659741px;}
.y244{bottom:650.279740px;}
.ydb{bottom:651.899739px;}
.yb6{bottom:652.799739px;}
.y85{bottom:653.519739px;}
.y2b{bottom:656.760600px;}
.y179{bottom:658.199737px;}
.y58{bottom:659.819736px;}
.y12e{bottom:662.520600px;}
.y1f1{bottom:666.119734px;}
.y219{bottom:668.279733px;}
.y104{bottom:669.899732px;}
.y1c3{bottom:670.259732px;}
.y29{bottom:672.060600px;}
.y243{bottom:673.679731px;}
.yb5{bottom:674.219730px;}
.yb4{bottom:674.939730px;}
.y84{bottom:675.659730px;}
.yda{bottom:676.379729px;}
.y178{bottom:681.239728px;}
.y12c{bottom:682.140600px;}
.y57{bottom:682.679727px;}
.y1f0{bottom:684.659726px;}
.y26{bottom:687.180600px;}
.y218{bottom:690.419724px;}
.y28{bottom:690.779724px;}
.y103{bottom:693.659723px;}
.y1c2{bottom:694.019722px;}
.y242{bottom:696.899721px;}
.yb3{bottom:697.259721px;}
.y83{bottom:697.979721px;}
.yd9{bottom:700.319720px;}
.yd8{bottom:701.039720px;}
.y12a{bottom:701.580600px;}
.y177{bottom:704.099718px;}
.y56{bottom:705.719718px;}
.y24{bottom:705.900600px;}
.y1ef{bottom:706.079718px;}
.y217{bottom:712.739715px;}
.y102{bottom:717.419713px;}
.y1c1{bottom:717.959713px;}
.yb2{bottom:719.399712px;}
.y82{bottom:720.119712px;}
.y241{bottom:720.299712px;}
.y128{bottom:721.200600px;}
.yd7{bottom:724.799710px;}
.yd6{bottom:725.519710px;}
.y176{bottom:727.139709px;}
.y1ee{bottom:727.499709px;}
.y55{bottom:728.759708px;}
.y216{bottom:735.059706px;}
.y20{bottom:735.960600px;}
.y23{bottom:736.140600px;}
.y126{bottom:740.640600px;}
.y22{bottom:740.819704px;}
.y101{bottom:741.179704px;}
.yb1{bottom:741.719703px;}
.y1c0{bottom:741.899703px;}
.y81{bottom:742.439703px;}
.y240{bottom:743.519703px;}
.y1ed{bottom:749.099700px;}
.yd5{bottom:749.999700px;}
.y265{bottom:750.179700px;}
.yd0{bottom:751.079700px;}
.y54{bottom:751.799699px;}
.y215{bottom:755.039698px;}
.y1e{bottom:755.940600px;}
.y124{bottom:760.260600px;}
.yb0{bottom:763.859694px;}
.y80{bottom:764.579694px;}
.y100{bottom:764.939694px;}
.y1bf{bottom:765.839694px;}
.y167{bottom:766.919693px;}
.y1ec{bottom:770.519692px;}
.y175{bottom:773.219691px;}
.y214{bottom:774.479690px;}
.yd4{bottom:774.659690px;}
.y53{bottom:774.839690px;}
.y1c{bottom:777.180600px;}
.y122{bottom:779.700600px;}
.y23f{bottom:785.099686px;}
.yaf{bottom:786.179686px;}
.y7f{bottom:786.899685px;}
.yff{bottom:787.619685px;}
.y1be{bottom:789.779684px;}
.y165{bottom:789.959684px;}
.y1eb{bottom:790.139684px;}
.y174{bottom:795.539682px;}
.y1b{bottom:796.259681px;}
.y213{bottom:796.799681px;}
.yd3{bottom:797.159681px;}
.y52{bottom:797.879681px;}
.y120{bottom:799.320600px;}
.y23e{bottom:808.319677px;}
.yae{bottom:808.499677px;}
.y1ea{bottom:808.679677px;}
.y7e{bottom:809.219676px;}
.yfe{bottom:809.939676px;}
.y164{bottom:812.999675px;}
.y1bd{bottom:813.539675px;}
.y11e{bottom:818.760600px;}
.y212{bottom:818.939672px;}
.y264{bottom:819.299672px;}
.y19{bottom:819.660600px;}
.y51{bottom:820.739672px;}
.y1e9{bottom:830.099668px;}
.yad{bottom:830.639668px;}
.y7d{bottom:831.359667px;}
.y23d{bottom:831.719667px;}
.yfd{bottom:833.699667px;}
.y166{bottom:835.319666px;}
.y163{bottom:836.039666px;}
.y1bc{bottom:837.479665px;}
.y11c{bottom:838.380600px;}
.y211{bottom:841.259663px;}
.y263{bottom:842.159663px;}
.y18{bottom:842.339663px;}
.y50{bottom:843.779662px;}
.y1e8{bottom:851.699659px;}
.yac{bottom:852.959659px;}
.y7c{bottom:853.679659px;}
.y23c{bottom:855.119658px;}
.yfc{bottom:857.459657px;}
.y162{bottom:858.179657px;}
.y161{bottom:858.899656px;}
.y1bb{bottom:859.799656px;}
.y210{bottom:863.579655px;}
.y262{bottom:865.199654px;}
.y6e{bottom:866.099654px;}
.y4f{bottom:866.819653px;}
.y16{bottom:869.699652px;}
.y1e7{bottom:873.119651px;}
.y17{bottom:874.919650px;}
.yab{bottom:875.099650px;}
.y7b{bottom:875.819650px;}
.y23b{bottom:878.339649px;}
.yfb{bottom:881.219648px;}
.y160{bottom:881.939647px;}
.y1ba{bottom:882.659647px;}
.y20f{bottom:885.719646px;}
.y261{bottom:888.239645px;}
.y6d{bottom:889.139644px;}
.y4e{bottom:889.859644px;}
.y1e6{bottom:894.539642px;}
.y14{bottom:895.440600px;}
.yaa{bottom:897.419641px;}
.y7a{bottom:898.139641px;}
.y23a{bottom:899.399640px;}
.yfa{bottom:904.979638px;}
.y1b9{bottom:906.599637px;}
.y20e{bottom:908.039637px;}
.y260{bottom:911.279635px;}
.y6c{bottom:912.179635px;}
.y4d{bottom:912.899635px;}
.y12{bottom:915.780600px;}
.y1e5{bottom:916.139634px;}
.ya9{bottom:919.559632px;}
.y239{bottom:919.919632px;}
.y79{bottom:920.279632px;}
.y20d{bottom:928.019629px;}
.yf9{bottom:928.739629px;}
.y1b8{bottom:930.539628px;}
.y25f{bottom:934.319626px;}
.y1e4{bottom:935.579626px;}
.y4c{bottom:935.939626px;}
.ya8{bottom:941.879623px;}
.y78{bottom:942.599623px;}
.y238{bottom:943.139623px;}
.y20c{bottom:947.459621px;}
.y11{bottom:949.259620px;}
.y15f{bottom:951.059620px;}
.yf8{bottom:952.499619px;}
.y1b7{bottom:954.299618px;}
.y25e{bottom:957.359617px;}
.y4b{bottom:958.799616px;}
.ya7{bottom:964.199614px;}
.y77{bottom:964.739614px;}
.y237{bottom:966.539613px;}
.y20b{bottom:969.779612px;}
.y15e{bottom:973.919610px;}
.y1e3{bottom:975.719610px;}
.yf7{bottom:976.259609px;}
.y1b6{bottom:977.519609px;}
.y1b5{bottom:978.239609px;}
.y25d{bottom:980.219608px;}
.y6b{bottom:981.119608px;}
.y4a{bottom:981.839607px;}
.ya6{bottom:986.339605px;}
.y76{bottom:987.059605px;}
.y20a{bottom:989.759604px;}
.y10{bottom:990.119604px;}
.y15d{bottom:996.959601px;}
.y1e2{bottom:997.139601px;}
.yf6{bottom:1000.019600px;}
.y1b4{bottom:1002.179599px;}
.y25c{bottom:1003.259599px;}
.y6a{bottom:1004.159598px;}
.y49{bottom:1004.879598px;}
.ya5{bottom:1008.659597px;}
.y75{bottom:1009.379596px;}
.y236{bottom:1010.819596px;}
.yf{bottom:1013.519595px;}
.y1e1{bottom:1018.739593px;}
.y15a{bottom:1019.280600px;}
.yf5{bottom:1023.959590px;}
.y15c{bottom:1026.119590px;}
.y25b{bottom:1026.299589px;}
.y48{bottom:1027.919589px;}
.ye{bottom:1029.899588px;}
.yd{bottom:1030.259588px;}
.ya4{bottom:1030.799588px;}
.y235{bottom:1031.339587px;}
.y74{bottom:1031.519587px;}
.y1e0{bottom:1040.159584px;}
.y157{bottom:1043.400600px;}
.yf4{bottom:1047.719581px;}
.y25a{bottom:1049.519580px;}
.y1b3{bottom:1050.059580px;}
.y159{bottom:1050.239580px;}
.y47{bottom:1050.959580px;}
.ya3{bottom:1053.119579px;}
.y73{bottom:1053.839578px;}
.y234{bottom:1054.559578px;}
.y1df{bottom:1059.779576px;}
.y40{bottom:1065.360600px;}
.y156{bottom:1070.579572px;}
.yf3{bottom:1071.479571px;}
.y1b2{bottom:1072.379571px;}
.y259{bottom:1072.739571px;}
.y69{bottom:1073.279571px;}
.y46{bottom:1073.999570px;}
.y3f{bottom:1074.359570px;}
.ya2{bottom:1075.259570px;}
.y72{bottom:1075.979570px;}
.y233{bottom:1077.959569px;}
.y1de{bottom:1078.319569px;}
.y154{bottom:1090.560600px;}
.y1b1{bottom:1095.059562px;}
.yf2{bottom:1095.239562px;}
.y3e{bottom:1095.599562px;}
.y258{bottom:1096.139562px;}
.y45{bottom:1096.859561px;}
.ya1{bottom:1097.579561px;}
.y71{bottom:1098.299561px;}
.y232{bottom:1099.019560px;}
.y1dd{bottom:1099.739560px;}
.y152{bottom:1114.680600px;}
.y3d{bottom:1117.019553px;}
.yf1{bottom:1118.999552px;}
.y231{bottom:1119.359552px;}
.y44{bottom:1119.899552px;}
.y70{bottom:1120.439552px;}
.y1dc{bottom:1121.339551px;}
.yc{bottom:1127.099549px;}
.yb{bottom:1127.459549px;}
.y9{bottom:1134.300600px;}
.y3b{bottom:1137.360600px;}
.y3a{bottom:1141.139544px;}
.ya0{bottom:1141.679543px;}
.y9f{bottom:1142.399543px;}
.y6f{bottom:1142.759543px;}
.y43{bottom:1142.939543px;}
.y1{bottom:1171.199532px;}
.y42{bottom:1192.799523px;}
.y7{bottom:1195.860600px;}
.h26{height:2.880000px;}
.hb{height:8.169958px;}
.h19{height:13.320000px;}
.he{height:13.500000px;}
.h17{height:15.120000px;}
.h2a{height:15.300000px;}
.h1e{height:18.720000px;}
.h1d{height:19.800000px;}
.h1b{height:19.980000px;}
.h10{height:20.160000px;}
.h14{height:20.340000px;}
.h2{height:20.520000px;}
.h7{height:20.700000px;}
.h4{height:20.880000px;}
.h24{height:21.780000px;}
.h21{height:25.913662px;}
.h12{height:25.951630px;}
.h28{height:27.228505px;}
.h2b{height:31.585065px;}
.hf{height:32.199245px;}
.h1a{height:33.588971px;}
.h20{height:36.043931px;}
.h29{height:36.486196px;}
.h13{height:36.886626px;}
.h16{height:40.005336px;}
.h18{height:40.842757px;}
.h25{height:41.290999px;}
.h22{height:43.185920px;}
.h8{height:47.988262px;}
.h11{height:48.058575px;}
.h15{height:48.199199px;}
.h27{height:49.907793px;}
.h1f{height:50.100449px;}
.h1c{height:50.132792px;}
.ha{height:54.457009px;}
.h23{height:55.054665px;}
.h5{height:56.228532px;}
.hc{height:63.917904px;}
.hd{height:67.548728px;}
.h1{height:70.664034px;}
.h3{height:72.562471px;}
.h9{height:78.468719px;}
.h6{height:84.898091px;}
.h0{height:1263.000000px;}
.w13{width:3.420000px;}
.w21{width:3.960000px;}
.wf{width:4.320000px;}
.w22{width:4.500000px;}
.w34{width:4.860000px;}
.w31{width:5.040000px;}
.w27{width:5.400000px;}
.w1d{width:6.120000px;}
.w1{width:6.480000px;}
.w16{width:6.840000px;}
.we{width:7.200000px;}
.w1b{width:8.100000px;}
.w6{width:8.280000px;}
.w25{width:8.640000px;}
.w23{width:9.000000px;}
.w1a{width:9.540000px;}
.w2a{width:9.900000px;}
.w29{width:10.620000px;}
.w5{width:11.340000px;}
.w11{width:12.240000px;}
.wb{width:13.680000px;}
.w3{width:16.020000px;}
.w45{width:17.100000px;}
.w1e{width:18.000000px;}
.w41{width:32.940000px;}
.w9{width:36.000000px;}
.w20{width:37.800000px;}
.w43{width:41.760000px;}
.w4{width:44.640000px;}
.w2e{width:47.340000px;}
.w3d{width:48.960000px;}
.w49{width:49.140000px;}
.w4b{width:50.040000px;}
.w51{width:50.400000px;}
.w7{width:53.100000px;}
.w19{width:53.460000px;}
.w39{width:55.080000px;}
.w2f{width:55.980000px;}
.w2d{width:57.420000px;}
.w55{width:58.680000px;}
.w3a{width:59.040000px;}
.w4c{width:59.580000px;}
.w3f{width:63.180000px;}
.w3e{width:63.540000px;}
.w48{width:63.720000px;}
.w37{width:65.520000px;}
.w46{width:65.700000px;}
.w42{width:66.780000px;}
.w3b{width:67.500000px;}
.w56{width:68.580000px;}
.w32{width:70.380000px;}
.w17{width:71.280000px;}
.w35{width:71.640000px;}
.w24{width:72.540000px;}
.w4d{width:74.340000px;}
.w38{width:74.520000px;}
.w50{width:75.240000px;}
.w33{width:75.780000px;}
.w12{width:77.940000px;}
.w57{width:80.640000px;}
.w18{width:81.000000px;}
.w44{width:82.440000px;}
.w4a{width:84.600000px;}
.w4f{width:87.480000px;}
.w15{width:87.840000px;}
.w47{width:88.200000px;}
.w3c{width:93.420000px;}
.w36{width:93.960000px;}
.wa{width:100.800000px;}
.w30{width:106.920000px;}
.w26{width:108.180000px;}
.w4e{width:110.160000px;}
.w40{width:112.500000px;}
.w2{width:119.700000px;}
.w10{width:121.680000px;}
.w2c{width:123.300000px;}
.w53{width:126.900000px;}
.w14{width:129.600000px;}
.w54{width:144.900000px;}
.w1f{width:153.000000px;}
.w2b{width:169.200000px;}
.wc{width:171.180000px;}
.wd{width:207.900000px;}
.w52{width:241.200000px;}
.w1c{width:293.040000px;}
.w8{width:409.320000px;}
.w28{width:562.320000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x20{left:1.073924px;}
.x32{left:101.340000px;}
.x1{left:107.999957px;}
.x10{left:109.259956px;}
.x87{left:115.020000px;}
.x35{left:116.459953px;}
.x5{left:118.260000px;}
.x69{left:120.779952px;}
.x68{left:122.579951px;}
.x2{left:129.059966px;}
.x3{left:147.060000px;}
.x5a{left:156.419937px;}
.x7a{left:157.860000px;}
.x13{left:162.360000px;}
.x4{left:163.439935px;}
.x75{left:165.060000px;}
.x7d{left:166.140000px;}
.x95{left:169.019932px;}
.x6f{left:171.720000px;}
.x88{left:173.700000px;}
.x3c{left:175.499930px;}
.x5b{left:179.099928px;}
.x31{left:181.259927px;}
.x5c{left:184.139926px;}
.x9{left:185.219926px;}
.x1e{left:187.200000px;}
.x1f{left:189.540000px;}
.x90{left:191.159924px;}
.x65{left:198.899920px;}
.x91{left:201.419919px;}
.x66{left:202.679919px;}
.x7c{left:203.940000px;}
.x33{left:217.440000px;}
.x34{left:222.660000px;}
.x53{left:227.519909px;}
.x67{left:228.779908px;}
.x54{left:232.559907px;}
.x6{left:237.960000px;}
.x3d{left:240.479904px;}
.x3e{left:245.699902px;}
.x55{left:250.199900px;}
.x56{left:255.239898px;}
.x17{left:258.119897px;}
.x18{left:262.799895px;}
.x19{left:279.000000px;}
.x45{left:280.259888px;}
.x46{left:285.299886px;}
.x80{left:289.440000px;}
.x8d{left:290.880000px;}
.x47{left:300.239880px;}
.x48{left:305.279878px;}
.x49{left:316.259873px;}
.x21{left:319.140000px;}
.x4a{left:321.299871px;}
.x51{left:330.299868px;}
.x6a{left:332.460000px;}
.x52{left:335.339866px;}
.x8e{left:338.220000px;}
.x4b{left:340.739864px;}
.x36{left:342.539863px;}
.x4c{left:345.779862px;}
.x96{left:360.539856px;}
.x77{left:365.400000px;}
.x78{left:370.440000px;}
.x97{left:375.293850px;}
.x57{left:386.279845px;}
.x58{left:391.319843px;}
.x43{left:392.939843px;}
.x3f{left:395.819842px;}
.x44{left:397.979841px;}
.x40{left:400.859840px;}
.x26{left:402.300000px;}
.x74{left:404.100000px;}
.x22{left:406.980000px;}
.x27{left:408.420000px;}
.x98{left:410.219836px;}
.x83{left:411.660000px;}
.x23{left:413.460000px;}
.x7b{left:414.900000px;}
.x41{left:416.699833px;}
.x59{left:418.319833px;}
.x76{left:420.300000px;}
.x42{left:421.739831px;}
.x99{left:425.339830px;}
.x28{left:426.419829px;}
.x38{left:431.099828px;}
.x84{left:432.539827px;}
.x79{left:437.220000px;}
.x70{left:439.380000px;}
.x7e{left:442.620000px;}
.x6b{left:455.760000px;}
.x81{left:458.280000px;}
.x3b{left:462.592867px;}
.xa{left:471.779917px;}
.x1a{left:485.640000px;}
.x5d{left:489.959804px;}
.x24{left:491.220000px;}
.x1b{left:492.660000px;}
.x1c{left:496.980000px;}
.x7f{left:504.359798px;}
.x89{left:507.059797px;}
.x5e{left:508.679797px;}
.x8a{left:511.740000px;}
.x5f{left:513.719795px;}
.x29{left:528.300000px;}
.x11{left:537.659785px;}
.x92{left:548.819780px;}
.x3a{left:556.200354px;}
.x6c{left:561.960000px;}
.x93{left:565.553774px;}
.x14{left:571.680000px;}
.x94{left:582.119767px;}
.x39{left:589.680345px;}
.x73{left:599.760000px;}
.x71{left:601.560000px;}
.x72{left:606.600000px;}
.x15{left:607.680000px;}
.x1d{left:618.300000px;}
.x6d{left:619.380000px;}
.xb{left:622.259521px;}
.x25{left:625.680000px;}
.xc{left:635.399514px;}
.x4d{left:638.819744px;}
.x86{left:640.799744px;}
.x4e{left:644.039742px;}
.xd{left:653.039443px;}
.x4f{left:659.879736px;}
.xe{left:666.359733px;}
.x50{left:670.859732px;}
.x2a{left:681.300000px;}
.x82{left:699.480000px;}
.x7{left:701.280000px;}
.x16{left:708.480000px;}
.x8b{left:712.799715px;}
.x8c{left:717.480000px;}
.x2b{left:719.100000px;}
.x8f{left:721.800000px;}
.x61{left:734.219706px;}
.x2c{left:737.100000px;}
.x62{left:739.259704px;}
.x2d{left:741.060000px;}
.x12{left:742.859703px;}
.x8{left:745.920000px;}
.x6e{left:747.900000px;}
.x63{left:750.239700px;}
.x85{left:751.320000px;}
.x64{left:755.279698px;}
.x2e{left:763.560000px;}
.x2f{left:772.560000px;}
.x60{left:774.719690px;}
.x37{left:779.580000px;}
.x30{left:781.560000px;}
.xf{left:783.539659px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009381pt;}
.ls1{letter-spacing:0.064960pt;}
.ls5{letter-spacing:0.082938pt;}
.ls3{letter-spacing:0.315360pt;}
.ls7{letter-spacing:1.255733pt;}
.ls4{letter-spacing:3.817172pt;}
.ls6{letter-spacing:34.531346pt;}
.ws1{word-spacing:-19.918072pt;}
.ws0{word-spacing:-15.999994pt;}
.ws3{word-spacing:-14.955514pt;}
.ws6{word-spacing:-12.191995pt;}
.ws7{word-spacing:-11.650934pt;}
.ws2{word-spacing:-11.567995pt;}
.ws5{word-spacing:-7.711997pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-1294.287213pt;}
._3{margin-left:-534.289060pt;}
._7{margin-left:-417.117395pt;}
._6{margin-left:-62.719411pt;}
._5{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._8{margin-left:-14.719290pt;}
._3a{margin-left:-2.236688pt;}
._1{margin-left:-1.093613pt;}
._4{width:1.064441pt;}
._a{width:2.085165pt;}
._10{width:3.126434pt;}
._f{width:4.383930pt;}
._11{width:5.930307pt;}
._b{width:7.522316pt;}
._e{width:8.646438pt;}
._d{width:9.679415pt;}
._20{width:10.578925pt;}
._c{width:12.978939pt;}
._1b{width:13.991785pt;}
._16{width:15.232682pt;}
._18{width:16.781904pt;}
._2b{width:17.953415pt;}
._12{width:18.874123pt;}
._13{width:20.401670pt;}
._17{width:21.317959pt;}
._1e{width:22.211663pt;}
._37{width:23.146888pt;}
._15{width:24.051723pt;}
._14{width:25.161169pt;}
._2e{width:26.266921pt;}
._31{width:27.434740pt;}
._30{width:29.291393pt;}
._32{width:30.804794pt;}
._2c{width:32.135272pt;}
._2d{width:33.086470pt;}
._1a{width:34.378650pt;}
._28{width:35.638067pt;}
._21{width:37.375371pt;}
._22{width:38.468851pt;}
._35{width:39.698754pt;}
._1c{width:41.100403pt;}
._1d{width:42.102968pt;}
._25{width:43.635339pt;}
._27{width:44.954874pt;}
._33{width:46.617945pt;}
._23{width:48.007710pt;}
._24{width:49.402868pt;}
._3b{width:50.312756pt;}
._38{width:51.204578pt;}
._29{width:52.783526pt;}
._2a{width:53.924022pt;}
._2f{width:55.113564pt;}
._9{width:58.394539pt;}
._36{width:59.780933pt;}
._19{width:60.893751pt;}
._1f{width:65.699888pt;}
._3d{width:69.696896pt;}
._26{width:71.738052pt;}
._34{width:73.058019pt;}
._3c{width:77.729539pt;}
._3e{width:80.560427pt;}
._3f{width:91.541095pt;}
._39{width:110.473374pt;}
.fs3{font-size:10.879996pt;}
.fsc{font-size:31.999987pt;}
.fs7{font-size:34.559986pt;}
.fsd{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fs8{font-size:53.119979pt;}
.fsa{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fsb{font-size:66.559973pt;}
.fs1{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs5{font-size:89.955162pt;}
.fs2{font-size:95.999962pt;}
.y41{bottom:-13.920907pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.559040pt;}
.y153{bottom:2.719069pt;}
.y155{bottom:2.719078pt;}
.y158{bottom:2.719095pt;}
.y15b{bottom:2.719103pt;}
.y11d{bottom:2.719167pt;}
.y11f{bottom:2.719174pt;}
.y121{bottom:2.719181pt;}
.y123{bottom:2.719188pt;}
.y1d{bottom:2.719189pt;}
.y125{bottom:2.719195pt;}
.y127{bottom:2.719202pt;}
.y129{bottom:2.719209pt;}
.y12b{bottom:2.719216pt;}
.y12d{bottom:2.719223pt;}
.y12f{bottom:2.719230pt;}
.y2c{bottom:2.719232pt;}
.y131{bottom:2.719237pt;}
.y133{bottom:2.719244pt;}
.y135{bottom:2.719251pt;}
.y137{bottom:2.719258pt;}
.y139{bottom:2.719265pt;}
.y13b{bottom:2.719272pt;}
.y13d{bottom:2.719279pt;}
.y13f{bottom:2.719286pt;}
.y141{bottom:2.719293pt;}
.y13{bottom:2.879140pt;}
.y1f{bottom:2.879197pt;}
.y27{bottom:3.199221pt;}
.y3c{bottom:3.359061pt;}
.y2a{bottom:3.359226pt;}
.ya{bottom:3.679062pt;}
.y4{bottom:3.840025pt;}
.y15{bottom:4.319147pt;}
.y1a{bottom:4.319174pt;}
.y21{bottom:4.319203pt;}
.y25{bottom:4.319214pt;}
.y6{bottom:52.106912pt;}
.y3{bottom:66.666880pt;}
.y5{bottom:70.186905pt;}
.y2{bottom:70.506638pt;}
.yf0{bottom:99.626627pt;}
.y181{bottom:103.306625pt;}
.y192{bottom:105.386625pt;}
.y173{bottom:105.706624pt;}
.ycf{bottom:105.866624pt;}
.y1b0{bottom:106.186624pt;}
.y9e{bottom:106.346624pt;}
.y11b{bottom:109.386623pt;}
.y1db{bottom:114.186621pt;}
.y209{bottom:114.346621pt;}
.y68{bottom:116.106620pt;}
.y230{bottom:117.386620pt;}
.y257{bottom:119.466619pt;}
.yef{bottom:121.386618pt;}
.y180{bottom:123.786617pt;}
.yce{bottom:125.546616pt;}
.y191{bottom:125.866616pt;}
.y9d{bottom:126.186616pt;}
.y1af{bottom:128.106615pt;}
.y150{bottom:129.066615pt;}
.y11a{bottom:130.506614pt;}
.y208{bottom:133.546613pt;}
.y273{bottom:135.146613pt;}
.y1da{bottom:135.306613pt;}
.y67{bottom:136.426612pt;}
.y22f{bottom:137.066612pt;}
.y256{bottom:140.266611pt;}
.yee{bottom:143.146609pt;}
.y1a2{bottom:144.266609pt;}
.ycd{bottom:144.586609pt;}
.ycc{bottom:145.226609pt;}
.y9c{bottom:145.866608pt;}
.y190{bottom:146.346608pt;}
.y172{bottom:146.666608pt;}
.y14f{bottom:149.386607pt;}
.y1ae{bottom:149.866607pt;}
.y119{bottom:151.626606pt;}
.y207{bottom:152.586606pt;}
.y272{bottom:155.466604pt;}
.y1d9{bottom:155.946604pt;}
.y1d8{bottom:156.586604pt;}
.y66{bottom:156.906604pt;}
.y255{bottom:161.066602pt;}
.y17f{bottom:164.586601pt;}
.y1a1{bottom:164.746601pt;}
.yed{bottom:164.906601pt;}
.ycb{bottom:165.066601pt;}
.y9b{bottom:165.706600pt;}
.y18f{bottom:166.826600pt;}
.y171{bottom:166.986600pt;}
.y14e{bottom:169.866599pt;}
.y1ad{bottom:171.626598pt;}
.y118{bottom:172.746598pt;}
.y271{bottom:175.946596pt;}
.y22e{bottom:176.586596pt;}
.y65{bottom:177.386596pt;}
.y1d7{bottom:177.866596pt;}
.y254{bottom:181.706594pt;}
.yca{bottom:184.746593pt;}
.y1a0{bottom:185.066593pt;}
.y9a{bottom:185.386593pt;}
.yec{bottom:186.826592pt;}
.y18e{bottom:187.306592pt;}
.y170{bottom:187.466592pt;}
.y151{bottom:189.706591pt;}
.y14d{bottom:190.346591pt;}
.y206{bottom:190.666590pt;}
.y1ac{bottom:193.546589pt;}
.y117{bottom:193.866589pt;}
.y22d{bottom:196.426588pt;}
.y64{bottom:197.866588pt;}
.y1d6{bottom:199.146587pt;}
.y253{bottom:202.506586pt;}
.yc9{bottom:204.586585pt;}
.y99{bottom:205.226585pt;}
.y19f{bottom:205.546584pt;}
.y18d{bottom:207.626584pt;}
.y16f{bottom:207.946583pt;}
.yeb{bottom:208.586583pt;}
.y205{bottom:209.866583pt;}
.y14c{bottom:210.826582pt;}
.y116{bottom:214.986581pt;}
.y1ab{bottom:215.306581pt;}
.y22c{bottom:216.106580pt;}
.y270{bottom:216.906580pt;}
.y63{bottom:218.346579pt;}
.y1d5{bottom:220.426578pt;}
.y252{bottom:221.226578pt;}
.yc8{bottom:224.266577pt;}
.y98{bottom:224.906577pt;}
.y19e{bottom:226.026576pt;}
.y204{bottom:227.306576pt;}
.y18c{bottom:228.106575pt;}
.y16e{bottom:228.426575pt;}
.yea{bottom:230.346575pt;}
.y14b{bottom:231.306574pt;}
.y22b{bottom:234.026573pt;}
.y115{bottom:236.106572pt;}
.y1aa{bottom:237.066572pt;}
.y26f{bottom:237.386572pt;}
.y62{bottom:238.826571pt;}
.y251{bottom:239.306571pt;}
.y1d4{bottom:240.266571pt;}
.y203{bottom:243.786569pt;}
.yc7{bottom:244.106569pt;}
.y97{bottom:244.746569pt;}
.y19d{bottom:246.506568pt;}
.y18b{bottom:248.586567pt;}
.y16d{bottom:248.906567pt;}
.y22a{bottom:251.306566pt;}
.y14a{bottom:251.626566pt;}
.ye9{bottom:252.266566pt;}
.y114{bottom:257.386564pt;}
.y26e{bottom:257.866564pt;}
.y1a9{bottom:258.986563pt;}
.y61{bottom:259.146563pt;}
.y250{bottom:260.106563pt;}
.y1d3{bottom:260.426562pt;}
.y202{bottom:262.826562pt;}
.yc6{bottom:263.306561pt;}
.yc5{bottom:263.946561pt;}
.y96{bottom:264.586561pt;}
.y19c{bottom:266.986560pt;}
.y18a{bottom:269.066559pt;}
.y16c{bottom:269.386559pt;}
.y229{bottom:271.146558pt;}
.y149{bottom:272.106558pt;}
.ye8{bottom:274.026557pt;}
.y26d{bottom:278.186555pt;}
.y113{bottom:278.506555pt;}
.y60{bottom:279.626555pt;}
.y1a8{bottom:280.746554pt;}
.y1d2{bottom:281.706554pt;}
.y201{bottom:281.866554pt;}
.yc4{bottom:283.626553pt;}
.y95{bottom:284.266553pt;}
.y19b{bottom:287.466552pt;}
.y189{bottom:289.546551pt;}
.y16b{bottom:289.706551pt;}
.y228{bottom:290.826550pt;}
.y148{bottom:292.586550pt;}
.ye7{bottom:295.946548pt;}
.y26c{bottom:298.666547pt;}
.y112{bottom:299.626547pt;}
.y5f{bottom:300.106547pt;}
.y200{bottom:301.066546pt;}
.y24f{bottom:301.546546pt;}
.y1a7{bottom:302.346546pt;}
.y1d1{bottom:302.986545pt;}
.yc3{bottom:303.466545pt;}
.y94{bottom:304.106545pt;}
.y19a{bottom:307.786544pt;}
.y188{bottom:310.026543pt;}
.y16a{bottom:310.186543pt;}
.y227{bottom:310.666542pt;}
.y147{bottom:313.066541pt;}
.ye6{bottom:317.706540pt;}
.y1ff{bottom:318.506539pt;}
.y26b{bottom:319.146539pt;}
.y5e{bottom:320.586538pt;}
.y111{bottom:320.746538pt;}
.y24e{bottom:322.346538pt;}
.yc2{bottom:323.146537pt;}
.y93{bottom:323.786537pt;}
.y1d0{bottom:324.266537pt;}
.y199{bottom:328.266535pt;}
.y187{bottom:330.346535pt;}
.y169{bottom:330.666534pt;}
.y146{bottom:333.546533pt;}
.y1fe{bottom:334.986533pt;}
.ye5{bottom:339.466531pt;}
.y26a{bottom:339.626531pt;}
.y39{bottom:339.946531pt;}
.y5d{bottom:341.066530pt;}
.y110{bottom:341.866530pt;}
.y92{bottom:342.986529pt;}
.y38{bottom:343.306529pt;}
.y91{bottom:343.626529pt;}
.y1a6{bottom:345.386529pt;}
.y1cf{bottom:345.546528pt;}
.y226{bottom:348.106527pt;}
.y198{bottom:348.746527pt;}
.y186{bottom:350.826526pt;}
.y145{bottom:354.026525pt;}
.y269{bottom:360.106523pt;}
.yd2{bottom:360.906522pt;}
.ye4{bottom:361.386522pt;}
.y37{bottom:361.546522pt;}
.y24d{bottom:361.706522pt;}
.yc1{bottom:362.666522pt;}
.y10f{bottom:362.986521pt;}
.y90{bottom:363.306521pt;}
.y225{bottom:365.546520pt;}
.y1ce{bottom:366.666520pt;}
.y1a5{bottom:366.826520pt;}
.y197{bottom:369.226519pt;}
.y185{bottom:371.306518pt;}
.y168{bottom:371.626518pt;}
.y1fd{bottom:373.066517pt;}
.y144{bottom:374.346517pt;}
.y24c{bottom:379.946515pt;}
.y268{bottom:380.586514pt;}
.yd1{bottom:381.226514pt;}
.y5c{bottom:381.866514pt;}
.y36{bottom:382.026514pt;}
.yc0{bottom:382.506514pt;}
.y8f{bottom:383.146513pt;}
.y10e{bottom:384.106513pt;}
.y224{bottom:385.386513pt;}
.y1cd{bottom:386.506512pt;}
.y1a4{bottom:388.426511pt;}
.y196{bottom:389.706511pt;}
.y184{bottom:391.786510pt;}
.y1fc{bottom:392.266510pt;}
.y143{bottom:394.826509pt;}
.y24b{bottom:400.586506pt;}
.y267{bottom:400.906506pt;}
.y5b{bottom:402.346506pt;}
.y35{bottom:402.506506pt;}
.y8e{bottom:402.826506pt;}
.ye3{bottom:404.906505pt;}
.y223{bottom:405.066505pt;}
.y10d{bottom:405.226505pt;}
.y1cc{bottom:406.826504pt;}
.y1fb{bottom:409.706503pt;}
.y1a3{bottom:410.026503pt;}
.y195{bottom:410.186503pt;}
.y183{bottom:412.266502pt;}
.y142{bottom:415.306501pt;}
.y24a{bottom:421.386498pt;}
.ybf{bottom:422.026498pt;}
.y8d{bottom:422.666498pt;}
.y34{bottom:422.826498pt;}
.y222{bottom:424.906497pt;}
.y1fa{bottom:426.186496pt;}
.y10c{bottom:426.346496pt;}
.ye2{bottom:426.826496pt;}
.y1cb{bottom:428.106495pt;}
.y140{bottom:432.267200pt;}
.ybe{bottom:441.866490pt;}
.y249{bottom:442.026490pt;}
.y8c{bottom:442.506490pt;}
.y33{bottom:443.306489pt;}
.y221{bottom:444.586489pt;}
.y1f9{bottom:445.226489pt;}
.y10b{bottom:447.466488pt;}
.ye1{bottom:448.586487pt;}
.y1ca{bottom:449.386487pt;}
.y13e{bottom:449.707200pt;}
.y194{bottom:450.986486pt;}
.y182{bottom:453.066485pt;}
.y248{bottom:460.746482pt;}
.ybd{bottom:461.546482pt;}
.y8b{bottom:462.186482pt;}
.y266{bottom:462.346482pt;}
.y32{bottom:463.786481pt;}
.y1f8{bottom:464.266481pt;}
.y220{bottom:464.426481pt;}
.y13c{bottom:466.987200pt;}
.y10a{bottom:468.586479pt;}
.ye0{bottom:470.346479pt;}
.y1c9{bottom:470.666478pt;}
.y193{bottom:471.466478pt;}
.y247{bottom:478.986475pt;}
.ybc{bottom:480.746474pt;}
.ybb{bottom:481.386474pt;}
.y8a{bottom:482.026474pt;}
.y21f{bottom:482.186474pt;}
.y17e{bottom:482.826474pt;}
.y1f7{bottom:483.466473pt;}
.y31{bottom:484.266473pt;}
.y13a{bottom:484.427200pt;}
.y109{bottom:489.866471pt;}
.y1c8{bottom:491.786470pt;}
.ydf{bottom:492.266470pt;}
.y21e{bottom:499.626467pt;}
.y1f6{bottom:500.906466pt;}
.yba{bottom:501.066466pt;}
.y89{bottom:501.706466pt;}
.y138{bottom:501.707200pt;}
.y17d{bottom:503.146465pt;}
.y5a{bottom:504.586465pt;}
.y30{bottom:504.746465pt;}
.y108{bottom:510.986462pt;}
.y1c7{bottom:513.066461pt;}
.yde{bottom:514.026461pt;}
.y1f5{bottom:517.386460pt;}
.y136{bottom:519.147200pt;}
.y21d{bottom:519.306459pt;}
.y246{bottom:520.426458pt;}
.yb9{bottom:520.906458pt;}
.y88{bottom:521.546458pt;}
.y17c{bottom:523.626457pt;}
.y59{bottom:525.066457pt;}
.y2f{bottom:525.226457pt;}
.y107{bottom:532.106454pt;}
.y1c6{bottom:534.346453pt;}
.ydd{bottom:535.786452pt;}
.y1f4{bottom:536.426452pt;}
.y134{bottom:536.427200pt;}
.y21c{bottom:539.146451pt;}
.yb8{bottom:540.586450pt;}
.y87{bottom:541.226450pt;}
.y17b{bottom:544.106449pt;}
.y2e{bottom:545.546448pt;}
.y106{bottom:553.226445pt;}
.y132{bottom:554.187200pt;}
.y1f3{bottom:555.466444pt;}
.y1c5{bottom:555.626444pt;}
.ydc{bottom:557.706444pt;}
.y21b{bottom:558.826443pt;}
.y245{bottom:559.786443pt;}
.yb7{bottom:560.426442pt;}
.y86{bottom:561.066442pt;}
.y17a{bottom:564.586441pt;}
.y2d{bottom:566.026440pt;}
.y130{bottom:571.627200pt;}
.y105{bottom:574.346437pt;}
.y1f2{bottom:574.666437pt;}
.y1c4{bottom:575.466436pt;}
.y21a{bottom:576.586436pt;}
.y244{bottom:578.026435pt;}
.ydb{bottom:579.466435pt;}
.yb6{bottom:580.266435pt;}
.y85{bottom:580.906434pt;}
.y2b{bottom:583.787200pt;}
.y179{bottom:585.066433pt;}
.y58{bottom:586.506432pt;}
.y12e{bottom:588.907200pt;}
.y1f1{bottom:592.106430pt;}
.y219{bottom:594.026429pt;}
.y104{bottom:595.466428pt;}
.y1c3{bottom:595.786428pt;}
.y29{bottom:597.387200pt;}
.y243{bottom:598.826427pt;}
.yb5{bottom:599.306427pt;}
.yb4{bottom:599.946427pt;}
.y84{bottom:600.586426pt;}
.yda{bottom:601.226426pt;}
.y178{bottom:605.546424pt;}
.y12c{bottom:606.347200pt;}
.y57{bottom:606.826424pt;}
.y1f0{bottom:608.586423pt;}
.y26{bottom:610.827200pt;}
.y218{bottom:613.706421pt;}
.y28{bottom:614.026421pt;}
.y103{bottom:616.586420pt;}
.y1c2{bottom:616.906420pt;}
.y242{bottom:619.466419pt;}
.yb3{bottom:619.786419pt;}
.y83{bottom:620.426418pt;}
.yd9{bottom:622.506418pt;}
.yd8{bottom:623.146417pt;}
.y12a{bottom:623.627200pt;}
.y177{bottom:625.866416pt;}
.y56{bottom:627.306416pt;}
.y24{bottom:627.467200pt;}
.y1ef{bottom:627.626416pt;}
.y217{bottom:633.546413pt;}
.y102{bottom:637.706412pt;}
.y1c1{bottom:638.186411pt;}
.yb2{bottom:639.466411pt;}
.y82{bottom:640.106411pt;}
.y241{bottom:640.266411pt;}
.y128{bottom:641.067200pt;}
.yd7{bottom:644.266409pt;}
.yd6{bottom:644.906409pt;}
.y176{bottom:646.346408pt;}
.y1ee{bottom:646.666408pt;}
.y55{bottom:647.786408pt;}
.y216{bottom:653.386405pt;}
.y20{bottom:654.187200pt;}
.y23{bottom:654.347200pt;}
.y126{bottom:658.347200pt;}
.y22{bottom:658.506403pt;}
.y101{bottom:658.826403pt;}
.yb1{bottom:659.306403pt;}
.y1c0{bottom:659.466403pt;}
.y81{bottom:659.946403pt;}
.y240{bottom:660.906402pt;}
.y1ed{bottom:665.866400pt;}
.yd5{bottom:666.666400pt;}
.y265{bottom:666.826400pt;}
.yd0{bottom:667.626400pt;}
.y54{bottom:668.266399pt;}
.y215{bottom:671.146398pt;}
.y1e{bottom:671.947200pt;}
.y124{bottom:675.787200pt;}
.yb0{bottom:678.986395pt;}
.y80{bottom:679.626395pt;}
.y100{bottom:679.946395pt;}
.y1bf{bottom:680.746394pt;}
.y167{bottom:681.706394pt;}
.y1ec{bottom:684.906393pt;}
.y175{bottom:687.306392pt;}
.y214{bottom:688.426391pt;}
.yd4{bottom:688.586391pt;}
.y53{bottom:688.746391pt;}
.y1c{bottom:690.827200pt;}
.y122{bottom:693.067200pt;}
.y23f{bottom:697.866388pt;}
.yaf{bottom:698.826387pt;}
.y7f{bottom:699.466387pt;}
.yff{bottom:700.106387pt;}
.y1be{bottom:702.026386pt;}
.y165{bottom:702.186386pt;}
.y1eb{bottom:702.346386pt;}
.y174{bottom:707.146384pt;}
.y1b{bottom:707.786384pt;}
.y213{bottom:708.266383pt;}
.yd3{bottom:708.586383pt;}
.y52{bottom:709.226383pt;}
.y120{bottom:710.507200pt;}
.y23e{bottom:718.506379pt;}
.yae{bottom:718.666379pt;}
.y1ea{bottom:718.826379pt;}
.y7e{bottom:719.306379pt;}
.yfe{bottom:719.946379pt;}
.y164{bottom:722.666378pt;}
.y1bd{bottom:723.146377pt;}
.y11e{bottom:727.787200pt;}
.y212{bottom:727.946375pt;}
.y264{bottom:728.266375pt;}
.y19{bottom:728.587200pt;}
.y51{bottom:729.546375pt;}
.y1e9{bottom:737.866372pt;}
.yad{bottom:738.346371pt;}
.y7d{bottom:738.986371pt;}
.y23d{bottom:739.306371pt;}
.yfd{bottom:741.066370pt;}
.y166{bottom:742.506370pt;}
.y163{bottom:743.146369pt;}
.y1bc{bottom:744.426369pt;}
.y11c{bottom:745.227200pt;}
.y211{bottom:747.786368pt;}
.y263{bottom:748.586367pt;}
.y18{bottom:748.746367pt;}
.y50{bottom:750.026367pt;}
.y1e8{bottom:757.066364pt;}
.yac{bottom:758.186363pt;}
.y7c{bottom:758.826363pt;}
.y23c{bottom:760.106363pt;}
.yfc{bottom:762.186362pt;}
.y162{bottom:762.826362pt;}
.y161{bottom:763.466361pt;}
.y1bb{bottom:764.266361pt;}
.y210{bottom:767.626360pt;}
.y262{bottom:769.066359pt;}
.y6e{bottom:769.866359pt;}
.y4f{bottom:770.506358pt;}
.y16{bottom:773.066357pt;}
.y1e7{bottom:776.106356pt;}
.y17{bottom:777.706356pt;}
.yab{bottom:777.866356pt;}
.y7b{bottom:778.506355pt;}
.y23b{bottom:780.746354pt;}
.yfb{bottom:783.306353pt;}
.y160{bottom:783.946353pt;}
.y1ba{bottom:784.586353pt;}
.y20f{bottom:787.306352pt;}
.y261{bottom:789.546351pt;}
.y6d{bottom:790.346351pt;}
.y4e{bottom:790.986350pt;}
.y1e6{bottom:795.146349pt;}
.y14{bottom:795.947200pt;}
.yaa{bottom:797.706348pt;}
.y7a{bottom:798.346347pt;}
.y23a{bottom:799.466347pt;}
.yfa{bottom:804.426345pt;}
.y1b9{bottom:805.866344pt;}
.y20e{bottom:807.146344pt;}
.y260{bottom:810.026343pt;}
.y6c{bottom:810.826342pt;}
.y4d{bottom:811.466342pt;}
.y12{bottom:814.027200pt;}
.y1e5{bottom:814.346341pt;}
.ya9{bottom:817.386340pt;}
.y239{bottom:817.706340pt;}
.y79{bottom:818.026339pt;}
.y20d{bottom:824.906337pt;}
.yf9{bottom:825.546336pt;}
.y1b8{bottom:827.146336pt;}
.y25f{bottom:830.506334pt;}
.y1e4{bottom:831.626334pt;}
.y4c{bottom:831.946334pt;}
.ya8{bottom:837.226332pt;}
.y78{bottom:837.866332pt;}
.y238{bottom:838.346331pt;}
.y20c{bottom:842.186330pt;}
.y11{bottom:843.786329pt;}
.y15f{bottom:845.386329pt;}
.yf8{bottom:846.666328pt;}
.y1b7{bottom:848.266327pt;}
.y25e{bottom:850.986326pt;}
.y4b{bottom:852.266326pt;}
.ya7{bottom:857.066324pt;}
.y77{bottom:857.546324pt;}
.y237{bottom:859.146323pt;}
.y20b{bottom:862.026322pt;}
.y15e{bottom:865.706320pt;}
.y1e3{bottom:867.306320pt;}
.yf7{bottom:867.786320pt;}
.y1b6{bottom:868.906319pt;}
.y1b5{bottom:869.546319pt;}
.y25d{bottom:871.306318pt;}
.y6b{bottom:872.106318pt;}
.y4a{bottom:872.746318pt;}
.ya6{bottom:876.746316pt;}
.y76{bottom:877.386316pt;}
.y20a{bottom:879.786315pt;}
.y10{bottom:880.106315pt;}
.y15d{bottom:886.186312pt;}
.y1e2{bottom:886.346312pt;}
.yf6{bottom:888.906311pt;}
.y1b4{bottom:890.826310pt;}
.y25c{bottom:891.786310pt;}
.y6a{bottom:892.586310pt;}
.y49{bottom:893.226309pt;}
.ya5{bottom:896.586308pt;}
.y75{bottom:897.226308pt;}
.y236{bottom:898.506307pt;}
.yf{bottom:900.906306pt;}
.y1e1{bottom:905.546304pt;}
.y15a{bottom:906.027200pt;}
.yf5{bottom:910.186303pt;}
.y15c{bottom:912.106302pt;}
.y25b{bottom:912.266302pt;}
.y48{bottom:913.706301pt;}
.ye{bottom:915.466300pt;}
.yd{bottom:915.786300pt;}
.ya4{bottom:916.266300pt;}
.y235{bottom:916.746300pt;}
.y74{bottom:916.906300pt;}
.y1e0{bottom:924.586297pt;}
.y157{bottom:927.467200pt;}
.yf4{bottom:931.306294pt;}
.y25a{bottom:932.906294pt;}
.y1b3{bottom:933.386293pt;}
.y159{bottom:933.546293pt;}
.y47{bottom:934.186293pt;}
.ya3{bottom:936.106292pt;}
.y73{bottom:936.746292pt;}
.y234{bottom:937.386292pt;}
.y1df{bottom:942.026290pt;}
.y40{bottom:946.987200pt;}
.y156{bottom:951.626286pt;}
.yf3{bottom:952.426286pt;}
.y1b2{bottom:953.226285pt;}
.y259{bottom:953.546285pt;}
.y69{bottom:954.026285pt;}
.y46{bottom:954.666285pt;}
.y3f{bottom:954.986285pt;}
.ya2{bottom:955.786284pt;}
.y72{bottom:956.426284pt;}
.y233{bottom:958.186283pt;}
.y1de{bottom:958.506283pt;}
.y154{bottom:969.387200pt;}
.y1b1{bottom:973.386277pt;}
.yf2{bottom:973.546277pt;}
.y3e{bottom:973.866277pt;}
.y258{bottom:974.346277pt;}
.y45{bottom:974.986277pt;}
.ya1{bottom:975.626276pt;}
.y71{bottom:976.266276pt;}
.y232{bottom:976.906276pt;}
.y1dd{bottom:977.546276pt;}
.y152{bottom:990.827200pt;}
.y3d{bottom:992.906270pt;}
.yf1{bottom:994.666269pt;}
.y231{bottom:994.986269pt;}
.y44{bottom:995.466268pt;}
.y70{bottom:995.946268pt;}
.y1dc{bottom:996.746268pt;}
.yc{bottom:1001.866266pt;}
.yb{bottom:1002.186266pt;}
.y9{bottom:1008.267200pt;}
.y3b{bottom:1010.987200pt;}
.y3a{bottom:1014.346261pt;}
.ya0{bottom:1014.826261pt;}
.y9f{bottom:1015.466260pt;}
.y6f{bottom:1015.786260pt;}
.y43{bottom:1015.946260pt;}
.y1{bottom:1041.066250pt;}
.y42{bottom:1060.266243pt;}
.y7{bottom:1062.987200pt;}
.h26{height:2.560000pt;}
.hb{height:7.262185pt;}
.h19{height:11.840000pt;}
.he{height:12.000000pt;}
.h17{height:13.440000pt;}
.h2a{height:13.600000pt;}
.h1e{height:16.640000pt;}
.h1d{height:17.600000pt;}
.h1b{height:17.760000pt;}
.h10{height:17.920000pt;}
.h14{height:18.080000pt;}
.h2{height:18.240000pt;}
.h7{height:18.400000pt;}
.h4{height:18.560000pt;}
.h24{height:19.360000pt;}
.h21{height:23.034366pt;}
.h12{height:23.068116pt;}
.h28{height:24.203115pt;}
.h2b{height:28.075614pt;}
.hf{height:28.621551pt;}
.h1a{height:29.856863pt;}
.h20{height:32.039050pt;}
.h29{height:32.432175pt;}
.h13{height:32.788112pt;}
.h16{height:35.560298pt;}
.h18{height:36.304673pt;}
.h25{height:36.703110pt;}
.h22{height:38.387485pt;}
.h8{height:42.656233pt;}
.h11{height:42.718733pt;}
.h15{height:42.843733pt;}
.h27{height:44.362482pt;}
.h1f{height:44.533732pt;}
.h1c{height:44.562482pt;}
.ha{height:48.406231pt;}
.h23{height:48.937480pt;}
.h5{height:49.980918pt;}
.hc{height:56.815915pt;}
.hd{height:60.043314pt;}
.h1{height:62.812475pt;}
.h3{height:64.499974pt;}
.h9{height:69.749972pt;}
.h6{height:75.464970pt;}
.h0{height:1122.666667pt;}
.w13{width:3.040000pt;}
.w21{width:3.520000pt;}
.wf{width:3.840000pt;}
.w22{width:4.000000pt;}
.w34{width:4.320000pt;}
.w31{width:4.480000pt;}
.w27{width:4.800000pt;}
.w1d{width:5.440000pt;}
.w1{width:5.760000pt;}
.w16{width:6.080000pt;}
.we{width:6.400000pt;}
.w1b{width:7.200000pt;}
.w6{width:7.360000pt;}
.w25{width:7.680000pt;}
.w23{width:8.000000pt;}
.w1a{width:8.480000pt;}
.w2a{width:8.800000pt;}
.w29{width:9.440000pt;}
.w5{width:10.080000pt;}
.w11{width:10.880000pt;}
.wb{width:12.160000pt;}
.w3{width:14.240000pt;}
.w45{width:15.200000pt;}
.w1e{width:16.000000pt;}
.w41{width:29.280000pt;}
.w9{width:32.000000pt;}
.w20{width:33.600000pt;}
.w43{width:37.120000pt;}
.w4{width:39.680000pt;}
.w2e{width:42.080000pt;}
.w3d{width:43.520000pt;}
.w49{width:43.680000pt;}
.w4b{width:44.480000pt;}
.w51{width:44.800000pt;}
.w7{width:47.200000pt;}
.w19{width:47.520000pt;}
.w39{width:48.960000pt;}
.w2f{width:49.760000pt;}
.w2d{width:51.040000pt;}
.w55{width:52.160000pt;}
.w3a{width:52.480000pt;}
.w4c{width:52.960000pt;}
.w3f{width:56.160000pt;}
.w3e{width:56.480000pt;}
.w48{width:56.640000pt;}
.w37{width:58.240000pt;}
.w46{width:58.400000pt;}
.w42{width:59.360000pt;}
.w3b{width:60.000000pt;}
.w56{width:60.960000pt;}
.w32{width:62.560000pt;}
.w17{width:63.360000pt;}
.w35{width:63.680000pt;}
.w24{width:64.480000pt;}
.w4d{width:66.080000pt;}
.w38{width:66.240000pt;}
.w50{width:66.880000pt;}
.w33{width:67.360000pt;}
.w12{width:69.280000pt;}
.w57{width:71.680000pt;}
.w18{width:72.000000pt;}
.w44{width:73.280000pt;}
.w4a{width:75.200000pt;}
.w4f{width:77.760000pt;}
.w15{width:78.080000pt;}
.w47{width:78.400000pt;}
.w3c{width:83.040000pt;}
.w36{width:83.520000pt;}
.wa{width:89.600000pt;}
.w30{width:95.040000pt;}
.w26{width:96.160000pt;}
.w4e{width:97.920000pt;}
.w40{width:100.000000pt;}
.w2{width:106.400000pt;}
.w10{width:108.160000pt;}
.w2c{width:109.600000pt;}
.w53{width:112.800000pt;}
.w14{width:115.200000pt;}
.w54{width:128.800000pt;}
.w1f{width:136.000000pt;}
.w2b{width:150.400000pt;}
.wc{width:152.160000pt;}
.wd{width:184.800000pt;}
.w52{width:214.400000pt;}
.w1c{width:260.480000pt;}
.w8{width:363.840000pt;}
.w28{width:499.840000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x20{left:0.954599pt;}
.x32{left:90.080000pt;}
.x1{left:95.999962pt;}
.x10{left:97.119961pt;}
.x87{left:102.240000pt;}
.x35{left:103.519959pt;}
.x5{left:105.120000pt;}
.x69{left:107.359957pt;}
.x68{left:108.959956pt;}
.x2{left:114.719969pt;}
.x3{left:130.720000pt;}
.x5a{left:139.039944pt;}
.x7a{left:140.320000pt;}
.x13{left:144.320000pt;}
.x4{left:145.279942pt;}
.x75{left:146.720000pt;}
.x7d{left:147.680000pt;}
.x95{left:150.239940pt;}
.x6f{left:152.640000pt;}
.x88{left:154.400000pt;}
.x3c{left:155.999938pt;}
.x5b{left:159.199936pt;}
.x31{left:161.119936pt;}
.x5c{left:163.679935pt;}
.x9{left:164.639934pt;}
.x1e{left:166.400000pt;}
.x1f{left:168.480000pt;}
.x90{left:169.919932pt;}
.x65{left:176.799929pt;}
.x91{left:179.039928pt;}
.x66{left:180.159928pt;}
.x7c{left:181.280000pt;}
.x33{left:193.280000pt;}
.x34{left:197.920000pt;}
.x53{left:202.239919pt;}
.x67{left:203.359919pt;}
.x54{left:206.719917pt;}
.x6{left:211.520000pt;}
.x3d{left:213.759914pt;}
.x3e{left:218.399913pt;}
.x55{left:222.399911pt;}
.x56{left:226.879909pt;}
.x17{left:229.439908pt;}
.x18{left:233.599907pt;}
.x19{left:248.000000pt;}
.x45{left:249.119900pt;}
.x46{left:253.599899pt;}
.x80{left:257.280000pt;}
.x8d{left:258.560000pt;}
.x47{left:266.879893pt;}
.x48{left:271.359891pt;}
.x49{left:281.119888pt;}
.x21{left:283.680000pt;}
.x4a{left:285.599886pt;}
.x51{left:293.599883pt;}
.x6a{left:295.520000pt;}
.x52{left:298.079881pt;}
.x8e{left:300.640000pt;}
.x4b{left:302.879879pt;}
.x36{left:304.479878pt;}
.x4c{left:307.359877pt;}
.x96{left:320.479872pt;}
.x77{left:324.800000pt;}
.x78{left:329.280000pt;}
.x97{left:333.594533pt;}
.x57{left:343.359863pt;}
.x58{left:347.839861pt;}
.x43{left:349.279860pt;}
.x3f{left:351.839859pt;}
.x44{left:353.759858pt;}
.x40{left:356.319857pt;}
.x26{left:357.600000pt;}
.x74{left:359.200000pt;}
.x22{left:361.760000pt;}
.x27{left:363.040000pt;}
.x98{left:364.639854pt;}
.x83{left:365.920000pt;}
.x23{left:367.520000pt;}
.x7b{left:368.800000pt;}
.x41{left:370.399852pt;}
.x59{left:371.839851pt;}
.x76{left:373.600000pt;}
.x42{left:374.879850pt;}
.x99{left:378.079849pt;}
.x28{left:379.039848pt;}
.x38{left:383.199847pt;}
.x84{left:384.479846pt;}
.x79{left:388.640000pt;}
.x70{left:390.560000pt;}
.x7e{left:393.440000pt;}
.x6b{left:405.120000pt;}
.x81{left:407.360000pt;}
.x3b{left:411.193659pt;}
.xa{left:419.359926pt;}
.x1a{left:431.680000pt;}
.x5d{left:435.519826pt;}
.x24{left:436.640000pt;}
.x1b{left:437.920000pt;}
.x1c{left:441.760000pt;}
.x7f{left:448.319821pt;}
.x89{left:450.719820pt;}
.x5e{left:452.159819pt;}
.x8a{left:454.880000pt;}
.x5f{left:456.639817pt;}
.x29{left:469.600000pt;}
.x11{left:477.919809pt;}
.x92{left:487.839805pt;}
.x3a{left:494.400314pt;}
.x6c{left:499.520000pt;}
.x93{left:502.714466pt;}
.x14{left:508.160000pt;}
.x94{left:517.439793pt;}
.x39{left:524.160307pt;}
.x73{left:533.120000pt;}
.x71{left:534.720000pt;}
.x72{left:539.200000pt;}
.x15{left:540.160000pt;}
.x1d{left:549.600000pt;}
.x6d{left:550.560000pt;}
.xb{left:553.119574pt;}
.x25{left:556.160000pt;}
.xc{left:564.799568pt;}
.x4d{left:567.839773pt;}
.x86{left:569.599772pt;}
.x4e{left:572.479771pt;}
.xd{left:580.479505pt;}
.x4f{left:586.559765pt;}
.xe{left:592.319763pt;}
.x50{left:596.319761pt;}
.x2a{left:605.600000pt;}
.x82{left:621.760000pt;}
.x7{left:623.360000pt;}
.x16{left:629.760000pt;}
.x8b{left:633.599747pt;}
.x8c{left:637.760000pt;}
.x2b{left:639.200000pt;}
.x8f{left:641.600000pt;}
.x61{left:652.639739pt;}
.x2c{left:655.200000pt;}
.x62{left:657.119737pt;}
.x2d{left:658.720000pt;}
.x12{left:660.319736pt;}
.x8{left:663.040000pt;}
.x6e{left:664.800000pt;}
.x63{left:666.879733pt;}
.x85{left:667.840000pt;}
.x64{left:671.359731pt;}
.x2e{left:678.720000pt;}
.x2f{left:686.720000pt;}
.x60{left:688.639725pt;}
.x37{left:692.960000pt;}
.x30{left:694.720000pt;}
.xf{left:696.479697pt;}
}




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